-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLog2DBServer.h
More file actions
70 lines (55 loc) · 1.11 KB
/
Log2DBServer.h
File metadata and controls
70 lines (55 loc) · 1.11 KB
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
#ifndef _Log2DBServer_H_
#define _Log2DBServer_H_
#include <iostream>
#include "servant/Application.h"
#include "OuterFactoryImp.h"
#include "DBOperator.h"
//
using namespace tars;
/**
*
**/
class Log2DBServer : public Application
{
public:
/**
*
**/
virtual ~Log2DBServer() {};
/**
*
**/
virtual void initialize();
/**
*
**/
virtual void destroyApp();
public:
OuterFactoryImpPtr getOuterFactoryPtr()
{
return _pOuter;
}
public:
//加载配置
bool reloadConfig(const std::string &cmd, std::string &des);
public:
//初始化数据库
int initialDBOperator();
//释放所有db操作对象
int destroyDBOperator();
//根据类型查找db操作对象
int getDBOperatorByIndex(int index, CDBOperator *&dbptr);
private:
//
OuterFactoryImpPtr _pOuter;
public:
//
map<int, CDBOperator *> mapDBOperator;
private:
//
wbl::ReadWriteLocker m_rwlock;
};
//
extern Log2DBServer g_app;
////////////////////////////////////////////
#endif