added .gitignore
[NeonServV5.git] / mysqlConn.c
1
2 #include "mysqlConn.h"
3
4 struct used_result {
5     MYSQL_RES *result;
6     struct used_result *next;
7 };
8
9 struct escaped_string {
10     char *string;
11     struct escaped_string *next;
12 };
13
14 MYSQL *mysql_conn = NULL;
15 static struct used_result *used_results;
16 static struct escaped_string *escaped_strings;
17
18 void check_mysql() {
19     if(mysql_ping(mysql_conn)) {
20         //mysql error
21     }
22 }
23
24 MYSQL_RES *mysql_use() {
25     MYSQL_RES *res = mysql_use_result(mysql_conn);
26     struct used_result *result = malloc(sizeof(*result));
27     if (!result) {
28         mysql_free_result(res);
29         return NULL;
30     }
31     result->result = res;
32     result->next = used_results;
33     used_results = result;
34     return res;
35 }
36
37 void mysql_free() {
38     struct used_result *result, *next_result;
39     for(result = used_results; result; result = next_result) {
40         next_result = result->next;
41         mysql_free_result(result->result);
42         free(result);
43     }
44     struct escaped_string *escaped, *next_escaped;
45     for(escaped = escaped_strings; escaped; escaped = next_escaped) {
46         next_escaped = escaped->next;
47         free(escaped->string);
48         free(escaped);
49     }
50 }
51
52 void init_mysql() {
53     mysql_conn = mysql_init(NULL);
54     if (!mysql_real_connect(mysql_conn, MYSQL_HOST, MYSQL_USER, MYSQL_PASS, MYSQL_BASE, MYSQL_PORT, NULL, 0)) {
55         //error
56     }
57 }
58
59 void free_mysql() {
60     mysql_close(mysql_conn);
61 }
62
63 void show_mysql_error() {
64     //show mysql_error()
65     
66 }
67
68 void printf_mysql_query(const char *text, ...) {
69     va_list arg_list;
70     char queryBuf[MYSQLMAXLEN];
71     int pos;
72     queryBuf[0] = '\0';
73     va_start(arg_list, text);
74     pos = vsnprintf(queryBuf, MYSQLMAXLEN - 2, text, arg_list);
75     va_end(arg_list);
76     if (pos < 0 || pos > (MYSQLMAXLEN - 2)) pos = MYSQLMAXLEN - 2;
77     queryBuf[pos] = '\0';
78     if(mysql_query(mysql_conn, queryBuf)) {
79         show_mysql_error();
80     }
81 }
82
83 char* escape_string(const char *str) {
84     struct escaped_string *escapedstr = malloc(sizeof(*escapedstr));
85     if (!escapedstr) {
86         return NULL;
87     }
88     char escaped[strlen(str)*2+1];
89     mysql_real_escape_string(mysql_conn, escaped, str, strlen(str));
90     escapedstr->string = strdup(escaped);
91     escapedstr->next = escaped_strings;
92     escaped_strings = escapedstr;
93     return escapedstr->string;
94 }