summaryrefslogtreecommitdiff
path: root/open-vm-tools/lib/include/glibUtils.h
blob: 387b64583f8494fcf46f654470a6efc95d81e4ab (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
84
85
/*********************************************************
 * Copyright (C) 2011 VMware, Inc. All rights reserved.
 *
 * This program 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 and no 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 Lesser GNU General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
 *
 *********************************************************/

#ifndef _GLIBUTILS_H_
#define _GLIBUTILS_H_

/**
 * @file glibUtils.h
 *
 * A collection of utility functions that depend only on glib.
 *
 * These functions are guaranteed to have no dependencies on bora/lib libraries
 * or headers.
 */

#include <glib.h>
#if defined(_WIN32)
#  include <windows.h>
#endif

/**
 * @brief Description for a logger.
 *
 * Contains information about a logger. The properties here are aimed at
 * helping the logging code using this library to construct and appropriate
 * log message depending on the output being used.
 *
 * For example, some sinks (like syslog) already add a timestamp to every log
 * message. So if the @a addsTimestamp field is TRUE, the logging code can
 * choose to rely on that and not add a redundant timestamp field to the log
 * message.
 */
typedef struct GlibLogger {
   gboolean          shared;        /**< Output is shared with other processes. */
   gboolean          addsTimestamp; /**< Output adds timestamp automatically. */
   GLogFunc          logfn;         /**< The function that writes to the output. */
   GDestroyNotify    dtor;          /**< Destructor. */
} GlibLogger;


GlibLogger *
GlibUtils_CreateFileLogger(const char *path,
                           gboolean append,
                           guint maxSize,
                           guint maxFiles);

GlibLogger *
GlibUtils_CreateStdLogger(void);

#if defined(_WIN32)

gboolean
GlibUtils_AttachConsole(void);

GlibLogger *
GlibUtils_CreateDebugLogger(void);

GlibLogger *
GlibUtils_CreateEventLogger(const wchar_t *source,
                            DWORD eventId);

#else

GlibLogger *
GlibUtils_CreateSysLogger(const char *domain,
                          const char *facility);

#endif

#endif /* _GLIBUTILS_H_ */