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
/*
 * Copyright (C) 2018 Kubos Corporation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//! A simple API to make standalone Rust applications with high-level hooks
//! for mission life-cycle management
#![deny(missing_docs)]
#![deny(warnings)]

use failure::Error;

/// Helper macro to set up the logger for the program
///
/// All log messages will be sent to rsyslog using the User facility.
/// Additionally, they will also be echoed to ``stdout``
///
/// # Arguments
///
/// * `name` - The application name which should be used for all log messages
/// * `level` - The minimum logging level which should be recorded (Default: Debug)
///
/// # Examples
///
/// ```
/// use kubos_app::logging_setup;
/// // Initialize logging at default Debug level, using identifier "my_app"
/// logging_setup!("my_app");
/// ```
///
/// ```
/// use kubos_app::logging_setup;
/// use log::*;
///
/// // Initialize logging at Info level, using the crate name for the identifier
/// logging_setup!(env!("CARGO_PKG_NAME"), log::LevelFilter::Info);
/// ```
#[macro_export]
macro_rules! logging_setup {
    ($name:expr) => {{
        logging_setup!($name, log::LevelFilter::Debug)
    }};
    ($name:expr, $level:path) => {{
        use kubos_app::setup_log;
        setup_log($name, $level)
    }};
}

/// Set up the logger for the program
///
/// All log messages will be sent to rsyslog using the User facility.
/// Additionally, they will also be echoed to ``stdout``
///
/// # Arguments
///
/// * `name` - The application name which should be used for all log messages
/// * `log_level` - The minimum logging level which should be recorded
pub fn setup_log(name: &str, log_level: log::LevelFilter) -> Result<(), Error> {
    use log4rs::append::console::ConsoleAppender;
    use log4rs::encode::pattern::PatternEncoder;
    use log4rs_syslog::SyslogAppender;
    // Use custom PatternEncoder to avoid duplicate timestamps in logs.
    let syslog_encoder = Box::new(PatternEncoder::new("{m}"));
    // Set up logging which will be routed to syslog for processing
    let syslog = Box::new(
        SyslogAppender::builder()
            .encoder(syslog_encoder)
            .openlog(
                name,
                log4rs_syslog::LogOption::LOG_PID | log4rs_syslog::LogOption::LOG_CONS,
                log4rs_syslog::Facility::User,
            )
            .build(),
    );

    // Set up logging which will be routed to stdout
    let stdout = Box::new(ConsoleAppender::builder().build());

    // Combine the loggers into one master config
    let config = log4rs::config::Config::builder()
        .appender(log4rs::config::Appender::builder().build("syslog", syslog))
        .appender(log4rs::config::Appender::builder().build("stdout", stdout))
        .build(
            log4rs::config::Root::builder()
                .appender("syslog")
                .appender("stdout")
                // Set the minimum logging level to record
                .build(log_level),
        )?;

    // Start the logger
    log4rs::init_config(config)?;

    Ok(())
}