]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
37ff6dbdda10207f30a81ca520b8cc0234b1e6a0
[stg.git] / projects / stargazer / plugins / store / postgresql / postgresql_store.cpp
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
19  */
20
21 /*
22  *  This file contains a realization of a base postgresql-storage plugin class
23  *
24  *  v. 1.3
25  *  FreeMb logging on disconnects added
26  *
27  *  v. 1.2
28  *  Reconnection on faults added
29  *
30  *  v. 1.1
31  *  tb_stats removed
32  *
33  *  v. 1.0
34  *  Initial implementation
35  *
36  *  $Revision: 1.5 $
37  *  $Date: 2010/01/06 10:43:48 $
38  *
39  */
40
41 #include "postgresql_store.h"
42
43 #include "stg/module_settings.h"
44 #include "stg/plugin_creator.h"
45
46 #include <libpq-fe.h>
47
48 #include <string>
49 #include <vector>
50
51 namespace
52 {
53 PLUGIN_CREATOR<POSTGRESQL_STORE> pgsc;
54 }
55
56 extern "C" STORE * GetStore();
57
58 //-----------------------------------------------------------------------------
59 STORE * GetStore()
60 {
61 return pgsc.GetPlugin();
62 }
63
64 //-----------------------------------------------------------------------------
65 POSTGRESQL_STORE::POSTGRESQL_STORE()
66     : versionString("postgresql_store v.1.3"),
67       strError(),
68       server("localhost"),
69       database("stargazer"),
70       user("stg"),
71       password("123456"),
72       clientEncoding("KOI8"),
73       settings(),
74       mutex(),
75       version(0),
76       retries(3),
77       connection(NULL),
78       logger(GetPluginLogger(GetStgLogger(), "store_postgresql"))
79 {
80 pthread_mutex_init(&mutex, NULL);
81 }
82 //-----------------------------------------------------------------------------
83 POSTGRESQL_STORE::~POSTGRESQL_STORE()
84 {
85 if (connection)
86     {
87     PQfinish(connection);
88     }
89 pthread_mutex_destroy(&mutex);
90 }
91 //-----------------------------------------------------------------------------
92 int POSTGRESQL_STORE::ParseSettings()
93 {
94 std::vector<PARAM_VALUE>::iterator i;
95
96 for(i = settings.moduleParams.begin(); i != settings.moduleParams.end(); ++i)
97     {
98     std::string param(ToLower(i->param));
99     if (param == "server")
100         server = *(i->value.begin());
101     else if (param == "database")
102         database = *(i->value.begin());
103     else if (param == "user")
104         user = *(i->value.begin());
105     else if (param == "password")
106         password = *(i->value.begin());
107     else if (param == "retries")
108         if (str2x(*(i->value.begin()), retries))
109             {
110             strError = "Invalid 'retries' value";
111             printfd(__FILE__, "POSTGRESQL_STORE::ParseSettings(): '%s'\n", strError.c_str());
112             return -1;
113             }
114     }
115
116 clientEncoding = "KOI8";
117
118 return Connect();
119 }
120 //-----------------------------------------------------------------------------
121 int POSTGRESQL_STORE::Connect()
122 {
123 std::string params;
124 params = "host=" + server + " "
125        + "dbname=" + database + " "
126        + "user=" + user + " "
127        + "password=" + password;
128
129 connection = PQconnectdb(params.c_str());
130
131 if (PQstatus(connection) != CONNECTION_OK)
132     {
133     strError = PQerrorMessage(connection);
134     printfd(__FILE__, "POSTGRESQL_STORE::Connect(): '%s'\n", strError.c_str());
135     // Will try to connect later
136     return 0;
137     }
138
139 if (PQsetClientEncoding(connection, clientEncoding.c_str()))
140     {
141     strError = PQerrorMessage(connection);
142     printfd(__FILE__, "POSTGRESQL_STORE::Connect(): '%s'\n", strError.c_str());
143     return 1;
144     }
145
146 return CheckVersion();
147 }
148 //-----------------------------------------------------------------------------
149 int POSTGRESQL_STORE::Reset() const
150 {
151 for (int i = 0; i < retries && PQstatus(connection) != CONNECTION_OK; ++i)
152     {
153     struct timespec ts = {1, 0};
154     nanosleep(&ts, NULL);
155     PQreset(connection);
156     }
157
158 if (PQstatus(connection) != CONNECTION_OK)
159     {
160     strError = PQerrorMessage(connection);
161     printfd(__FILE__, "POSTGRESQL_STORE::Reset(): '%s'\n", strError.c_str());
162     return 1;
163     }
164
165 if (PQsetClientEncoding(connection, clientEncoding.c_str()))
166     {
167     strError = PQerrorMessage(connection);
168     printfd(__FILE__, "POSTGRESQL_STORE::Reset(): '%s'\n", strError.c_str());
169     return -1;
170     }
171
172 return CheckVersion();
173 }
174 //-----------------------------------------------------------------------------
175 int POSTGRESQL_STORE::CheckVersion() const
176 {
177
178 if (StartTransaction())
179     {
180     strError = "Failed to start transaction";
181     printfd(__FILE__, "POSTGRESQL_STORE::CheckVersion(): '%s'\n", strError.c_str());
182     return -1;
183     }
184
185 PGresult * result = PQexec(connection, "SELECT MAX(version) FROM tb_info");
186
187 if (PQresultStatus(result) != PGRES_TUPLES_OK)
188     {
189     strError = PQresultErrorMessage(result);
190     PQclear(result);
191     printfd(__FILE__, "POSTGRESQL_STORE::CheckVersion(): '%s'\n");
192     RollbackTransaction();
193     return -1;
194     }
195
196 if (str2x(PQgetvalue(result, 0, 0), version))
197     {
198     strError = "Invalid DB version";
199     PQclear(result);
200     RollbackTransaction();
201     printfd(__FILE__, "POSTGRESQL_STORE::CheckVersion(): '%s'\n", strError.c_str());
202     return -1;
203     }
204
205 PQclear(result);
206
207 if (version < DB_MIN_VERSION)
208     {
209     strError = "DB version too old";
210     RollbackTransaction();
211     printfd(__FILE__, "POSTGRESQL_STORE::CheckVersion(): '%s'\n", strError.c_str());
212     return -1;
213     }
214
215 if (version < 6)
216     {
217     printfd(__FILE__, "POSTGRESQL_STORE::CheckVersion(): I recommend you to upgrade your DB to higher version to support FreeMb logging on disconnect. Current version is %d\n", version);
218     }
219
220 if (CommitTransaction())
221     {
222     strError = "Failed to commit transaction";
223     printfd(__FILE__, "POSTGRESQL_STORE::CheckVersion(): '%s'\n", strError.c_str());
224     return -1;
225     }
226
227 logger("POSTGRESQL_STORE: Current DB schema version: %d", version);
228
229 return 0;
230 }
231 //-----------------------------------------------------------------------------