JSONDB performance improvements, threading fix.

This commit is contained in:
Adam Ierymenko 2017-04-24 20:51:02 -07:00
parent cafbe44dde
commit 4f2a779769
6 changed files with 96 additions and 97 deletions

View file

@ -431,6 +431,7 @@ static bool _parseRule(json &r,ZT_VirtualNetworkRule &rule)
EmbeddedNetworkController::EmbeddedNetworkController(Node *node,const char *dbPath) : EmbeddedNetworkController::EmbeddedNetworkController(Node *node,const char *dbPath) :
_startTime(OSUtils::now()), _startTime(OSUtils::now()),
_running(true),
_db(dbPath), _db(dbPath),
_node(node) _node(node)
{ {
@ -438,12 +439,19 @@ EmbeddedNetworkController::EmbeddedNetworkController(Node *node,const char *dbPa
EmbeddedNetworkController::~EmbeddedNetworkController() EmbeddedNetworkController::~EmbeddedNetworkController()
{ {
_running = false;
std::vector<Thread> t;
{
Mutex::Lock _l(_threads_m); Mutex::Lock _l(_threads_m);
if (_threads.size() > 0) { t = _threads;
for(unsigned long i=0;i<(((unsigned long)_threads.size())*2);++i) }
if (t.size() > 0) {
for(unsigned long i=0,j=(unsigned long)(t.size() * 4);i<j;++i)
_queue.post((_RQEntry *)0); _queue.post((_RQEntry *)0);
for(std::vector<Thread>::iterator i(_threads.begin());i!=_threads.end();++i) /*
for(std::vector<Thread>::iterator i(t.begin());i!=t.end();++i)
Thread::join(*i); Thread::join(*i);
*/
} }
} }
@ -1111,14 +1119,13 @@ void EmbeddedNetworkController::threadMain()
throw() throw()
{ {
uint64_t lastCircuitTestCheck = 0; uint64_t lastCircuitTestCheck = 0;
for(;;) { _RQEntry *qe = (_RQEntry *)0;
_RQEntry *const qe = _queue.get(); // waits on next request while ((_running)&&((qe = _queue.get()))) {
if (!qe) break; // enqueue a NULL to terminate threads
try { try {
_request(qe->nwid,qe->fromAddr,qe->requestPacketId,qe->identity,qe->metaData); _request(qe->nwid,qe->fromAddr,qe->requestPacketId,qe->identity,qe->metaData);
} catch ( ... ) {} } catch ( ... ) {}
delete qe; delete qe;
if (_running) {
uint64_t now = OSUtils::now(); uint64_t now = OSUtils::now();
if ((now - lastCircuitTestCheck) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) { if ((now - lastCircuitTestCheck) > ZT_EMBEDDEDNETWORKCONTROLLER_CIRCUIT_TEST_EXPIRATION) {
lastCircuitTestCheck = now; lastCircuitTestCheck = now;
@ -1131,6 +1138,7 @@ void EmbeddedNetworkController::threadMain()
} }
} }
} }
}
} }
void EmbeddedNetworkController::_circuitTestCallback(ZT_Node *node,ZT_CircuitTest *test,const ZT_CircuitTestReport *report) void EmbeddedNetworkController::_circuitTestCallback(ZT_Node *node,ZT_CircuitTest *test,const ZT_CircuitTestReport *report)
@ -1723,14 +1731,12 @@ void EmbeddedNetworkController::_getNetworkMemberInfo(uint64_t now,uint64_t nwid
char pfx[256]; char pfx[256];
Utils::snprintf(pfx,sizeof(pfx),"network/%.16llx/member",nwid); Utils::snprintf(pfx,sizeof(pfx),"network/%.16llx/member",nwid);
{
Mutex::Lock _l(_nmiCache_m); Mutex::Lock _l(_nmiCache_m);
std::map<uint64_t,_NetworkMemberInfo>::iterator c(_nmiCache.find(nwid)); std::map<uint64_t,_NetworkMemberInfo>::iterator c(_nmiCache.find(nwid));
if ((c != _nmiCache.end())&&((now - c->second.nmiTimestamp) < 1000)) { // a short duration cache but limits CPU use on big networks if ((c != _nmiCache.end())&&((now - c->second.nmiTimestamp) < 1000)) { // a short duration cache but limits CPU use on big networks
nmi = c->second; nmi = c->second;
return; return;
} }
}
_db.filter(pfx,[&nmi,&now](const std::string &n,const json &member) { _db.filter(pfx,[&nmi,&now](const std::string &n,const json &member) {
try { try {
@ -1770,10 +1776,7 @@ void EmbeddedNetworkController::_getNetworkMemberInfo(uint64_t now,uint64_t nwid
}); });
nmi.nmiTimestamp = now; nmi.nmiTimestamp = now;
{
Mutex::Lock _l(_nmiCache_m);
_nmiCache[nwid] = nmi; _nmiCache[nwid] = nmi;
}
} }
void EmbeddedNetworkController::_pushMemberUpdate(uint64_t now,uint64_t nwid,const nlohmann::json &member) void EmbeddedNetworkController::_pushMemberUpdate(uint64_t now,uint64_t nwid,const nlohmann::json &member)

View file

@ -178,6 +178,7 @@ private:
const uint64_t _startTime; const uint64_t _startTime;
volatile bool _running;
BlockingQueue<_RQEntry *> _queue; BlockingQueue<_RQEntry *> _queue;
std::vector<Thread> _threads; std::vector<Thread> _threads;
Mutex _threads_m; Mutex _threads_m;

View file

@ -50,7 +50,7 @@ JSONDB::JSONDB(const std::string &basePath) :
OSUtils::mkdir(_basePath.c_str()); OSUtils::mkdir(_basePath.c_str());
OSUtils::lockDownFile(_basePath.c_str(),true); // networks might contain auth tokens, etc., so restrict directory permissions OSUtils::lockDownFile(_basePath.c_str(),true); // networks might contain auth tokens, etc., so restrict directory permissions
} }
_ready = _reload(_basePath,std::string()); _reload(_basePath,std::string());
} }
bool JSONDB::writeRaw(const std::string &n,const std::string &obj) bool JSONDB::writeRaw(const std::string &n,const std::string &obj)
@ -87,16 +87,16 @@ bool JSONDB::put(const std::string &n,const nlohmann::json &obj)
nlohmann::json JSONDB::get(const std::string &n) nlohmann::json JSONDB::get(const std::string &n)
{ {
{
Mutex::Lock _l(_db_m);
while (!_ready) { while (!_ready) {
Thread::sleep(250); Thread::sleep(250);
_ready = _reload(_basePath,std::string()); _reload(_basePath,std::string());
} }
if (!_isValidObjectName(n)) if (!_isValidObjectName(n))
return _EMPTY_JSON; return _EMPTY_JSON;
{
Mutex::Lock _l(_db_m);
std::map<std::string,_E>::iterator e(_db.find(n)); std::map<std::string,_E>::iterator e(_db.find(n));
if (e != _db.end()) if (e != _db.end())
return e->second.obj; return e->second.obj;
@ -116,8 +116,9 @@ nlohmann::json JSONDB::get(const std::string &n)
return _EMPTY_JSON; return _EMPTY_JSON;
} }
try { {
Mutex::Lock _l(_db_m); Mutex::Lock _l(_db_m);
try {
_E &e2 = _db[n]; _E &e2 = _db[n];
e2.obj = OSUtils::jsonParse(buf); e2.obj = OSUtils::jsonParse(buf);
return e2.obj; return e2.obj;
@ -125,13 +126,22 @@ nlohmann::json JSONDB::get(const std::string &n)
_db.erase(n); _db.erase(n);
return _EMPTY_JSON; return _EMPTY_JSON;
} }
}
} }
void JSONDB::erase(const std::string &n) void JSONDB::erase(const std::string &n)
{ {
if (!_isValidObjectName(n)) if (!_isValidObjectName(n))
return; return;
_erase(n);
{
Mutex::Lock _l(_db_m);
_db.erase(n);
}
}
void JSONDB::_erase(const std::string &n)
{
if (_httpAddr) { if (_httpAddr) {
std::string body; std::string body;
std::map<std::string,std::string> headers; std::map<std::string,std::string> headers;
@ -142,17 +152,12 @@ void JSONDB::erase(const std::string &n)
return; return;
OSUtils::rm(path.c_str()); OSUtils::rm(path.c_str());
} }
{
Mutex::Lock _l(_db_m);
_db.erase(n);
}
} }
bool JSONDB::_reload(const std::string &p,const std::string &b) void JSONDB::_reload(const std::string &p,const std::string &b)
{ {
// Assumes _db_m is locked
if (_httpAddr) { if (_httpAddr) {
Mutex::Lock _l(_db_m);
std::string body; std::string body;
std::map<std::string,std::string> headers; std::map<std::string,std::string> headers;
const unsigned int sc = Http::GET(2147483647,ZT_JSONDB_HTTP_TIMEOUT,reinterpret_cast<const struct sockaddr *>(&_httpAddr),_basePath.c_str(),_ZT_JSONDB_GET_HEADERS,headers,body); const unsigned int sc = Http::GET(2147483647,ZT_JSONDB_HTTP_TIMEOUT,reinterpret_cast<const struct sockaddr *>(&_httpAddr),_basePath.c_str(),_ZT_JSONDB_GET_HEADERS,headers,body);
@ -161,18 +166,19 @@ bool JSONDB::_reload(const std::string &p,const std::string &b)
nlohmann::json dbImg(OSUtils::jsonParse(body)); nlohmann::json dbImg(OSUtils::jsonParse(body));
std::string tmp; std::string tmp;
if (dbImg.is_object()) { if (dbImg.is_object()) {
_db.clear();
for(nlohmann::json::iterator i(dbImg.begin());i!=dbImg.end();++i) { for(nlohmann::json::iterator i(dbImg.begin());i!=dbImg.end();++i) {
if (i.value().is_object()) { if (i.value().is_object()) {
tmp = i.key(); tmp = i.key();
_db[tmp].obj = i.value(); _db[tmp].obj = i.value();
} }
} }
return true; _ready = true;
} }
} catch ( ... ) {} // invalid JSON, so maybe incomplete request } catch ( ... ) {} // invalid JSON, so maybe incomplete request
} }
return false;
} else { } else {
_ready = true;
std::vector<std::string> dl(OSUtils::listDirectory(p.c_str(),true)); std::vector<std::string> dl(OSUtils::listDirectory(p.c_str(),true));
for(std::vector<std::string>::const_iterator di(dl.begin());di!=dl.end();++di) { for(std::vector<std::string>::const_iterator di(dl.begin());di!=dl.end();++di) {
if ((di->length() > 5)&&(di->substr(di->length() - 5) == ".json")) { if ((di->length() > 5)&&(di->substr(di->length() - 5) == ".json")) {
@ -181,7 +187,6 @@ bool JSONDB::_reload(const std::string &p,const std::string &b)
this->_reload((p + ZT_PATH_SEPARATOR + *di),(b + *di + ZT_PATH_SEPARATOR)); this->_reload((p + ZT_PATH_SEPARATOR + *di),(b + *di + ZT_PATH_SEPARATOR));
} }
} }
return true;
} }
} }

View file

@ -72,29 +72,28 @@ public:
template<typename F> template<typename F>
inline void filter(const std::string &prefix,F func) inline void filter(const std::string &prefix,F func)
{ {
Mutex::Lock _l(_db_m);
while (!_ready) { while (!_ready) {
Thread::sleep(250); Thread::sleep(250);
_ready = _reload(_basePath,std::string()); _reload(_basePath,std::string());
} }
{
Mutex::Lock _l(_db_m);
for(std::map<std::string,_E>::iterator i(_db.lower_bound(prefix));i!=_db.end();) { for(std::map<std::string,_E>::iterator i(_db.lower_bound(prefix));i!=_db.end();) {
if ((i->first.length() >= prefix.length())&&(!memcmp(i->first.data(),prefix.data(),prefix.length()))) { if ((i->first.length() >= prefix.length())&&(!memcmp(i->first.data(),prefix.data(),prefix.length()))) {
if (!func(i->first,get(i->first))) { if (!func(i->first,i->second.obj)) {
std::map<std::string,_E>::iterator i2(i); ++i2; this->_erase(i->first);
this->erase(i->first); _db.erase(i++);
i = i2; } else {
} else ++i; ++i;
}
} else break; } else break;
} }
} }
}
inline bool operator==(const JSONDB &db) const { return ((_basePath == db._basePath)&&(_db == db._db)); }
inline bool operator!=(const JSONDB &db) const { return (!(*this == db)); }
private: private:
bool _reload(const std::string &p,const std::string &b); void _erase(const std::string &n);
void _reload(const std::string &p,const std::string &b);
bool _isValidObjectName(const std::string &n); bool _isValidObjectName(const std::string &n);
std::string _genPath(const std::string &n,bool create); std::string _genPath(const std::string &n,bool create);

View file

@ -490,6 +490,7 @@ int Node::sendUserMessage(void *tptr,uint64_t dest,uint64_t typeId,const void *d
void Node::setNetconfMaster(void *networkControllerInstance) void Node::setNetconfMaster(void *networkControllerInstance)
{ {
RR->localNetworkController = reinterpret_cast<NetworkController *>(networkControllerInstance); RR->localNetworkController = reinterpret_cast<NetworkController *>(networkControllerInstance);
if (networkControllerInstance)
RR->localNetworkController->init(RR->identity,this); RR->localNetworkController->init(RR->identity,this);
} }

View file

@ -46,7 +46,6 @@ class Thread
{ {
public: public:
Thread() Thread()
throw()
{ {
_th = NULL; _th = NULL;
_tid = 0; _tid = 0;
@ -54,7 +53,6 @@ public:
template<typename C> template<typename C>
static inline Thread start(C *instance) static inline Thread start(C *instance)
throw(std::runtime_error)
{ {
Thread t; Thread t;
t._th = CreateThread(NULL,0,&___zt_threadMain<C>,(LPVOID)instance,0,&t._tid); t._th = CreateThread(NULL,0,&___zt_threadMain<C>,(LPVOID)instance,0,&t._tid);
@ -88,7 +86,7 @@ public:
CancelSynchronousIo(t._th); CancelSynchronousIo(t._th);
} }
inline operator bool() const throw() { return (_th != NULL); } inline operator bool() const { return (_th != NULL); }
private: private:
HANDLE _th; HANDLE _th;
@ -123,33 +121,18 @@ class Thread
{ {
public: public:
Thread() Thread()
throw()
{ {
memset(&_tid,0,sizeof(_tid)); memset(this,0,sizeof(Thread));
pthread_attr_init(&_tattr);
// This corrects for systems with abnormally small defaults (musl) and also
// shrinks the stack on systems with large defaults to save a bit of memory.
pthread_attr_setstacksize(&_tattr,ZT_THREAD_MIN_STACK_SIZE);
_started = false;
}
~Thread()
{
pthread_attr_destroy(&_tattr);
} }
Thread(const Thread &t) Thread(const Thread &t)
throw()
{ {
memcpy(&_tid,&(t._tid),sizeof(_tid)); memcpy(this,&t,sizeof(Thread));
_started = t._started;
} }
inline Thread &operator=(const Thread &t) inline Thread &operator=(const Thread &t)
throw()
{ {
memcpy(&_tid,&(t._tid),sizeof(_tid)); memcpy(this,&t,sizeof(Thread));
_started = t._started;
return *this; return *this;
} }
@ -163,12 +146,20 @@ public:
*/ */
template<typename C> template<typename C>
static inline Thread start(C *instance) static inline Thread start(C *instance)
throw(std::runtime_error)
{ {
Thread t; Thread t;
t._started = true; pthread_attr_t tattr;
if (pthread_create(&t._tid,&t._tattr,&___zt_threadMain<C>,instance)) pthread_attr_init(&tattr);
// This corrects for systems with abnormally small defaults (musl) and also
// shrinks the stack on systems with large defaults to save a bit of memory.
pthread_attr_setstacksize(&tattr,ZT_THREAD_MIN_STACK_SIZE);
if (pthread_create(&t._tid,&tattr,&___zt_threadMain<C>,instance)) {
pthread_attr_destroy(&tattr);
throw std::runtime_error("pthread_create() failed, unable to create thread"); throw std::runtime_error("pthread_create() failed, unable to create thread");
} else {
t._started = true;
pthread_attr_destroy(&tattr);
}
return t; return t;
} }
@ -190,11 +181,10 @@ public:
*/ */
static inline void sleep(unsigned long ms) { usleep(ms * 1000); } static inline void sleep(unsigned long ms) { usleep(ms * 1000); }
inline operator bool() const throw() { return (_started); } inline operator bool() const { return (_started); }
private: private:
pthread_t _tid; pthread_t _tid;
pthread_attr_t _tattr;
volatile bool _started; volatile bool _started;
}; };