runar_common 0.1.0

Common traits and utilities for the Runar framework
Documentation
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
// Logging utilities for the Runar system
//
// This module provides a comprehensive logging system with:
// - Compile-time efficient macros
// - Component-based structured logging
// - Context-aware logging for services
// - Node ID tracking through logger inheritance
// - Support for action and event path tracing

use log::{debug, error, info, warn};
use std::fmt::{self, Arguments, Display, Formatter};

/// Predefined components for logging categorization
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Component {
    Node,
    Registry,
    Service,
    Database,
    Transporter,
    NetworkDiscovery,
    System,
    CLI,
    Keys,
    Custom(&'static str),
}

// Lightweight Display helpers to avoid prefix String allocations
struct ComponentPrefixDisplay {
    parent: Option<Component>,
    component: Component,
}
impl Display for ComponentPrefixDisplay {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        match self.parent {
            Some(parent) if parent != Component::Node => {
                write!(f, "{}.{}", parent.as_str(), self.component.as_str())
            }
            _ => write!(f, "{}", self.component.as_str()),
        }
    }
}

struct MaybeActionDisplay<'a>(Option<&'a str>);
impl Display for MaybeActionDisplay<'_> {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        if let Some(path) = self.0 {
            write!(f, "|action={path}")
        } else {
            Ok(())
        }
    }
}

struct MaybeEventDisplay<'a>(Option<&'a str>);
impl Display for MaybeEventDisplay<'_> {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        if let Some(path) = self.0 {
            write!(f, "|event={path}")
        } else {
            Ok(())
        }
    }
}

impl Component {
    /// Get the string representation of the component
    pub fn as_str(&self) -> &str {
        match self {
            Component::Node => "Node",
            Component::Registry => "Registry",
            Component::Service => "Service",
            Component::Database => "DB",
            Component::Transporter => "Network",
            Component::NetworkDiscovery => "NetworkDiscovery",
            Component::System => "System",
            Component::CLI => "CLI",
            Component::Keys => "Keys",
            Component::Custom(name) => name,
        }
    }
}

/// A helper for creating component-specific loggers with node ID tracking
#[derive(Clone)]
pub struct Logger {
    /// Component this logger is for
    component: Component,
    /// Node ID for distributed tracing
    node_id: String,
    /// Parent component for hierarchical logging (if any)
    parent_component: Option<Component>,
    /// Action path for request/action tracing
    action_path: Option<String>,
    /// Event path for event subscription tracing
    event_path: Option<String>,
}

impl Logger {
    /// Create a new root logger for a specific component and node ID
    /// This should only be called by the Node root component
    pub fn new_root(component: Component, node_id: &str) -> Self {
        Self {
            component,
            node_id: node_id.to_string(),
            parent_component: None,
            action_path: None,
            event_path: None,
        }
    }

    /// Create a child logger with the same node ID but different component
    /// This is the preferred way to create loggers in services and other components
    pub fn with_component(&self, component: Component) -> Self {
        Self {
            component,
            node_id: self.node_id.clone(),
            parent_component: Some(self.component),
            action_path: self.action_path.clone(),
            event_path: self.event_path.clone(),
        }
    }

    /// Create a logger with an action path
    /// This is used to track action requests through the system
    pub fn with_action_path(&self, path: impl Into<String>) -> Self {
        Self {
            component: self.component,
            node_id: self.node_id.clone(),
            parent_component: self.parent_component,
            action_path: Some(path.into()),
            event_path: self.event_path.clone(),
        }
    }

    /// Create a logger with an event path
    /// This is used to track event publications and subscriptions
    pub fn with_event_path(&self, path: impl Into<String>) -> Self {
        Self {
            component: self.component,
            node_id: self.node_id.clone(),
            parent_component: self.parent_component,
            action_path: self.action_path.clone(),
            event_path: Some(path.into()),
        }
    }

    /// Clone this logger with the same settings
    /// This is useful when you need to pass a logger to a component that might modify it
    pub fn clone_logger(&self) -> Self {
        self.clone()
    }

    /// Get a reference to the node ID
    pub fn node_id(&self) -> &str {
        &self.node_id
    }

    /// Get a reference to the action path if available
    pub fn action_path(&self) -> Option<&str> {
        self.action_path.as_deref()
    }

    /// Get a reference to the event path if available
    pub fn event_path(&self) -> Option<&str> {
        self.event_path.as_deref()
    }

    /// Get the component prefix for logging, including parent if available
    fn component_prefix(&self) -> String {
        match self.parent_component {
            Some(parent) if parent != Component::Node => {
                format!("{}.{}", parent.as_str(), self.component.as_str())
            }
            _ => self.component.as_str().to_string(),
        }
    }

    /// Get the full prefix including component, action path, and event path
    fn full_prefix(&self) -> String {
        let mut parts = Vec::new();

        // Add component prefix
        parts.push(self.component_prefix());

        // Add action path if available
        if let Some(path) = &self.action_path {
            parts.push(format!("action={path}"));
        }

        // Add event path if available
        if let Some(path) = &self.event_path {
            parts.push(format!("event={path}"));
        }

        parts.join("|")
    }

    /// Log a debug message
    pub fn debug(&self, message: impl Into<String>) {
        if log::log_enabled!(log::Level::Debug) {
            // Skip displaying the component if it's Node to avoid redundancy
            if self.component == Component::Node && self.parent_component.is_none() {
                debug!("[{}] {}", self.node_id, message.into());
            } else {
                debug!(
                    "[{}][{}] {}",
                    self.node_id,
                    self.full_prefix(),
                    message.into()
                );
            }
        }
    }

    /// Log a debug message using fmt::Arguments (avoids allocating message String)
    pub fn debug_args(&self, args: Arguments) {
        if log::log_enabled!(log::Level::Debug) {
            if self.component == Component::Node && self.parent_component.is_none() {
                debug!("[{}] {}", self.node_id, args);
            } else {
                debug!(
                    "[{}][{}{}{}] {}",
                    self.node_id,
                    ComponentPrefixDisplay {
                        parent: self.parent_component,
                        component: self.component
                    },
                    MaybeActionDisplay(self.action_path()),
                    MaybeEventDisplay(self.event_path()),
                    args
                );
            }
        }
    }

    /// Log an info message
    pub fn info(&self, message: impl Into<String>) {
        if log::log_enabled!(log::Level::Info) {
            // Skip displaying the component if it's Node to avoid redundancy
            if self.component == Component::Node && self.parent_component.is_none() {
                info!("[{}] {}", self.node_id, message.into());
            } else {
                info!(
                    "[{}][{}] {}",
                    self.node_id,
                    self.full_prefix(),
                    message.into()
                );
            }
        }
    }

    /// Log an info message using fmt::Arguments (avoids allocating message String)
    pub fn info_args(&self, args: Arguments) {
        if log::log_enabled!(log::Level::Info) {
            if self.component == Component::Node && self.parent_component.is_none() {
                info!("[{}] {}", self.node_id, args);
            } else {
                info!(
                    "[{}][{}{}{}] {}",
                    self.node_id,
                    ComponentPrefixDisplay {
                        parent: self.parent_component,
                        component: self.component
                    },
                    MaybeActionDisplay(self.action_path()),
                    MaybeEventDisplay(self.event_path()),
                    args
                );
            }
        }
    }

    /// Log a static info message without allocation
    pub fn info_static(&self, msg: &'static str) {
        if log::log_enabled!(log::Level::Info) {
            if self.component == Component::Node && self.parent_component.is_none() {
                info!("[{}] {}", self.node_id, msg);
            } else {
                info!(
                    "[{}][{}{}{}] {}",
                    self.node_id,
                    ComponentPrefixDisplay {
                        parent: self.parent_component,
                        component: self.component
                    },
                    MaybeActionDisplay(self.action_path()),
                    MaybeEventDisplay(self.event_path()),
                    msg
                );
            }
        }
    }

    /// Log a warning message
    pub fn warn(&self, message: impl Into<String>) {
        if log::log_enabled!(log::Level::Warn) {
            // Skip displaying the component if it's Node to avoid redundancy
            if self.component == Component::Node && self.parent_component.is_none() {
                warn!("[{}] {}", self.node_id, message.into());
            } else {
                warn!(
                    "[{}][{}] {}",
                    self.node_id,
                    self.full_prefix(),
                    message.into()
                );
            }
        }
    }

    /// Log a warning using fmt::Arguments
    pub fn warn_args(&self, args: Arguments) {
        if log::log_enabled!(log::Level::Warn) {
            if self.component == Component::Node && self.parent_component.is_none() {
                warn!("[{}] {}", self.node_id, args);
            } else {
                warn!(
                    "[{}][{}{}{}] {}",
                    self.node_id,
                    ComponentPrefixDisplay {
                        parent: self.parent_component,
                        component: self.component
                    },
                    MaybeActionDisplay(self.action_path()),
                    MaybeEventDisplay(self.event_path()),
                    args
                );
            }
        }
    }

    /// Log an error message
    pub fn error(&self, message: impl Into<String>) {
        if log::log_enabled!(log::Level::Error) {
            // Skip displaying the component if it's Node to avoid redundancy
            if self.component == Component::Node && self.parent_component.is_none() {
                error!("[{}] {}", self.node_id, message.into());
            } else {
                error!(
                    "[{}][{}] {}",
                    self.node_id,
                    self.full_prefix(),
                    message.into()
                );
            }
        }
    }

    /// Log an error using fmt::Arguments
    pub fn error_args(&self, args: Arguments) {
        if log::log_enabled!(log::Level::Error) {
            if self.component == Component::Node && self.parent_component.is_none() {
                error!("[{}] {}", self.node_id, args);
            } else {
                error!(
                    "[{}][{}{}{}] {}",
                    self.node_id,
                    ComponentPrefixDisplay {
                        parent: self.parent_component,
                        component: self.component
                    },
                    MaybeActionDisplay(self.action_path()),
                    MaybeEventDisplay(self.event_path()),
                    args
                );
            }
        }
    }
}

/// Logging context for structured logging with additional context
pub trait LoggingContext {
    /// Get the component
    fn component(&self) -> Component;

    /// Get the service path or identifier
    fn service_path(&self) -> Option<&str>;

    /// Get the action path if available
    fn action_path(&self) -> Option<&str> {
        None
    }

    /// Get the event path if available
    fn event_path(&self) -> Option<&str> {
        None
    }

    /// Get the logger
    fn logger(&self) -> &Logger;

    /// Log at debug level
    fn log_debug(&self, message: String) {
        if log::log_enabled!(log::Level::Debug) {
            let prefix = self.log_prefix();
            let logger = self.logger();

            // Skip displaying the component if it's Node to avoid redundancy
            if self.component() == Component::Node && prefix == "Node" {
                debug!("[{}] {}", logger.node_id(), message);
            } else {
                debug!("[{}][{}] {}", logger.node_id(), prefix, message);
            }
        }
    }

    /// Log at info level
    fn log_info(&self, message: String) {
        if log::log_enabled!(log::Level::Info) {
            let prefix = self.log_prefix();
            let logger = self.logger();

            // Skip displaying the component if it's Node to avoid redundancy
            if self.component() == Component::Node && prefix == "Node" {
                info!("[{}] {}", logger.node_id(), message);
            } else {
                info!("[{}][{}] {}", logger.node_id(), prefix, message);
            }
        }
    }

    /// Log at warning level
    fn log_warn(&self, message: String) {
        if log::log_enabled!(log::Level::Warn) {
            let prefix = self.log_prefix();
            let logger = self.logger();

            // Skip displaying the component if it's Node to avoid redundancy
            if self.component() == Component::Node && prefix == "Node" {
                warn!("[{}] {}", logger.node_id(), message);
            } else {
                warn!("[{}][{}] {}", logger.node_id(), prefix, message);
            }
        }
    }

    /// Log at error level
    fn log_error(&self, message: String) {
        if log::log_enabled!(log::Level::Error) {
            let prefix = self.log_prefix();
            let logger = self.logger();

            // Skip displaying the component if it's Node to avoid redundancy
            if self.component() == Component::Node && prefix == "Node" {
                error!("[{}] {}", logger.node_id(), message);
            } else {
                error!("[{}][{}] {}", logger.node_id(), prefix, message);
            }
        }
    }

    /// Get the logging prefix
    fn log_prefix(&self) -> String {
        let mut parts = Vec::new();

        // Add component and service path
        match self.service_path() {
            Some(path) => parts.push(format!("{}:{}", self.component().as_str(), path)),
            None => parts.push(self.component().as_str().to_string()),
        }

        // Add action path if available
        if let Some(path) = self.action_path() {
            parts.push(format!("action={path}"));
        }

        // Add event path if available
        if let Some(path) = self.event_path() {
            parts.push(format!("event={path}"));
        }

        parts.join("|")
    }
}