]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/sql_create.c
19b002781fb4a9982300e5dcf1cc003b9dcc027d
[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 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          sql_free_result(mdb);
301          db_unlock(mdb);
302          return 1;
303       }
304       sql_free_result(mdb);
305    }
306
307    /* Must create it */
308    Mmsg(&mdb->cmd, "INSERT INTO Client (Name, Uname, AutoPrune, \
309 FileRetention, JobRetention) VALUES \
310 ('%s', '%s', %d, %s, %s)", cr->Name, cr->Uname, cr->AutoPrune,
311       edit_uint64(cr->FileRetention, ed1),
312       edit_uint64(cr->JobRetention, ed2));
313
314    if (!INSERT_DB(mdb, mdb->cmd)) {
315       Mmsg2(&mdb->errmsg, _("Create DB Client record %s failed. ERR=%s\n"),
316             mdb->cmd, sql_strerror(mdb));
317       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
318       cr->ClientId = 0;
319       stat = 0;
320    } else {
321       cr->ClientId = sql_insert_id(mdb);
322       stat = 1;
323    }
324    db_unlock(mdb);
325    return stat;
326 }
327
328
329 /* 
330  * Create a FileSet record. This record is unique in the
331  *  name and the MD5 signature of the include/exclude sets.
332  *  Returns: 0 on failure
333  *           1 on success with FileSetId in record
334  */
335 int db_create_fileset_record(B_DB *mdb, FILESET_DBR *fsr)
336 {
337    SQL_ROW row;
338    int stat;
339
340    db_lock(mdb);
341    Mmsg(&mdb->cmd, "SELECT FileSetId FROM FileSet WHERE \
342 FileSet='%s' and MD5='%s'", fsr->FileSet, fsr->MD5);
343
344    fsr->FileSetId = 0;
345    if (QUERY_DB(mdb, mdb->cmd)) {
346
347       mdb->num_rows = sql_num_rows(mdb);
348       
349       if (mdb->num_rows > 1) {
350          Mmsg1(&mdb->errmsg, _("More than one FileSet!: %d\n"), (int)(mdb->num_rows));
351          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
352       }
353       if (mdb->num_rows >= 1) {
354          if ((row = sql_fetch_row(mdb)) == NULL) {
355             Mmsg1(&mdb->errmsg, _("error fetching FileSet row: ERR=%s\n"), sql_strerror(mdb));
356             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
357             sql_free_result(mdb);
358             db_unlock(mdb);
359             return 0;
360          }
361          fsr->FileSetId = atoi(row[0]);
362          sql_free_result(mdb);
363          db_unlock(mdb);
364          return 1;
365       }
366       sql_free_result(mdb);
367    }
368
369    /* Must create it */
370    Mmsg(&mdb->cmd, "INSERT INTO FileSet (FileSet, MD5) VALUES \
371 ('%s', '%s')", fsr->FileSet, fsr->MD5);
372
373    if (!INSERT_DB(mdb, mdb->cmd)) {
374       Mmsg2(&mdb->errmsg, _("Create DB FileSet record %s failed. ERR=%s\n"),
375             mdb->cmd, sql_strerror(mdb));
376       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
377       fsr->FileSetId = 0;
378       stat = 0;
379    } else {
380       fsr->FileSetId = sql_insert_id(mdb);
381       stat = 1;
382    }
383
384    db_unlock(mdb);
385    return stat;
386 }
387
388
389 /*
390  *  struct stat
391  *  {
392  *      dev_t         st_dev;       * device *
393  *      ino_t         st_ino;       * inode *
394  *      mode_t        st_mode;      * protection *
395  *      nlink_t       st_nlink;     * number of hard links *
396  *      uid_t         st_uid;       * user ID of owner *
397  *      gid_t         st_gid;       * group ID of owner *
398  *      dev_t         st_rdev;      * device type (if inode device) *
399  *      off_t         st_size;      * total size, in bytes *
400  *      unsigned long st_blksize;   * blocksize for filesystem I/O *
401  *      unsigned long st_blocks;    * number of blocks allocated *
402  *      time_t        st_atime;     * time of last access *
403  *      time_t        st_mtime;     * time of last modification *
404  *      time_t        st_ctime;     * time of last inode change *            
405  *  };
406  */
407
408
409
410 /* 
411  * Create File record in B_DB   
412  *
413  *  In order to reduce database size, we store the File attributes,
414  *  the FileName, and the Path separately.  In principle, there   
415  *  is a single FileName record and a single Path record, no matter
416  *  how many times it occurs.  This is this subroutine, we separate
417  *  the file and the path and create three database records.
418  */
419 int db_create_file_attributes_record(B_DB *mdb, ATTR_DBR *ar)
420 {
421    int fnl, pnl;
422    char *l, *p;
423    /* ****FIXME***** malloc these */
424    char file[MAXSTRING];
425    char spath[MAXSTRING];
426    char buf[MAXSTRING];
427
428    Dmsg1(100, "Fname=%s\n", ar->fname);
429    Dmsg0(50, "put_file_into_catalog\n");
430    /* For the moment, we only handle Unix attributes.  Note, we are
431     * also getting any MD5 signature that was computed.
432     */
433    if (!(ar->Stream == STREAM_UNIX_ATTRIBUTES || ar->Stream == STREAM_WIN32_ATTRIBUTES)) {
434       Mmsg0(&mdb->errmsg, _("Attempt to put non-attributes into catalog\n"));
435       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
436       return 0;
437    }
438
439    /* Find path without the filename.  
440     * I.e. everything after the last / is a "filename".
441     * OK, maybe it is a directory name, but we treat it like
442     * a filename. If we don't find a / then the whole name
443     * must be a path name (e.g. c:).
444     */
445    for (p=l=ar->fname; *p; p++) {
446       if (*p == '/') {
447          l = p;                       /* set pos of last slash */
448       }
449    }
450    if (*l == '/') {                   /* did we find a slash? */
451       l++;                            /* yes, point to filename */
452    } else {                           /* no, whole thing must be path name */
453       l = p;
454    }
455
456    /* If filename doesn't exist (i.e. root directory), we
457     * simply create a blank name consisting of a single 
458     * space. This makes handling zero length filenames
459     * easier.
460     */
461    fnl = p - l;
462    if (fnl > 255) {
463       Jmsg(mdb->jcr, M_WARNING, 0, _("Filename truncated to 255 chars: %s\n"), l);
464       fnl = 255;
465    }
466    if (fnl > 0) {
467       strncpy(file, l, fnl);          /* copy filename */
468       file[fnl] = 0;
469    } else {
470       file[0] = ' ';                  /* blank filename */
471       file[1] = 0;
472       fnl = 1;
473    }
474
475    pnl = l - ar->fname;    
476    if (pnl > 255) {
477       Jmsg(mdb->jcr, M_WARNING, 0, _("Path name truncated to 255 chars: %s\n"), ar->fname);
478       pnl = 255;
479    }
480    strncpy(spath, ar->fname, pnl);
481    spath[pnl] = 0;
482
483    if (pnl == 0) {
484       Mmsg1(&mdb->errmsg, _("Path length is zero. File=%s\n"), ar->fname);
485       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
486       spath[0] = ' ';
487       spath[1] = 0;
488       pnl = 1;
489    }
490
491    Dmsg1(100, "spath=%s\n", spath);
492    Dmsg1(100, "file=%s\n", file);
493
494    db_escape_string(buf, file, fnl);
495
496    if (!db_create_filename_record(mdb, ar, buf)) {
497       return 0;
498    }
499    Dmsg1(100, "db_create_filename_record: %s\n", buf);
500
501    db_escape_string(buf, spath, pnl);
502
503    if (!db_create_path_record(mdb, ar, buf)) {
504       return 0;
505    }
506    Dmsg1(100, "db_create_path_record\n", buf);
507
508    if (!db_create_file_record(mdb, ar)) {
509       return 0;
510    }
511    Dmsg0(50, "db_create_file_record\n");
512
513    Dmsg3(100, "Path=%s File=%s FilenameId=%d\n", spath, file, ar->FilenameId);
514    return 1;
515 }
516
517 static int db_create_file_record(B_DB *mdb, ATTR_DBR *ar)
518 {
519    int stat;
520
521    ASSERT(ar->JobId);
522    ASSERT(ar->PathId);
523    ASSERT(ar->FilenameId);
524
525    db_lock(mdb);
526    /* Must create it */
527    Mmsg(&mdb->cmd,
528 "INSERT INTO File (FileIndex, JobId, PathId, FilenameId, \
529 LStat, MD5) VALUES (%u, %u, %u, %u, '%s', '0')", 
530       ar->FileIndex, ar->JobId, ar->PathId, ar->FilenameId, 
531       ar->attr);
532
533    if (!INSERT_DB(mdb, mdb->cmd)) {
534       Mmsg2(&mdb->errmsg, _("Create db File record %s failed. ERR=%s"),       
535          mdb->cmd, sql_strerror(mdb));
536       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
537       ar->FileId = 0;
538       stat = 0;
539    } else {
540       ar->FileId = sql_insert_id(mdb);
541       stat = 1;
542    }
543    db_unlock(mdb);
544    return stat;
545 }
546
547 /* Create a Unique record for the Path -- no duplicates */
548 static int db_create_path_record(B_DB *mdb, ATTR_DBR *ar, char *path)
549 {
550    SQL_ROW row;
551    int stat;
552
553    if (*path == 0) {
554       Mmsg0(&mdb->errmsg, _("Null path given to db_create_path_record\n"));
555       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
556       ar->PathId = 0;
557       ASSERT(ar->PathId);
558       return 0;
559    }
560
561    db_lock(mdb);
562
563    if (mdb->cached_path_id != 0 && strcmp(mdb->cached_path, path) == 0) {
564       ar->PathId = mdb->cached_path_id;
565       ASSERT(ar->PathId);
566       db_unlock(mdb);
567       return 1;
568    }          
569
570    Mmsg(&mdb->cmd, "SELECT PathId FROM Path WHERE Path='%s'", path);
571
572    if (QUERY_DB(mdb, mdb->cmd)) {
573
574       mdb->num_rows = sql_num_rows(mdb);
575
576       if (mdb->num_rows > 1) {
577          char ed1[30];
578          Mmsg2(&mdb->errmsg, _("More than one Path!: %s for Path=%s\n"), 
579             edit_uint64(mdb->num_rows, ed1), path);
580          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
581       }
582       if (mdb->num_rows >= 1) {
583          if ((row = sql_fetch_row(mdb)) == NULL) {
584             db_unlock(mdb);
585             Mmsg1(&mdb->errmsg, _("error fetching row: %s\n"), sql_strerror(mdb));
586             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
587             sql_free_result(mdb);
588             ar->PathId = 0;
589             ASSERT(ar->PathId);
590             return 0;
591          }
592          ar->PathId = atoi(row[0]);
593          sql_free_result(mdb);
594          /* Cache path */
595          if (ar->PathId != mdb->cached_path_id) {
596             mdb->cached_path_id = ar->PathId;
597             mdb->cached_path = check_pool_memory_size(mdb->cached_path,
598                strlen(path)+1);
599             strcpy(mdb->cached_path, path);
600          }
601          ASSERT(ar->PathId);
602          db_unlock(mdb);
603          return 1;
604       }
605
606       sql_free_result(mdb);
607    }
608
609    Mmsg(&mdb->cmd, "INSERT INTO Path (Path)  VALUES ('%s')", path);
610
611    if (!INSERT_DB(mdb, mdb->cmd)) {
612       Mmsg2(&mdb->errmsg, _("Create db Path record %s failed. ERR=%s\n"), 
613          mdb->cmd, sql_strerror(mdb));
614       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
615       ar->PathId = 0;
616       stat = 0;
617    } else {
618       ar->PathId = sql_insert_id(mdb);
619       stat = 1;
620    }
621
622    /* Cache path */
623    if (ar->PathId != mdb->cached_path_id) {
624       mdb->cached_path_id = ar->PathId;
625       mdb->cached_path = check_pool_memory_size(mdb->cached_path,
626          strlen(path)+1);
627       strcpy(mdb->cached_path, path);
628    }
629    ASSERT(ar->PathId);
630    db_unlock(mdb);
631    return stat;
632 }
633
634 /* Create a Unique record for the filename -- no duplicates */
635 static int db_create_filename_record(B_DB *mdb, ATTR_DBR *ar, char *fname) 
636 {
637    SQL_ROW row;
638
639    db_lock(mdb);
640    Mmsg(&mdb->cmd, "SELECT FilenameId FROM Filename WHERE Name='%s'", fname);
641
642    if (QUERY_DB(mdb, mdb->cmd)) {
643       mdb->num_rows = sql_num_rows(mdb);
644       if (mdb->num_rows > 1) {
645          Mmsg2(&mdb->errmsg, _("More than one Filename!: %d File=%s\n"), 
646             (int)(mdb->num_rows), fname);
647          Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
648       }
649       if (mdb->num_rows >= 1) {
650          if ((row = sql_fetch_row(mdb)) == NULL) {
651             Mmsg2(&mdb->errmsg, _("error fetching row for file=%s: ERR=%s\n"), 
652                 fname, sql_strerror(mdb));
653             Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
654             ar->FilenameId = 0;
655          } else {
656             ar->FilenameId = atoi(row[0]);
657          }
658          sql_free_result(mdb);
659          db_unlock(mdb);
660          return ar->FilenameId > 0;
661       }
662       sql_free_result(mdb);
663    }
664
665    Mmsg(&mdb->cmd, "INSERT INTO Filename (Name) \
666 VALUES ('%s')", fname);
667
668    if (!INSERT_DB(mdb, mdb->cmd)) {
669       Mmsg2(&mdb->errmsg, _("Create db Filename record %s failed. ERR=%s\n"), 
670             mdb->cmd, sql_strerror(mdb));
671       Jmsg(mdb->jcr, M_ERROR, 0, "%s", mdb->errmsg);
672       ar->FilenameId = 0;
673    } else {
674       ar->FilenameId = sql_insert_id(mdb);
675    }
676
677    db_unlock(mdb);
678    return ar->FilenameId > 0;
679 }
680
681 #endif /* HAVE_MYSQL || HAVE_SQLITE */