Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add feature flag to minimize RecordLocation unknowns #19

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 4.2.0 - 2021-7-12
### Changed

* Add feature flag `record_location_unstable` to expand record location support.
Be warned that this is accomplished by leaking the record location strings.

## 4.1.0 - 2020-10-21
### Changed

* Require `slog` 2.4 or greater
* Remove dependency `crossbeam`
* Require `log` 0.4.11 or greater

## 4.0.0 - 2018-08-13
### Changed

Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ record_location_unstable = []
slog = "2.4"
slog-scope = "4"
log = { version = "0.4.11", features = ["std"] }
cached = "0.23.0"

[dev-dependencies]
slog-term = "2"
Expand Down
48 changes: 32 additions & 16 deletions lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,35 @@ fn log_to_slog_level(level: log::Level) -> Level {
}
}

fn record_as_location(r: &log::Record) -> slog::RecordLocation {
// Warning: expands Record module and file names for non-static strings by leaking strings
#[cfg(feature = "record_location_unstable")]
let module = r.module_path_static().unwrap_or(match r.module_path() {
Some(s) => Box::leak(s.to_string().into_boxed_str()),
/// Gets a static string for Record location information.
/// Uses a cache to avoid leaking each string more than once.
#[cfg(feature = "record_location_unstable")]
#[cached::proc_macro::cached]
fn get_static_info(
static_info: Option<&'static str>,
non_static_info: Option<String>,
) -> &'static str {
static_info.unwrap_or(match non_static_info {
Some(s) => Box::leak(s.into_boxed_str()),
None => "unknown",
});
#[cfg(feature = "record_location_unstable")]
let file = r.file_static().unwrap_or(match r.file() {
Some(s) => Box::leak(s.to_string().into_boxed_str()),
None => "unknown",
});
})
}

fn record_as_location(r: &log::Record) -> slog::RecordLocation {
#[cfg(not(feature = "record_location_unstable"))]
let module = r.module_path_static().unwrap_or("<unknown>");
#[cfg(not(feature = "record_location_unstable"))]
let file = r.file_static().unwrap_or("<unknown>");

// Warning: expands Record module and file names for non-static strings by leaking strings
#[cfg(feature = "record_location_unstable")]
let module = get_static_info(
r.module_path_static(),
r.module_path().map(|s| s.to_string()),
);
#[cfg(feature = "record_location_unstable")]
let file = get_static_info(r.file_static(), r.file().map(|s| s.to_string()));

let line = r.line().unwrap_or_default();

slog::RecordLocation {
Expand Down Expand Up @@ -114,10 +126,10 @@ impl log::Log for Logger {
};
#[cfg(feature = "kv_unstable")]
{
let key_values = r.key_values();
let mut visitor = kv::Visitor::new();
key_values.visit(&mut visitor).unwrap();
slog_scope::with_logger(|logger| logger.log(&slog::Record::new(&s, args, b!(visitor))))
let key_values = r.key_values();
let mut visitor = kv::Visitor::new();
key_values.visit(&mut visitor).unwrap();
slog_scope::with_logger(|logger| logger.log(&slog::Record::new(&s, args, b!(visitor))))
}
#[cfg(not(feature = "kv_unstable"))]
slog_scope::with_logger(|logger| logger.log(&slog::Record::new(&s, args, b!())))
Expand Down Expand Up @@ -266,7 +278,11 @@ impl slog::Drain for StdLog {
let lazy = LazyLogString::new(info, logger_values);
// Please don't yell at me for this! :D
// https://github.com/rust-lang-nursery/log/issues/95
log::__private_api_log(format_args!("{}", lazy), level, &(target, info.module(), info.file(), info.line()));
log::__private_api_log(
format_args!("{}", lazy),
level,
&(target, info.module(), info.file(), info.line()),
);

Ok(())
}
Expand Down