Files
filament/libs/utils/src/Log.cpp
Mathias Agopian 9fa3cbfcde add a way to set a log consumer
this is a private API to capture filament's logs.
2023-12-19 12:09:28 -08:00

136 lines
3.5 KiB
C++

/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <utils/Log.h>
#include "ostream_.h"
#include <utils/compiler.h>
#ifdef __ANDROID__
# include <android/log.h>
# ifndef UTILS_LOG_TAG
# define UTILS_LOG_TAG "Filament"
# endif
#endif
#if defined(__EMSCRIPTEN__)
#include <emscripten/console.h>
#endif
#include <mutex>
namespace utils {
namespace io {
class LogStream : public ostream {
public:
enum Priority {
LOG_DEBUG, LOG_ERROR, LOG_WARNING, LOG_INFO, LOG_VERBOSE
};
explicit LogStream(Priority p) noexcept : mPriority(p) {}
ostream& flush() noexcept override;
private:
const Priority mPriority;
};
ostream& LogStream::flush() noexcept {
std::lock_guard const lock(mImpl->mLock);
Buffer& buf = getBuffer();
char const* const str = buf.get();
if (UTILS_UNLIKELY(!str)) {
// this can happen if the log hasn't been written ever
return *this;
}
#ifdef __ANDROID__
int prio = ANDROID_LOG_UNKNOWN;
switch (mPriority) {
case LOG_DEBUG: prio = ANDROID_LOG_DEBUG; break;
case LOG_ERROR: prio = ANDROID_LOG_ERROR; break;
case LOG_WARNING: prio = ANDROID_LOG_WARN; break;
case LOG_INFO: prio = ANDROID_LOG_INFO; break;
case LOG_VERBOSE: prio = ANDROID_LOG_VERBOSE; break;
}
__android_log_write(prio, UTILS_LOG_TAG, str);
#elif defined(__EMSCRIPTEN__)
switch (mPriority) {
case LOG_DEBUG:
case LOG_WARNING:
case LOG_INFO:
_emscripten_out(str);
break;
case LOG_ERROR:
_emscripten_err(str);
break;
case LOG_VERBOSE:
#ifndef NFIL_DEBUG
_emscripten_out(str);
#endif
break;
}
#else // not ANDROID or EMSCRIPTEN
switch (mPriority) {
case LOG_DEBUG:
case LOG_WARNING:
case LOG_INFO:
fprintf(stdout, "%s", str);
break;
case LOG_ERROR:
fprintf(stderr, "%s", str);
break;
case LOG_VERBOSE:
#ifndef NDEBUG
fprintf(stdout, "%s", str);
#endif
break;
}
#endif // __ANDROID__ or __EMSCRIPTEN__
buf.reset();
return *this;
}
/*
* We can't use thread_local because on Android we're currently using several dynamic libraries
* including this .o (via libutils.a), which violates the ODR and ends-up with only one of
* the thread_local instance initialized.
* For this reason, ostream is protected by a mutex instead.
*/
static LogStream cout(LogStream::Priority::LOG_DEBUG);
static LogStream cerr(LogStream::Priority::LOG_ERROR);
static LogStream cwarn(LogStream::Priority::LOG_WARNING);
static LogStream cinfo(LogStream::Priority::LOG_INFO);
static LogStream cverbose(LogStream::Priority::LOG_VERBOSE);
} // namespace io
Loggers const slog = {
io::cout, // debug
io::cerr, // error
io::cwarn, // warning
io::cinfo, // info
io::cverbose // verbose
};
} // namespace utils