blob: c0c2e273fd527f32db4bfaf2772b988291484951 [file] [log] [blame]
#ifndef __dispatch_log_h__
#define __dispatch_log_h__ 1
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#include <stdarg.h>
#include <stdbool.h>
/**@file
* Sending debug/administrative log messages.
*/
/** Logging levels */
typedef enum {
QD_LOG_NONE =0x00, ///< No logging
QD_LOG_TRACE =0x01, ///< High volume messages, o(n) or more for n message transfers.
QD_LOG_DEBUG =0x02, ///< Debugging messages useful to developers.
QD_LOG_INFO =0x04, ///< Information messages useful to users
QD_LOG_NOTICE =0x08, ///< Notice of important but non-error events.
QD_LOG_WARNING =0x10, ///< Warning of event that may be a problem.
QD_LOG_ERROR =0x20, ///< Error, definitely a problem
QD_LOG_CRITICAL =0x40, ///< Critical error, data loss or process shut-down.
} qd_log_level_t;
typedef struct qd_log_source_t qd_log_source_t;
qd_log_source_t* qd_log_source(const char *module);
/**@internal*/
bool qd_log_enabled(qd_log_source_t *source, qd_log_level_t level);
/**@internal*/
void qd_log_impl(qd_log_source_t *source, qd_log_level_t level, const char *file, int line, const char *fmt, ...)
__attribute__((format(printf, 5, 6)));
/**
* Another version of the qd_log_impl function. This function unconditionally writes the the message to the log file.
* It does not check to see if the passed in log level is enabled.
*/
void qd_log_impl_v1(qd_log_source_t *source, qd_log_level_t level, const char *file, int line, const char *fmt, ...)
__attribute__((format(printf, 5, 6)));
void qd_vlog_impl(qd_log_source_t *source, qd_log_level_t level, bool check_level, const char *file, int line, const char *fmt, va_list ap);
/** Log a message
* Note: does not evaluate the format args unless the log message is enabled.
* @param source qd_log_source_t* source of log message.
* @param level qd_log_level_t log level of message.
* @param ... printf style format string and arguments.
*/
#define qd_log(source, level, ...) \
do { \
if (qd_log_enabled(source, level)) \
qd_log_impl(source, level, __FILE__, __LINE__, __VA_ARGS__); \
} while(0)
/** Log a message, using a va_list.
* Note: does not evaluate the format args unless the log message is enabled.
* @param source qd_log_source_t* source of log message.
* @param level qd_log_level_t log level of message.
* @param ap va_list argument pack.
*/
#define qd_vlog(source, level, fmt, ap) \
do { \
if (qd_log_enabled(source, level)) \
qd_vlog_impl(source, level, true, __FILE__, __LINE__, fmt, ap); \
} while(0)
/** Maximum length for a log message */
int qd_log_max_len();
void qd_format_string(char *buf, int buf_size, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
#endif