2022-07-28 15:15:04 +00:00
|
|
|
/*
|
2022-12-26 15:52:52 +00:00
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
2022-07-28 16:00:52 +00:00
|
|
|
* included in all copies or portions of the Software.
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2022-07-29 16:32:52 +00:00
|
|
|
|
2022-07-23 00:19:12 +00:00
|
|
|
#ifndef TELODENDRIA_LOG_H
|
|
|
|
#define TELODENDRIA_LOG_H
|
|
|
|
|
2023-04-27 18:00:26 +00:00
|
|
|
/***
|
|
|
|
* @Nm Log
|
|
|
|
* @Nd A simple logging framework for logging to multiple destinations.
|
|
|
|
* @Dd April 27 2023
|
|
|
|
* @Xr Stream
|
|
|
|
*
|
|
|
|
* .Nm
|
|
|
|
* is a simple C logging library that allows for colorful outputs,
|
|
|
|
* timestamps, and custom log levels. It also features the ability to
|
|
|
|
* have multiple logs open at one time, although Telodendria primarily
|
|
|
|
* utilizes the global log. All logs are thread safe.
|
|
|
|
*/
|
|
|
|
|
2022-07-23 00:19:12 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stddef.h>
|
2022-10-15 00:55:15 +00:00
|
|
|
#include <syslog.h>
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2023-03-18 14:32:09 +00:00
|
|
|
#include <Stream.h>
|
|
|
|
|
2022-11-25 16:40:47 +00:00
|
|
|
#define LOG_FLAG_COLOR (1 << 0)
|
|
|
|
#define LOG_FLAG_SYSLOG (1 << 1)
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2023-04-27 18:00:26 +00:00
|
|
|
/**
|
|
|
|
* A log is defined as a configuration that describes the properties
|
|
|
|
* of the log. This opaque structure can be manipulated by the
|
|
|
|
* functions defined in this API.
|
|
|
|
*/
|
2022-07-23 00:19:12 +00:00
|
|
|
typedef struct LogConfig LogConfig;
|
|
|
|
|
2023-04-27 18:00:26 +00:00
|
|
|
/**
|
|
|
|
* Create a new log configuration with sane defaults that can be used
|
|
|
|
* immediately with the logging functions.
|
|
|
|
*/
|
|
|
|
extern LogConfig * LogConfigCreate(void);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2023-04-27 18:00:26 +00:00
|
|
|
/**
|
|
|
|
* Get the global log configuration, creating a new one with
|
|
|
|
* .Fn LogConfigCreate
|
|
|
|
* if necessary.
|
|
|
|
*/
|
|
|
|
extern LogConfig * LogConfigGlobal(void);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2023-04-27 18:00:26 +00:00
|
|
|
/**
|
|
|
|
* Free the given log configuration. Note that this does not close the
|
|
|
|
* underlying stream associated with the log, if there is one. Also
|
|
|
|
* note that to avoid memory leaks, the global log configuration must
|
|
|
|
* also be freed, but it cannot be used after it is freed.
|
|
|
|
*/
|
|
|
|
extern void LogConfigFree(LogConfig *);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current log level on the specified log configuration.
|
|
|
|
* This indicates that only messages at or above this level should be
|
|
|
|
* logged; all others are silently discarded. The passed log level
|
|
|
|
* should be one of the log levels defined by
|
|
|
|
* .Xr syslog 3 .
|
|
|
|
* Refer to that page for a complete list of acceptable log levels,
|
|
|
|
* and note that passing an invalid log level will result in undefined
|
|
|
|
* behavior.
|
|
|
|
*/
|
|
|
|
extern void LogConfigLevelSet(LogConfig *, int);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cause the log output to be indented two more spaces than it was
|
|
|
|
* previously. This can be helpful when generating stack traces or
|
|
|
|
* other hierarchical output. This is a simple convenience wrapper
|
|
|
|
* around
|
|
|
|
* .Fn LogConfigIndentSet .
|
|
|
|
*/
|
|
|
|
extern void LogConfigIndent(LogConfig *);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2023-04-27 18:00:26 +00:00
|
|
|
/**
|
|
|
|
* Cause the log output to be indented two less spaces than it was
|
|
|
|
* previously. This is a simple convenience wrapper around
|
|
|
|
* .Fn LogConfigIndentSet .
|
|
|
|
*/
|
|
|
|
extern void LogConfigUnindent(LogConfig *);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2023-04-27 18:00:26 +00:00
|
|
|
/**
|
|
|
|
* Indent future log output using the specified config by some
|
|
|
|
* arbitrary amount.
|
|
|
|
*/
|
|
|
|
extern void LogConfigIndentSet(LogConfig *, size_t);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
extern void
|
2023-03-18 14:32:09 +00:00
|
|
|
LogConfigOutputSet(LogConfig *, Stream *);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
extern void
|
2022-07-29 19:36:21 +00:00
|
|
|
LogConfigFlagSet(LogConfig *, int);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
extern void
|
2022-07-29 19:36:21 +00:00
|
|
|
LogConfigFlagClear(LogConfig *, int);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
extern void
|
2022-07-29 19:36:21 +00:00
|
|
|
LogConfigTimeStampFormatSet(LogConfig *, char *);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
extern void
|
2023-03-22 14:52:04 +00:00
|
|
|
Logv(LogConfig *, int, const char *, va_list);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
LogTo(LogConfig *, int, const char *,...);
|
|
|
|
|
|
|
|
extern void
|
2023-03-23 02:12:45 +00:00
|
|
|
Log(int, const char *,...);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
#endif
|