git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed else/enif order.
[stg.git]
/
projects
/
stargazer
/
plugins
/
store
/
postgresql
/
postgresql_store.h
diff --git
a/projects/stargazer/plugins/store/postgresql/postgresql_store.h
b/projects/stargazer/plugins/store/postgresql/postgresql_store.h
index ea2ec4f32a27436263cc3f0bbc1dbb214487d798..a30d3852d97a95ae6ab0078f0c2f2b22ec5fd992 100644
(file)
--- a/
projects/stargazer/plugins/store/postgresql/postgresql_store.h
+++ b/
projects/stargazer/plugins/store/postgresql/postgresql_store.h
@@
-35,15
+35,16
@@
#include <vector>
#include <map>
#include <vector>
#include <map>
-#include "base_store.h"
+#include "stg/store.h"
+#include "stg/logger.h"
// Minimal DB version is 5
// Recommended DB version is 6 (support FreeMb logging on disconnects)
#define DB_MIN_VERSION 5
// Minimal DB version is 5
// Recommended DB version is 6 (support FreeMb logging on disconnects)
#define DB_MIN_VERSION 5
-extern "C"
BASE_
STORE * GetStore();
+extern "C" STORE * GetStore();
-class POSTGRESQL_STORE : public
BASE_
STORE {
+class POSTGRESQL_STORE : public STORE {
public:
POSTGRESQL_STORE();
virtual ~POSTGRESQL_STORE();
public:
POSTGRESQL_STORE();
virtual ~POSTGRESQL_STORE();
@@
-72,7
+73,7
@@
public:
double cash,
double freeMb,
const std::string & reason) const;
double cash,
double freeMb,
const std::string & reason) const;
- int WriteDetailedStat(const
std::map<IP_DIR_PAIR, STAT_NODE>
& statTree,
+ int WriteDetailedStat(const
TRAFF_STAT
& statTree,
time_t lastStat,
const std::string & login) const;
time_t lastStat,
const std::string & login) const;
@@
-121,6
+122,9
@@
public:
inline const string & GetStrError() const { return strError; };
inline const string & GetVersion() const { return versionString; };
private:
inline const string & GetStrError() const { return strError; };
inline const string & GetVersion() const { return versionString; };
private:
+ POSTGRESQL_STORE(const POSTGRESQL_STORE & rvalue);
+ POSTGRESQL_STORE & operator=(const POSTGRESQL_STORE & rvalue);
+
int StartTransaction() const;
int CommitTransaction() const;
int RollbackTransaction() const;
int StartTransaction() const;
int CommitTransaction() const;
int RollbackTransaction() const;
@@
-152,8
+156,11
@@
private:
MODULE_SETTINGS settings;
mutable pthread_mutex_t mutex;
mutable int version;
MODULE_SETTINGS settings;
mutable pthread_mutex_t mutex;
mutable int version;
+ int retries;
PGconn * connection;
PGconn * connection;
+
+ PLUGIN_LOGGER logger;
};
extern const volatile time_t stgTime;
};
extern const volatile time_t stgTime;