summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdwin Mons <edwin.mons@isode.com>2019-11-13 12:03:22 (GMT)
committerEdwin Mons <edwin.mons@isode.com>2019-11-13 12:46:21 (GMT)
commitd640ec248ca8bf86a03007a0f8df352df696cf92 (patch)
tree049bda0ad8e3fe50eda047b5e8086fd903cb5afe /Swiften/Base/Log.cpp
parent959a42d21fd70ea002da9afa7482194e8b6097e1 (diff)
downloadswift-d640ec248ca8bf86a03007a0f8df352df696cf92.zip
swift-d640ec248ca8bf86a03007a0f8df352df696cf92.tar.bz2
Support application-supplied logging
This adds a method to set a logging callback. If such a callback is set, all SWIFT_LOG calls will invoke this callback instead of writing to either stderr or the swift logging file. Test-Information: Updated unit tests pass. Checked that logs generated by Swift and Sluift (which do not set the callback) resulted in logging in the expected location. Change-Id: I0eb2a1057aa77839e1b8d5f320205eb9d5fdc253
Diffstat (limited to 'Swiften/Base/Log.cpp')
-rw-r--r--Swiften/Base/Log.cpp28
1 files changed, 22 insertions, 6 deletions
diff --git a/Swiften/Base/Log.cpp b/Swiften/Base/Log.cpp
index 9b16531..abfd2bc 100644
--- a/Swiften/Base/Log.cpp
+++ b/Swiften/Base/Log.cpp
@@ -11,54 +11,70 @@
#if defined(SWIFT_ANDROID_LOGGING) && defined(__ANDROID__)
#include <android/log.h>
#endif
namespace Swift {
static Log::Severity logLevel = Log::warning;
std::unique_ptr<FILE, Log::LogFileClose> Log::logfile;
+Log::Callback Log::logCallback;
Log::Log() {
}
Log::~Log() {
#if defined(SWIFT_ANDROID_LOGGING) && defined(__ANDROID__)
__android_log_print(ANDROID_LOG_VERBOSE, "Swift", stream.str().c_str(), 1);
#else
// Using stdio for thread safety (POSIX file i/o calls are guaranteed to be atomic)
- if (logfile) {
+ if (logCallback) {
+ logCallback(severity_, std::move(file_), line_, std::move(function_), stream.str());
+ }
+ else if (logfile) {
fwrite(stream.str().c_str(), sizeof(char), stream.str().size(), logfile.get());
fflush(logfile.get());
}
else {
fwrite(stream.str().c_str(), sizeof(char), stream.str().size(), stderr);
fflush(stderr);
}
#endif
}
std::ostringstream& Log::getStream(
- Severity /*severity*/,
- const std::string& severityString,
- const std::string& file,
+ Severity severity,
+ std::string severityString,
+ std::string file,
int line,
- const std::string& function) {
- stream << "[" << severityString << "] " << file << ":" << line << " " << function << ": ";
+ std::string function) {
+ if (logCallback) {
+ severity_ = severity;
+ file_ = std::move(file);
+ line_ = line;
+ function_ = std::move(function);
+ }
+ else {
+ stream << "[" << severityString << "] " << file << ":" << line << " " << function << ": ";
+ }
return stream;
}
Log::Severity Log::getLogLevel() {
return logLevel;
}
void Log::setLogLevel(Severity level) {
logLevel = level;
}
void Log::setLogFile(const std::string& fileName) {
if (!fileName.empty()) {
logfile = std::unique_ptr<FILE, Log::LogFileClose>(fopen(fileName.c_str(), "a"));
}
}
+void Log::setLogCallback(Callback callback) {
+ Log::logCallback = callback;
+}
+
}