spdlog/formatter/json_formatter.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
use std::{
fmt::{self, Write},
marker::PhantomData,
time::SystemTime,
};
use cfg_if::cfg_if;
use serde::{ser::SerializeStruct, Serialize};
use crate::{
formatter::{Formatter, FormatterContext},
Error, Record, StringBuf, __EOL,
};
fn opt_to_num<T>(opt: Option<T>) -> usize {
opt.map_or(0, |_| 1)
}
struct JsonRecord<'a>(&'a Record<'a>);
impl<'a> Serialize for JsonRecord<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
let fields_len =
4 + opt_to_num(self.0.logger_name()) + opt_to_num(self.0.source_location());
let mut record = serializer.serialize_struct("JsonRecord", fields_len)?;
record.serialize_field("level", &self.0.level())?;
record.serialize_field(
"timestamp",
&self
.0
.time()
.duration_since(SystemTime::UNIX_EPOCH)
.ok()
// https://github.com/SpriteOvO/spdlog-rs/pull/69#discussion_r1694063293
.and_then(|dur| u64::try_from(dur.as_millis()).ok())
.expect("invalid timestamp"),
)?;
record.serialize_field("payload", self.0.payload())?;
if let Some(logger_name) = self.0.logger_name() {
record.serialize_field("logger", logger_name)?;
}
record.serialize_field("tid", &self.0.tid())?;
if let Some(src_loc) = self.0.source_location() {
record.serialize_field("source", src_loc)?;
}
record.end()
}
}
impl<'a> From<&'a Record<'a>> for JsonRecord<'a> {
fn from(value: &'a Record<'a>) -> Self {
JsonRecord(value)
}
}
enum JsonFormatterError {
Fmt(fmt::Error),
Serialization(serde_json::Error),
}
impl From<fmt::Error> for JsonFormatterError {
fn from(value: fmt::Error) -> Self {
JsonFormatterError::Fmt(value)
}
}
impl From<serde_json::Error> for JsonFormatterError {
fn from(value: serde_json::Error) -> Self {
JsonFormatterError::Serialization(value)
}
}
impl From<JsonFormatterError> for crate::Error {
fn from(value: JsonFormatterError) -> Self {
match value {
JsonFormatterError::Fmt(e) => Error::FormatRecord(e),
JsonFormatterError::Serialization(e) => Error::SerializeRecord(e.into()),
}
}
}
#[rustfmt::skip]
/// JSON logs formatter.
///
/// Each log will be serialized into a single line of JSON object with the following schema.
///
/// ## Schema
///
/// | Field | Type | Description |
/// |-------------|--------------|--------------------------------------------------------------------------------------------------------------------------------|
/// | `level` | String | The level of the log. Same as the return of [`Level::as_str`]. |
/// | `timestamp` | Integer(u64) | The timestamp when the log was generated, in milliseconds since January 1, 1970 00:00:00 UTC. |
/// | `payload` | String | The contents of the log. |
/// | `logger` | String/Null | The name of the logger. Null if the logger has no name. |
/// | `tid` | Integer(u64) | The thread ID when the log was generated. |
/// | `source` | Object/Null | The source location of the log. See [`SourceLocation`] for its schema. Null if crate feature `source-location` is not enabled. |
///
/// <div class="warning">
///
/// - If the type of a field is Null, the field will not be present or be `null`.
///
/// - The order of the fields is not guaranteed.
///
/// </div>
///
/// ---
///
/// ## Examples
///
/// - Default:
///
/// ```json
/// {"level":"info","timestamp":1722817424798,"payload":"hello, world!","tid":3472525}
/// {"level":"error","timestamp":1722817424798,"payload":"something went wrong","tid":3472525}
/// ```
///
/// - If the logger has a name:
///
/// ```json
/// {"level":"info","timestamp":1722817541459,"payload":"hello, world!","logger":"app-component","tid":3478045}
/// {"level":"error","timestamp":1722817541459,"payload":"something went wrong","logger":"app-component","tid":3478045}
/// ```
///
/// - If crate feature `source-location` is enabled:
///
/// ```json
/// {"level":"info","timestamp":1722817572709,"payload":"hello, world!","tid":3479856,"source":{"module_path":"my_app::say_hi","file":"src/say_hi.rs","line":4,"column":5}}
/// {"level":"error","timestamp":1722817572709,"payload":"something went wrong","tid":3479856,"source":{"module_path":"my_app::say_hi","file":"src/say_hi.rs","line":5,"column":5}}
/// ```
///
/// [`Level::as_str`]: crate::Level::as_str
/// [`SourceLocation`]: crate::SourceLocation
#[derive(Clone)]
pub struct JsonFormatter(PhantomData<()>);
impl JsonFormatter {
/// Constructs a `JsonFormatter`.
#[must_use]
pub fn new() -> JsonFormatter {
JsonFormatter(PhantomData)
}
fn format_impl(
&self,
record: &Record,
dest: &mut StringBuf,
_ctx: &mut FormatterContext,
) -> Result<(), JsonFormatterError> {
cfg_if! {
if #[cfg(not(feature = "flexible-string"))] {
dest.reserve(crate::string_buf::RESERVE_SIZE);
}
}
let json_record: JsonRecord = record.into();
// TODO: https://github.com/serde-rs/json/issues/863
//
// The performance can be significantly optimized here if the issue can be
// solved.
dest.write_str(&serde_json::to_string(&json_record)?)?;
dest.write_str(__EOL)?;
Ok(())
}
}
impl Formatter for JsonFormatter {
fn format(
&self,
record: &Record,
dest: &mut StringBuf,
ctx: &mut FormatterContext,
) -> crate::Result<()> {
self.format_impl(record, dest, ctx).map_err(Into::into)
}
}
impl Default for JsonFormatter {
fn default() -> Self {
JsonFormatter::new()
}
}
#[cfg(test)]
mod tests {
use chrono::prelude::*;
use super::*;
use crate::{Level, SourceLocation, __EOL};
#[test]
fn should_format_json() {
let mut dest = StringBuf::new();
let formatter = JsonFormatter::new();
let record = Record::builder(Level::Info, "payload").build();
let mut ctx = FormatterContext::new();
formatter.format(&record, &mut dest, &mut ctx).unwrap();
let local_time: DateTime<Local> = record.time().into();
assert_eq!(ctx.style_range(), None);
assert_eq!(
dest.to_string(),
format!(
r#"{{"level":"info","timestamp":{},"payload":"{}","tid":{}}}{}"#,
local_time.timestamp_millis(),
"payload",
record.tid(),
__EOL
)
);
}
#[test]
fn should_format_json_with_logger_name() {
let mut dest = StringBuf::new();
let formatter = JsonFormatter::new();
let record = Record::builder(Level::Info, "payload")
.logger_name("my-component")
.build();
let mut ctx = FormatterContext::new();
formatter.format(&record, &mut dest, &mut ctx).unwrap();
let local_time: DateTime<Local> = record.time().into();
assert_eq!(ctx.style_range(), None);
assert_eq!(
dest.to_string(),
format!(
r#"{{"level":"info","timestamp":{},"payload":"{}","logger":"my-component","tid":{}}}{}"#,
local_time.timestamp_millis(),
"payload",
record.tid(),
__EOL
)
);
}
#[test]
fn should_format_json_with_src_loc() {
let mut dest = StringBuf::new();
let formatter = JsonFormatter::new();
let record = Record::builder(Level::Info, "payload")
.source_location(Some(SourceLocation::__new("module", "file.rs", 1, 2)))
.build();
let mut ctx = FormatterContext::new();
formatter.format(&record, &mut dest, &mut ctx).unwrap();
let local_time: DateTime<Local> = record.time().into();
assert_eq!(ctx.style_range(), None);
assert_eq!(
dest.to_string(),
format!(
r#"{{"level":"info","timestamp":{},"payload":"{}","tid":{},"source":{{"module_path":"module","file":"file.rs","line":1,"column":2}}}}{}"#,
local_time.timestamp_millis(),
"payload",
record.tid(),
__EOL
)
);
}
}