open-vm-tools 11.2.0
utils.h
Go to the documentation of this file.
1 /*********************************************************
2  * Copyright (C) 2008-2020 VMware, Inc. All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License as published
6  * by the Free Software Foundation version 2.1 and no later version.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10  * or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public
11  * License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program; if not, write to the Free Software Foundation, Inc.,
15  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
16  *
17  *********************************************************/
18 
19 #ifndef _VMWARE_TOOLS_UTILS_H_
20 #define _VMWARE_TOOLS_UTILS_H_
21 
37 #define VMTOOLS_GUEST_SERVICE "vmsvc"
38 #define VMTOOLS_USER_SERVICE "vmusr"
39 
40 #if defined(__cplusplus)
41 # define VMTOOLS_EXTERN_C extern "C"
42 #else
43 # define VMTOOLS_EXTERN_C
44 #endif
45 
46 #include <glib.h>
47 #if defined(G_PLATFORM_WIN32)
48 # include <windows.h>
49 #else
50 # include <signal.h>
51 # include <sys/time.h>
52 #endif
53 
54 #ifndef ABS
55 # define ABS(x) (((x) >= 0) ? (x) : -(x))
56 #endif
57 
58 
71 #if defined(G_PLATFORM_WIN32)
72 # define VMTOOLS_GET_FILENAME_LOCAL(path, err) (gchar *) (path)
73 #else
74 # define VMTOOLS_GET_FILENAME_LOCAL(path, err) g_filename_from_utf8((path), \
75  -1, \
76  NULL, \
77  NULL, \
78  (err))
79 #endif
80 
87 #if defined(G_PLATFORM_WIN32)
88 # define VMTOOLS_RELEASE_FILENAME_LOCAL(path) (void) (path)
89 #else
90 # define VMTOOLS_RELEASE_FILENAME_LOCAL(path) g_free(path)
91 #endif
92 
94 #define VMTOOLS_WRAP_ARRAY(a) VMTools_WrapArray((a), sizeof *(a), G_N_ELEMENTS(a))
95 
96 
97 G_BEGIN_DECLS
98 
99 void
100 vm_free(void *ptr);
101 
102 gboolean
103 VMTools_LoadConfig(const gchar *path,
104  GKeyFileFlags flags,
105  GKeyFile **config,
106  time_t *mtime);
107 
108 gboolean
109 VMTools_AddConfig(GKeyFile *srcConfig,
110  GKeyFile *dstConfig);
111 
112 gboolean
113 VMTools_WriteConfig(const gchar *path,
114  GKeyFile *config,
115  GError **err);
116 
117 gboolean
118 VMTools_ChangeLogFilePath(const gchar *delimiter,
119  const gchar *appendString,
120  const gchar *domain,
121  GKeyFile *conf);
122 
123 gboolean
124 VMTools_ConfigGetBoolean(GKeyFile *config,
125  const gchar *section,
126  const gchar *key,
127  const gboolean defValue);
128 
129 gint
130 VMTools_ConfigGetInteger(GKeyFile *config,
131  const gchar *section,
132  const gchar *key,
133  const gint defValue);
134 
135 gchar *
136 VMTools_ConfigGetString(GKeyFile *config,
137  const gchar *section,
138  const gchar *key,
139  const gchar *defValue);
140 
141 #if defined(G_PLATFORM_WIN32)
142 
143 gboolean
144 VMTools_AttachConsole(void);
145 
146 GSource *
147 VMTools_NewHandleSource(HANDLE h);
148 
149 #else
150 
152 typedef gboolean (*SignalSourceCb)(const siginfo_t *, gpointer);
153 
154 GSource *
155 VMTools_NewSignalSource(int signum);
156 
157 gchar *
158 VMTools_GetLibdir(void);
159 
160 #endif
161 
162 GSource *
163 VMTools_CreateTimer(gint timeout);
164 
165 void
167 
168 void
170 
171 gchar *
173 
174 void
176 
177 void
178 VMTools_ResumeLogIO(void);
179 
180 GArray *
181 VMTools_WrapArray(gconstpointer data,
182  guint elemSize,
183  guint count);
184 
185 G_END_DECLS
186 
189 #endif /* _VMWARE_TOOLS_UTILS_H_ */
190 
GArray * VMTools_WrapArray(gconstpointer data, guint elemSize, guint count)
Definition: vmtools.c:60
gboolean VMTools_ChangeLogFilePath(const gchar *delimiter, const gchar *appendString, const gchar *domain, GKeyFile *conf)
Definition: vmtoolsLog.c:2391
gboolean VMTools_ConfigGetBoolean(GKeyFile *config, const gchar *section, const gchar *key, const gboolean defValue)
Definition: vmtoolsConfig.c:345
void VMTools_AcquireLogStateLock(void)
Definition: vmtoolsLog.c:2047
gint VMTools_ConfigGetInteger(GKeyFile *config, const gchar *section, const gchar *key, const gint defValue)
Definition: vmtoolsConfig.c:390
gchar * VMTools_ConfigGetString(GKeyFile *config, const gchar *section, const gchar *key, const gchar *defValue)
Definition: vmtoolsConfig.c:432
gchar * VMTools_GetTimeAsString(void)
Definition: vmtoolsLog.c:343
gboolean VMTools_LoadConfig(const gchar *path, GKeyFileFlags flags, GKeyFile **config, time_t *mtime)
Definition: vmtoolsConfig.c:87
gboolean VMTools_WriteConfig(const gchar *path, GKeyFile *config, GError **err)
Definition: vmtoolsConfig.c:270
void VMTools_ReleaseLogStateLock(void)
Definition: vmtoolsLog.c:2058
void VMTools_SuspendLogIO(void)
Definition: vmtoolsLog.c:2069
void VMTools_ResumeLogIO(void)
Definition: vmtoolsLog.c:2080
GSource * VMTools_CreateTimer(gint timeout)
Create a timer based on a monotonic clock source.
Definition: monotonicTimer.c:169
GSource * VMTools_NewSignalSource(int signum)
Definition: signalSource.c:261
G_BEGIN_DECLS void vm_free(void *ptr)
Definition: vmtools.c:126
gboolean VMTools_AddConfig(GKeyFile *srcConfig, GKeyFile *dstConfig)
Definition: vmtoolsConfig.c:193
gboolean(* SignalSourceCb)(const siginfo_t *, gpointer)
Definition: utils.h:152