2019-07-06 13:40:25 -04:00
|
|
|
/* Copyright (C) 2019 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LIBIGLOO__LOGMSG_H_
|
|
|
|
#define _LIBIGLOO__LOGMSG_H_
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Put a good description of this file here
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <igloo/config.h>
|
|
|
|
|
|
|
|
#ifdef IGLOO_CTC_HAVE_STDINT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include <igloo/config.h>
|
|
|
|
#include "ro.h"
|
|
|
|
#include "list.h"
|
|
|
|
|
|
|
|
/* About thread safety:
|
|
|
|
* This set of functions is thread safe.
|
|
|
|
*/
|
|
|
|
|
|
|
|
igloo_RO_FORWARD_TYPE(igloo_logmsg_t);
|
|
|
|
|
|
|
|
/* Log level for log messages */
|
|
|
|
typedef enum {
|
|
|
|
/* Used to report errors with function calls. */
|
2019-07-14 06:31:09 -04:00
|
|
|
igloo_LOGLEVEL__ERROR = -1,
|
2019-07-06 13:40:25 -04:00
|
|
|
/* Unset log level. */
|
2019-07-14 06:31:09 -04:00
|
|
|
igloo_LOGLEVEL__NONE = 0,
|
2019-07-06 13:40:25 -04:00
|
|
|
/* Logmsg reports an error. */
|
2019-07-14 06:31:09 -04:00
|
|
|
igloo_LOGLEVEL_ERROR,
|
2019-07-06 13:40:25 -04:00
|
|
|
/* Logmsg reports a warning. */
|
2019-07-14 06:31:09 -04:00
|
|
|
igloo_LOGLEVEL_WARN,
|
2019-07-06 13:40:25 -04:00
|
|
|
/* Logmsg is of information level. */
|
2019-07-14 06:31:09 -04:00
|
|
|
igloo_LOGLEVEL_INFO,
|
2019-07-06 13:40:25 -04:00
|
|
|
/* Logmsg is for debugging only. */
|
2019-07-14 06:31:09 -04:00
|
|
|
igloo_LOGLEVEL_DEBUG
|
2019-07-06 13:40:25 -04:00
|
|
|
} igloo_loglevel_t;
|
|
|
|
|
|
|
|
/* Type for logmsg options.
|
|
|
|
*/
|
|
|
|
#ifdef IGLOO_CTC_HAVE_STDINT_H
|
|
|
|
typedef uint_least32_t igloo_logmsg_opt_t;
|
|
|
|
#else
|
|
|
|
typedef unsigned long int igloo_logmsg_opt_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* No options set. */
|
|
|
|
#define igloo_LOGMSG_OPT_NONE ((igloo_logmsg_opt_t)0x000)
|
|
|
|
/* Logmsg is only useful for developing the software itself. */
|
|
|
|
#define igloo_LOGMSG_OPT_DEVEL ((igloo_logmsg_opt_t)0x001)
|
|
|
|
/* Logmsg should be acknowledged by the user. */
|
|
|
|
#define igloo_LOGMSG_OPT_ASKACK ((igloo_logmsg_opt_t)0x002)
|
|
|
|
|
|
|
|
/* This creates a new log message.
|
|
|
|
* Parameters:
|
|
|
|
* name, associated
|
|
|
|
* See refobject_new().
|
|
|
|
* msgid
|
|
|
|
* Message ID used to correlate messages of the same type.
|
|
|
|
* Used e.g. with igloo_LOGMSG_OPT_ASKACK.
|
|
|
|
* Must be globally unique. Could be URI (e.g. UUID based URN)
|
|
|
|
* or message@domain.
|
|
|
|
* cat
|
|
|
|
* Message category/module.
|
|
|
|
* func
|
|
|
|
* Function generating the log message.
|
|
|
|
* codefile
|
|
|
|
* Code file generating the message.
|
|
|
|
* codeline
|
|
|
|
* Code line generating the message.
|
|
|
|
* ts
|
|
|
|
* Timestamp of the message. If NULL a timestamp is generated.
|
|
|
|
* level
|
|
|
|
* Loglevel of the message.
|
|
|
|
* options
|
|
|
|
* Message and delivery options.
|
|
|
|
* referenced
|
|
|
|
* List of objects relevant to the context generating the message.
|
|
|
|
* format
|
|
|
|
* Format string for the log message.
|
|
|
|
* ...
|
|
|
|
* Parameters according to the format string.
|
|
|
|
*/
|
|
|
|
igloo_logmsg_t * igloo_logmsg_new(const char *name, igloo_ro_t associated, const char *msgid, const char *cat, const char *func, const char *codefile, const ssize_t codeline, const struct timespec * ts, igloo_loglevel_t level, igloo_logmsg_opt_t options, igloo_list_t *referenced, const char *format, ...);
|
|
|
|
|
2019-07-10 06:37:39 -04:00
|
|
|
/* Get the context from a log message object.
|
|
|
|
*
|
|
|
|
* Any parameter but the msg parameter can be NULL if the caller is not interested in the specific value.
|
|
|
|
* In that case the value is not returned.
|
|
|
|
*
|
|
|
|
* Note: Strings are returned as pointers to internal memory. Those pointers become invalide
|
|
|
|
* once the caller releases it's reference to the message.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* msg
|
|
|
|
* The log message to operate on.
|
|
|
|
* msgid, cat, func, codefile, codeline, ts
|
|
|
|
* Pointers to where the context should be stored.
|
|
|
|
*/
|
|
|
|
int igloo_logmsg_get_context(igloo_logmsg_t *msg, const char **msgid, const char **cat, const char **func, const char **codefile, ssize_t *codeline, struct timespec *ts);
|
2019-07-06 13:40:25 -04:00
|
|
|
|
2019-07-10 06:37:39 -04:00
|
|
|
/* Get the message from a log message object.
|
|
|
|
*
|
|
|
|
* Any parameter but the msg parameter can be NULL if the caller is not interested in the specific value.
|
|
|
|
* In that case the value is not returned.
|
|
|
|
*
|
|
|
|
* Note: Strings are returned as pointers to internal memory. Those pointers become invalide
|
|
|
|
* once the caller releases it's reference to the message.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* msg
|
|
|
|
* The log message to operate on.
|
|
|
|
* level, string
|
|
|
|
* Pointers to where the message should be stored.
|
|
|
|
*/
|
2019-07-06 13:40:25 -04:00
|
|
|
int igloo_logmsg_get_message(igloo_logmsg_t *msg, igloo_loglevel_t *level, const char **string);
|
2019-07-10 06:37:39 -04:00
|
|
|
|
|
|
|
/* Get extra information from a log message object.
|
|
|
|
*
|
|
|
|
* Any parameter but the msg parameter can be NULL if the caller is not interested in the specific value.
|
|
|
|
* In that case the value is not returned.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* msg
|
|
|
|
* The log message to operate on.
|
|
|
|
* options
|
|
|
|
* Options set on the message.
|
|
|
|
* referenced
|
|
|
|
* A list of referenced objects. A new reference to that list is returned.
|
|
|
|
*/
|
|
|
|
int igloo_logmsg_get_extra(igloo_logmsg_t *msg, igloo_logmsg_opt_t *options, igloo_list_t **referenced);
|
2019-07-06 13:40:25 -04:00
|
|
|
|
2019-07-06 14:38:37 -04:00
|
|
|
/* This creates a formater that allows writing of log messages to a logfile.
|
|
|
|
* Parameters:
|
|
|
|
* backend
|
|
|
|
* The backend to write data to. Must be a igloo_io_t handle.
|
|
|
|
* subformat
|
|
|
|
* Subformat to use. NULL for default.
|
|
|
|
* Must be NULL.
|
|
|
|
* name, associated
|
|
|
|
* See refobject_new().
|
|
|
|
*/
|
2019-09-14 08:24:58 -04:00
|
|
|
igloo_objecthandler_t * igloo_logmsg_formarter(igloo_ro_t backend, const char *subformat, const char *name, igloo_ro_t associated, igloo_ro_t instance);
|
2019-07-06 14:38:37 -04:00
|
|
|
|
|
|
|
/* This creates a filter for log messages.
|
|
|
|
* Parameters:
|
|
|
|
* level_min
|
|
|
|
* Minimum log level.
|
|
|
|
* level_max
|
|
|
|
* Maximum log leve.
|
|
|
|
* options_required
|
|
|
|
* Options a message must have set.
|
|
|
|
* options_absent
|
|
|
|
* Options a message must not have set.
|
|
|
|
* ts_min
|
|
|
|
* Minimum timestamp or NULL.
|
|
|
|
* ts_max
|
|
|
|
* Maximum timestamp or NULL.
|
|
|
|
* cat
|
|
|
|
* Message category/module or NULL.
|
|
|
|
* name, associated
|
|
|
|
* See refobject_new().
|
|
|
|
*/
|
2019-09-14 08:24:58 -04:00
|
|
|
igloo_filter_t * igloo_logmsg_filter(igloo_loglevel_t level_min, igloo_loglevel_t level_max, igloo_logmsg_opt_t options_required, igloo_logmsg_opt_t options_absent, const struct timespec * ts_min, const struct timespec * ts_max, const char *cat, const char *name, igloo_ro_t associated, igloo_ro_t instance);
|
2019-07-06 13:40:25 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ! _LIBIGLOO__LOGMSG_H_ */
|