forked from Mirrorlandia_minetest/minetest
Use std::queue for HTTPFetchRequest and std::vector for log_output instead of std::list
This commit is contained in:
parent
9749d9fee6
commit
3d505b2b5f
@ -37,7 +37,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
|
||||||
JMutex g_httpfetch_mutex;
|
JMutex g_httpfetch_mutex;
|
||||||
std::map<unsigned long, std::list<HTTPFetchResult> > g_httpfetch_results;
|
std::map<unsigned long, std::queue<HTTPFetchResult> > g_httpfetch_results;
|
||||||
|
|
||||||
HTTPFetchRequest::HTTPFetchRequest()
|
HTTPFetchRequest::HTTPFetchRequest()
|
||||||
{
|
{
|
||||||
@ -57,7 +57,7 @@ static void httpfetch_deliver_result(const HTTPFetchResult &fetch_result)
|
|||||||
unsigned long caller = fetch_result.caller;
|
unsigned long caller = fetch_result.caller;
|
||||||
if (caller != HTTPFETCH_DISCARD) {
|
if (caller != HTTPFETCH_DISCARD) {
|
||||||
JMutexAutoLock lock(g_httpfetch_mutex);
|
JMutexAutoLock lock(g_httpfetch_mutex);
|
||||||
g_httpfetch_results[caller].push_back(fetch_result);
|
g_httpfetch_results[caller].push(fetch_result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,11 +70,11 @@ unsigned long httpfetch_caller_alloc()
|
|||||||
// Check each caller ID except HTTPFETCH_DISCARD
|
// Check each caller ID except HTTPFETCH_DISCARD
|
||||||
const unsigned long discard = HTTPFETCH_DISCARD;
|
const unsigned long discard = HTTPFETCH_DISCARD;
|
||||||
for (unsigned long caller = discard + 1; caller != discard; ++caller) {
|
for (unsigned long caller = discard + 1; caller != discard; ++caller) {
|
||||||
std::map<unsigned long, std::list<HTTPFetchResult> >::iterator
|
std::map<unsigned long, std::queue<HTTPFetchResult> >::iterator
|
||||||
it = g_httpfetch_results.find(caller);
|
it = g_httpfetch_results.find(caller);
|
||||||
if (it == g_httpfetch_results.end()) {
|
if (it == g_httpfetch_results.end()) {
|
||||||
verbosestream<<"httpfetch_caller_alloc: allocating "
|
verbosestream << "httpfetch_caller_alloc: allocating "
|
||||||
<<caller<<std::endl;
|
<< caller << std::endl;
|
||||||
// Access element to create it
|
// Access element to create it
|
||||||
g_httpfetch_results[caller];
|
g_httpfetch_results[caller];
|
||||||
return caller;
|
return caller;
|
||||||
@ -102,19 +102,19 @@ bool httpfetch_async_get(unsigned long caller, HTTPFetchResult &fetch_result)
|
|||||||
JMutexAutoLock lock(g_httpfetch_mutex);
|
JMutexAutoLock lock(g_httpfetch_mutex);
|
||||||
|
|
||||||
// Check that caller exists
|
// Check that caller exists
|
||||||
std::map<unsigned long, std::list<HTTPFetchResult> >::iterator
|
std::map<unsigned long, std::queue<HTTPFetchResult> >::iterator
|
||||||
it = g_httpfetch_results.find(caller);
|
it = g_httpfetch_results.find(caller);
|
||||||
if (it == g_httpfetch_results.end())
|
if (it == g_httpfetch_results.end())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Check that result queue is nonempty
|
// Check that result queue is nonempty
|
||||||
std::list<HTTPFetchResult> &caller_results = it->second;
|
std::queue<HTTPFetchResult> &caller_results = it->second;
|
||||||
if (caller_results.empty())
|
if (caller_results.empty())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Pop first result
|
// Pop first result
|
||||||
fetch_result = caller_results.front();
|
fetch_result = caller_results.front();
|
||||||
caller_results.pop_front();
|
caller_results.pop();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
33
src/log.cpp
33
src/log.cpp
@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include "threads.h"
|
#include "threads.h"
|
||||||
|
#include "jthread/jmutexautolock.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "gettime.h"
|
#include "gettime.h"
|
||||||
#include "porting.h"
|
#include "porting.h"
|
||||||
@ -38,7 +39,7 @@ unsigned int android_log_level_mapping[] = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
std::list<ILogOutput*> log_outputs[LMT_NUM_VALUES];
|
std::vector<ILogOutput*> log_outputs[LMT_NUM_VALUES];
|
||||||
std::map<threadid_t, std::string> log_threadnames;
|
std::map<threadid_t, std::string> log_threadnames;
|
||||||
JMutex log_threadnamemutex;
|
JMutex log_threadnamemutex;
|
||||||
|
|
||||||
@ -62,7 +63,7 @@ void log_add_output_all_levs(ILogOutput *out)
|
|||||||
void log_remove_output(ILogOutput *out)
|
void log_remove_output(ILogOutput *out)
|
||||||
{
|
{
|
||||||
for(int i=0; i<LMT_NUM_VALUES; i++){
|
for(int i=0; i<LMT_NUM_VALUES; i++){
|
||||||
std::list<ILogOutput*>::iterator it =
|
std::vector<ILogOutput*>::iterator it =
|
||||||
std::find(log_outputs[i].begin(), log_outputs[i].end(), out);
|
std::find(log_outputs[i].begin(), log_outputs[i].end(), out);
|
||||||
if(it != log_outputs[i].end())
|
if(it != log_outputs[i].end())
|
||||||
log_outputs[i].erase(it);
|
log_outputs[i].erase(it);
|
||||||
@ -71,33 +72,29 @@ void log_remove_output(ILogOutput *out)
|
|||||||
|
|
||||||
void log_set_lev_silence(enum LogMessageLevel lev, bool silence)
|
void log_set_lev_silence(enum LogMessageLevel lev, bool silence)
|
||||||
{
|
{
|
||||||
log_threadnamemutex.Lock();
|
JMutexAutoLock lock(log_threadnamemutex);
|
||||||
|
|
||||||
for (std::list<ILogOutput *>::iterator
|
for (std::vector<ILogOutput *>::iterator it = log_outputs[lev].begin();
|
||||||
it = log_outputs[lev].begin();
|
it != log_outputs[lev].end(); ++it) {
|
||||||
it != log_outputs[lev].end();
|
|
||||||
++it) {
|
|
||||||
ILogOutput *out = *it;
|
ILogOutput *out = *it;
|
||||||
out->silence = silence;
|
out->silence = silence;
|
||||||
}
|
}
|
||||||
|
|
||||||
log_threadnamemutex.Unlock();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_register_thread(const std::string &name)
|
void log_register_thread(const std::string &name)
|
||||||
{
|
{
|
||||||
threadid_t id = get_current_thread_id();
|
threadid_t id = get_current_thread_id();
|
||||||
log_threadnamemutex.Lock();
|
JMutexAutoLock lock(log_threadnamemutex);
|
||||||
|
|
||||||
log_threadnames[id] = name;
|
log_threadnames[id] = name;
|
||||||
log_threadnamemutex.Unlock();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void log_deregister_thread()
|
void log_deregister_thread()
|
||||||
{
|
{
|
||||||
threadid_t id = get_current_thread_id();
|
threadid_t id = get_current_thread_id();
|
||||||
log_threadnamemutex.Lock();
|
JMutexAutoLock lock(log_threadnamemutex);
|
||||||
|
|
||||||
log_threadnames.erase(id);
|
log_threadnames.erase(id);
|
||||||
log_threadnamemutex.Unlock();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static std::string get_lev_string(enum LogMessageLevel lev)
|
static std::string get_lev_string(enum LogMessageLevel lev)
|
||||||
@ -119,7 +116,7 @@ static std::string get_lev_string(enum LogMessageLevel lev)
|
|||||||
|
|
||||||
void log_printline(enum LogMessageLevel lev, const std::string &text)
|
void log_printline(enum LogMessageLevel lev, const std::string &text)
|
||||||
{
|
{
|
||||||
log_threadnamemutex.Lock();
|
JMutexAutoLock lock(log_threadnamemutex);
|
||||||
std::string threadname = "(unknown thread)";
|
std::string threadname = "(unknown thread)";
|
||||||
std::map<threadid_t, std::string>::const_iterator i;
|
std::map<threadid_t, std::string>::const_iterator i;
|
||||||
i = log_threadnames.find(get_current_thread_id());
|
i = log_threadnames.find(get_current_thread_id());
|
||||||
@ -127,9 +124,10 @@ void log_printline(enum LogMessageLevel lev, const std::string &text)
|
|||||||
threadname = i->second;
|
threadname = i->second;
|
||||||
std::string levelname = get_lev_string(lev);
|
std::string levelname = get_lev_string(lev);
|
||||||
std::ostringstream os(std::ios_base::binary);
|
std::ostringstream os(std::ios_base::binary);
|
||||||
os<<getTimestamp()<<": "<<levelname<<"["<<threadname<<"]: "<<text;
|
os << getTimestamp() << ": " << levelname << "["<<threadname<<"]: " << text;
|
||||||
for(std::list<ILogOutput*>::iterator i = log_outputs[lev].begin();
|
|
||||||
i != log_outputs[lev].end(); i++){
|
for(std::vector<ILogOutput*>::iterator i = log_outputs[lev].begin();
|
||||||
|
i != log_outputs[lev].end(); i++) {
|
||||||
ILogOutput *out = *i;
|
ILogOutput *out = *i;
|
||||||
if (out->silence)
|
if (out->silence)
|
||||||
continue;
|
continue;
|
||||||
@ -138,7 +136,6 @@ void log_printline(enum LogMessageLevel lev, const std::string &text)
|
|||||||
out->printLog(os.str(), lev);
|
out->printLog(os.str(), lev);
|
||||||
out->printLog(lev, text);
|
out->printLog(lev, text);
|
||||||
}
|
}
|
||||||
log_threadnamemutex.Unlock();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class Logbuf : public std::streambuf
|
class Logbuf : public std::streambuf
|
||||||
|
Loading…
Reference in New Issue
Block a user