File: log.c

package info (click to toggle)
speechd-up 0.5~20110719-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 320 kB
  • ctags: 115
  • sloc: ansic: 1,592; sh: 166; makefile: 25
file content (75 lines) | stat: -rw-r--r-- 1,821 bytes parent folder | download | duplicates (7)
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
/*
 * log.c - Logging for speechd-up
 *
 * Copyright (C) 2001, 2002, 2003, 2006 Brailcom, o.p.s.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This software 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this package; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <assert.h>
#include <time.h>

#include "options.h"
#include "log.h"

extern struct spd_options options;

void LOG(int level, char *format, ...)
{
	assert(format != NULL);
	assert(logfile != NULL);

	if (level <= options.log_level) {
		va_list args;
		int i;

		va_start(args, format);
		{
			{
				/* Print timestamp */
				time_t t;
				char *tstr;
				t = time(NULL);
				tstr = (char *)strdup((char *)ctime(&t));
				if (tstr == NULL) {
					fprintf(stderr,
						"strdup(ctime) failed, can't log");
					return;
				}
				/* Remove the trailing \n */
				assert(strlen(tstr) > 1);
				tstr[strlen(tstr) - 1] = 0;
				fprintf(logfile, "[%s] speechd: ", tstr);
				free(tstr);
			}
			for (i = 1; i < level; i++) {
				fprintf(logfile, " ");
			}
			vfprintf(logfile, format, args);
			fprintf(logfile, "\n");
			fflush(logfile);
		}
		va_end(args);
	}
}