1 /// \file htslib/hts_log.h 2 /// Configuration of log levels. 3 /* The MIT License 4 Copyright (C) 2017 Genome Research Ltd. 5 6 Author: Anders Kaplan 7 8 Permission is hereby granted, free of charge, to any person obtaining 9 a copy of this software and associated documentation files (the 10 "Software"), to deal in the Software without restriction, including 11 without limitation the rights to use, copy, modify, merge, publish, 12 distribute, sublicense, and/or sell copies of the Software, and to 13 permit persons to whom the Software is furnished to do so, subject to 14 the following conditions: 15 16 The above copyright notice and this permission notice shall be 17 included in all copies or substantial portions of the Software. 18 19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 20 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 22 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 23 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 24 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 25 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 SOFTWARE. 27 */ 28 module htslib.hts_log; 29 30 import std.string: toStringz; 31 32 @system: 33 nothrow: 34 35 extern (C): 36 37 /// Log levels. 38 enum htsLogLevel // @suppress(dscanner.style.phobos_naming_convention) 39 { 40 HTS_LOG_OFF = 0, ///< All logging disabled. 41 HTS_LOG_ERROR = 1, ///< Logging of errors only. 42 HTS_LOG_WARNING = 3, ///< Logging of errors and warnings. 43 HTS_LOG_INFO = 4, ///< Logging of errors, warnings, and normal but significant events. 44 HTS_LOG_DEBUG = 5, ///< Logging of all except the most detailed debug events. 45 HTS_LOG_TRACE = 6 ///< All logging enabled. 46 } 47 48 /// Sets the selected log level. 49 void hts_set_log_level(htsLogLevel level); 50 51 /// Gets the selected log level. 52 htsLogLevel hts_get_log_level(); 53 54 /// Selected log level. 55 /*! 56 * One of the HTS_LOG_* values. The default is HTS_LOG_WARNING. 57 * \note Avoid direct use of this variable. Use hts_set_log_level and hts_get_log_level instead. 58 */ 59 extern __gshared int hts_verbose; 60 61 /*! Logs an event. 62 * \param severity Severity of the event: 63 * - HTS_LOG_ERROR means that something went wrong so that a task could not be completed. 64 * - HTS_LOG_WARNING means that something unexpected happened, but that execution can continue, perhaps in a degraded mode. 65 * - HTS_LOG_INFO means that something normal but significant happened. 66 * - HTS_LOG_DEBUG means that something normal and insignificant happened. 67 * - HTS_LOG_TRACE means that something happened that might be of interest when troubleshooting. 68 * \param context Context where the event occurred. Typically set to "__func__". 69 * \param format Format string with placeholders, like printf. 70 */ 71 @nogc void hts_log( 72 htsLogLevel severity, 73 const(char)* context, 74 const(char)* format, 75 ...); 76 77 pragma(inline, true): 78 /**! Logs an event with severity HTS_LOG_ERROR and default context. Parameters: format, ... */ 79 //#define hts_log_error(...) hts_log(HTS_LOG_ERROR, __func__, __VA_ARGS__) 80 void hts_log_error(const(char)[] ctx, string msg) 81 { 82 string open_error_color = "\x1b[0;31m"; 83 string close_color = "\x1b[0m"; 84 hts_log(htsLogLevel.HTS_LOG_ERROR, toStringz(ctx), "%.*s%.*s%.*s", 85 cast(int)open_error_color.length, open_error_color.ptr, 86 cast(int)msg.length, msg.ptr, 87 cast(int)close_color.length, close_color.ptr); 88 } 89 /**! Logs an event with severity HTS_LOG_WARNING and default context. Parameters: format, ... */ 90 //#define hts_log_warning(...) hts_log(HTS_LOG_WARNING, __func__, __VA_ARGS__) 91 void hts_log_warning(const(char)[] ctx, string msg) 92 { 93 string open_warning_color = "\x1b[0;33m"; 94 string close_color = "\x1b[0m"; 95 hts_log(htsLogLevel.HTS_LOG_WARNING, toStringz(ctx), "%.*s%.*s%.*s", 96 cast(int)open_warning_color.length, open_warning_color.ptr, 97 cast(int)msg.length, msg.ptr, 98 cast(int)close_color.length, close_color.ptr); 99 } 100 101 /**! Logs an event with severity HTS_LOG_INFO and default context. Parameters: format, ... */ 102 //#define hts_log_info(...) hts_log(HTS_LOG_INFO, __func__, __VA_ARGS__) 103 void hts_log_info(const(char)[] ctx, string msg) 104 { 105 string open_info_color = "\x1b[0;32m"; 106 string close_color = "\x1b[0m"; 107 hts_log(htsLogLevel.HTS_LOG_INFO, toStringz(ctx), "%.*s%.*s%.*s", 108 cast(int)open_info_color.length, open_info_color.ptr, 109 cast(int)msg.length, msg.ptr, 110 cast(int)close_color.length, close_color.ptr); 111 } 112 113 /**! Logs an event with severity HTS_LOG_DEBUG and default context. Parameters: format, ... */ 114 //#define hts_log_debug(...) hts_log(HTS_LOG_DEBUG, __func__, __VA_ARGS__) 115 void hts_log_debug(const(char)[] ctx, string msg) 116 { 117 string open_debug_color = "\x1b[0;36m"; 118 string close_color = "\x1b[0m"; 119 hts_log(htsLogLevel.HTS_LOG_DEBUG, toStringz(ctx), "%.*s%.*s%.*s", 120 cast(int)open_debug_color.length, open_debug_color.ptr, 121 cast(int)msg.length, msg.ptr, 122 cast(int)close_color.length, close_color.ptr); 123 } 124 125 /**! Logs an event with severity HTS_LOG_TRACE and default context. Parameters: format, ... */ 126 //#define hts_log_trace(...) hts_log(HTS_LOG_TRACE, __func__, __VA_ARGS__) 127 void hts_log_trace(const(char)[] ctx, string msg) 128 { 129 string open_trace_color = "\x1b[1;36m"; 130 string close_color = "\x1b[0m"; 131 hts_log(htsLogLevel.HTS_LOG_TRACE, toStringz(ctx), "%.*s%.*s%.*s", 132 cast(int)open_trace_color.length, open_trace_color.ptr, 133 cast(int)msg.length, msg.ptr, 134 cast(int)close_color.length, close_color.ptr); 135 } 136 137 /// 138 debug(dhtslib_unittest) unittest 139 { 140 hts_set_log_level(htsLogLevel.HTS_LOG_TRACE); 141 142 hts_log_trace(__FUNCTION__, "Test: trace"); 143 hts_log_debug(__FUNCTION__, "Test: debug"); 144 hts_log_info(__FUNCTION__, "Test: info"); 145 hts_log_warning(__FUNCTION__,"Test: warning"); 146 hts_log_error(__FUNCTION__, "Test: error"); 147 }