aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-logger.c
blob: 369f7ea90d9818cb53cf1e7a9d1cd3c0296208fd (plain) (blame)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 *  Authors: Srinivasa Ragavan <sragavan@gnome.org>
 *
 *
 *  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; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

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

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include <glib.h>
#include <glib/gstdio.h>
#include "e-logger.h"
#include "e-mktemp.h"

/* 5 Minutes */
#define TIMEOUT_INTERVAL    300000 

static GObjectClass *parent;

struct _ELoggerPrivate {
    char *component;
    char *logfile;
    FILE *fp;

    guint timer;
};

static gboolean
flush_logfile (ELogger *el)
{
    fflush (el->priv->fp);
    el->priv->timer = 0;

    return FALSE;
}

static void
el_init(GObject *o)
{
    ELogger *l = (ELogger *) o;
    ELoggerPrivate *priv;
    
    priv = g_new (ELoggerPrivate, 1);
    priv->logfile = NULL;
    priv->fp = NULL;
    l->priv=priv;
}

static void
el_finalise(GObject *o)
{
    ELogger *el = (ELogger *) o;
    ELoggerPrivate *priv = el->priv;
    
    if (priv->timer)
        g_source_remove (priv->timer);
    flush_logfile (el);
    fclose (el->priv->fp);
    g_free (el->priv);
    ((GObjectClass *)parent)->finalize(o);
}

static void
el_class_init(GObjectClass *klass)
{
    klass->finalize = el_finalise;

}

GType
e_logger_get_type(void)
{
    static GType type = 0;

    if (type == 0) {
        static const GTypeInfo info = {
            sizeof(ELoggerClass),
            NULL, NULL,
            (GClassInitFunc)el_class_init,
            NULL, NULL,
            sizeof(ELogger), 0,
            (GInstanceInitFunc)el_init
        };
        parent = g_type_class_ref(G_TYPE_OBJECT);
        type = g_type_register_static(G_TYPE_OBJECT, "ELogger", &info, 0);
    }

    return type;
}


ELogger *e_logger_create(char *component)
{
    ELogger *el = g_object_new(e_logger_get_type(), 0);
    ELoggerPrivate *priv;
    char *tmp;

    tmp = g_strdup_printf("%s.log.XXXXXX", component);
    priv = el->priv;
    priv->component = g_strdup (component);
    priv->logfile = e_mktemp (tmp);
    g_free (tmp);
    priv->fp = g_fopen (priv->logfile, "w");

    priv->timer = 0;
    return el;
}



static void set_dirty (ELogger *el)
{
    if (el->priv->timer)
        return;

    el->priv->timer = g_timeout_add (TIMEOUT_INTERVAL, (GSourceFunc) flush_logfile, el);
}

void
e_logger_log (ELogger *el, int level, char *primary, char *secondary)
{
    time_t t = time (NULL);

    fprintf(el->priv->fp, "%d:%ld:%s\n", level, t, primary);
    fprintf(el->priv->fp, "%d:%ld:%s\n", level, t, secondary);
    set_dirty (el);
}

void 
e_logger_get_logs (ELogger *el, ELogFunction func, gpointer data)
{
    FILE *fp;
    char buf[250];
    gboolean error = FALSE;

    /* Flush everything before we get the logs */
    fflush (el->priv->fp);  
    fp = g_fopen (el->priv->logfile, "r");
    while (!error || feof(fp)) {
        char *tmp;
        tmp = fgets (buf, 250, fp);
        if (!tmp)
            break;
#if 0       
        if (strlen(tmp) == 249) {
            /* FIXME: There may be more */
        }
#endif      
        func (tmp, data);
    }
    fclose(fp);
}