]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/sql_create.c
Important protocol change -- see kes29Oct02
[bacula/bacula] / bacula / src / cats / sql_create.c
1 /*
2  * Bacula Catalog Database Create record interface routines
3  * 
4  *    Kern Sibbald, March 2000
5  *
6  *    Version $Id$
7  */
8
9 /*
10    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 /* *****FIXME**** fix fixed length of select_cmd[] and insert_cmd[] */
30
31 /* The following is necessary so that we do not include
32  * the dummy external definition of DB.
33  */
34 #define __SQL_C                       /* indicate that this is sql.c */
35
36 #include "bacula.h"
37 #include "cats.h"
38
39 #if    HAVE_MYSQL || HAVE_SQLITE
40
41 /* -----------------------------------------------------------------------
42  *
43  *   Generic Routines (or almost generic)
44  *
45  * -----------------------------------------------------------------------
46  */
47
48 /* Forward referenced subroutines */
49 static int db_create_file_record(B_DB *mdb, ATTR_DBR *ar);
50 static int db_create_filename_record(B_DB *mdb, ATTR_DBR *ar, char *fname);
51 static int db_create_path_record(B_DB *mdb, ATTR_DBR *ar, char *path);
52
53
54 /* Imported subroutines */
55 extern void print_dashes(B_DB *mdb);
56 extern void print_result(B_DB *mdb);
57 extern int QueryDB(char *file, int line, B_DB *db, char *select_cmd);
58 extern int InsertDB(char *file, int line, B_DB *db, char *select_cmd);
59
60
61 /* Create a new record for the Job
62  * Returns: 0 on failure
63  *          1 on success
64  */
65 int
66 db_create_job_record(B_DB *mdb, JOB_DBR *jr)
67 {
68    char dt[MAX_TIME_LENGTH];
69    time_t stime;
70    struct tm tm;
71    int stat;
72    char JobId[30];
73    btime_t JobTDate;
74    char ed1[30];
75
76    stime = jr->SchedTime;
77
78    localtime_r(&stime, &tm); 
79    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
80    JobTDate = (btime_t)stime;
81
82    db_lock(mdb);
83    if (!db_next_index(mdb, "Job", JobId)) {
84       jr->JobId = 0;
85       db_unlock(mdb);
86       return 0;
87    }
88    /* Must create it */
89    Mmsg(&mdb->cmd,
90 "INSERT INTO Job (JobId,Job,Name,Type,Level,JobStatus,SchedTime,JobTDate) VALUES \
91 (%s,'%s','%s','%c','%c','%c','%s',%s)", 
92            JobId, jr->Job, jr->Name, (char)(jr->Type), (char)(jr->Level), 
93            (char)(jr->JobStatus), dt, edit_uint64(JobTDate, ed1));
94
95    if (!INSERT_DB(mdb, mdb->cmd)) {
96       Mmsg2(&mdb->errmsg, _("Create DB Job record %s failed. ERR=%s\n"), 
97             mdb->cmd, sql_strerror(mdb));
98       jr->JobId = 0;
99       stat = 0;
100    } else {
101       jr->JobId = sql_insert_id(mdb);
102       stat = 1;
103    }
104    db_unlock(mdb);
105    return stat;
106 }
107
108 /* Create a JobMedia record for medium used this job   
109  * Returns: 0 on failure
110  *          1 on success
111  */
112 int
113 db_create_jobmedia_record(B_DB *mdb, JOBMEDIA_DBR *jm)
114 {
115    int stat;
116
117    db_lock(mdb);
118    Mmsg(&mdb->cmd, "SELECT JobId, MediaId FROM JobMedia WHERE \
119 JobId=%d AND MediaId=%d", jm->JobId, jm->MediaId);
120
121    Dmsg0(30, mdb->cmd);
122    if (QUERY_DB(mdb, mdb->cmd)) {
123       mdb->num_rows = sql_num_rows(mdb);
124       if (mdb->num_rows > 0) {
125          Mmsg0(&mdb->errmsg, _("Create JobMedia failed. Record already exists.\n"));
126          sql_free_result(mdb);
127          db_unlock(mdb);
128          Dmsg0(0, "Already have JobMedia record\n");
129          return 0;
130       }
131       sql_free_result(mdb);
132    }
133
134    /* Must create it */
135    Mmsg(&mdb->cmd, 
136 "INSERT INTO JobMedia (JobId,MediaId,FirstIndex,LastIndex,\
137 StartFile,EndFile,StartBlock,EndBlock) \
138 VALUES (%u,%u,%u,%u,%u,%u,%u,%u)", 
139        jm->JobId, jm->MediaId, jm->FirstIndex, jm->LastIndex,
140        jm->StartFile, jm->EndFile, jm->StartBlock, jm->EndBlock);
141
142    Dmsg0(30, mdb->cmd);
143    if (!INSERT_DB(mdb, mdb->cmd)) {
144       Mmsg2(&mdb->errmsg, _("Create db JobMedia record %s failed. ERR=%s\n"), mdb->cmd, 
145          sql_strerror(mdb));
146       stat = 0;
147    } else {
148       stat = 1;
149    }
150    db_unlock(mdb);
151    Dmsg0(30, "Return from JobMedia\n");
152    return stat;
153 }
154
155
156
157 /* Create Unique Pool record
158  * Returns: 0 on failure
159  *          1 on success
160  */
161 int
162 db_create_pool_record(B_DB *mdb, POOL_DBR *pr)
163 {
164    int stat;
165    char ed1[30];
166
167    db_lock(mdb);
168    Mmsg(&mdb->cmd, "SELECT PoolId,Name FROM Pool WHERE Name='%s'", pr->Name);
169    Dmsg1(20, "selectpool: %s\n", mdb->cmd);
170
171    if (QUERY_DB(mdb, mdb->cmd)) {
172
173       mdb->num_rows = sql_num_rows(mdb);
174    
175       if (mdb->num_rows > 0) {
176          Mmsg1(&mdb->errmsg, _("pool record %s already exists\n"), pr->Name);
177          sql_free_result(mdb);
178          db_unlock(mdb);
179          return 0;
180       }
181       sql_free_result(mdb);
182    }
183
184    /* Must create it */
185    Mmsg(&mdb->cmd, 
186 "INSERT INTO Pool (Name, NumVols, MaxVols, UseOnce, UseCatalog, \
187 AcceptAnyVolume, AutoPrune, Recycle, VolRetention, PoolType, LabelFormat) \
188 VALUES ('%s', %d, %d, %d, %d, %d, %d, %d, %s, '%s', '%s')", 
189                   pr->Name,
190                   pr->NumVols, pr->MaxVols,
191                   pr->UseOnce, pr->UseCatalog,
192                   pr->AcceptAnyVolume,
193                   pr->AutoPrune, pr->Recycle,
194                   edit_uint64(pr->VolRetention, ed1),
195                   pr->PoolType, pr->LabelFormat);
196    Dmsg1(500, "Create Pool: %s\n", mdb->cmd);
197    if (!INSERT_DB(mdb, mdb->cmd)) {
198       Mmsg2(&mdb->errmsg, _("Create db Pool record %s failed: ERR=%s\n"), 
199             mdb->cmd, sql_strerror(mdb));
200       pr->PoolId = 0;
201       stat = 0;
202    } else {
203       pr->PoolId = sql_insert_id(mdb);
204       stat = 1;
205    }
206    db_unlock(mdb);
207    
208    return stat;
209 }
210
211
212 /* 
213  * Create Unique Media record   
214  * Returns: 0 on failure
215  *          1 on success
216  */ 
217 int
218 db_create_media_record(B_DB *mdb, MEDIA_DBR *mr)
219 {
220    int stat;
221    char ed1[30], ed2[30], ed3[30];
222
223    db_lock(mdb);
224    Mmsg(&mdb->cmd, "SELECT MediaId FROM Media WHERE VolumeName='%s'", 
225            mr->VolumeName);
226    Dmsg1(110, "selectpool: %s\n", mdb->cmd);
227
228    if (QUERY_DB(mdb, mdb->cmd)) {
229       mdb->num_rows = sql_num_rows(mdb);
230       if (mdb->num_rows > 0) {
231          Mmsg1(&mdb->errmsg, _("Media record %s already exists\n"), mr->VolumeName);
232          sql_free_result(mdb);
233          db_unlock(mdb);
234          return 0;
235       }
236       sql_free_result(mdb);
237    }
238
239    /* Must create it */
240    Mmsg(&mdb->cmd, 
241 "INSERT INTO Media (VolumeName,MediaType,PoolId,VolMaxBytes,VolCapacityBytes, \
242 Recycle,VolRetention,VolStatus,Slot) VALUES ('%s', '%s', %d, %s, %s, %d, %s, '%s', %d)", 
243                   mr->VolumeName,
244                   mr->MediaType, mr->PoolId, 
245                   edit_uint64(mr->VolMaxBytes,ed1),
246                   edit_uint64(mr->VolCapacityBytes, ed2),
247                   mr->Recycle,
248                   edit_uint64(mr->VolRetention, ed3),
249                   mr->VolStatus,
250                   mr->Slot);
251
252    Dmsg1(500, "Create Volume: %s\n", mdb->cmd);
253    if (!INSERT_DB(mdb, mdb->cmd)) {
254       Mmsg2(&mdb->errmsg, _("Create DB Media record %s failed. ERR=%s\n"),
255             mdb->cmd, sql_strerror(mdb));
256       stat = 0;
257    } else {
258       mr->MediaId = sql_insert_id(mdb);
259       stat = 1;
260    }
261    db_unlock(mdb);
262    return stat;
263 }
264
265
266
267 /* 
268  * Create a Unique record for the client -- no duplicates 
269  * Returns: 0 on failure
270  *          1 on success with id in cr->ClientId
271  */
272 int db_create_client_record(B_DB *mdb, CLIENT_DBR *cr)
273 {
274    SQL_ROW row;
275    int stat;
276    char ed1[30], ed2[30];
277
278    db_lock(mdb);
279    Mmsg(&mdb->cmd, "SELECT ClientId,Uname FROM Client WHERE Name='%s'", cr->Name);
280
281    cr->ClientId = 0;
282    if (QUERY_DB(mdb, mdb->cmd)) {
283
284       mdb->num_rows = sql_num_rows(mdb);
285       
286       /* If more than one, report error, but return first row */
287       if (mdb->num_rows > 1) {
288          Mmsg1(&mdb->errmsg, _("More than one Client!: %d\n"), (int)(mdb->num_rows));
289          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
290       }
291       if (mdb->num_rows >= 1) {
292          if ((row = sql_fetch_row(mdb)) == NULL) {
293             Mmsg1(&mdb->errmsg, _("error fetching Client row: %s\n"), sql_strerror(mdb));
294             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
295             sql_free_result(mdb);
296             db_unlock(mdb);
297             return 0;
298          }
299          cr->ClientId = atoi(row[0]);
300          if (row[1]) {
301             strncpy(cr->Uname, row[1], sizeof(cr->Uname)-2);
302             cr->Uname[sizeof(cr->Uname)-1] = 0;
303          } else {
304             cr->Uname[0] = 0;         /* no name */
305          }
306          sql_free_result(mdb);
307          db_unlock(mdb);
308          return 1;
309       }
310       sql_free_result(mdb);
311    }
312
313    /* Must create it */
314    Mmsg(&mdb->cmd, "INSERT INTO Client (Name, Uname, AutoPrune, \
315 FileRetention, JobRetention) VALUES \
316 ('%s', '%s', %d, %s, %s)", cr->Name, cr->Uname, cr->AutoPrune,
317       edit_uint64(cr->FileRetention, ed1),
318       edit_uint64(cr->JobRetention, ed2));
319
320    if (!INSERT_DB(mdb, mdb->cmd)) {
321       Mmsg2(&mdb->errmsg, _("Create DB Client record %s failed. ERR=%s\n"),
322             mdb->cmd, sql_strerror(mdb));
323       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
324       cr->ClientId = 0;
325       stat = 0;
326    } else {
327       cr->ClientId = sql_insert_id(mdb);
328       stat = 1;
329    }
330    db_unlock(mdb);
331    return stat;
332 }
333
334
335 /* 
336  * Create a FileSet record. This record is unique in the
337  *  name and the MD5 signature of the include/exclude sets.
338  *  Returns: 0 on failure
339  *           1 on success with FileSetId in record
340  */
341 int db_create_fileset_record(B_DB *mdb, FILESET_DBR *fsr)
342 {
343    SQL_ROW row;
344    int stat;
345
346    db_lock(mdb);
347    Mmsg(&mdb->cmd, "SELECT FileSetId FROM FileSet WHERE \
348 FileSet='%s' and MD5='%s'", fsr->FileSet, fsr->MD5);
349
350    fsr->FileSetId = 0;
351    if (QUERY_DB(mdb, mdb->cmd)) {
352
353       mdb->num_rows = sql_num_rows(mdb);
354       
355       if (mdb->num_rows > 1) {
356          Mmsg1(&mdb->errmsg, _("More than one FileSet!: %d\n"), (int)(mdb->num_rows));
357          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
358       }
359       if (mdb->num_rows >= 1) {
360          if ((row = sql_fetch_row(mdb)) == NULL) {
361             Mmsg1(&mdb->errmsg, _("error fetching FileSet row: ERR=%s\n"), sql_strerror(mdb));
362             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
363             sql_free_result(mdb);
364             db_unlock(mdb);
365             return 0;
366          }
367          fsr->FileSetId = atoi(row[0]);
368          sql_free_result(mdb);
369          db_unlock(mdb);
370          return 1;
371       }
372       sql_free_result(mdb);
373    }
374
375    /* Must create it */
376    Mmsg(&mdb->cmd, "INSERT INTO FileSet (FileSet, MD5) VALUES \
377 ('%s', '%s')", fsr->FileSet, fsr->MD5);
378
379    if (!INSERT_DB(mdb, mdb->cmd)) {
380       Mmsg2(&mdb->errmsg, _("Create DB FileSet record %s failed. ERR=%s\n"),
381             mdb->cmd, sql_strerror(mdb));
382       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
383       fsr->FileSetId = 0;
384       stat = 0;
385    } else {
386       fsr->FileSetId = sql_insert_id(mdb);
387       stat = 1;
388    }
389
390    db_unlock(mdb);
391    return stat;
392 }
393
394
395 /*
396  *  struct stat
397  *  {
398  *      dev_t         st_dev;       * device *
399  *      ino_t         st_ino;       * inode *
400  *      mode_t        st_mode;      * protection *
401  *      nlink_t       st_nlink;     * number of hard links *
402  *      uid_t         st_uid;       * user ID of owner *
403  *      gid_t         st_gid;       * group ID of owner *
404  *      dev_t         st_rdev;      * device type (if inode device) *
405  *      off_t         st_size;      * total size, in bytes *
406  *      unsigned long st_blksize;   * blocksize for filesystem I/O *
407  *      unsigned long st_blocks;    * number of blocks allocated *
408  *      time_t        st_atime;     * time of last access *
409  *      time_t        st_mtime;     * time of last modification *
410  *      time_t        st_ctime;     * time of last inode change *            
411  *  };
412  */
413
414
415
416 /* 
417  * Create File record in B_DB   
418  *
419  *  In order to reduce database size, we store the File attributes,
420  *  the FileName, and the Path separately.  In principle, there   
421  *  is a single FileName record and a single Path record, no matter
422  *  how many times it occurs.  This is this subroutine, we separate
423  *  the file and the path and create three database records.
424  */
425 int db_create_file_attributes_record(B_DB *mdb, ATTR_DBR *ar)
426 {
427    int fnl, pnl;
428    char *l, *p;
429    /* ****FIXME***** malloc these */
430    char file[MAXSTRING];
431    char spath[MAXSTRING];
432    char buf[MAXSTRING];
433
434    Dmsg1(100, "Fname=%s\n", ar->fname);
435    Dmsg0(50, "put_file_into_catalog\n");
436    /* For the moment, we only handle Unix attributes.  Note, we are
437     * also getting any MD5 signature that was computed.
438     */
439    if (!(ar->Stream == STREAM_UNIX_ATTRIBUTES || ar->Stream == STREAM_WIN32_ATTRIBUTES)) {
440       Mmsg0(&mdb->errmsg, _("Attempt to put non-attributes into catalog\n"));
441       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
442       return 0;
443    }
444
445    /* Find path without the filename.  
446     * I.e. everything after the last / is a "filename".
447     * OK, maybe it is a directory name, but we treat it like
448     * a filename. If we don't find a / then the whole name
449     * must be a path name (e.g. c:).
450     */
451    for (p=l=ar->fname; *p; p++) {
452       if (*p == '/') {
453          l = p;                       /* set pos of last slash */
454       }
455    }
456    if (*l == '/') {                   /* did we find a slash? */
457       l++;                            /* yes, point to filename */
458    } else {                           /* no, whole thing must be path name */
459       l = p;
460    }
461
462    /* If filename doesn't exist (i.e. root directory), we
463     * simply create a blank name consisting of a single 
464     * space. This makes handling zero length filenames
465     * easier.
466     */
467    fnl = p - l;
468    if (fnl > 255) {
469       Jmsg(mdb->jcr, M_WARNING, 0, _("Filename truncated to 255 chars: %s\n"), l);
470       fnl = 255;
471    }
472    if (fnl > 0) {
473       strncpy(file, l, fnl);          /* copy filename */
474       file[fnl] = 0;
475    } else {
476       file[0] = ' ';                  /* blank filename */
477       file[1] = 0;
478       fnl = 1;
479    }
480
481    pnl = l - ar->fname;    
482    if (pnl > 255) {
483       Jmsg(mdb->jcr, M_WARNING, 0, _("Path name truncated to 255 chars: %s\n"), ar->fname);
484       pnl = 255;
485    }
486    strncpy(spath, ar->fname, pnl);
487    spath[pnl] = 0;
488
489    if (pnl == 0) {
490       Mmsg1(&mdb->errmsg, _("Path length is zero. File=%s\n"), ar->fname);
491       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
492       spath[0] = ' ';
493       spath[1] = 0;
494       pnl = 1;
495    }
496
497    Dmsg1(100, "spath=%s\n", spath);
498    Dmsg1(100, "file=%s\n", file);
499
500    db_escape_string(buf, file, fnl);
501
502    if (!db_create_filename_record(mdb, ar, buf)) {
503       return 0;
504    }
505    Dmsg1(100, "db_create_filename_record: %s\n", buf);
506
507    db_escape_string(buf, spath, pnl);
508
509    if (!db_create_path_record(mdb, ar, buf)) {
510       return 0;
511    }
512    Dmsg1(100, "db_create_path_record\n", buf);
513
514    if (!db_create_file_record(mdb, ar)) {
515       return 0;
516    }
517    Dmsg0(50, "db_create_file_record\n");
518
519    Dmsg3(100, "Path=%s File=%s FilenameId=%d\n", spath, file, ar->FilenameId);
520    return 1;
521 }
522
523 static int db_create_file_record(B_DB *mdb, ATTR_DBR *ar)
524 {
525    int stat;
526
527    ASSERT(ar->JobId);
528    ASSERT(ar->PathId);
529    ASSERT(ar->FilenameId);
530
531    db_lock(mdb);
532    /* Must create it */
533    Mmsg(&mdb->cmd,
534 "INSERT INTO File (FileIndex, JobId, PathId, FilenameId, \
535 LStat, MD5) VALUES (%u, %u, %u, %u, '%s', '0')", 
536       ar->FileIndex, ar->JobId, ar->PathId, ar->FilenameId, 
537       ar->attr);
538
539    if (!INSERT_DB(mdb, mdb->cmd)) {
540       Mmsg2(&mdb->errmsg, _("Create db File record %s failed. ERR=%s"),       
541          mdb->cmd, sql_strerror(mdb));
542       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
543       ar->FileId = 0;
544       stat = 0;
545    } else {
546       ar->FileId = sql_insert_id(mdb);
547       stat = 1;
548    }
549    db_unlock(mdb);
550    return stat;
551 }
552
553 /* Create a Unique record for the Path -- no duplicates */
554 static int db_create_path_record(B_DB *mdb, ATTR_DBR *ar, char *path)
555 {
556    SQL_ROW row;
557    int stat;
558
559    if (*path == 0) {
560       Mmsg0(&mdb->errmsg, _("Null path given to db_create_path_record\n"));
561       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
562       ar->PathId = 0;
563       ASSERT(ar->PathId);
564       return 0;
565    }
566
567    db_lock(mdb);
568
569    if (mdb->cached_path_id != 0 && strcmp(mdb->cached_path, path) == 0) {
570       ar->PathId = mdb->cached_path_id;
571       ASSERT(ar->PathId);
572       db_unlock(mdb);
573       return 1;
574    }          
575
576    Mmsg(&mdb->cmd, "SELECT PathId FROM Path WHERE Path='%s'", path);
577
578    if (QUERY_DB(mdb, mdb->cmd)) {
579
580       mdb->num_rows = sql_num_rows(mdb);
581
582       if (mdb->num_rows > 1) {
583          char ed1[30];
584          Mmsg2(&mdb->errmsg, _("More than one Path!: %s for Path=%s\n"), 
585             edit_uint64(mdb->num_rows, ed1), path);
586          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
587       }
588       if (mdb->num_rows >= 1) {
589          if ((row = sql_fetch_row(mdb)) == NULL) {
590             db_unlock(mdb);
591             Mmsg1(&mdb->errmsg, _("error fetching row: %s\n"), sql_strerror(mdb));
592             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
593             sql_free_result(mdb);
594             ar->PathId = 0;
595             ASSERT(ar->PathId);
596             return 0;
597          }
598          ar->PathId = atoi(row[0]);
599          sql_free_result(mdb);
600          /* Cache path */
601          if (ar->PathId != mdb->cached_path_id) {
602             mdb->cached_path_id = ar->PathId;
603             mdb->cached_path = check_pool_memory_size(mdb->cached_path,
604                strlen(path)+1);
605             strcpy(mdb->cached_path, path);
606          }
607          ASSERT(ar->PathId);
608          db_unlock(mdb);
609          return 1;
610       }
611
612       sql_free_result(mdb);
613    }
614
615    Mmsg(&mdb->cmd, "INSERT INTO Path (Path)  VALUES ('%s')", path);
616
617    if (!INSERT_DB(mdb, mdb->cmd)) {
618       Mmsg2(&mdb->errmsg, _("Create db Path record %s failed. ERR=%s\n"), 
619          mdb->cmd, sql_strerror(mdb));
620       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
621       ar->PathId = 0;
622       stat = 0;
623    } else {
624       ar->PathId = sql_insert_id(mdb);
625       stat = 1;
626    }
627
628    /* Cache path */
629    if (ar->PathId != mdb->cached_path_id) {
630       mdb->cached_path_id = ar->PathId;
631       mdb->cached_path = check_pool_memory_size(mdb->cached_path,
632          strlen(path)+1);
633       strcpy(mdb->cached_path, path);
634    }
635    ASSERT(ar->PathId);
636    db_unlock(mdb);
637    return stat;
638 }
639
640 /* Create a Unique record for the filename -- no duplicates */
641 static int db_create_filename_record(B_DB *mdb, ATTR_DBR *ar, char *fname) 
642 {
643    SQL_ROW row;
644
645    db_lock(mdb);
646    Mmsg(&mdb->cmd, "SELECT FilenameId FROM Filename WHERE Name='%s'", fname);
647
648    if (QUERY_DB(mdb, mdb->cmd)) {
649       mdb->num_rows = sql_num_rows(mdb);
650       if (mdb->num_rows > 1) {
651          Mmsg2(&mdb->errmsg, _("More than one Filename!: %d File=%s\n"), 
652             (int)(mdb->num_rows), fname);
653          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
654       }
655       if (mdb->num_rows >= 1) {
656          if ((row = sql_fetch_row(mdb)) == NULL) {
657             Mmsg2(&mdb->errmsg, _("error fetching row for file=%s: ERR=%s\n"), 
658                 fname, sql_strerror(mdb));
659             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
660             ar->FilenameId = 0;
661          } else {
662             ar->FilenameId = atoi(row[0]);
663          }
664          sql_free_result(mdb);
665          db_unlock(mdb);
666          return ar->FilenameId > 0;
667       }
668       sql_free_result(mdb);
669    }
670
671    Mmsg(&mdb->cmd, "INSERT INTO Filename (Name) \
672 VALUES ('%s')", fname);
673
674    if (!INSERT_DB(mdb, mdb->cmd)) {
675       Mmsg2(&mdb->errmsg, _("Create db Filename record %s failed. ERR=%s\n"), 
676             mdb->cmd, sql_strerror(mdb));
677       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
678       ar->FilenameId = 0;
679    } else {
680       ar->FilenameId = sql_insert_id(mdb);
681    }
682
683    db_unlock(mdb);
684    return ar->FilenameId > 0;
685 }
686
687 #endif /* HAVE_MYSQL || HAVE_SQLITE */