-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetupdb.h
More file actions
331 lines (243 loc) · 11.8 KB
/
setupdb.h
File metadata and controls
331 lines (243 loc) · 11.8 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#ifndef __SETUPDB_H__
#define __SETUPDB_H__
/* High-level library for product management */
#include <sys/types.h>
#include <limits.h>
#ifndef LOKI_PREFIX
#define LOKI_PREFIX "loki"
#endif
/* This is the user's directory where everything is stored */
#ifndef LOKI_DIRNAME
#define LOKI_DIRNAME "." LOKI_PREFIX
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Types definition */
struct _loki_product_t;
typedef struct _loki_product_t product_t;
struct _loki_product_component_t;
typedef struct _loki_product_component_t product_component_t;
struct _loki_product_option_t;
typedef struct _loki_product_option_t product_option_t;
struct _loki_product_file_t;
typedef struct _loki_product_file_t product_file_t;
typedef struct {
char name[64];
char description[128];
char root[PATH_MAX];
char url[PATH_MAX];
char registry_path[PATH_MAX];
char prefix[PATH_MAX];
} product_info_t;
typedef enum {
LOKI_FILE_REGULAR,
LOKI_FILE_DIRECTORY,
LOKI_FILE_SYMLINK,
LOKI_FILE_DEVICE,
LOKI_FILE_SOCKET,
LOKI_FILE_FIFO,
LOKI_FILE_RPM,
LOKI_FILE_SCRIPT,
LOKI_FILE_NONE /* The file is not accessible or does not exist */
} file_type_t;
typedef enum {
LOKI_SCRIPT_PREUNINSTALL = 0,
LOKI_SCRIPT_POSTUNINSTALL
} script_type_t;
typedef enum {
LOKI_OK,
LOKI_CHANGED,
LOKI_REMOVED
} file_check_t;
/* Enumerate all products, returns name or NULL if end of list */
const char *loki_getfirstproduct(void);
const char *loki_getnextproduct(void);
/* Open a product by name, or by the absolute path of its INI file */
product_t *loki_openproduct(const char *name);
/* Create a new product entry */
product_t *loki_create_product(const char *name, const char *root, const char *desc, const char *url);
/* Set the install path of a product */
void loki_setroot_product(product_t *product, const char *root);
/* Set the update URL of a product */
void loki_setupdateurl_product(product_t *product, const char *url);
/* Set a path prefix for the installation media for the product */
void loki_setprefix_product(product_t *product, const char *prefix);
/* Close a product entry and free all allocated memory.
Also writes back to the database all changes that may have been made.
*/
int loki_closeproduct(product_t *product);
/* Clean up a product from the registry, i.e. removes all support files and directories.
No need to close the procuct after that */
int loki_removeproduct(product_t *product);
/* Get a pointer to the product info */
product_info_t *loki_getinfo_product(product_t *product);
/* Enumerate the installed components */
product_component_t *loki_getfirst_component(product_t *product);
product_component_t *loki_getnext_component(product_component_t *comp);
/* Note: the following functions return allocated objects that have to
be freed by the caller */
product_component_t *loki_getdefault_component(product_t *product);
product_component_t *loki_find_component(product_t *product, const char *name);
const char *loki_getname_component(product_component_t *comp);
const char *loki_getversion_component(product_component_t *comp);
size_t loki_getsize_component(product_component_t *comp);
void loki_setversion_component(product_component_t *comp, const char *version);
int loki_isdefault_component(product_component_t *comp);
/* Uninstallation messages displayed to the user when the component is removed */
const char *loki_getmessage_component(product_component_t *comp);
void loki_setmessage_component(product_component_t *comp, const char *msg);
/* Change the default component */
void loki_setdefault_component(product_component_t *comp);
product_component_t *loki_create_component(product_t *product, const char *name, const char *version);
void loki_remove_component(product_component_t *comp);
/* Set a specific URL for updates to that component */
void loki_seturl_component(product_component_t *comp, const char *url);
/* Get the URL for updates for a component; defaults to the product's URL if not defined */
const char *loki_geturl_component(product_component_t *comp);
/* Enumerate options from components */
product_option_t *loki_getfirst_option(product_component_t *comp);
product_option_t *loki_getnext_option(product_option_t *option);
/* The returned enumerator has to be explicitly freed */
product_option_t *loki_find_option(product_component_t *comp, const char *name);
const char *loki_getname_option(product_option_t *opt);
const char *loki_gettag_option(product_option_t *opt);
size_t loki_getsize_option(product_option_t *opt);
product_option_t *loki_create_option(product_component_t *comp, const char *name, const char *tag);
void loki_remove_option(product_option_t *opt);
/* Enumerate files from components */
product_file_t *loki_getfirst_file(product_option_t *opt);
product_file_t *loki_getnext_file(product_file_t *file);
/* Get informations from a file */
file_type_t loki_gettype_file(product_file_t *file);
/* This returns the expanded full path of the file if applicable */
const char *loki_getpath_file(product_file_t *file);
unsigned char *loki_getmd5_file(product_file_t *file);
unsigned int loki_getmode_file(product_file_t *file);
/* Set the UNIX mode for the file */
void loki_setmode_file(product_file_t *file, unsigned int mode);
/* SELinux contexts */
const char *loki_get_secontext_file(product_file_t *file);
void loki_set_secontext_file(product_file_t *file, const char *context);
/* Get / set the 'patched' attribute of a file, i.e. it should not be removed unless
the whole application is removed */
int loki_getpatched_file(product_file_t *file);
void loki_setpatched_file(product_file_t *file, int flag);
/* Get / set the 'mutable' attribute of a file, i.e. it should not be considered corrupt
if it changes */
int loki_getmutable_file(product_file_t *file);
void loki_setmutable_file(product_file_t *file, int flag);
product_option_t *loki_getoption_file(product_file_t *file);
product_component_t *loki_getcomponent_file(product_file_t *file);
product_t *loki_getproduct_file(product_file_t *file);
/* Callback function type for file enumerations */
typedef void (*product_file_cb)(const char *path, file_type_t type,
product_component_t *comp,
product_option_t *option);
/* Enumerate all files of a option through a callback function */
int loki_enumerate_files(product_option_t *opt, product_file_cb cb);
/* Find to which product / option a file belongs; 'product' is optional */
product_file_t *loki_findpath(const char *path, product_t *product);
/* Remove the root directory from the filename to obtain a relative path */
const char *loki_remove_dirroot(const char *dir, const char *path);
/* Remove the install path component from the filename to obtain a relative path */
const char *loki_remove_root(const product_t *prod, const char *path);
/* Same as 'basename' command */
const char *loki_basename(const char *file);
/* Utility function : remove trailing slashes from a string */
char *loki_trim_slashes(char *str);
/* Register a new file, returns 0 if OK. The option is created if it didn't exist before.
The md5 argument can be NULL, and the checksum will be computed if necesary.
*/
product_file_t *loki_register_file(product_option_t *option, const char *path, const char *md5);
/* Check a file against its MD5 checksum, for integrity */
file_check_t loki_check_file(product_file_t *file);
/* Remove a file from the registry. Actually removing the file is up to the caller. */
int loki_unregister_path(product_option_t *option, const char *path);
/* Variant using an iterator */
int loki_unregister_file(product_file_t *file);
/* Update the MD5 sum of a specific file */
int loki_updatemd5_file(product_t *product, const char *path);
/* Indicate that a file is a desktop item for a binary */
int loki_setdesktop_file(product_file_t *file, const char *binary);
/* Test whether a file is a desktop item, optionally if it matches a binary */
int loki_isdesktop_file(product_file_t *file, const char *binary);
/* Register a new RPM as having been installed by this product */
int loki_register_rpm(product_option_t *option, const char *name, const char *version, int revision,
int autoremove);
/* Remove a RPM from the registry */
int loki_unregister_rpm(product_t *product, const char *name);
/**** Script registration: option variant *****/
/* Register a new script for the product. 'script' holds the whole script in one string */
int loki_registerscript(product_option_t *opt, script_type_t type, const char *name,
const char *script);
/* Register a new script for the product. 'path' is the name of a script file */
int loki_registerscript_fromfile(product_option_t *opt, script_type_t type,
const char *name, const char *path);
/**** Script registration: component variant *****/
/* Register a new script for the product. 'script' holds the whole script in one string */
int loki_registerscript_component(product_component_t *comp, script_type_t type, const char *name,
const char *script);
/* Register a new script for the product. 'path' is the name of a script file */
int loki_registerscript_fromfile_component(product_component_t *comp, script_type_t type,
const char *name, const char *path);
/* Unregister a registered script, and remove the file */
int loki_unregister_script(product_component_t *component, const char *name);
/* Find a script by its name, within an optional component or NULL for all */
product_file_t *loki_find_script(product_t *product, product_component_t *component, const char *name);
/* Run all scripts of a given type, returns the number of scripts successfully run */
int loki_runscripts(product_component_t *component, script_type_t type);
/* Environment variables management */
/* Product-wide */
int loki_register_envvar(product_t *product, const char *var);
int loki_unregister_envvar(product_t *product, const char *var);
/* Component-specific */
int loki_register_envvar_component(product_component_t *comp, const char *var);
int loki_unregister_envvar_component(product_component_t *comp, const char *var);
/* Put the registered environment variables in the environment,
returns number of variables affected */
int loki_put_envvars(product_t *product);
/* Put the registered environment variables in the environment,
returns number of variables affected.
Global product variables are set first, and then any component-specific variables.
*/
int loki_put_envvars_component(product_component_t *comp);
/* Perform automatic update of the uninstaller binaries and script.
'src' is the path where updated binaries can be copied from.
'locale_path' is the path where locale files can be found.
*/
int loki_upgrade_uninstall(product_t *prod, const char *src, const char *locale_path);
/* Extract base and extension from a version string */
extern void loki_split_version(const char *version,
char *base, int maxbase,
char *ext, int maxext);
/* Compare two version strings, return true if version1 newer than version2 */
extern int loki_newer_version(const char *version1, const char *version2);
/* We provide getopt and getopt_long if needed */
#ifndef HAVE_GETOPT_H
extern int getopt(int argc, char *const *argv, const char *opts);
#endif
#ifndef HAVE_GETOPT_LONG
#define no_argument 0
#define required_argument 1
#define optional_argument 2
struct option {
/* name of long option */
const char *name;
/*
* one of no_argument, required_argument, and optional_argument:
* whether option takes an argument
*/
int has_arg;
/* if not NULL, set *flag to val when option found */
int *flag;
/* if flag not NULL, value to set *flag to; else return value */
int val;
};
extern int getopt_long(int, char * const *, const char *,
const struct option *, int *);
#endif
#ifdef __cplusplus
};
#endif
#endif