]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/sql_update.c
Add jcr to DB arguments
[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  *    Version $Id$
7  */
8
9 /*
10    Copyright (C) 2000-2003 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 /* 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, void *jcr, B_DB *db, char *update_cmd);
49
50 /* -----------------------------------------------------------------------
51  *
52  *   Generic Routines (or almost generic)
53  *
54  * -----------------------------------------------------------------------
55  */
56 /* Update the attributes record by adding the MD5 signature */
57 int
58 db_add_MD5_to_file_record(void *jcr, B_DB *mdb, FileId_t FileId, char *MD5)
59 {
60    int stat;
61
62    db_lock(mdb);
63    Mmsg(&mdb->cmd, "UPDATE File SET MD5='%s' WHERE FileId=%u", MD5, FileId);
64    stat = UPDATE_DB(jcr, mdb, mdb->cmd);
65    db_unlock(mdb);
66    return stat;
67 }
68
69 /* Mark the file record as being visited during database
70  * verify compare. Stuff JobId into MarkedId field
71  */
72 int db_mark_file_record(void *jcr, B_DB *mdb, FileId_t FileId, JobId_t JobId) 
73 {
74    int stat;
75
76    db_lock(mdb);
77    Mmsg(&mdb->cmd, "UPDATE File SET MarkId=%u WHERE FileId=%u", JobId, FileId);
78    stat = UPDATE_DB(jcr, mdb, mdb->cmd);
79    db_unlock(mdb);
80    return stat;
81 }
82
83 /*
84  * Update the Job record at end of Job
85  *
86  *  Returns: 0 on failure
87  *           1 on success
88  */
89 int
90 db_update_job_start_record(void *jcr, B_DB *mdb, JOB_DBR *jr)
91 {
92    char dt[MAX_TIME_LENGTH];
93    time_t stime;
94    struct tm tm;
95    btime_t JobTDate;
96    int stat;
97    char ed1[30];
98        
99    stime = jr->StartTime;
100    localtime_r(&stime, &tm);
101    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
102    JobTDate = (btime_t)stime;
103
104    db_lock(mdb);
105    Mmsg(&mdb->cmd, "UPDATE Job SET Level='%c', StartTime='%s', \
106 ClientId=%u, JobTDate=%s WHERE JobId=%u",
107       (char)(jr->Level), dt, jr->ClientId, edit_uint64(JobTDate, ed1), jr->JobId);
108    stat = UPDATE_DB(jcr, mdb, mdb->cmd);
109    db_unlock(mdb);
110    mdb->changes = 0;
111    return stat;
112 }
113
114
115
116 /*
117  * Update the Job record at end of Job
118  *
119  *  Returns: 0 on failure
120  *           1 on success
121  */
122 int
123 db_update_job_end_record(void *jcr, B_DB *mdb, JOB_DBR *jr)
124 {
125    char dt[MAX_TIME_LENGTH];
126    time_t ttime;
127    struct tm tm;
128    int stat;
129    char ed1[30], ed2[30];
130    btime_t JobTDate;
131        
132    ttime = jr->EndTime;
133    localtime_r(&ttime, &tm);
134    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
135    JobTDate = ttime;
136
137    db_lock(mdb);
138    Mmsg(&mdb->cmd,
139       "UPDATE Job SET JobStatus='%c', EndTime='%s', \
140 ClientId=%u, JobBytes=%s, JobFiles=%u, JobErrors=%u, VolSessionId=%u, \
141 VolSessionTime=%u, PoolId=%u, FileSetId=%u, JobTDate=%s WHERE JobId=%u",
142       (char)(jr->JobStatus), dt, jr->ClientId, edit_uint64(jr->JobBytes, ed1), 
143       jr->JobFiles, jr->JobErrors, jr->VolSessionId, jr->VolSessionTime, 
144       jr->PoolId, jr->FileSetId, edit_uint64(JobTDate, ed2), jr->JobId);
145
146    stat = UPDATE_DB(jcr, mdb, mdb->cmd);
147    db_unlock(mdb);
148    return stat;
149 }
150
151
152 int
153 db_update_pool_record(void *jcr, B_DB *mdb, POOL_DBR *pr)
154 {
155    int stat;
156    char ed1[50], ed2[50], ed3[50];
157
158    db_lock(mdb);
159    Mmsg(&mdb->cmd,
160 "UPDATE Pool SET NumVols=%d,MaxVols=%d,UseOnce=%d,UseCatalog=%d," 
161 "AcceptAnyVolume=%d,VolRetention='%s',VolUseDuration='%s',"
162 "MaxVolJobs=%u,MaxVolFiles=%u,MaxVolBytes=%s,Recycle=%d,"
163 "AutoPrune=%d,LabelFormat='%s' WHERE PoolId=%u",
164       pr->NumVols, pr->MaxVols, pr->UseOnce, pr->UseCatalog,
165       pr->AcceptAnyVolume, edit_uint64(pr->VolRetention, ed1),
166       edit_uint64(pr->VolUseDuration, ed2),
167       pr->MaxVolJobs, pr->MaxVolFiles,
168       edit_uint64(pr->MaxVolBytes, ed3),
169       pr->Recycle, pr->AutoPrune,
170       pr->LabelFormat, pr->PoolId);
171
172    stat = UPDATE_DB(jcr, mdb, mdb->cmd);
173    db_unlock(mdb);
174    return stat;
175 }
176
177 /* 
178  * Update the Media Record at end of Session
179  *
180  * Returns: 0 on failure
181  *          numrows on success
182  */
183 int
184 db_update_media_record(void *jcr, B_DB *mdb, MEDIA_DBR *mr) 
185 {
186    char dt[MAX_TIME_LENGTH];
187    time_t ttime;
188    struct tm tm;
189    int stat;
190    char ed1[30], ed2[30];
191        
192
193    Dmsg1(100, "update_media: FirstWritten=%d\n", mr->FirstWritten);
194    db_lock(mdb);
195    if (mr->VolJobs == 1) {
196       Dmsg1(400, "Set FirstWritten Vol=%s\n", mr->VolumeName);
197       ttime = mr->FirstWritten;
198       localtime_r(&ttime, &tm);
199       strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
200       Mmsg(&mdb->cmd, "UPDATE Media SET FirstWritten='%s'\
201  WHERE VolumeName='%s'", dt, mr->VolumeName);
202       stat = UPDATE_DB(jcr, mdb, mdb->cmd);
203       Dmsg1(400, "Firstwritten stat=%d\n", stat);
204    }
205
206    ttime = mr->LastWritten;
207    localtime_r(&ttime, &tm);
208    strftime(dt, sizeof(dt), "%Y-%m-%d %T", &tm);
209
210    Mmsg(&mdb->cmd, "UPDATE Media SET VolJobs=%u,\
211  VolFiles=%u,VolBlocks=%u,VolBytes=%s,VolMounts=%u,VolErrors=%u,\
212  VolWrites=%u,MaxVolBytes=%s,LastWritten='%s',VolStatus='%s',\
213  Slot=%d WHERE VolumeName='%s'",
214    mr->VolJobs, mr->VolFiles, mr->VolBlocks, edit_uint64(mr->VolBytes, ed1),
215    mr->VolMounts, mr->VolErrors, mr->VolWrites, 
216    edit_uint64(mr->MaxVolBytes, ed2), dt, 
217    mr->VolStatus, mr->Slot, mr->VolumeName);
218
219    Dmsg1(400, "%s\n", mdb->cmd);
220
221    stat = UPDATE_DB(jcr, mdb, mdb->cmd);
222    db_unlock(mdb);
223    return stat;
224 }
225
226 #endif /* HAVE_MYSQL || HAVE_SQLITE */