forked from OpenAtomFoundation/pika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pika_conf.h
194 lines (179 loc) · 7.03 KB
/
pika_conf.h
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// Copyright (c) 2015-present, Qihoo, Inc. All rights reserved.
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree. An additional grant
// of patent rights can be found in the PATENTS file in the same directory.
#ifndef PIKA_CONF_H_
#define PIKA_CONF_H_
#include <pthread.h>
#include "stdlib.h"
#include <string>
#include <vector>
#include "base_conf.h"
#include "slash_mutex.h"
#include "slash_string.h"
#include "pika_define.h"
#include "xdebug.h"
typedef slash::RWLock RWLock;
class PikaConf : public slash::BaseConf {
public:
PikaConf(const std::string& path);
~PikaConf() { pthread_rwlock_destroy(&rwlock_); }
// Getter
int port() { RWLock l(&rwlock_, false); return port_; }
std::string slaveof() {RWLock l(&rwlock_, false); return slaveof_;}
int thread_num() { RWLock l(&rwlock_, false); return thread_num_; }
int sync_thread_num() { RWLock l(&rwlock_, false); return sync_thread_num_; }
int sync_buffer_size() { RWLock l(&rwlock_, false); return sync_buffer_size_; }
std::string log_path() { RWLock l(&rwlock_, false); return log_path_; }
int log_level() { RWLock l(&rwlock_, false); return log_level_; }
std::string db_path() { RWLock l(&rwlock_, false); return db_path_; }
std::string db_sync_path() { RWLock l(&rwlock_, false); return db_sync_path_; }
int db_sync_speed() { RWLock l(&rwlock_, false); return db_sync_speed_; }
int write_buffer_size() { RWLock l(&rwlock_, false); return write_buffer_size_; }
int timeout() { RWLock l(&rwlock_, false); return timeout_; }
std::string requirepass() { RWLock l(&rwlock_, false); return requirepass_; }
std::string masterauth() { RWLock l(&rwlock_, false); return masterauth_; }
bool slotmigrate() { RWLock l(&rwlock_, false); return slotmigrate_; }
std::string bgsave_path() { RWLock l(&rwlock_, false); return bgsave_path_; }
std::string bgsave_prefix() { RWLock l(&rwlock_, false); return bgsave_prefix_; }
std::string userpass() { RWLock l(&rwlock_, false); return userpass_; }
const std::string suser_blacklist() {
RWLock l(&rwlock_, false);
return slash::StringConcat(user_blacklist_, COMMA);
}
const std::vector<std::string>& vuser_blacklist() {
RWLock l(&rwlock_, false); return user_blacklist_;
}
std::string compression() { RWLock l(&rwlock_, false); return compression_; }
int target_file_size_base() { RWLock l(&rwlock_, false); return target_file_size_base_; }
int max_background_flushes() { RWLock l(&rwlock_, false); return max_background_flushes_; }
int max_background_compactions() { RWLock l(&rwlock_, false); return max_background_compactions_; }
int max_cache_files() { RWLock l(&rwlock_, false); return max_cache_files_; }
int max_bytes_for_level_multiplier() {RWLock l(&rwlock_, false); return max_bytes_for_level_multiplier_; }
int expire_logs_nums() { RWLock l(&rwlock_, false); return expire_logs_nums_; }
int expire_logs_days() { RWLock l(&rwlock_, false); return expire_logs_days_; }
std::string conf_path() { RWLock l(&rwlock_, false); return conf_path_; }
bool readonly() { RWLock l(&rwlock_, false); return readonly_; }
int maxclients() { RWLock l(&rwlock_, false); return maxclients_; }
int root_connection_num() { RWLock l(&rwlock_, false); return root_connection_num_; }
int slowlog_slower_than() { RWLock l(&rwlock_, false); return slowlog_log_slower_than_; }
std::string network_interface() { RWLock l(&rwlock_, false); return network_interface_; }
// Immutable config items, we don't use lock.
bool daemonize() { return daemonize_; }
std::string pidfile() { return pidfile_; }
int binlog_file_size() { return binlog_file_size_; }
// Setter
void SetPort(const int value) { RWLock l(&rwlock_, true); port_ = value; }
void SetThreadNum(const int value) { RWLock l(&rwlock_, true); thread_num_ = value; }
void SetLogLevel(const int value) { RWLock l(&rwlock_, true); log_level_ = value; }
void SetTimeout(const int value) { RWLock l(&rwlock_, true); timeout_ = value; }
void SetSlaveof(const std::string value) {
RWLock l(&rwlock_, true);
slaveof_ = value;
}
void SetBgsavePath(const std::string &value) {
RWLock l(&rwlock_, true);
bgsave_path_ = value;
if (value[value.length() - 1] != '/') {
bgsave_path_ += "/";
}
}
void SetBgsavePrefix(const std::string &value) {
RWLock l(&rwlock_, true);
bgsave_prefix_ = value;
}
void SetRequirePass(const std::string &value) {
RWLock l(&rwlock_, true);
requirepass_ = value;
}
void SetMasterAuth(const std::string &value) {
RWLock l(&rwlock_, true);
masterauth_ = value;
}
void SetSlotMigrate(const std::string &value) {
RWLock l(&rwlock_, true);
slotmigrate_ = (value == "yes") ? true : false;
}
void SetUserPass(const std::string &value) {
RWLock l(&rwlock_, true);
userpass_ = value;
}
void SetUserBlackList(const std::string &value) {
RWLock l(&rwlock_, true);
slash::StringSplit(value, COMMA, user_blacklist_);
}
void SetReadonly(const bool value) {
RWLock l(&rwlock_, true); readonly_ = value;
}
void SetExpireLogsNums(const int value){
RWLock l(&rwlock_, true);
expire_logs_nums_ = value;
}
void SetExpireLogsDays(const int value) {
RWLock l(&rwlock_, true);
expire_logs_days_ = value;
}
void SetMaxConnection(const int value) {
RWLock l(&rwlock_, true);
maxclients_ = value;
}
void SetRootConnectionNum(const int value) {
RWLock l(&rwlock_, true);
root_connection_num_ = value;
}
void SetSlowlogSlowerThan(const int value) {
RWLock l(&rwlock_, true);
slowlog_log_slower_than_ = value;
}
void SetDbSyncSpeed(const int value) {
RWLock l(&rwlock_, true);
db_sync_speed_ = value;
}
int Load();
int ConfigRewrite();
private:
int port_;
std::string slaveof_;
int thread_num_;
int sync_thread_num_;
int sync_buffer_size_;
std::string log_path_;
std::string db_path_;
std::string db_sync_path_;
int db_sync_speed_;
int write_buffer_size_;
int log_level_;
bool daemonize_;
bool slotmigrate_;
int timeout_;
std::string requirepass_;
std::string masterauth_;
std::string userpass_;
std::vector<std::string> user_blacklist_;
std::string bgsave_path_;
std::string bgsave_prefix_;
std::string pidfile_;
//char pidfile_[PIKA_WORD_SIZE];
std::string compression_;
int maxclients_;
int root_connection_num_;
int slowlog_log_slower_than_;
int expire_logs_days_;
int expire_logs_nums_;
bool readonly_;
std::string conf_path_;
int max_background_flushes_;
int max_background_compactions_;
int max_cache_files_;
int max_bytes_for_level_multiplier_;
std::string network_interface_;
//char username_[30];
//char password_[30];
//
// Critical configure items
//
int target_file_size_base_;
int binlog_file_size_;
pthread_rwlock_t rwlock_;
};
#endif