]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/sql_update.c
1.19 24Apr02
[bacula/bacula] / bacula / src / cats / sql_update.c
1 /*
2  * Bacula Catalog Database Update record interface routines
3  * 
4  *    Kern Sibbald, March 2000
5  */
6
7 /*
8    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2 of
13    the License, or (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public
21    License along with this program; if not, write to the Free
22    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23    MA 02111-1307, USA.
24
25  */
26
27 /* *****FIXME**** fix fixed length of select_cmd[] and insert_cmd[] */
28
29 /* The following is necessary so that we do not include
30  * the dummy external definition of DB.
31  */
32 #define __SQL_C                       /* indicate that this is sql.c */
33
34 #include "bacula.h"
35 #include "cats.h"
36
37 #if    HAVE_MYSQL || HAVE_SQLITE
38
39 /* -----------------------------------------------------------------------
40  *
41  *   Generic Routines (or almost generic)
42  *
43  * -----------------------------------------------------------------------
44  */
45
46 /* Imported subroutines */
47 extern void print_result(B_DB *mdb);
48 extern int UpdateDB(char *file, int line, B_DB *db, char *update_cmd);
49
50 static int do_update(B_DB *mdb, char *cmd)
51 {
52    int stat;
53
54    stat = UPDATE_DB(mdb, cmd);
55    return stat;
56 }
57
58 /* -----------------------------------------------------------------------
59  *
60  *   Generic Routines (or almost generic)
61  *
62  * -----------------------------------------------------------------------
63  */
64 /* Update the attributes record by adding the MD5 signature */
65 int
66 db_add_MD5_to_file_record(B_DB *mdb, FileId_t FileId, char *MD5)
67 {
68    int stat;
69
70    P(mdb->mutex);
71    Mmsg(&mdb->cmd, "UPDATE File SET MD5=\"%s\" WHERE FileId=%d", MD5, FileId);
72    stat = UPDATE_DB(mdb, mdb->cmd);
73    V(mdb->mutex);
74    return stat;
75 }
76
77 /* Mark the file record as being visited during database
78  * verify compare. Stuff JobId into FileIndex field
79  */
80 int db_mark_file_record(B_DB *mdb, FileId_t FileId, int JobId) 
81 {
82    int stat;
83
84    P(mdb->mutex);
85    Mmsg(&mdb->cmd, "UPDATE File SET FileIndex=%d WHERE FileId=%d", JobId, FileId);
86    stat = UPDATE_DB(mdb, mdb->cmd);
87    V(mdb->mutex);
88    return stat;
89 }
90
91 /*
92  * Update the Job record at end of Job
93  *
94  *  Returns: 0 on failure
95  *           1 on success
96  */
97 int
98 db_update_job_start_record(B_DB *mdb, JOB_DBR *jr)
99 {
100    char dt[MAX_TIME_LENGTH];
101    time_t stime;
102    struct tm tm;
103    int32_t StartDay;
104    int stat;
105        
106    stime = jr->StartTime;
107    localtime_r(&stime, &tm);
108    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
109    StartDay = (int32_t)(date_encode(tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday) -
110        date_encode(2000, 1, 1));
111
112    P(mdb->mutex);
113    Mmsg(&mdb->cmd, "UPDATE Job SET Level='%c', StartTime=\"%s\", \
114 ClientId=%d, StartDay=%d WHERE JobId=%d",
115       (char)(jr->Level), dt, jr->ClientId, StartDay, jr->JobId);
116    stat = UPDATE_DB(mdb, mdb->cmd);
117    V(mdb->mutex);
118    return stat;
119 }
120
121
122
123 /*
124  * Update the Job record at end of Job
125  *
126  *  Returns: 0 on failure
127  *           1 on success
128  */
129 int
130 db_update_job_end_record(B_DB *mdb, JOB_DBR *jr)
131 {
132    char dt[MAX_TIME_LENGTH];
133    time_t ttime;
134    struct tm tm;
135    int stat;
136        
137    ttime = jr->EndTime;
138    localtime_r(&ttime, &tm);
139    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
140
141    P(mdb->mutex);
142    Mmsg(&mdb->cmd,
143       "UPDATE Job SET JobStatus='%c', EndTime='%s', \
144 ClientId=%d, JobBytes=%" lld ", JobFiles=%d, JobErrors=%d, VolSessionId=%d, \
145 VolSessionTime=%d, PoolId=%d, FileSetId=%d WHERE JobId=%d",
146       (char)(jr->JobStatus), dt, jr->ClientId, jr->JobBytes, jr->JobFiles,
147       jr->JobErrors, jr->VolSessionId, jr->VolSessionTime, 
148       jr->PoolId, jr->FileSetId, jr->JobId);
149
150    stat = UPDATE_DB(mdb, mdb->cmd);
151    V(mdb->mutex);
152    return stat;
153 }
154
155
156 int
157 db_update_pool_record(B_DB *mdb, POOL_DBR *pr)
158 {
159    int stat;
160
161    P(mdb->mutex);
162    Mmsg(&mdb->cmd,
163 "UPDATE Pool SET NumVols=%d, MaxVols=%d, UseOnce=%d, UseCatalog=%d, \
164 AcceptAnyVolume=%d, LabelFormat=\"%s\" WHERE PoolId=%d",
165       pr->NumVols, pr->MaxVols, pr->UseOnce, pr->UseCatalog,
166       pr->AcceptAnyVolume, pr->LabelFormat, pr->PoolId);
167
168    stat = UPDATE_DB(mdb, mdb->cmd);
169    V(mdb->mutex);
170    return stat;
171 }
172
173 /* 
174  * Update the Media Record at end of Session
175  *
176  * Returns: 0 on failure
177  *          numrows on success
178  */
179 int
180 db_update_media_record(B_DB *mdb, MEDIA_DBR *mr) 
181 {
182    char dt[MAX_TIME_LENGTH];
183    time_t ttime;
184    struct tm tm;
185    int stat;
186        
187    ttime = mr->LastWritten;
188    localtime_r(&ttime, &tm);
189    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
190
191    P(mdb->mutex);
192    if (mr->VolMounts == 1) {
193       Mmsg(&mdb->cmd, "UPDATE Media SET FirstWritten=\"%s\" WHERE \
194          VolumeName=\"%s\"", dt, mr->VolumeName);
195       if (do_update(mdb, mdb->cmd) == 0) {
196          V(mdb->mutex);
197          return 0;
198       }
199    }
200
201    Mmsg(&mdb->cmd, "UPDATE Media SET VolJobs=%d,\
202  VolFiles=%d, VolBlocks=%d, VolBytes=%" lld ", VolMounts=%d, VolErrors=%d,\
203  VolWrites=%d, VolMaxBytes=%" lld ", LastWritten=\"%s\", VolStatus=\"%s\" \
204  WHERE VolumeName=\"%s\"",
205    mr->VolJobs, mr->VolFiles, mr->VolBlocks, mr->VolBytes, mr->VolMounts,
206    mr->VolErrors, mr->VolWrites, mr->VolMaxBytes, dt, mr->VolStatus,
207    mr->VolumeName);
208
209    stat = UPDATE_DB(mdb, mdb->cmd);
210    V(mdb->mutex);
211    return stat;
212 }
213
214 #endif /* HAVE_MYSQL || HAVE_SQLITE */