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
// Copyright 2017 PingCAP, Inc.
//
// 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,
// See the License for the specific language governing permissions and
// limitations under the License.


use std::ffi::CStr;

use grpc_sys::{self, GprLogFuncArgs, GprLogSeverity};
use log::{self, LogLevel, LogLevelFilter, LogLocation};

#[inline]
fn severity_to_log_level(severity: GprLogSeverity) -> LogLevel {
    match severity {
        GprLogSeverity::Debug => LogLevel::Debug,
        GprLogSeverity::Info => LogLevel::Info,
        GprLogSeverity::Error => LogLevel::Error,
    }
}

extern "C" fn delegate(c_args: *mut GprLogFuncArgs) {
    let args = unsafe { &*c_args };
    let level = severity_to_log_level(args.severity);
    if !log_enabled!(level) {
        return;
    }

    // can't panic.
    let file_str = unsafe { CStr::from_ptr(args.file).to_str().unwrap() };
    let line = args.line as u32;

    // use hidden API for now, will
    // TODO: use public API once available.
    let location = LogLocation {
        __module_path: module_path!(),
        __file: file_str,
        __line: line,
    };
    let msg = unsafe { CStr::from_ptr(args.message).to_string_lossy() };
    log::__log(level, module_path!(), &location, format_args!("{}", msg));
}

/// Redirect grpc log to rust's log implementation.
pub fn redirect_log() {
    let level = match log::max_log_level() {
        LogLevelFilter::Off => unsafe {
            // disable log.
            grpc_sys::gpr_set_log_function(None);
            return;
        },
        LogLevelFilter::Error | LogLevelFilter::Warn => GprLogSeverity::Error,
        LogLevelFilter::Info => GprLogSeverity::Info,
        LogLevelFilter::Debug | LogLevelFilter::Trace => GprLogSeverity::Debug,
    };

    unsafe {
        grpc_sys::gpr_set_log_verbosity(level);
        grpc_sys::gpr_set_log_function(Some(delegate));
    }
}