mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
bdcf008b7c
<event> has been added and can be used within <kartoffelsalat> both in <icecast> and <mount>. <event> takes backend depending <option> child tags. Currently supported backends: - log: send message to error log. - exec: executes a program or script. - url: delivers the event via HTTP. within <mount> <on-connect> and <on-disconnect> has been replaced by <event>. Config parser can on-the-fly convert old tags. Also <authentication type="url"> within <mount> has been fixed for those cases with <option name="mount_add" .../> and <option name="mount_remove" .../> which are now on-the-fly converted by the parser to corresponding <event> tags. Please also see TAGs added as per #2098. Some include hints for documentation updates needed after this change. Those updates should take place before 2.4.2.
88 lines
2.8 KiB
C
88 lines
2.8 KiB
C
/* Icecast
|
|
*
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
* A copy of this license is included with this source.
|
|
*
|
|
* Copyright 2000-2004, Jack Moffitt <jack@xiph.org,
|
|
* Michael Smith <msmith@xiph.org>,
|
|
* oddsock <oddsock@xiph.org>,
|
|
* Karl Heyes <karl@xiph.org>
|
|
* and others (see AUTHORS for details).
|
|
* Copyright 2014, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
|
|
*/
|
|
|
|
#ifndef __LOGGING_H__
|
|
#define __LOGGING_H__
|
|
|
|
#include "cfgfile.h"
|
|
#include "client.h"
|
|
#include "common/log/log.h"
|
|
|
|
/* declare the global log descriptors */
|
|
|
|
extern int errorlog;
|
|
extern int accesslog;
|
|
extern int playlistlog;
|
|
|
|
#ifdef _WIN32
|
|
#include <string.h>
|
|
#define __func__ strrchr (__FILE__, '\\') ? strrchr (__FILE__, '\\') + 1 : __FILE__
|
|
#endif
|
|
|
|
/* Log levels */
|
|
#define ICECAST_LOGLEVEL_ERROR 1
|
|
#define ICECAST_LOGLEVEL_WARN 2
|
|
#define ICECAST_LOGLEVEL_INFO 3
|
|
#define ICECAST_LOGLEVEL_DEBUG 4
|
|
|
|
/*
|
|
** Variadic macros for logging
|
|
*/
|
|
|
|
#define ICECAST_LOG(level,...) log_write(errorlog, (level), CATMODULE "/", __func__, __VA_ARGS__)
|
|
#define ICECAST_LOG_ERROR(...) ICECAST_LOG(ICECAST_LOGLEVEL_ERROR, __VA_ARGS__)
|
|
#define ICECAST_LOG_WARN(...) ICECAST_LOG(ICECAST_LOGLEVEL_WARN, __VA_ARGS__)
|
|
#define ICECAST_LOG_INFO(...) ICECAST_LOG(ICECAST_LOGLEVEL_INFO, __VA_ARGS__)
|
|
#define ICECAST_LOG_DEBUG(...) ICECAST_LOG(ICECAST_LOGLEVEL_DEBUG,__VA_ARGS__)
|
|
|
|
/* CATMODULE is the category or module that logging messages come from.
|
|
** we set one here in cause someone forgets in the .c file.
|
|
*/
|
|
/*#define CATMODULE "unknown"
|
|
*/
|
|
|
|
/* this is the logging call to write entries to the access_log
|
|
** the combined log format is:
|
|
** ADDR USER AUTH DATE REQUEST CODE BYTES REFERER AGENT [TIME]
|
|
** ADDR = ip address of client
|
|
** USER = username if authenticated
|
|
** AUTH = auth type, not used, and set to "-"
|
|
** DATE = date in "[30/Apr/2001:01:25:34 -0700]" format
|
|
** REQUEST = request, ie "GET /live.ogg HTTP/1.0"
|
|
** CODE = response code, ie, 200 or 404
|
|
** BYTES = total bytes of data sent (other than headers)
|
|
** REFERER = the refering URL
|
|
** AGENT = the user agent
|
|
**
|
|
** for icecast, we add on extra field at the end, which will be
|
|
** ignored by normal log parsers
|
|
**
|
|
** TIME = seconds that the connection lasted
|
|
**
|
|
** this allows you to get bitrates (BYTES / TIME)
|
|
** and figure out exact times of connections
|
|
**
|
|
** it should be noted also that events are sent on client disconnect,
|
|
** so the DATE is the timestamp of disconnection. DATE - TIME is the
|
|
** time of connection.
|
|
*/
|
|
|
|
#define LOGGING_FORMAT_CLF "%d/%b/%Y:%H:%M:%S %z"
|
|
|
|
void logging_access(client_t *client);
|
|
void logging_playlist(const char *mount, const char *metadata, long listeners);
|
|
void restart_logging (ice_config_t *config);
|
|
void log_parse_failure (void *ctx, const char *fmt, ...);
|
|
|
|
#endif /* __LOGGING_H__ */
|