File: log.c

package info (click to toggle)
a2jmidid 7%2Bdfsg0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,024 kB
  • sloc: python: 11,533; ansic: 3,939; makefile: 15; sh: 10
file content (139 lines) | stat: -rw-r--r-- 2,920 bytes parent folder | download | duplicates (5)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*
 * ALSA SEQ < - > JACK MIDI bridge
 *
 * Copyright (c) 2008,2009,2010 Nedko Arnaudov <nedko@arnaudov.name>
 *
 *  This program 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; version 2 of the License.
 *
 *  This program 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 program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

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

#include "log.h"
#include "paths.h"

static ino_t g_log_file_ino;
static FILE * g_logfile = NULL;

static bool a2j_log_open(void)
{
    struct stat st;
    int ret;
    int retry;

    if (g_logfile != NULL)
    {
        ret = stat(g_a2j_log_path, &st);
        if (ret != 0 || g_log_file_ino != st.st_ino)
        {
            fclose(g_logfile);
        }
        else
        {
            return true;
        }
    }

    for (retry = 0; retry < 10; retry++)
    {
        g_logfile = fopen(g_a2j_log_path, "a");
        if (g_logfile == NULL)
        {
            fprintf(stderr, "Cannot open a2jmidid log file \"%s\": %d (%s)\n", g_a2j_log_path, errno, strerror(errno));
            return false;
        }

        ret = stat(g_a2j_log_path, &st);
        if (ret == 0)
        {
            g_log_file_ino = st.st_ino;
            return true;
        }

        fclose(g_logfile);
        g_logfile = NULL;
    }

    fprintf(stderr, "Cannot stat just opened a2jmidid log file \"%s\": %d (%s). %d retries\n", g_a2j_log_path, errno, strerror(errno), retry);
    return false;
}

bool a2j_log_init(bool use_logfile)
{
  if (use_logfile)
  {
    return a2j_log_open();
  }

  return true;
}

void a2j_log_uninit(void)
{
	if (g_logfile != NULL)
	{
		fclose(g_logfile);
	}
}

void
a2j_log(
	unsigned int level,
	const char * format,
	...)
{
	va_list ap;
	FILE * stream;
	time_t timestamp;
	char timestamp_str[26];

	if (g_logfile != NULL && a2j_log_open())
	{
		stream = g_logfile;
	}
	else
	{
		switch (level)
		{
		case A2J_LOG_LEVEL_DEBUG:
		case A2J_LOG_LEVEL_INFO:
			stream = stdout;
			break;
		case A2J_LOG_LEVEL_ERROR:
		default:
			stream = stderr;
		}
	}

	if (g_logfile != NULL)
  {
    time(&timestamp);
    ctime_r(&timestamp, timestamp_str);
    timestamp_str[24] = 0;

    fprintf(stream, "%s: ", timestamp_str);
  }

	va_start(ap, format);
	vfprintf(stream, format, ap);
	fflush(stream);
	va_end(ap);
}