syslog-rs 6.5.0

A native Rust implementation of the glibc/libc/windows syslog client and windows native log for logging.
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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/*-
 * syslog-rs - a syslog client translated from libc to rust
 * 
 * Copyright 2025 Aleksandr Morozov
 * 
 * The syslog-rs crate can be redistributed and/or modified
 * under the terms of either of the following licenses:
 *
 *   1. the Mozilla Public License Version 2.0 (the “MPL”) OR
 *
 *   2. The MIT License (MIT)
 *                     
 *   3. EUROPEAN UNION PUBLIC LICENCE v. 1.2 EUPL © the European Union 2007, 2016
 */

use std::marker::PhantomData;

use crate::
{
    a_sync::
    {
        syslog_async_internal::{AsyncMutexGuard, AsyncSyslogInternal}
    }, 
    error::SyRes, 
    formatters::{SyslogFormatter}, 
    syslog_provider::*, 
    LogFacility, 
    LogStat, 
    Priority
};

use crate::a_sync::syslog_async_internal::AsyncMutex;

#[cfg(feature = "build_async_interface")]
use crate::a_sync::syslog_async_internal::AsyncSyslogInternalIO;

#[cfg(feature = "async_embedded")]
use crate::a_sync::{syslog_async_internal::AsyncSyslogInternalIO, DefaultAsyncMutex};

#[cfg(feature = "async_embedded")]
use crate::formatters::DefaultSyslogFormatter;

#[cfg(feature = "async_embedded")]
use crate::a_sync::DefaultIOs;

use super::{syslog_trait::AsyncSyslogApi};


#[cfg(target_family = "unix")]
pub type DefaultLocalSyslogDestination = SyslogLocal;
#[cfg(target_family = "windows")]
pub type DefaultLocalSyslogDestination = WindowsEvent;

/// A main instance of the Syslog client.
/// 
/// * `D` - a [SyslogDestination] instance which is either:
///     [SyslogLocal], [SyslogFile], [SyslogNet], [SyslogTls] or other. By
///     default a `SyslogLocal` is selected. 
/// 
/// * 'F' - a [SyslogFormatter] formatter which should format the message for the
///     [SyslogDestination] (`D`). By deafult, the [DefaultSyslogFormatter] is used which
///     automatically selects the formatter which is used by syslog on the current system.
///     If current crate does not have a build-in formatter, then a new one should be created.
/// 
/// * 'IO' - a [AsyncSyslogInternalIO] an additional IO like writing to syscons or stderr. And
///     thread operations like sleep. By default a [DefaultIOs] is used which automatically picks
///     correct instance.
/// 
/// * 'MUX` - a [AsyncMutex] implementation above the mutex instance. By default, a [DefaultAsyncMutex]
///     is used which autoselects the correct mutex implementation.
#[cfg(feature = "async_embedded")]
#[derive(Debug)]
pub struct AsyncSyslog<D = DefaultLocalSyslogDestination, F = DefaultSyslogFormatter, IO = DefaultIOs, MUX = DefaultAsyncMutex<F, D, IO>>
    (MUX, PhantomData<D>, PhantomData<F>, PhantomData<IO>)
where 
    D: AsyncSyslogDestination, 
    F: SyslogFormatter + Sync, 
    MUX: AsyncMutex<F, D, AsyncSyslogInternal<F, D, IO>>,
    IO: AsyncSyslogInternalIO;
 
/// A main instance of the Syslog client.
/// 
/// * `D` - a [SyslogDestination] instance which is either:
///     [SyslogLocal], [SyslogFile], [SyslogNet], [SyslogTls] or other. The caller
///     should implement the [SyslogDestination] and pass the instance to the crate.
/// 
/// * 'F' - a [SyslogFormatter] formatter which should format the message for the
///     [SyslogDestination] (`D`). The caller should select the correct syslog formatter
///     from provided or use autotype [DefaultSyslogFormatter] or create own.
/// 
/// * 'IO' - a [AsyncSyslogInternalIO] an additional IO like writing to syscons or stderr. And
///     thread operations like sleep. A caller should implement the [AsyncSyslogInternalIO]
///     based on the async executer is used.
/// 
/// * 'MUX` - a [AsyncMutex] implementation above the mutex instance. The caller should implement 
///     this trait and pass the implementation to the struct.
#[cfg(feature = "build_async_interface")]
#[derive(Debug)]
pub struct AsyncSyslog<D, F, IO, MUX>
    (MUX, PhantomData<D>, PhantomData<F>, PhantomData<IO>)
where 
    D: AsyncSyslogDestination, 
    F: SyslogFormatter + Sync, 
    MUX: AsyncMutex<F, D, AsyncSyslogInternal<F, D, IO>>,
    IO: AsyncSyslogInternalIO;

#[cfg(feature = "async_embedded")]
impl AsyncSyslog
{
    /// Opens a default async connection to the local syslog server with default formatter.
    /// 
    /// # Arguments
    /// 
    /// * `ident` - A program name which will appear on the logs. If none, will be determined
    ///     automatically.
    /// 
    /// * `logstat` - [LogStat] an instance config.
    /// 
    /// * `facility` - [LogFacility] a syslog facility.
    /// 
    /// * `net_tap` -a [SyslogLocal] instance with configuration.
    /// 
    /// # Returns
    /// 
    /// A [SyRes] is returned ([Result]) with: 
    /// 
    /// * [Result::Ok] - with instance
    /// 
    /// * [Result::Err] - with error description.
    pub async 
    fn openlog(ident: Option<&str>, logstat: LogStat, facility: LogFacility, net_tap: DefaultLocalSyslogDestination) -> SyRes<Self>
    {        
         let mut syslog = 
            AsyncSyslogInternal::<DefaultSyslogFormatter, DefaultLocalSyslogDestination, DefaultIOs>::new(ident, logstat, facility, net_tap)?;
       
        if logstat.contains(LogStat::LOG_NDELAY) == true
        {
            syslog.connectlog().await?;
        }
        
        let mux_syslog = DefaultAsyncMutex::a_new(syslog);
        
        return Ok( 
            Self(
                mux_syslog, 
                PhantomData::<DefaultLocalSyslogDestination>, 
                PhantomData::<DefaultSyslogFormatter>, 
                PhantomData::<DefaultIOs>
            ) 
        );
    }
}

/// A shared implementation.
impl<F, D, IO, MUX> AsyncSyslog<D, F, IO, MUX>
where 
    F: SyslogFormatter + Sync, 
    D: AsyncSyslogDestination, 
    MUX: AsyncMutex<F, D, AsyncSyslogInternal<F, D, IO>>,
    IO: AsyncSyslogInternalIO
{
    /// Opens a special connection to the destination syslog server with specific formatter.
    /// 
    /// All struct generic should be specified before calling this function.
    /// 
    /// # Arguments
    /// 
    /// * `ident` - A program name which will appear on the logs. If none, will be determined
    ///     automatically.
    /// 
    /// * `logstat` - [LogStat] an instance config.
    /// 
    /// * `facility` - [LogFacility] a syslog facility.
    /// 
    /// * `net_tap` - a destination server. A specific `D` instance which contains infomation 
    ///     about the destination server. See `syslog_provider.rs`.
    /// 
    /// # Returns
    /// 
    /// A [SyRes] is returned ([Result]) with: 
    /// 
    /// * [Result::Ok] - with instance
    /// 
    /// * [Result::Err] - with error description.
    pub async 
    fn openlog_with(ident: Option<&str>, logstat: LogStat, facility: LogFacility, net_tap: D) -> SyRes<AsyncSyslog<D, F, IO, MUX>>
    {
        let mut syslog = 
            AsyncSyslogInternal::<F, D, IO>::new(ident, logstat, facility, net_tap)?;
       
        if logstat.contains(LogStat::LOG_NDELAY) == true
        {
            syslog.connectlog().await?;
        }
        
        let mux_syslog = MUX::a_new(syslog);
        
        return Ok( Self(mux_syslog, PhantomData::<D>, PhantomData::<F>, PhantomData::<IO>) );
    }

    /// Sets the logmask to filter out the syslog calls.
    /// This function blocks until the previous mask is received.
    /// 
    /// See macroses [LOG_MASK] and [LOG_UPTO] to generate mask
    ///
    /// # Example
    ///
    /// LOG_MASK!(Priority::LOG_EMERG) | LOG_MASK!(Priority::LOG_ERROR)
    ///
    /// or
    ///
    /// ~(LOG_MASK!(Priority::LOG_INFO))
    /// LOG_UPTO!(Priority::LOG_ERROR) 
    #[inline]
    pub async 
    fn setlogmask(&self, logmask: i32) -> i32
    {           
        return 
            self
                .0
                .a_lock()
                .await
                .guard_mut()
                .set_logmask(logmask);
    }

    /// Changes the identity i.e program name which will appear on the logs.
    /// 
    /// Can return error if mutex is poisoned.
    pub async 
    fn change_identity(&self, ident: &str)
    {
        return 
            self
                .0
                .a_lock()
                .await
                .guard_mut()
                .change_identity(ident);
    }

    /// Closes connection to the syslog server
    pub async 
    fn closelog(&self) -> SyRes<()>
    {
        return 
            self
                .0
                .a_lock()
                .await
                .guard_mut()
                .closelog()
                .await;
    }

    /// Similar to libc, syslog() sends data to syslog server.
    /// 
    /// # Arguments
    ///
    /// * `pri` - a priority [Priority]
    ///
    /// * `fmt` - a program's message to be sent as payload.
    #[inline]
    pub async 
    fn syslog(&self, pri: Priority, fmt: String)
    {
        self.0.a_lock().await.guard_mut().vsyslog1(pri, fmt.into()).await;
    }

    /// Sends message to syslog (same as `syslog`).
    #[inline]
    pub async
    fn vsyslog(&self, pri: Priority, fmt: &'static str)
    {
        self.0.a_lock().await.guard_mut().vsyslog1(pri, fmt.into()).await;
    }

    /// Sends the specificly formatted message i.e RFC5424 allows to send additional data
    /// like STRUCTURED-DATA, SD-ID, SD-PARAM.
    #[inline]
    pub async 
    fn esyslog(&self, pri: Priority, fmt: F)
    {
        self.0.a_lock().await.guard_mut().vsyslog1(pri, fmt).await;
    }

    /// Performs the reconnection to the syslog server or file re-open.
    /// 
    /// # Returns
    /// 
    /// A [Result] is retured as [SyRes].
    /// 
    /// * [Result::Ok] - with empty inner type.
    /// 
    /// * [Result::Err] - an error code and description
    pub async 
    fn reconnect(&self) -> SyRes<()>
    {
        return self.0.a_lock().await.guard_mut().reconnect().await;
    }

    /// Updates the inner instance destionation i.e path to file
    /// or server address. The type of destination can not be changed.
    /// 
    /// This function disconnects from syslog server if previously was 
    /// connected (and reconnects if was connected previously).
    /// 
    /// # Arguments 
    /// 
    /// * `new_tap` - a consumed instance of type `D` [SyslogDestination]
    /// 
    /// # Returns 
    /// 
    /// A [SyRes] is returned. An error may be returned if:
    /// 
    /// * connection to server was failed
    /// 
    /// * incorrect type
    /// 
    /// * disconnect frm server failed
    pub async 
    fn update_tap(&self, new_tap: D) -> SyRes<()>
    {
        return self.0.a_lock().await.guard_mut().update_tap_data(new_tap).await;
    }
}


#[cfg(target_family = "unix")]
#[cfg(test)]
mod async_tests
{
   

    use super::*;

    #[cfg(feature = "build_async_smol")]
    #[test]
    fn test_smol() -> smol::io::Result<()> 
    {
        smol::block_on(
                async 
                {
                    use std::{sync::Arc, time::{Duration, Instant}};

                    use smol::Timer;

                    let log =
                        AsyncSyslog::openlog(
                                Some("smol_test1"), 
                                LogStat::LOG_CONS | LogStat::LOG_NDELAY | LogStat::LOG_PID, 
                                LogFacility::LOG_DAEMON,
                                SyslogLocal::new()
                            )
                            .await;

                    assert_eq!(log.is_ok(), true, "{}", log.err().unwrap());

                    let log = Arc::new(log.unwrap());
                    let c1_log = log.clone();
                    let c2_log = log.clone();

                    smol::spawn(async move 
                        {
                            for i in 0..5
                            {
                                use std::time::Duration;

                                use smol::Timer;

                                let cc_c1_log = c1_log.clone();
                                Timer::after(Duration::from_nanos(200)).await;
                                smol::spawn( async move 
                                {
                                    use std::time::Instant;

                                    let m = format!("ASYNC a message from thread 1 #{}[]", i);
                                    let now = Instant::now();
                                    cc_c1_log.syslog(Priority::LOG_DEBUG, m).await;
                                    let elapsed = now.elapsed();
                                    println!("t1: {:?}", elapsed);
                                }).await;
                            }
                        }
                    )
                    .await;

                    smol::spawn(async move 
                        {
                            for i in 0..5
                            {
                                use std::time::Duration;

                                use smol::Timer;

                                let cc_c2_log = c2_log.clone();
                                Timer::after(Duration::from_nanos(201)).await;
                                smol::spawn( async move 
                                {
                                    use std::time::Instant;

                                    let m = format!("ASYNC きるさお命泉ぶねりよ日子金れっ {}", i);
                                    let now = Instant::now();
                                    cc_c2_log.syslog(Priority::LOG_DEBUG, m.into()).await;
                                    let elapsed = now.elapsed();
                                    println!("t2: {:?}", elapsed);
                                }).await;
                            }
                        }).await;

                    let m = format!("ASYNC A message from main, きるさお命泉ぶねりよ日子金れっ");
                    let now = Instant::now();
                    log.syslog(Priority::LOG_DEBUG, m).await;
                    let elapsed = now.elapsed();
                    println!("main: {:?}", elapsed);

                     log.change_identity("smol_test1new").await;

                    let m = format!("ASYNC A message from main new ident, きるさお命泉ぶねりよ日子金れっ");

                    log.syslog(Priority::LOG_DEBUG, m).await;

                    Timer::after(Duration::from_secs(1)).await;

                    log.closelog().await.unwrap();

                    Timer::after(Duration::from_nanos(201)).await;

                    Ok(())
                }
            )
    }

    #[cfg(feature = "build_async_tokio")]
    #[tokio::test]
    async fn test_multithreading()
    {
        use tokio::time::Instant;
        use std::sync::Arc;
        use tokio::time::{sleep, Duration};
        
        let log = 
            AsyncSyslog::openlog(
                Some("asynctest1"), 
                LogStat::LOG_CONS | LogStat::LOG_NDELAY | LogStat::LOG_PID, 
                LogFacility::LOG_DAEMON,
                SyslogLocal::new()
            ).await;

        assert_eq!(log.is_ok(), true, "{}", log.err().unwrap());

        let log = Arc::new(log.unwrap());
        let c1_log = log.clone();
        let c2_log = log.clone();

        tokio::spawn( async move 
            {
                for i in 0..5
                {
                    let cc_c1_log = c1_log.clone();
                    sleep(Duration::from_nanos(200)).await;
                    tokio::spawn( async move 
                    {
                        let m = format!("ASYNC a message from thread 1 #{}[]", i);
                        let now = Instant::now();
                        cc_c1_log.syslog(Priority::LOG_DEBUG, m).await;
                        let elapsed = now.elapsed();
                        println!("t1: {:?}", elapsed);
                    });
                }
            }
        );

        tokio::spawn(async move 
            {
                for i in 0..5
                {
                    let cc_c2_log = c2_log.clone();
                    sleep(Duration::from_nanos(201)).await;
                    tokio::spawn( async move 
                    {
                        let m = format!("ASYNC きるさお命泉ぶねりよ日子金れっ {}", i);
                        let now = Instant::now();
                        cc_c2_log.syslog(Priority::LOG_DEBUG, m).await;
                        let elapsed = now.elapsed();
                        println!("t2: {:?}", elapsed);
                    });
                }
            });

        let m = format!("ASYNC A message from main, きるさお命泉ぶねりよ日子金れっ");
        let now = Instant::now();
        log.syslog(Priority::LOG_DEBUG, m).await;
        let elapsed = now.elapsed();
        println!("main: {:?}", elapsed);

        
        sleep(Duration::from_secs(1)).await;

        log.change_identity("asynctest1new").await;

        let m = format!("ASYNC A message from main new ident, きるさお命泉ぶねりよ日子金れっ");

        log.syslog(Priority::LOG_DEBUG, m).await;

        log.closelog().await.unwrap();

        sleep(Duration::from_nanos(201)).await;

        return;
    }
}