2 * Bacula Catalog Database Create record routines
4 * Bacula Catalog Database routines written specifically
5 * for Bacula. Note, these routines are VERY dumb and
6 * do not provide all the functionality of an SQL database.
7 * The purpose of these routines is to ensure that Bacula
8 * can limp along if no real database is loaded on the
11 * Kern Sibbald, January MMI
16 Bacula® - The Network Backup Solution
18 Copyright (C) 2001-2006 Free Software Foundation Europe e.V.
20 The main author of Bacula is Kern Sibbald, with contributions from
21 many others, a complete list can be found in the file AUTHORS.
22 This program is Free Software; you can redistribute it and/or
23 modify it under the terms of version two of the GNU General Public
24 License as published by the Free Software Foundation and included
27 This program is distributed in the hope that it will be useful, but
28 WITHOUT ANY WARRANTY; without even the implied warranty of
29 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
30 General Public License for more details.
32 You should have received a copy of the GNU General Public License
33 along with this program; if not, write to the Free Software
34 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
37 Bacula® is a registered trademark of Kern Sibbald.
38 The licensor of Bacula is the Free Software Foundation Europe
39 (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
40 Switzerland, email:ftf@fsfeurope.org.
44 /* The following is necessary so that we do not include
45 * the dummy external definition of DB.
47 #define __SQL_C /* indicate that this is sql.c */
55 /* Forward referenced functions */
56 bool db_create_pool_record(B_DB *mdb, POOL_DBR *pr);
58 /* -----------------------------------------------------------------------
60 * Bacula specific defines and subroutines
62 * -----------------------------------------------------------------------
65 bool db_create_file_attributes_record(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
70 int db_create_file_item(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
77 * Create a new record for the Job
78 * This record is created at the start of the Job,
79 * it is updated in bdb_update.c when the Job terminates.
81 * Returns: 0 on failure
84 bool db_create_job_record(JCR *jcr, B_DB *mdb, JOB_DBR *jr)
89 /* Create a JobMedia record for Volume used this job
90 * Returns: 0 on failure
91 * record-id on success
93 bool db_create_jobmedia_record(JCR *jcr, B_DB *mdb, JOBMEDIA_DBR *jm)
100 * Create a unique Pool record
101 * Returns: 0 on failure
104 bool db_create_pool_record(JCR *jcr, B_DB *mdb, POOL_DBR *pr)
109 bool db_create_device_record(JCR *jcr, B_DB *mdb, DEVICE_DBR *dr)
112 bool db_create_storage_record(JCR *jcr, B_DB *mdb, STORAGE_DBR *dr)
115 bool db_create_mediatype_record(JCR *jcr, B_DB *mdb, MEDIATYPE_DBR *dr)
120 * Create Unique Media record. This record
121 * contains all the data pertaining to a specific
124 * Returns: 0 on failure
127 int db_create_media_record(JCR *jcr, B_DB *mdb, MEDIA_DBR *mr)
134 * Create a unique Client record or return existing record
135 * Returns: 0 on failure
138 int db_create_client_record(JCR *jcr, B_DB *mdb, CLIENT_DBR *cr)
144 * Create a unique FileSet record or return existing record
146 * Note, here we write the FILESET_DBR structure
148 * Returns: 0 on failure
151 bool db_create_fileset_record(JCR *jcr, B_DB *mdb, FILESET_DBR *fsr)
156 int db_create_counter_record(JCR *jcr, B_DB *mdb, COUNTER_DBR *cr)
159 bool db_write_batch_file_records(JCR *jcr) { return false; }
160 bool my_batch_start(JCR *jcr, B_DB *mdb) { return false; }
161 bool my_batch_end(JCR *jcr, B_DB *mdb, const char *error) { return false; }
162 bool my_batch_insert(JCR *jcr, B_DB *mdb, ATTR_DBR *ar) { return false; }
165 #endif /* HAVE_BACULA_DB */