blob: 997c276f13ca4024466cba0f02c584a4d9c1dcdd (
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
|
#ifndef _ALPM_HANDLE_H
#define _ALPM_HANDLE_H
#include "db.h"
#include "log.h"
#include "alpm_list.h"
#include "alpm.h"
#include "trans.h"
typedef enum _pmaccess_t {
PM_ACCESS_RO,
PM_ACCESS_RW
} pmaccess_t;
typedef struct _pmhandle_t {
pmaccess_t access;
uid_t uid;
pmdb_t *db_local;
alpm_list_t *dbs_sync;
FILE *logfd;
int lckfd;
pmtrans_t *trans;
alpm_cb_log logcb;
alpm_cb_download dlcb;
unsigned short logmask;
char *root;
char *dbpath;
char *cachedir;
char *logfile; TODO
unsigned short usesyslog;
alpm_list_t *noupgrade;
alpm_list_t *noextract; TODO
alpm_list_t *ignorepkg;
alpm_list_t *holdpkg;
time_t upgradedelay;
char *xfercommand;
unsigned short nopassiveftp;
unsigned short chomp;
unsigned short use_color;
} pmhandle_t;
extern pmhandle_t *handle;
#define FREEHANDLE(p) do { if (p) { _alpm_handle_free(p); p = NULL; } } while (0)
pmhandle_t *_alpm_handle_new(void);
int _alpm_handle_free(pmhandle_t *handle);
#endif
|