2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2020-03-22 18:07:02 +00:00
|
|
|
#include <AK/FlyString.h>
|
2019-07-04 05:05:58 +00:00
|
|
|
#include <AK/LogStream.h>
|
2020-01-21 15:14:39 +00:00
|
|
|
#include <AK/String.h>
|
2019-07-04 05:05:58 +00:00
|
|
|
#include <AK/StringView.h>
|
|
|
|
|
2020-01-21 15:14:39 +00:00
|
|
|
#ifdef KERNEL
|
|
|
|
# include <Kernel/Process.h>
|
|
|
|
# include <Kernel/Thread.h>
|
|
|
|
#endif
|
|
|
|
|
2020-05-16 10:00:04 +00:00
|
|
|
#if !defined(KERNEL)
|
|
|
|
# include <stdio.h>
|
2020-04-06 08:12:10 +00:00
|
|
|
#endif
|
|
|
|
|
2019-07-04 05:05:58 +00:00
|
|
|
namespace AK {
|
|
|
|
|
2019-07-08 07:22:22 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, const String& value)
|
2019-07-04 05:05:58 +00:00
|
|
|
{
|
|
|
|
stream.write(value.characters(), value.length());
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2020-03-22 18:07:02 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, const FlyString& value)
|
|
|
|
{
|
|
|
|
return stream << value.view();
|
|
|
|
}
|
|
|
|
|
2019-07-08 07:22:22 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, const StringView& value)
|
2019-07-04 05:05:58 +00:00
|
|
|
{
|
2019-07-08 13:38:44 +00:00
|
|
|
stream.write(value.characters_without_null_termination(), value.length());
|
2019-07-04 05:05:58 +00:00
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2020-02-05 18:09:29 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, int value)
|
2019-07-04 05:05:58 +00:00
|
|
|
{
|
2020-02-16 11:48:58 +00:00
|
|
|
char buffer[32];
|
2020-08-16 13:47:33 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%d", value);
|
2020-02-16 11:48:58 +00:00
|
|
|
return stream << buffer;
|
2019-07-04 05:05:58 +00:00
|
|
|
}
|
|
|
|
|
2020-02-08 00:41:43 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, long value)
|
|
|
|
{
|
2020-02-16 11:48:58 +00:00
|
|
|
char buffer[32];
|
2020-08-16 13:47:33 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%ld", value);
|
2020-02-16 11:48:58 +00:00
|
|
|
return stream << buffer;
|
2020-02-08 00:41:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const LogStream& operator<<(const LogStream& stream, long long value)
|
|
|
|
{
|
2020-02-16 11:48:58 +00:00
|
|
|
char buffer[32];
|
2020-08-16 13:47:33 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%lld", value);
|
2020-02-16 11:48:58 +00:00
|
|
|
return stream << buffer;
|
2020-02-08 00:41:43 +00:00
|
|
|
}
|
|
|
|
|
2020-02-05 18:09:29 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, unsigned value)
|
2019-12-09 16:45:11 +00:00
|
|
|
{
|
2020-02-16 11:48:58 +00:00
|
|
|
char buffer[32];
|
2020-08-16 13:47:33 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%u", value);
|
2020-02-16 11:48:58 +00:00
|
|
|
return stream << buffer;
|
2019-12-09 16:45:11 +00:00
|
|
|
}
|
|
|
|
|
2020-02-05 18:09:29 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, unsigned long long value)
|
2020-01-30 23:03:58 +00:00
|
|
|
{
|
2020-02-16 11:48:58 +00:00
|
|
|
char buffer[32];
|
2020-08-16 13:47:33 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%llu", value);
|
2020-02-16 11:48:58 +00:00
|
|
|
return stream << buffer;
|
2020-01-30 23:03:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const LogStream& operator<<(const LogStream& stream, unsigned long value)
|
2019-07-04 05:05:58 +00:00
|
|
|
{
|
2020-02-16 11:48:58 +00:00
|
|
|
char buffer[32];
|
2020-08-16 13:47:33 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%lu", value);
|
2020-02-16 11:48:58 +00:00
|
|
|
return stream << buffer;
|
2019-07-04 05:05:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const LogStream& operator<<(const LogStream& stream, const void* value)
|
|
|
|
{
|
2020-02-16 11:48:58 +00:00
|
|
|
char buffer[32];
|
2020-08-16 13:47:33 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "%p", value);
|
2020-02-16 11:48:58 +00:00
|
|
|
return stream << buffer;
|
2019-07-04 05:05:58 +00:00
|
|
|
}
|
|
|
|
|
2020-05-16 10:00:04 +00:00
|
|
|
#if defined(__serenity__) && !defined(KERNEL)
|
2019-08-15 18:55:45 +00:00
|
|
|
static TriState got_process_name = TriState::Unknown;
|
|
|
|
static char process_name_buffer[256];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
DebugLogStream dbg()
|
|
|
|
{
|
|
|
|
DebugLogStream stream;
|
2020-05-16 10:00:04 +00:00
|
|
|
#if defined(__serenity__) && !defined(KERNEL)
|
2019-08-15 18:55:45 +00:00
|
|
|
if (got_process_name == TriState::Unknown) {
|
|
|
|
if (get_process_name(process_name_buffer, sizeof(process_name_buffer)) == 0)
|
|
|
|
got_process_name = TriState::True;
|
|
|
|
else
|
|
|
|
got_process_name = TriState::False;
|
|
|
|
}
|
|
|
|
if (got_process_name == TriState::True)
|
2019-11-06 10:37:03 +00:00
|
|
|
stream << "\033[33;1m" << process_name_buffer << '(' << getpid() << ")\033[0m: ";
|
2020-01-21 15:14:39 +00:00
|
|
|
#endif
|
2020-05-16 10:00:04 +00:00
|
|
|
#if defined(__serenity__) && defined(KERNEL)
|
2020-06-28 21:34:31 +00:00
|
|
|
if (Kernel::Processor::is_initialized() && Kernel::Thread::current())
|
|
|
|
stream << "\033[34;1m[" << *Kernel::Thread::current() << "]\033[0m: ";
|
2020-01-21 15:14:39 +00:00
|
|
|
else
|
|
|
|
stream << "\033[36;1m[Kernel]\033[0m: ";
|
2019-08-15 18:55:45 +00:00
|
|
|
#endif
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2020-05-16 10:00:04 +00:00
|
|
|
#ifdef KERNEL
|
2020-02-28 15:10:30 +00:00
|
|
|
KernelLogStream klog()
|
|
|
|
{
|
|
|
|
KernelLogStream stream;
|
2020-06-28 21:34:31 +00:00
|
|
|
if (Kernel::Processor::is_initialized() && Kernel::Thread::current())
|
|
|
|
stream << "\033[34;1m[" << *Kernel::Thread::current() << "]\033[0m: ";
|
2020-02-28 15:10:30 +00:00
|
|
|
else
|
|
|
|
stream << "\033[36;1m[Kernel]\033[0m: ";
|
|
|
|
return stream;
|
|
|
|
}
|
2020-05-16 10:00:04 +00:00
|
|
|
#else
|
2020-02-28 15:10:30 +00:00
|
|
|
DebugLogStream klog()
|
|
|
|
{
|
|
|
|
return dbg();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-05-16 10:00:04 +00:00
|
|
|
#ifdef KERNEL
|
2020-02-28 15:10:30 +00:00
|
|
|
KernelLogStream::~KernelLogStream()
|
|
|
|
{
|
2020-07-02 14:34:08 +00:00
|
|
|
if (!empty()) {
|
|
|
|
char newline = '\n';
|
|
|
|
write(&newline, 1);
|
|
|
|
kernelputstr(reinterpret_cast<char*>(data()), size());
|
|
|
|
}
|
2020-02-28 15:10:30 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-02-14 20:41:10 +00:00
|
|
|
DebugLogStream::~DebugLogStream()
|
|
|
|
{
|
2020-08-28 07:56:51 +00:00
|
|
|
if (!empty() && s_enabled) {
|
2020-07-02 14:34:08 +00:00
|
|
|
char newline = '\n';
|
|
|
|
write(&newline, 1);
|
|
|
|
dbgputstr(reinterpret_cast<char*>(data()), size());
|
|
|
|
}
|
2020-02-14 20:41:10 +00:00
|
|
|
}
|
|
|
|
|
2020-08-28 07:56:51 +00:00
|
|
|
void DebugLogStream::set_enabled(bool enabled)
|
|
|
|
{
|
|
|
|
s_enabled = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DebugLogStream::is_enabled()
|
|
|
|
{
|
|
|
|
return s_enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DebugLogStream::s_enabled = true;
|
|
|
|
|
2020-05-16 10:00:04 +00:00
|
|
|
#ifndef KERNEL
|
2020-04-06 08:12:10 +00:00
|
|
|
StdLogStream::~StdLogStream()
|
|
|
|
{
|
|
|
|
char newline = '\n';
|
|
|
|
write(&newline, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void StdLogStream::write(const char* characters, int length) const
|
|
|
|
{
|
|
|
|
if (::write(m_fd, characters, length) < 0) {
|
|
|
|
perror("StdLogStream::write");
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
}
|
2020-04-12 17:17:10 +00:00
|
|
|
|
|
|
|
const LogStream& operator<<(const LogStream& stream, double value)
|
|
|
|
{
|
|
|
|
return stream << String::format("%.4f", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
const LogStream& operator<<(const LogStream& stream, float value)
|
|
|
|
{
|
|
|
|
return stream << String::format("%.4f", value);
|
|
|
|
}
|
|
|
|
|
2020-04-06 08:12:10 +00:00
|
|
|
#endif
|
|
|
|
|
2019-07-04 05:05:58 +00:00
|
|
|
}
|