Compare commits

...

8 Commits

Author SHA1 Message Date
Michael Pfaff 84c3cada2c
Bump version 2022-05-02 13:30:55 -04:00
Michael Pfaff cec213adda
Improve internal error logging 2022-05-02 13:23:04 -04:00
Michael Pfaff 25b876ec0c
Bump version 2022-05-02 13:03:18 -04:00
Michael Pfaff 68e356811a
Log errors 2022-05-02 13:00:05 -04:00
Michael Pfaff c269c55cab Merge pull request 'No default features for tide' (#1) from no-default-features-tide into master
Reviewed-on: #1
2022-04-25 12:26:52 -04:00
Michael Pfaff 918577455e
Bump version 2022-04-25 12:22:36 -04:00
Michael Pfaff 0db36d48cc
No default features for tide 2022-04-25 12:22:17 -04:00
Michael Pfaff 9e8d5ef5e9
Bump version
**Breaking changes**

- Remove `PartialEq<ReqComp> for ReqComps` (use `ReqComps::contains`
  instead)
- Rename `contains_many` to `contains_all`

**Other changes**

- Mark a bunch of methods `#[inline]`
- Reorder structs
- Add `Default for ReqComps`
- Replace `Into<ReqComps> for ReqComp` with `From<ReqComp> for ReqComps`
- Modify `LogMiddleware::log`
- Add tests
- Run `cargo fmt`
2022-03-07 16:24:50 -05:00
2 changed files with 78 additions and 39 deletions

View File

@ -1,15 +1,13 @@
[package]
name = "tide_tracing"
version = "0.5.0"
version = "0.6.3"
authors = ["Michael Pfaff <michael@pfaff.dev>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nrid = { git = "https://git.pfaff.dev/michael/nrid.rs.git", tag = "v0.2.0", default-features = false }
tide = "0.16"
tide = { version = "0.16", default-features = false }
tracing = "0.1"
async-trait = "0.1"
num_enum = "0.5.1"
num_enum = "0.5"

View File

@ -1,21 +1,16 @@
#![feature(const_trait_impl)]
#![feature(const_fn_trait_bound)]
#[macro_use]
extern crate tracing;
use nrid::Nrid;
use std::time::Instant;
use tide::Middleware;
use tide::Next;
use tide::Request;
use tracing::Instrument;
#[derive(Clone, Copy, Debug, Eq)]
#[repr(transparent)]
pub struct ReqComps(u8);
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, num_enum::FromPrimitive)]
/// A traceable component of a [`Request`].
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, num_enum::FromPrimitive)]
#[repr(u8)]
pub enum ReqComp {
#[num_enum(default)]
@ -26,33 +21,40 @@ pub enum ReqComp {
Query = 0b00001000,
}
/// A selection of traceable components of a [`Request`].
#[derive(Debug, Clone, Copy, Eq, Hash)]
#[repr(transparent)]
pub struct ReqComps(u8);
impl ReqComps {
pub const fn of(comp: ReqComp) -> Self {
Self(comp as u8)
}
#[inline]
pub const fn contains(self, mask: ReqComp) -> bool {
self & mask == mask
(self & mask).0 == mask as u8
}
pub const fn contains_many(self, mask: ReqComps) -> bool {
#[inline]
pub const fn contains_all(self, mask: ReqComps) -> bool {
self & mask == mask
}
}
impl const Into<ReqComps> for ReqComp {
fn into(self) -> ReqComps {
ReqComps::of(self)
impl const Default for ReqComps {
#[inline]
fn default() -> Self {
Self(0)
}
}
impl const core::cmp::PartialEq<ReqComp> for ReqComps {
fn eq(&self, comp: &ReqComp) -> bool {
self.0 & (*comp as u8) == *comp as u8
// unfortunately, the automatic Into impl will not be const.
impl const From<ReqComp> for ReqComps {
#[inline]
fn from(comp: ReqComp) -> Self {
Self(comp as u8)
}
}
impl const core::cmp::PartialEq for ReqComps {
#[inline]
fn eq(&self, comp: &Self) -> bool {
self.0 == comp.0
}
@ -61,6 +63,7 @@ impl const core::cmp::PartialEq for ReqComps {
impl const core::ops::BitOr for ReqComp {
type Output = ReqComps;
#[inline]
fn bitor(self, rhs: Self) -> Self::Output {
ReqComps((self as u8) | (rhs as u8))
}
@ -69,6 +72,7 @@ impl const core::ops::BitOr for ReqComp {
impl const core::ops::BitOr for ReqComps {
type Output = ReqComps;
#[inline]
fn bitor(self, rhs: Self) -> Self::Output {
ReqComps((self.0 as u8) | (rhs.0 as u8))
}
@ -77,6 +81,7 @@ impl const core::ops::BitOr for ReqComps {
impl const core::ops::BitOr<ReqComp> for ReqComps {
type Output = ReqComps;
#[inline]
fn bitor(self, rhs: ReqComp) -> Self::Output {
ReqComps((self.0 as u8) | (rhs as u8))
}
@ -84,6 +89,7 @@ impl const core::ops::BitOr<ReqComp> for ReqComps {
// TODO make `const` when is "stable" #57349 <https://github.com/rust-lang/rust/issues/57349>
impl core::ops::BitOrAssign for ReqComps {
#[inline]
fn bitor_assign(&mut self, rhs: ReqComps) {
self.0 = (self.0 as u8) | (rhs.0 as u8)
}
@ -91,6 +97,7 @@ impl core::ops::BitOrAssign for ReqComps {
// TODO make `const` when is "stable" #57349 <https://github.com/rust-lang/rust/issues/57349>
impl core::ops::BitOrAssign<ReqComp> for ReqComps {
#[inline]
fn bitor_assign(&mut self, rhs: ReqComp) {
self.0 = (self.0 as u8) | (rhs as u8)
}
@ -99,6 +106,7 @@ impl core::ops::BitOrAssign<ReqComp> for ReqComps {
impl const core::ops::BitAnd for ReqComp {
type Output = ReqComps;
#[inline]
fn bitand(self, rhs: Self) -> Self::Output {
ReqComps((self as u8) & (rhs as u8))
}
@ -107,6 +115,7 @@ impl const core::ops::BitAnd for ReqComp {
impl const core::ops::BitAnd for ReqComps {
type Output = ReqComps;
#[inline]
fn bitand(self, rhs: Self) -> Self::Output {
ReqComps((self.0 as u8) & (rhs.0 as u8))
}
@ -115,6 +124,7 @@ impl const core::ops::BitAnd for ReqComps {
impl const core::ops::BitAnd<ReqComp> for ReqComps {
type Output = ReqComps;
#[inline]
fn bitand(self, rhs: ReqComp) -> Self::Output {
ReqComps((self.0 as u8) & (rhs as u8))
}
@ -122,6 +132,7 @@ impl const core::ops::BitAnd<ReqComp> for ReqComps {
// TODO make `const` when is "stable" #57349 <https://github.com/rust-lang/rust/issues/57349>
impl core::ops::BitAndAssign for ReqComps {
#[inline]
fn bitand_assign(&mut self, rhs: ReqComps) {
self.0 = (self.0 as u8) & (rhs.0 as u8)
}
@ -129,6 +140,7 @@ impl core::ops::BitAndAssign for ReqComps {
// TODO make `const` when is "stable" #57349 <https://github.com/rust-lang/rust/issues/57349>
impl core::ops::BitAndAssign<ReqComp> for ReqComps {
#[inline]
fn bitand_assign(&mut self, rhs: ReqComp) {
self.0 = (self.0 as u8) & (rhs as u8)
}
@ -139,7 +151,8 @@ pub struct LogMiddleware {
pub components: ReqComps,
}
impl Default for LogMiddleware {
impl const Default for LogMiddleware {
#[inline]
fn default() -> Self {
Self {
components: ReqComp::Method | ReqComp::Path,
@ -154,31 +167,39 @@ impl LogMiddleware {
next: Next<'a, State>,
) -> tide::Result {
let id = Nrid::now();
let span = debug_span!("Request", id = %id);
let comp = self.components;
use tracing::field::Empty;
let span = debug_span!("Request", id = %id, "http.method" = Empty, "http.path" = Empty, "conn.ip" = Empty, "http.query" = Empty);
let url = req.url();
if comp.contains(ReqComp::Method) {
if self.components.contains(ReqComp::Method) {
span.record("http.method", &tracing::field::display(req.method()));
}
if comp.contains(ReqComp::Path) {
if self.components.contains(ReqComp::Path) {
span.record("http.path", &url.path());
}
if comp.contains(ReqComp::IP) {
span.record("conn.ip", &tracing::field::display(req.remote().unwrap_or("unknown").to_string()));
if self.components.contains(ReqComp::IP) {
span.record(
"conn.ip",
&tracing::field::display(req.remote().unwrap_or("unknown").to_string()),
);
}
if comp.contains(ReqComp::Query) {
if self.components.contains(ReqComp::Query) {
span.record("http.query", &url.query().unwrap_or(""));
}
Ok(async {
let start = Instant::now();
async move {
let res = next.run(req).await;
let duration = start.elapsed();
let status = res.status();
debug_span!("Response", status = %status, duration = ?duration).in_scope(|| {});
res
match res.error() {
Some(e) => {
error!(status = %status, "Response with internal error: {e:?}");
}
None => {
debug!(status = %status, "Response");
}
}
Ok(res)
}
.instrument(span)
.await)
.await
}
}
@ -188,3 +209,23 @@ impl<State: Clone + Send + Sync + 'static> Middleware<State> for LogMiddleware {
self.log(req, next).await
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_mask() {
const FIELDS: &'static [ReqComp] = &[ReqComp::Path, ReqComp::IP];
let mut comps = ReqComps::default();
for field in FIELDS {
comps |= *field;
}
assert!(comps.contains(ReqComp::Path));
assert!(comps.contains(ReqComp::IP));
assert!(!comps.contains(ReqComp::Query));
}
}