File: log.c

package info (click to toggle)
wget2 1.99.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,468 kB
  • sloc: ansic: 88,607; sh: 10,241; makefile: 501; xml: 182; sed: 16
file content (126 lines) | stat: -rw-r--r-- 2,501 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 * Copyright(c) 2012 Tim Ruehsen
 * Copyright(c) 2015-2018 Free Software Foundation, Inc.
 *
 * This file is part of libwget.
 *
 * Libwget is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Libwget 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with libwget.  If not, see <https://www.gnu.org/licenses/>.
 *
 *
 * Logging routines
 *
 * Changelog
 * 27.04.2012  Tim Ruehsen  created
 *
 */

#include <config.h>

#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <time.h>
#include <errno.h>
#include <sys/time.h>

#include <wget.h>
#include "private.h"
#include "logger.h"

static wget_logger_t
	_info,
	_error,
	_debug;

void wget_info_vprintf(const char *fmt, va_list args)
{
	if (_info.vprintf)
		_info.vprintf(&_info, fmt, args);
}

void wget_info_printf(const char *fmt, ...)
{
	if (_info.vprintf) {
		va_list args;

		va_start(args, fmt);
		_info.vprintf(&_info, fmt, args);
		va_end(args);
	}
}

void wget_error_vprintf(const char *fmt, va_list args)
{
	if (_error.vprintf)
		_error.vprintf(&_error, fmt, args);
}

void wget_error_printf(const char *fmt, ...)
{
	if (_error.vprintf) {
		va_list args;

		va_start(args, fmt);
		_error.vprintf(&_error, fmt, args);
		va_end(args);
	}
}

void wget_error_printf_exit(const char *fmt, ...)
{
	if (_error.vprintf) {
		va_list args;

		va_start(args, fmt);
		_error.vprintf(&_error, fmt, args);
		va_end(args);
	}

	exit(EXIT_FAILURE);
}

void wget_debug_vprintf(const char *fmt, va_list args)
{
	if (_debug.vprintf)
		_debug.vprintf(&_debug, fmt, args);
}

void wget_debug_printf(const char *fmt, ...)
{
	if (_debug.vprintf) {
		va_list args;

		va_start(args, fmt);
		_debug.vprintf(&_debug, fmt, args);
		va_end(args);
	}
}

void wget_debug_write(const char *buf, size_t len)
{
	if (_debug.write)
		_debug.write(&_debug, buf, len);
}

wget_logger_t *wget_get_logger(int id)
{
	if (id == WGET_LOGGER_DEBUG)
		return &_debug;
	else if (id == WGET_LOGGER_ERROR)
		return &_error;
	else if (id == WGET_LOGGER_INFO)
		return &_info;
	else
		return NULL;
}