2019-07-04 04:43:30 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/kstdio.h>
|
|
|
|
|
2019-07-04 05:05:58 +00:00
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
class String;
|
|
|
|
class StringView;
|
|
|
|
|
2019-07-15 18:22:30 +00:00
|
|
|
class TStyle {
|
|
|
|
public:
|
|
|
|
enum NoneTag { DummyValue };
|
|
|
|
static NoneTag None;
|
|
|
|
|
|
|
|
enum Color {
|
|
|
|
Black = 0,
|
|
|
|
Red,
|
|
|
|
Green,
|
|
|
|
Brown,
|
|
|
|
Blue,
|
|
|
|
Magenta,
|
|
|
|
Cyan,
|
|
|
|
LightGray,
|
|
|
|
DarkGray,
|
|
|
|
BrightRed,
|
|
|
|
BrightGreen,
|
|
|
|
Yellow,
|
|
|
|
BrightBlue,
|
|
|
|
BrightMagenta,
|
|
|
|
BrightCyan,
|
|
|
|
White,
|
|
|
|
NoColor = 255,
|
|
|
|
};
|
|
|
|
enum Attribute {
|
|
|
|
NoAttribute = 0,
|
|
|
|
Bold = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
TStyle() {}
|
|
|
|
TStyle(NoneTag) {}
|
|
|
|
TStyle(Color color, unsigned attributes = NoAttribute)
|
|
|
|
: m_color(color)
|
|
|
|
, m_attributes(attributes)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~TStyle() {}
|
|
|
|
|
|
|
|
Color color() const { return m_color; }
|
|
|
|
unsigned attributes() const { return m_attributes; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Color m_color { NoColor };
|
|
|
|
unsigned m_attributes { NoAttribute };
|
|
|
|
};
|
|
|
|
|
2019-07-04 04:43:30 +00:00
|
|
|
class LogStream {
|
|
|
|
public:
|
|
|
|
LogStream() {}
|
|
|
|
virtual ~LogStream() {}
|
|
|
|
|
|
|
|
virtual void write(const char*, int) const = 0;
|
2019-07-15 18:22:30 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
friend const LogStream& operator<<(const LogStream&, const TStyle&);
|
|
|
|
mutable bool m_needs_style_reset { false };
|
2019-07-04 04:43:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DebugLogStream final : public LogStream {
|
|
|
|
public:
|
|
|
|
DebugLogStream() {}
|
|
|
|
virtual ~DebugLogStream() override
|
|
|
|
{
|
2019-07-15 18:22:30 +00:00
|
|
|
if (m_needs_style_reset)
|
|
|
|
write("\033[0m", 4);
|
2019-07-04 04:43:30 +00:00
|
|
|
char newline = '\n';
|
|
|
|
write(&newline, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void write(const char* characters, int length) const override
|
|
|
|
{
|
2019-07-21 19:43:37 +00:00
|
|
|
dbgputstr(characters, length);
|
2019-07-04 04:43:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
inline DebugLogStream dbg()
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const LogStream& operator<<(const LogStream& stream, const char* value)
|
|
|
|
{
|
2019-07-04 05:05:58 +00:00
|
|
|
int length = 0;
|
|
|
|
const char* p = value;
|
|
|
|
while (*(p++))
|
|
|
|
++length;
|
|
|
|
stream.write(value, length);
|
2019-07-04 04:43:30 +00:00
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2019-07-04 05:05:58 +00:00
|
|
|
const LogStream& operator<<(const LogStream&, const String&);
|
|
|
|
const LogStream& operator<<(const LogStream&, const StringView&);
|
|
|
|
const LogStream& operator<<(const LogStream&, int);
|
|
|
|
const LogStream& operator<<(const LogStream&, unsigned);
|
|
|
|
const LogStream& operator<<(const LogStream&, const void*);
|
2019-07-15 18:22:30 +00:00
|
|
|
const LogStream& operator<<(const LogStream& stream, const TStyle&);
|
2019-07-04 04:43:30 +00:00
|
|
|
|
|
|
|
inline const LogStream& operator<<(const LogStream& stream, char value)
|
|
|
|
{
|
|
|
|
stream.write(&value, 1);
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const LogStream& operator<<(const LogStream& stream, bool value)
|
|
|
|
{
|
|
|
|
return stream << (value ? "true" : "false");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-07-04 05:05:58 +00:00
|
|
|
using AK::dbg;
|
2019-07-15 18:22:30 +00:00
|
|
|
using AK::LogStream;
|
|
|
|
using AK::TStyle;
|