Compare commits
3 Commits
57cfca97cb
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b7d84d6f6 | |||
| 109aee806d | |||
| fa61b79252 |
@@ -1,6 +1,6 @@
|
|||||||
.{
|
.{
|
||||||
.name = .faller,
|
.name = .faller,
|
||||||
.version = "0.2.1",
|
.version = "0.3.1",
|
||||||
.minimum_zig_version = "0.15.1",
|
.minimum_zig_version = "0.15.1",
|
||||||
.paths = .{
|
.paths = .{
|
||||||
"build.zig",
|
"build.zig",
|
||||||
|
|||||||
164
src/root.zig
164
src/root.zig
@@ -1,3 +1,21 @@
|
|||||||
|
//! A tag based Logger. Example:
|
||||||
|
//!
|
||||||
|
//! ```zig
|
||||||
|
//! log(.foo, "Anonymous log", .{});
|
||||||
|
//!
|
||||||
|
//! const module_log = scope(.module);
|
||||||
|
//! module_log.log(.debug, "Hello {s}!", .{"World"});
|
||||||
|
//!
|
||||||
|
//! const sub_module_log = module_log.scope(.bar);
|
||||||
|
//! sub_module_log.log(.perf, "Operation took {} ns", .{5});
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! Output:
|
||||||
|
//! ```
|
||||||
|
//! foo: Anonymous log
|
||||||
|
//! module|debug: Hello World!
|
||||||
|
//! module|bar|perf: Operation took 5 ns
|
||||||
|
//! ```
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const root = @import("root");
|
const root = @import("root");
|
||||||
const builtin = @import("builtin");
|
const builtin = @import("builtin");
|
||||||
@@ -5,16 +23,14 @@ const builtin = @import("builtin");
|
|||||||
pub const options: Options = if (@hasDecl(root, "faller_options")) root.faller_options else .{};
|
pub const options: Options = if (@hasDecl(root, "faller_options")) root.faller_options else .{};
|
||||||
|
|
||||||
pub const Options = struct {
|
pub const Options = struct {
|
||||||
|
/// If more specialised ways to log are required replace this function.
|
||||||
|
/// This could be useful for logging to different things than `stderr` or for specifying whether
|
||||||
|
/// we should log with environment variables or `and`-based queries.
|
||||||
function: fn (
|
function: fn (
|
||||||
comptime []const @Type(.enum_literal),
|
comptime []const @Type(.enum_literal),
|
||||||
comptime []const u8,
|
comptime []const u8,
|
||||||
anytype,
|
anytype,
|
||||||
) void = defaultLogFunction,
|
) void = defaultLogFunction,
|
||||||
/// If more specialised ways to determine whether something should be logged are required,
|
|
||||||
/// replace this function.
|
|
||||||
/// This could be useful for instance for specifying it with environment variables or
|
|
||||||
/// `and`-based queries.
|
|
||||||
enabled: fn (comptime []const @Type(.enum_literal)) bool = logEnabled,
|
|
||||||
/// If there is at least one tag given this acts like a whitelist. Meaning if **any** of the
|
/// If there is at least one tag given this acts like a whitelist. Meaning if **any** of the
|
||||||
/// tags is present it is logged. May be overwritten by `tags_disabled`.
|
/// tags is present it is logged. May be overwritten by `tags_disabled`.
|
||||||
tags_enabled: []const @Type(.enum_literal) = &.{},
|
tags_enabled: []const @Type(.enum_literal) = &.{},
|
||||||
@@ -22,50 +38,88 @@ pub const Options = struct {
|
|||||||
/// tags is present it **isn't** logged. May overwrite `tags_enabled`.
|
/// tags is present it **isn't** logged. May overwrite `tags_enabled`.
|
||||||
tags_disabled: []const @Type(.enum_literal) = &.{},
|
tags_disabled: []const @Type(.enum_literal) = &.{},
|
||||||
buffer_size: u64 = 64,
|
buffer_size: u64 = 64,
|
||||||
disabled_in_test: bool = true,
|
disabled_in_test: bool = false,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Used to create a logger from.
|
/// A Logger with prefixes.
|
||||||
///
|
pub const Logger = struct {
|
||||||
/// Examples:
|
base_tags: []const @Type(.enum_literal),
|
||||||
/// ```zig
|
|
||||||
/// const logger = Logger(&.{.my_module});
|
|
||||||
/// const foo_bar_logger = Logger(&.{.foo, .bar});
|
|
||||||
/// const foo_bar_log = foo_bar_logger.log;
|
|
||||||
///
|
|
||||||
/// ```
|
|
||||||
pub fn Logger(comptime base_tags: []const @Type(.enum_literal)) type {
|
|
||||||
return struct {
|
|
||||||
/// Creates a new logger with an extended tag prefix.
|
|
||||||
pub fn scope(comptime tag: @Type(.enum_literal)) type {
|
|
||||||
return Logger(base_tags ++ [_]@Type(.enum_literal){tag});
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Log with one `tag`. Checks whether the log is enabled.
|
/// Creates a new logger with an additional tag prefix.
|
||||||
pub fn log(
|
pub fn scope(comptime logger: Logger, comptime tag: @Type(.enum_literal)) Logger {
|
||||||
comptime tag: @Type(.enum_literal),
|
return .{
|
||||||
comptime format: []const u8,
|
.base_tags = logger.base_tags ++ [_]@Type(.enum_literal){tag},
|
||||||
args: anytype,
|
};
|
||||||
) void {
|
}
|
||||||
logTags(&.{tag}, format, args);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Log with multiple `tags`. Checks whether the log is enabled.
|
/// Log with one additional `tag`. Checks whether the log is enabled.
|
||||||
pub fn logTags(
|
pub fn log(
|
||||||
comptime tags: []const @Type(.enum_literal),
|
comptime logger: Logger,
|
||||||
comptime format: []const u8,
|
comptime tag: @Type(.enum_literal),
|
||||||
args: anytype,
|
comptime format: []const u8,
|
||||||
) void {
|
args: anytype,
|
||||||
if (builtin.is_test and options.disabled_in_test) return;
|
) void {
|
||||||
|
logger.logTags(&.{tag}, format, args);
|
||||||
|
}
|
||||||
|
|
||||||
const all_tags = comptime base_tags ++ tags;
|
/// Log with multiple `tags`. Checks whether the log is enabled.
|
||||||
if (!options.enabled(all_tags)) return;
|
pub fn logTags(
|
||||||
|
comptime logger: Logger,
|
||||||
|
comptime tags: []const @Type(.enum_literal),
|
||||||
|
comptime format: []const u8,
|
||||||
|
args: anytype,
|
||||||
|
) void {
|
||||||
|
if (builtin.is_test and options.disabled_in_test) return;
|
||||||
|
const all_tags = logger.base_tags ++ tags;
|
||||||
|
options.function(all_tags, format, args);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
options.function(all_tags, format, args);
|
/// Creates a new logger with a tag prefix.
|
||||||
}
|
pub fn scope(comptime tag: @TypeOf(.enum_literal)) Logger {
|
||||||
|
return .{
|
||||||
|
.base_tags = &[_]@Type(.enum_literal){tag},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Log with one `tag`. Checks whether the log is enabled.
|
||||||
|
pub fn log(
|
||||||
|
comptime tag: @Type(.enum_literal),
|
||||||
|
comptime format: []const u8,
|
||||||
|
args: anytype,
|
||||||
|
) void {
|
||||||
|
logTags(&.{tag}, format, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Log with multiple `tags`. Checks whether the log is enabled.
|
||||||
|
pub fn logTags(
|
||||||
|
comptime tags: []const @Type(.enum_literal),
|
||||||
|
comptime format: []const u8,
|
||||||
|
args: anytype,
|
||||||
|
) void {
|
||||||
|
if (builtin.is_test and options.disabled_in_test) return;
|
||||||
|
options.function(tags, format, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Checks whether the log is enabled for a specific combination of `tags`. Depends on the `options`
|
||||||
|
/// set.
|
||||||
|
pub fn logEnabled(comptime tags: []const @Type(.enum_literal)) bool {
|
||||||
|
// If `tags` has at least one in `options.tags_disabled` then we never log.
|
||||||
|
if (options.tags_disabled.len > 0) {
|
||||||
|
if (intersect(tags, options.tags_disabled)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If `tags` has at least one in `options.tags_enabled` then we should log.
|
||||||
|
if (options.tags_enabled.len > 0) {
|
||||||
|
return intersect(tags, options.tags_enabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If neither is set then we just log everything.
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/// Return `false` if `as` and `bs` have no common member. Else return `true`.
|
/// Return `false` if `as` and `bs` have no common member. Else return `true`.
|
||||||
fn intersect(comptime as: []const @Type(.enum_literal), comptime bs: []const @Type(.enum_literal)) bool {
|
fn intersect(comptime as: []const @Type(.enum_literal), comptime bs: []const @Type(.enum_literal)) bool {
|
||||||
for (as) |a| {
|
for (as) |a| {
|
||||||
@@ -78,31 +132,13 @@ fn intersect(comptime as: []const @Type(.enum_literal), comptime bs: []const @Ty
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Checks whether the log is enabled for a specific combination of `tags`. Depends on the `options`
|
|
||||||
/// set.
|
|
||||||
pub fn logEnabled(comptime tags: []const @Type(.enum_literal)) bool {
|
|
||||||
// If `tags` has at least one in `options.tags_disabled` then we never log.
|
|
||||||
if (options.tags_disabled.len > 0) {
|
|
||||||
if (comptime intersect(tags, options.tags_disabled)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// If `tags` has at least one in `options.tags_enabled` then we should log.
|
|
||||||
if (options.tags_enabled.len > 0) {
|
|
||||||
return comptime intersect(tags, options.tags_enabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
// If neither is set then we just log everything.
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
fn defaultLogFunction(
|
fn defaultLogFunction(
|
||||||
comptime tags: []const @Type(.enum_literal),
|
comptime tags: []const @Type(.enum_literal),
|
||||||
comptime format: []const u8,
|
comptime format: []const u8,
|
||||||
args: anytype,
|
args: anytype,
|
||||||
) void {
|
) void {
|
||||||
if (tags.len == 0) @compileError("Need at least one tag for logging.");
|
if (tags.len == 0) @compileError("Need at least one tag for logging.");
|
||||||
|
if (comptime !logEnabled(tags)) return;
|
||||||
|
|
||||||
comptime var prefix: []const u8 = "";
|
comptime var prefix: []const u8 = "";
|
||||||
comptime for (tags) |tag| {
|
comptime for (tags) |tag| {
|
||||||
@@ -115,3 +151,13 @@ fn defaultLogFunction(
|
|||||||
defer std.debug.unlockStderrWriter();
|
defer std.debug.unlockStderrWriter();
|
||||||
nosuspend stderr.print(prefix ++ ": " ++ format ++ "\n", args) catch return;
|
nosuspend stderr.print(prefix ++ ": " ++ format ++ "\n", args) catch return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
log(.foo, "Anonymous log", .{});
|
||||||
|
|
||||||
|
const module_log = scope(.module);
|
||||||
|
module_log.log(.debug, "Hello {s}!", .{"World"});
|
||||||
|
|
||||||
|
const sub_module_log = module_log.scope(.bar);
|
||||||
|
sub_module_log.log(.perf, "Operation took {} ns", .{5});
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user