1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*
mysql.c
This file is part of GNU Anubis.
Copyright (C) 2003, 2004, 2007 The Anubis Team.
GNU Anubis is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
GNU Anubis is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with GNU Anubis. If not, see <http://www.gnu.org/licenses/>.
*/
#include "headers.h"
#include "extern.h"
#ifdef WITH_MYSQL
#include "sql.h"
#include <mysql/mysql.h>
/* MySQL URL:
mysql://user:password@host/dbname;
table=STRING;authid=STRING;passwd=STRING[;account=STRING]
[;rcfile=STRING][;port=NUMBER][;socket=STRING][;bufsize=NUMBER]
*/
struct mysql_db_data
{
MYSQL mysql;
MYSQL_RES *result;
MYSQL_ROW row;
};
static int
my_sql_release_result (struct anubis_sql_db *amp)
{
struct mysql_db_data *mdata = amp->data;
if (mdata->result)
{
mysql_free_result (mdata->result);
mdata->result = NULL;
mdata->row = NULL;
}
return 0;
}
static int
my_sql_query (struct anubis_sql_db *amp)
{
struct mysql_db_data *mdata = amp->data;
int rc;
my_sql_release_result (amp);
rc = mysql_query (&mdata->mysql, amp->buf);
if (rc)
return rc;
mdata->result = mysql_store_result (&mdata->mysql);
return 0;
}
static size_t
my_sql_num_tuples (struct anubis_sql_db *amp)
{
struct mysql_db_data *mdata = amp->data;
if (!mdata->result)
return 0;
return mysql_num_rows (mdata->result);
}
static size_t
my_sql_num_columns (struct anubis_sql_db *amp)
{
struct mysql_db_data *mdata = amp->data;
if (!mdata->result)
return 0;
return mysql_num_fields (mdata->result);
}
static int
my_sql_get_tuple (struct anubis_sql_db *amp, size_t i)
{
struct mysql_db_data *mdata = amp->data;
if (!mdata->result)
return 1;
mdata->row = mysql_fetch_row (mdata->result);
if (!mdata->row)
return 1;
return 0;
}
static const char *
my_sql_get_column (struct anubis_sql_db *amp, size_t i)
{
struct mysql_db_data *mdata = amp->data;
if (!mdata->row)
return NULL;
return mdata->row[i];
}
/* Open the plaintext database. ARG is the full pathname to the file */
static int
mysql_db_open (void **dp, ANUBIS_URL * url, enum anubis_db_mode mode,
char **errp)
{
struct anubis_sql_db *amp = NULL;
const char *table = anubis_url_get_arg (url, "table");
const char *authid = anubis_url_get_arg (url, "authid");
const char *passwd = anubis_url_get_arg (url, "passwd");
const char *user = anubis_url_get_arg (url, "account");
const char *rcfile = anubis_url_get_arg (url, "rcfile");
const char *portstr = anubis_url_get_arg (url, "port");
const char *s = anubis_url_get_arg (url, "bufsize");
int port = 0;
size_t bufsize = 1024;
struct mysql_db_data *mdata;
/* Provide reasonable defaults */
if (!table)
table = "users";
if (!authid)
authid = "authid";
if (!passwd)
passwd = "passwd";
if (!user)
user = "account";
if (!rcfile)
rcfile = "rcfile";
if (s)
{
char *p;
bufsize = strtoul (s, &p, 10);
if (*p)
{
*errp = sql_open_error_text (ERR_BADBUFSIZE);
return ANUBIS_DB_FAIL;
}
}
if (portstr)
{
char *p;
port = strtoul (portstr, &p, 10);
if (*p)
{
*errp = sql_open_error_text (ERR_BADPORT);
return ANUBIS_DB_FAIL;
}
}
amp = xzalloc (sizeof (*amp));
amp->buf = xmalloc (bufsize);
amp->bufsize = bufsize;
mdata = xmalloc (sizeof (*mdata));
amp->data = mdata;
mysql_init (&mdata->mysql);
if (!mysql_real_connect (&mdata->mysql,
url->host, url->user, url->passwd,
url->path, port,
anubis_url_get_arg (url, "socket"), 0))
{
free (amp->data);
free (amp);
*errp = sql_open_error_text (ERR_CANTCONNECT);
return ANUBIS_DB_FAIL;
}
amp->query = my_sql_query;
amp->num_tuples = my_sql_num_tuples;
amp->num_columns = my_sql_num_columns;
amp->release_result = my_sql_release_result;
amp->get_tuple = my_sql_get_tuple;
amp->get_column = my_sql_get_column;
amp->table = strdup (table);
amp->authid = strdup (authid);
amp->passwd = strdup (passwd);
amp->user = strdup (user);
amp->rcfile = strdup (rcfile);
*dp = amp;
return ANUBIS_DB_SUCCESS;
}
static int
mysql_db_close (void *d)
{
struct anubis_sql_db *amp = d;
struct mysql_db_data *mdata = amp->data;
my_sql_release_result (amp);
mysql_close (&mdata->mysql);
free (amp->data);
free (amp->table);
free (amp->authid);
free (amp->passwd);
free (amp->user);
free (amp->rcfile);
free (amp->buf);
return ANUBIS_DB_SUCCESS;
}
const char *
mysql_db_strerror (void *d, int rc)
{
struct anubis_sql_db *amp = d;
return mysql_error (amp->data);
}
void
mysql_db_init (void)
{
sql_db_init ("mysql", mysql_db_open, mysql_db_close, mysql_db_strerror);
}
#endif /* WITH_MYSQL */
/* EOF */
|