#include "postgresql_store.h"
#include "postgresql_store_utils.h"
-#include "base_settings.h"
+#include "stg/module_settings.h"
class POSTGRESQL_STORE_CREATOR
{
} pqStoreeCreator;
//-----------------------------------------------------------------------------
-BASE_STORE * GetStore()
+STORE * GetStore()
{
return pqStoreeCreator.GetStore();
}
user("stg"),
password("123456"),
version(0),
+ retries(3),
connection(NULL)
{
pthread_mutex_init(&mutex, NULL);
{
password = *(i->value.begin());
}
+ if (s == "retries")
+ {
+ if (str2x(*(i->value.begin()), retries))
+ {
+ strError = "Invalid 'retries' value";
+ printfd(__FILE__, "POSTGRESQL_STORE::ParseSettings(): '%s'\n", strError.c_str());
+ return -1;
+ }
+ }
}
clientEncoding = "KOI8";
{
strError = PQerrorMessage(connection);
printfd(__FILE__, "POSTGRESQL_STORE::Connect(): '%s'\n", strError.c_str());
- return 1;
+ // Will try to connect later
+ return 0;
}
if (PQsetClientEncoding(connection, clientEncoding.c_str()))
//-----------------------------------------------------------------------------
int POSTGRESQL_STORE::Reset() const
{
-PQreset(connection);
+for (int i = 0; i < retries && PQstatus(connection) != CONNECTION_OK; ++i)
+ {
+ struct timespec ts = {1, 0};
+ nanosleep(&ts, NULL);
+ PQreset(connection);
+ }
if (PQstatus(connection) != CONNECTION_OK)
{
{
strError = PQerrorMessage(connection);
printfd(__FILE__, "POSTGRESQL_STORE::Reset(): '%s'\n", strError.c_str());
- return 1;
+ return -1;
}
return CheckVersion();