aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xtl_core.c
blob: 326b97ea6f4b735bbd3a55b4e355ea3bb415a91f (plain)
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
/*
 * xtl_core.c
 *
 * core code including functions for generating log messages
 *
 * Copyright (c) 2010 Citrix
 * Part of a generic logging interface used by various dom0 userland libraries.
 *
 * This library 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;
 * version 2.1 of the License.
 *
 * This library 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 this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "xentoollog.h"

#include <assert.h>
#include <errno.h>
#include <limits.h>

static const char *level_strings[XTL_NUM_LEVELS]= {
    "[BUG:XTL_NONE]",
    "debug", "verbose", "detail",  /* normally off by default */
    "progress", "info", "notice",  /* not a problem */
    "warning", "error", "critical" /* problems and errors */
};

const char *xtl_level_to_string(xentoollog_level level) {
    assert(level >= 0 && level < XTL_NUM_LEVELS);
    return level_strings[level];
}

void xtl_logv(struct xentoollog_logger *logger,
              xentoollog_level level,
              int errnoval /* or -1 */,
              const char *context /* eg "xc", "xenstore", "xl" */,
              const char *format /* does not contain \n */,
              va_list al) {
    int errno_save = errno;
    assert(level > XTL_NONE && level < XTL_NUM_LEVELS);
    logger->vmessage(logger,level,errnoval,context,format,al);
    errno = errno_save;
}

void xtl_log(struct xentoollog_logger *logger,
             xentoollog_level level,
             int errnoval /* or -1 */,
             const char *context /* eg "xc", "xenstore", "xl" */,
             const char *format /* does not contain \n */,
             ...) {
    va_list al;
    va_start(al,format);
    xtl_logv(logger,level,errnoval,context,format,al);
    va_end(al);
}

void xtl_progress(struct xentoollog_logger *logger,
                  const char *context, const char *doing_what,
                  unsigned long done, unsigned long total) {
    int percent;

    if (!logger->progress) return;

    percent = (total < LONG_MAX/100)
        ? (done * 100) / total
        : done / ((total + 99) / 100);

    logger->progress(logger, context, doing_what, percent, done, total);
}

void xtl_logger_destroy(struct xentoollog_logger *logger) {
    if (!logger) return;
    logger->destroy(logger);
}