From: Dan Langille Date: Tue, 9 Dec 2003 21:27:09 +0000 (+0000) Subject: Add PostgreSQL support. Coding and testing is incomplete. X-Git-Tag: Release-1.34.0~311 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ad3da2e79965f41c9efc69bf0307db859715ef51;p=bacula%2Fbacula Add PostgreSQL support. Coding and testing is incomplete. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@845 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/cats/create_postgresql_database.in b/bacula/src/cats/create_postgresql_database.in new file mode 100644 index 0000000000..7863c8eff8 --- /dev/null +++ b/bacula/src/cats/create_postgresql_database.in @@ -0,0 +1,16 @@ +#!/bin/sh +# +# shell script to create Bacula database(s) +# + +bindir=@SQL_BINDIR@ + +if $bindir/psql $* -f <bq)); ) { + if (strcmp(mdb->db_name, db_name) == 0) { + Dmsg2(100, "DB REopen %d %s\n", mdb->ref_count, db_name); + mdb->ref_count++; + V(mutex); + return mdb; /* already open */ + } + } + Dmsg0(100, "db_open first time\n"); + mdb = (B_DB *) malloc(sizeof(B_DB)); + memset(mdb, 0, sizeof(B_DB)); + mdb->db_name = bstrdup(db_name); + mdb->db_user = bstrdup(db_user); + if (db_password) { + mdb->db_password = bstrdup(db_password); + } + if (db_address) { + mdb->db_address = bstrdup(db_address); + } + if (db_socket) { + mdb->db_socket = bstrdup(db_socket); + } + mdb->db_port = db_port; + mdb->have_insert_id = TRUE; + mdb->errmsg = get_pool_memory(PM_EMSG); /* get error message buffer */ + *mdb->errmsg = 0; + mdb->cmd = get_pool_memory(PM_EMSG); /* get command buffer */ + mdb->cached_path = get_pool_memory(PM_FNAME); + mdb->cached_path_id = 0; + mdb->ref_count = 1; + mdb->fname = get_pool_memory(PM_FNAME); + mdb->path = get_pool_memory(PM_FNAME); + mdb->esc_name = get_pool_memory(PM_FNAME); + qinsert(&db_list, &mdb->bq); /* put db in list */ + V(mutex); + return mdb; +} + +/* + * Now actually open the database. This can generate errors, + * which are returned in the errmsg + */ +int +db_open_database(JCR *jcr, B_DB *mdb) +{ + int errstat; + + P(mutex); + if (mdb->connected) { + V(mutex); + return 1; + } + mdb->connected = FALSE; + + if ((errstat=rwl_init(&mdb->lock)) != 0) { + Mmsg1(&mdb->errmsg, _("Unable to initialize DB lock. ERR=%s\n"), + strerror(errstat)); + V(mutex); + return 0; + } + + /* connect to the database */ + mdb->db = PQsetdbLogin( + mdb->db_address, /* default = localhost */ + (char *) mdb->db_port, /* default port */ + NULL, /* pg options */ + NULL, /* tty, ignored */ + mdb->db_name, /* database name */ + mdb->db_user, /* login name */ + mdb->db_password); /* password */ + + /* If no connect, try once more in case it is a timing problem */ + if (PQstatus(mdb->db) != CONNECTION_OK) { + mdb->db = PQsetdbLogin( + mdb->db_address, /* default = localhost */ + (char *) mdb->db_port, /* default port */ + NULL, /* pg options */ + NULL, /* tty, ignored */ + mdb->db_name, /* database name */ + mdb->db_user, /* login name */ + mdb->db_password); /* password */ + } + + Dmsg0(50, "pg_real_connect done\n"); + Dmsg3(50, "db_user=%s db_name=%s db_password=%s\n", mdb->db_user, mdb->db_name, + mdb->db_password==NULL?"(NULL)":mdb->db_password); + + if (PQstatus(mdb->db) != CONNECTION_OK) { + Mmsg2(&mdb->errmsg, _("Unable to connect to PostgreSQL server.\n" + "Database=%s User=%s\n" + "It is probably not running or your password is incorrect.\n"), + mdb->db_name, mdb->db_user); + V(mutex); + return 0; + } + + if (!check_tables_version(jcr, mdb)) { + V(mutex); + db_close_database(jcr, mdb); + return 0; + } + + mdb->connected = TRUE; + V(mutex); + return 1; +} + +void +db_close_database(JCR *jcr, B_DB *mdb) +{ + P(mutex); + mdb->ref_count--; + if (mdb->ref_count == 0) { + qdchain(&mdb->bq); + if (mdb->connected && mdb->db) { + sql_close(mdb); + } + rwl_destroy(&mdb->lock); + free_pool_memory(mdb->errmsg); + free_pool_memory(mdb->cmd); + free_pool_memory(mdb->cached_path); + free_pool_memory(mdb->fname); + free_pool_memory(mdb->path); + free_pool_memory(mdb->esc_name); + if (mdb->db_name) { + free(mdb->db_name); + } + if (mdb->db_user) { + free(mdb->db_user); + } + if (mdb->db_password) { + free(mdb->db_password); + } + if (mdb->db_address) { + free(mdb->db_address); + } + if (mdb->db_socket) { + free(mdb->db_socket); + } + free(mdb); + } + V(mutex); +} + +/* + * Return the next unique index (auto-increment) for + * the given table. Return NULL on error. + * + * For MySQL, NULL causes the auto-increment value + * to be updated. + */ +int db_next_index(JCR *jcr, B_DB *mdb, char *table, char *index) +{ + strcpy(index, "NULL"); + return 1; +} + + +/* + * Escape strings so that PostgreSQL is happy + * + * NOTE! len is the length of the old string. Your new + * string must be long enough (max 2*old+1) to hold + * the escaped output. + */ +void +db_escape_string(char *snew, char *old, int len) +{ + PQescapeString(snew, old, len); +} + +/* + * Submit a general SQL command (cmd), and for each row returned, + * the sqlite_handler is called with the ctx. + */ +int db_sql_query(B_DB *mdb, char *query, DB_RESULT_HANDLER *result_handler, void *ctx) +{ + SQL_ROW row; + int numrows; + + Dmsg0(50, "db_sql_query started\n"); + + db_lock(mdb); + if (sql_query(mdb, query) != 0) { + Mmsg(&mdb->errmsg, _("Query failed: %s: ERR=%s\n"), query, sql_strerror(mdb)); + db_unlock(mdb); + Dmsg0(50, "db_sql_query failed\n"); + return 0; + } + Dmsg0(50, "db_sql_query succeeded. checking handler\n"); + + if (result_handler != NULL) { + Dmsg0(50, "db_sql_query invoking handler\n"); + if ((mdb->result = sql_store_result(mdb)) != NULL) { + int num_fields = sql_num_fields(mdb); + + Dmsg0(50, "db_sql_query sql_store_result suceeded\n"); + while ((row = sql_fetch_row(mdb)) != NULL) { + + Dmsg0(50, "db_sql_query sql_fetch_row worked\n"); + if (result_handler(ctx, num_fields, row)) + break; + } + + sql_free_result(mdb); + } + } + db_unlock(mdb); + + Dmsg0(50, "db_sql_query finished\n"); + + return 1; +} + + +static void +list_dashes(B_DB *mdb, DB_LIST_HANDLER *send, void *ctx) +{ + SQL_FIELD *field; + unsigned int i, j; + + sql_field_seek(mdb, 0); + send(ctx, "+"); + for (i = 0; i < sql_num_fields(mdb); i++) { + field = sql_fetch_field(mdb); + for (j = 0; j < field->max_length + 2; j++) + send(ctx, "-"); + send(ctx, "+"); + } + send(ctx, "\n"); +} + +/* + * If full_list is set, we list vertically, otherwise, we + * list on one line horizontally. + */ +void +list_result(B_DB *mdb, DB_LIST_HANDLER *send, void *ctx, e_list_type type) +{ + SQL_FIELD *field; + SQL_ROW row; + unsigned int i, col_len, max_len = 0; + char buf[2000], ewc[30]; + + if (mdb->result == NULL) { + send(ctx, _("No results to list.\n")); + return; + } + /* determine column display widths */ + sql_field_seek(mdb, 0); + for (i = 0; i < sql_num_fields(mdb); i++) { + field = sql_fetch_field(mdb); + col_len = strlen(field->name); + if (type == VERT_LIST) { + if (col_len > max_len) { + max_len = col_len; + } + } else { + if (IS_NUM(field->type) && field->max_length > 0) { /* fixup for commas */ + field->max_length += (field->max_length - 1) / 3; + } + if (col_len < field->max_length) { + col_len = field->max_length; + } + if (col_len < 4 && !IS_NOT_NULL(field->flags)) { + col_len = 4; /* 4 = length of the word "NULL" */ + } + field->max_length = col_len; /* reset column info */ + } + } + + if (type == VERT_LIST) { + goto vertical_list; + } + + list_dashes(mdb, send, ctx); + send(ctx, "|"); + sql_field_seek(mdb, 0); + for (i = 0; i < sql_num_fields(mdb); i++) { + field = sql_fetch_field(mdb); + bsnprintf(buf, sizeof(buf), " %-*s |", (int)field->max_length, field->name); + send(ctx, buf); + } + send(ctx, "\n"); + list_dashes(mdb, send, ctx); + + while ((row = sql_fetch_row(mdb)) != NULL) { + sql_field_seek(mdb, 0); + send(ctx, "|"); + for (i = 0; i < sql_num_fields(mdb); i++) { + field = sql_fetch_field(mdb); + if (row[i] == NULL) { + bsnprintf(buf, sizeof(buf), " %-*s |", (int)field->max_length, "NULL"); + } else if (IS_NUM(field->type)) { + bsnprintf(buf, sizeof(buf), " %*s |", (int)field->max_length, + add_commas(row[i], ewc)); + } else { + bsnprintf(buf, sizeof(buf), " %-*s |", (int)field->max_length, row[i]); + } + send(ctx, buf); + } + send(ctx, "\n"); + } + list_dashes(mdb, send, ctx); + return; + +vertical_list: + + while ((row = sql_fetch_row(mdb)) != NULL) { + sql_field_seek(mdb, 0); + for (i = 0; i < sql_num_fields(mdb); i++) { + field = sql_fetch_field(mdb); + if (row[i] == NULL) { + bsnprintf(buf, sizeof(buf), " %*s: %s\n", max_len, field->name, "NULL"); + } else if (IS_NUM(field->type)) { + bsnprintf(buf, sizeof(buf), " %*s: %s\n", max_len, field->name, + add_commas(row[i], ewc)); + } else { + bsnprintf(buf, sizeof(buf), " %*s: %s\n", max_len, field->name, row[i]); + } + send(ctx, buf); + } + send(ctx, "\n"); + } + return; +} + +POSTGRESQL_ROW my_postgresql_fetch_row(B_DB *mdb) { + int nFields; + int j; + POSTGRESQL_ROW row = NULL; // by default, return NULL + + Dmsg0(50, "my_postgresql_fetch_row start\n"); + ASSERT(mdb->row != NULL); + + // if still within the result set + if (mdb->row_number < mdb->num_rows) { + Dmsg2(50, "my_postgresql_fetch_row row number '%d' is acceptable (0..%d)\n", mdb->row_number, mdb->num_rows); + // allocate space for one row + // get each value from this row + for (j = 0; j < mdb->num_fields; j++) { + mdb->row[j] = PQgetvalue(mdb->result, mdb->row_number, j); + Dmsg2(50, "my_postgresql_fetch_row field '%d' is '%s'\n", j, mdb->row[j]); + } + // increment the row number for the next call + mdb->row_number++; + + row = mdb->row; + } else { + Dmsg2(50, "my_postgresql_fetch_row row number '%d' is NOT acceptable (0..%d)\n", mdb->row_number, mdb->num_rows); + } + + Dmsg1(50, "my_postgresql_fetch_row finishes returning %x\n", row); + + return row; +} + +POSTGRESQL_FIELD * my_postgresql_fetch_field(B_DB *mdb) { + mdb->field.name = PQfname (mdb->result, mdb->field_number); + + // I am not sure this returns the max width of the result set + mdb->field.max_length = PQfsize (mdb->result, mdb->field_number); + + // I am not sure this returns what we can use + mdb->field.type = PQftype (mdb->result, mdb->field_number); + + mdb->field.flags = PQgetisnull(mdb->result, mdb->row_number, mdb->field_number); + + return &mdb->field; +} + +void my_postgresql_data_seek(B_DB *mdb, int row) { + // set the row number to be returned on the next call + // to my_postgresql_fetch_row + mdb->row_number = row; +} + +void my_postgresql_field_seek(B_DB *mdb, int field) { + mdb->field_number = field; +} + +int my_postgresql_query(B_DB *mdb, char *query) { + Dmsg0(50, "my_postgresql_query started\n"); + // We are starting a new query. reset everything. + mdb->num_rows = -1; + mdb->row_number = -1; + mdb->field_number = -1; + + if (mdb->row) { + + Dmsg0(50, "my_postgresql_query freeing space\n"); + free(mdb->row); + mdb->row = NULL; + } + + + Dmsg1(50, "doing PQexec with '%s'\n", query); + mdb->result = PQexec(mdb->db, query); + if (PQresultStatus(mdb->result) == PGRES_TUPLES_OK) { + + mdb->num_rows = PQntuples(mdb->result); + // how many fields in the set? + mdb->num_fields = PQnfields(mdb->result); + + // point at the first row for the fetch row function + mdb->row_number = 0; + + mdb->row = (POSTGRESQL_ROW) malloc(sizeof(char *) * mdb->num_fields); + Dmsg2(50, "PQexec was OK. rows=%d columns=%d\n", mdb->num_rows, mdb->num_fields); + mdb->status = 0; + } else { + mdb->status = 1; + } + + Dmsg0(50, "my_postgresql_query finishing\n"); + + return mdb->status; +} + +void my_postgresql_free_result (B_DB *mdb) { + PQclear(mdb->result); + free(mdb->row); + mdb->row = NULL; +} + + +#endif /* HAVE_POSTGRESQL */ diff --git a/bacula/src/cats/postgresql.in b/bacula/src/cats/postgresql.in new file mode 100644 index 0000000000..39c3fe6bfb --- /dev/null +++ b/bacula/src/cats/postgresql.in @@ -0,0 +1,7 @@ +#!/bin/sh +# +# shell script to create Bacula PostgreSQL tables +# +bindir=@SQL_BINDIR@ + +$bindir/psql $* bacula