]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/bdb_mysql.h
Backport of class based catalog backends into Branch-5.1.
[bacula/bacula] / bacula / src / cats / bdb_mysql.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2009-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 #ifndef __BDB_MYSQL_H_
30 #define __BDB_MYSQL_H_ 1
31
32 class B_DB_MYSQL: public B_DB_PRIV {
33 private:
34    MYSQL *m_db_handle;
35    MYSQL m_instance;
36    MYSQL_RES *m_result;
37
38 public:
39    B_DB_MYSQL(JCR *jcr, const char *db_driver, const char *db_name,
40               const char *db_user, const char *db_password,
41               const char *db_address, int db_port, const char *db_socket,
42               bool mult_db_connections, bool disable_batch_insert);
43    ~B_DB_MYSQL();
44
45    /* low level operations */
46    bool db_open_database(JCR *jcr);
47    void db_close_database(JCR *jcr);
48    void db_thread_cleanup(void);
49    void db_escape_string(JCR *jcr, char *snew, char *old, int len);
50    char *db_escape_object(JCR *jcr, char *old, int len);
51    void db_unescape_object(JCR *jcr, char *from, int32_t expected_len,
52                            POOLMEM **dest, int32_t *len);
53    void db_start_transaction(JCR *jcr);
54    void db_end_transaction(JCR *jcr);
55    bool db_sql_query(const char *query, DB_RESULT_HANDLER *result_handler, void *ctx);
56    void sql_free_result(void);
57    SQL_ROW sql_fetch_row(void);
58    bool sql_query(const char *query, int flags=0);
59    const char *sql_strerror(void);
60    int sql_num_rows(void);
61    void sql_data_seek(int row);
62    int sql_affected_rows(void);
63    uint64_t sql_insert_autokey_record(const char *query, const char *table_name);
64    void sql_field_seek(int field);
65    SQL_FIELD *sql_fetch_field(void);
66    int sql_num_fields(void);
67    bool sql_field_is_not_null(int field_type);
68    bool sql_field_is_numeric(int field_type);
69    bool sql_batch_start(JCR *jcr);
70    bool sql_batch_end(JCR *jcr, const char *error);
71    bool sql_batch_insert(JCR *jcr, ATTR_DBR *ar);
72 };
73
74 #endif /* __BDB_MYSQL_H_ */