2020-02-06 09:05:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <mesosphere.hpp>
|
|
|
|
#include "kern_debug_log_impl.hpp"
|
|
|
|
|
|
|
|
namespace ams::kern {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
KSpinLock g_debug_log_lock;
|
|
|
|
bool g_initialized_impl;
|
|
|
|
|
|
|
|
/* NOTE: Nintendo's print buffer is size 0x100. */
|
|
|
|
char g_print_buffer[0x400];
|
|
|
|
|
|
|
|
void PutString(const char *str) {
|
2020-07-09 21:07:38 +01:00
|
|
|
/* Only print if the implementation is initialized. */
|
|
|
|
if (!g_initialized_impl) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*str) {
|
|
|
|
/* Get a character. */
|
|
|
|
const char c = *(str++);
|
|
|
|
|
|
|
|
/* Print the character. */
|
|
|
|
if (c == '\n') {
|
|
|
|
KDebugLogImpl::PutChar('\r');
|
2020-02-06 09:05:35 +00:00
|
|
|
}
|
2020-07-09 21:07:38 +01:00
|
|
|
KDebugLogImpl::PutChar(c);
|
2020-02-06 09:05:35 +00:00
|
|
|
}
|
2020-07-09 21:07:38 +01:00
|
|
|
|
|
|
|
KDebugLogImpl::Flush();
|
2020-02-06 09:05:35 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 21:07:38 +01:00
|
|
|
#if defined(MESOSPHERE_ENABLE_DEBUG_PRINT)
|
|
|
|
|
|
|
|
Result PutUserString(ams::kern::svc::KUserPointer<const char *> user_str, size_t len) {
|
|
|
|
/* Only print if the implementation is initialized. */
|
|
|
|
if (!g_initialized_impl) {
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < len; ++i) {
|
|
|
|
/* Get a character. */
|
|
|
|
char c;
|
|
|
|
R_TRY(user_str.CopyArrayElementTo(std::addressof(c), i));
|
|
|
|
|
|
|
|
/* Print the character. */
|
|
|
|
if (c == '\n') {
|
|
|
|
KDebugLogImpl::PutChar('\r');
|
|
|
|
}
|
|
|
|
KDebugLogImpl::PutChar(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
KDebugLogImpl::Flush();
|
|
|
|
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-02-06 09:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void KDebugLog::Initialize() {
|
|
|
|
if (KTargetSystem::IsDebugLoggingEnabled()) {
|
|
|
|
KScopedInterruptDisable di;
|
|
|
|
KScopedSpinLock lk(g_debug_log_lock);
|
|
|
|
|
|
|
|
if (!g_initialized_impl) {
|
|
|
|
g_initialized_impl = KDebugLogImpl::Initialize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KDebugLog::Printf(const char *format, ...) {
|
|
|
|
if (KTargetSystem::IsDebugLoggingEnabled()) {
|
|
|
|
::std::va_list vl;
|
|
|
|
va_start(vl, format);
|
|
|
|
VPrintf(format, vl);
|
|
|
|
va_end(vl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KDebugLog::VPrintf(const char *format, ::std::va_list vl) {
|
|
|
|
if (KTargetSystem::IsDebugLoggingEnabled()) {
|
|
|
|
KScopedInterruptDisable di;
|
|
|
|
KScopedSpinLock lk(g_debug_log_lock);
|
|
|
|
|
|
|
|
VSNPrintf(g_print_buffer, util::size(g_print_buffer), format, vl);
|
|
|
|
PutString(g_print_buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KDebugLog::VSNPrintf(char *dst, const size_t dst_size, const char *format, ::std::va_list vl) {
|
2020-10-30 18:54:30 +00:00
|
|
|
::ams::util::TVSNPrintf(dst, dst_size, format, vl);
|
2020-02-06 09:05:35 +00:00
|
|
|
}
|
|
|
|
|
2020-07-09 21:07:38 +01:00
|
|
|
Result KDebugLog::PrintUserString(ams::kern::svc::KUserPointer<const char *> user_str, size_t len) {
|
|
|
|
/* If printing is enabled, print the user string. */
|
|
|
|
#if defined(MESOSPHERE_ENABLE_DEBUG_PRINT)
|
|
|
|
if (KTargetSystem::IsDebugLoggingEnabled()) {
|
|
|
|
KScopedInterruptDisable di;
|
|
|
|
KScopedSpinLock lk(g_debug_log_lock);
|
|
|
|
|
|
|
|
R_TRY(PutUserString(user_str, len));
|
|
|
|
}
|
2020-08-17 22:20:24 +01:00
|
|
|
#else
|
|
|
|
MESOSPHERE_UNUSED(user_str, len);
|
2020-07-09 21:07:38 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
2020-07-24 11:29:12 +01:00
|
|
|
void KDebugLog::Save() {
|
|
|
|
if (KTargetSystem::IsDebugLoggingEnabled()) {
|
|
|
|
KScopedInterruptDisable di;
|
|
|
|
KScopedSpinLock lk(g_debug_log_lock);
|
|
|
|
|
|
|
|
KDebugLogImpl::Save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KDebugLog::Restore() {
|
|
|
|
if (KTargetSystem::IsDebugLoggingEnabled()) {
|
|
|
|
KScopedInterruptDisable di;
|
|
|
|
KScopedSpinLock lk(g_debug_log_lock);
|
|
|
|
|
|
|
|
KDebugLogImpl::Restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-06 09:05:35 +00:00
|
|
|
}
|