]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/cats.c
eed774c71c96451efd88a5ec287c229649dfcf38
[bacula/bacula] / bacula / src / cats / cats.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2011-2011 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24
25    The licensor of Bacula is the Free Software Foundation Europe
26    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
27    Switzerland, email:ftf@fsfeurope.org.
28 */
29 /*
30  * Generic catalog class methods.
31  *
32  * Written by Marco van Wieringen, January 2011
33  */
34
35 #include "bacula.h"
36
37 #if HAVE_SQLITE3 || HAVE_MYSQL || HAVE_POSTGRESQL || HAVE_INGRES || HAVE_DBI
38
39 #include "cats.h"
40 #include "bdb_priv.h"
41 #include "sql_glue.h"
42
43 bool B_DB::db_match_database(const char *db_driver, const char *db_name,
44                              const char *db_address, int db_port)
45 {
46    bool match;
47
48    if (db_driver) {
49       match = strcasecmp(m_db_driver, db_driver) == 0 &&
50               bstrcmp(m_db_name, db_name) &&
51               bstrcmp(m_db_address, db_address) &&
52               m_db_port == db_port;
53    } else {
54       match = bstrcmp(m_db_name, db_name) &&
55               bstrcmp(m_db_address, db_address) &&
56               m_db_port == db_port;
57    }
58    return match;
59 }
60
61 B_DB *B_DB::db_clone_database_connection(JCR *jcr, bool mult_db_connections)
62 {
63    /*
64     * See if its a simple clone e.g. with mult_db_connections set to false
65     * then we just return the calling class pointer.
66     */
67    if (!mult_db_connections) {
68       m_ref_count++;
69       return this;
70    }
71
72    /*
73     * A bit more to do here just open a new session to the database.
74     */
75    return db_init_database(jcr, m_db_driver, m_db_name, m_db_user, m_db_password,
76                            m_db_address, m_db_port, m_db_socket, true, m_disabled_batch_insert);
77 }
78
79 const char *B_DB::db_get_type(void)
80 {
81    switch (m_db_interface_type) {
82    case SQL_INTERFACE_TYPE_MYSQL:
83       return "MySQL";
84    case SQL_INTERFACE_TYPE_POSTGRESQL:
85       return "PostgreSQL";
86    case SQL_INTERFACE_TYPE_SQLITE3:
87       return "SQLite3";
88    case SQL_INTERFACE_TYPE_INGRES:
89       return "Ingres";
90    case SQL_INTERFACE_TYPE_DBI:
91       switch (m_db_type) {
92       case SQL_TYPE_MYSQL:
93          return "DBI:MySQL";
94       case SQL_TYPE_POSTGRESQL:
95          return "DBI:PostgreSQL";
96       case SQL_TYPE_SQLITE3:
97          return "DBI:SQLite3";
98       case SQL_TYPE_INGRES:
99          return "DBI:Ingres";
100       default:
101          return "DBI:Unknown";
102       }
103    default:
104       return "Unknown";
105    }
106 }
107
108 /*
109  * Lock database, this can be called multiple times by the same
110  * thread without blocking, but must be unlocked the number of
111  * times it was locked using db_unlock().
112  */
113 void B_DB::_db_lock(const char *file, int line)
114 {
115    int errstat;
116
117    if ((errstat = rwl_writelock_p(&m_lock, file, line)) != 0) {
118       berrno be;
119       e_msg(file, line, M_FATAL, 0, "rwl_writelock failure. stat=%d: ERR=%s\n",
120             errstat, be.bstrerror(errstat));
121    }
122 }
123
124 /*
125  * Unlock the database. This can be called multiple times by the
126  * same thread up to the number of times that thread called
127  * db_lock()/
128  */
129 void B_DB::_db_unlock(const char *file, int line)
130 {
131    int errstat;
132
133    if ((errstat = rwl_writeunlock(&m_lock)) != 0) {
134       berrno be;
135       e_msg(file, line, M_FATAL, 0, "rwl_writeunlock failure. stat=%d: ERR=%s\n",
136             errstat, be.bstrerror(errstat));
137    }
138 }
139
140 bool B_DB::db_sql_query(const char *query, int flags)
141 {
142    bool retval;
143
144    db_lock(this);
145    retval = ((B_DB_PRIV *)this)->sql_query(query, flags);
146    if (!retval) {
147       Mmsg(errmsg, _("Query failed: %s: ERR=%s\n"), query, ((B_DB_PRIV *)this)->sql_strerror());
148    }
149    db_unlock(this);
150    return retval;
151 }
152
153 void B_DB::print_lock_info(FILE *fp)
154 {
155    if (m_lock.valid == RWLOCK_VALID) {
156       fprintf(fp, "\tRWLOCK=%p w_active=%i w_wait=%i\n", &m_lock, m_lock.w_active, m_lock.w_wait);
157    }
158 }
159
160 #endif /* HAVE_SQLITE3 || HAVE_MYSQL || HAVE_POSTGRESQL || HAVE_INGRES || HAVE_DBI */