]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/sql_glue.h
Split messages line by line before sending it to syslog() fix #3325
[bacula/bacula] / bacula / src / cats / sql_glue.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 __SQL_GLUE_H_
30 #define __SQL_GLUE_H_ 1
31
32 /*
33  * Prototypes for entry points into the different backends.
34  */
35 bool db_match_database(B_DB *mdb, const char *db_driver, const char *db_name,
36                        const char *db_address, int db_port);
37 B_DB *db_clone_database_connection(B_DB *mdb, JCR *jcr, bool mult_db_connections);
38 int db_get_type_index(B_DB *mdb);
39 const char *db_get_type(B_DB *mdb);
40 B_DB *db_init_database(JCR *jcr, const char *db_driver, const char *db_name,
41               const char *db_user, const char *db_password,
42               const char *db_address, int db_port,
43               const char *db_socket, bool mult_db_connections, bool disable_batch_insert);
44 bool db_open_database(JCR *jcr, B_DB *mdb);
45 void db_close_database(JCR *jcr, B_DB *mdb);
46 void db_thread_cleanup(B_DB *mdb);
47 void db_escape_string(JCR *jcr, B_DB *mdb, char *snew, char *old, int len);
48 char *db_escape_object(JCR *jcr, B_DB *mdb, char *old, int len);
49 void db_unescape_object(JCR *jcr, B_DB *mdb, 
50                         char *from, int32_t expected_len, 
51                         POOLMEM **dest, int32_t *len);
52 void db_start_transaction(JCR *jcr, B_DB *mdb);
53 void db_end_transaction(JCR *jcr, B_DB *mdb);
54 bool db_sql_query(B_DB *mdb, const char *query, int flags=0);
55 bool db_sql_query(B_DB *mdb, const char *query, DB_RESULT_HANDLER *result_handler, void *ctx);
56 bool db_big_sql_query(B_DB *mdb, const char *query, DB_RESULT_HANDLER *result_handler, void *ctx);
57
58 #ifdef _BDB_PRIV_INTERFACE_
59 void sql_free_result(B_DB *mdb);
60 SQL_ROW sql_fetch_row(B_DB *mdb);
61 bool sql_query(B_DB *mdb, const char *query, int flags=0);
62 const char *sql_strerror(B_DB *mdb);
63 int sql_num_rows(B_DB *mdb);
64 void sql_data_seek(B_DB *mdb, int row);
65 int sql_affected_rows(B_DB *mdb);
66 uint64_t sql_insert_autokey_record(B_DB *mdb, const char *query, const char *table_name);
67 void sql_field_seek(B_DB *mdb, int field);
68 SQL_FIELD *sql_fetch_field(B_DB *mdb);
69 int sql_num_fields(B_DB *mdb);
70 bool sql_field_is_not_null(B_DB *mdb, int field_type);
71 bool sql_field_is_numeric(B_DB *mdb, int field_type);
72 bool sql_batch_start(JCR *jcr, B_DB *mdb);
73 bool sql_batch_end(JCR *jcr, B_DB *mdb, const char *error);
74 bool sql_batch_insert(JCR *jcr, B_DB *mdb, ATTR_DBR *ar);
75 #endif /* _BDB_PRIV_INTERFACE_ */
76 #endif /* __SQL_GLUE_H_ */