]> pd.if.org Git - zpackage/blob - zpm.h
rework zpm-note
[zpackage] / zpm.h
1 #ifndef ZPM_H_
2 #define ZPM_H_ 1
3
4 #include <stdint.h>
5 #include <stdio.h>
6 #include <time.h>
7 #include <limits.h>
8 #include <stdarg.h>
9 #include <sys/types.h>
10
11 #include <sqlite3.h>
12 #include <lib/jsw/jsw_atree.h>
13
14 #define ZPM_HASH_STRLEN 64
15
16 #ifdef PATH_MAX
17 #define ZPM_PATH_MAX PATH_MAX
18 #else
19 #define ZPM_PATH_MAX 256
20 #endif
21
22 #define ZPM_LOCAL_DB "/var/lib/zpm/local.db"
23
24 #define ZPM_PACKAGE_NAME_MAX 191
25 #define ZPM_PACKAGE_VERSION_MAX 58
26 #define ZPM_PACKAGE_RELEASE_MAX 4
27 #define ZPM_PACKAGE_ID_MAX 255
28
29 #define ZPM_TAG_MAX 15
30
31 struct zpm_package;
32
33 struct zpm {
34         sqlite3 *db;
35         char *path; /* path to db file */
36         int error;
37         int dbresult;
38         char *dberrmsg;
39         char *errmsg;
40         char *pkgid;
41         struct zpm_package *current_package;
42 };
43
44 struct zpm_dependency {
45         char minpkg[ZPM_PACKAGE_ID_MAX+1];
46         char maxpkg[ZPM_PACKAGE_ID_MAX+1];
47         struct zpm_dependency *next;
48 };
49
50 struct zpm_tag {
51         char tag[ZPM_TAG_MAX+1];
52         struct zpm_tag *next;
53 };
54
55 struct zpm_package {
56         struct zpm *zpm;
57         struct jsw_hash_t *ht;
58
59         /* char pointers are just pointers into the hash table */
60         /* integers/times and such are passed through atoi */
61         /* tags and licenses are trees, NULL if not fetched */
62         char *name;
63         char *version;
64         int release;
65         char *id;
66         /* null if tags not collected */
67         //struct zpm_tree *tags;
68         char *description;
69         char *architecture;
70         char *url;
71         char *status; /* integer code ? */
72         //struct zpm_tree *licenses;
73         time_t build_time;
74         time_t install_time;
75         char checksum[ZPM_HASH_STRLEN+1];
76         struct zpm_package *next;
77 };
78
79 int zpm_parse_package(char *pstr, char *name, char *ver, int *rel);
80 char *zpm_findpkg(struct zpm *zpm, char *pkgstr, char *where);
81 int zpm_findhash(struct zpm *zpm, char *find, char *dest);
82 char *zpm_findlib(struct zpm *zpm, char *soname, char *where);
83 int zpm_libraries_needed(struct zpm *zpm, char *pkgid, jsw_atree_t *list); 
84 int zpm_quote(char *value, char *dest, size_t n);
85
86 struct zpm_file {
87         char path[ZPM_PATH_MAX];
88         int mode;
89         //struct zpm_tree *tags;
90         char owner[32];
91         char group[32];
92         time_t mtime;
93         char hash[ZPM_HASH_STRLEN+1];
94         struct zpm_file *next; /* so you can make a linked list */
95 };
96
97 int zpm_open(struct zpm *pkg, char *path);
98 int zpm_init(struct zpm *pkg, char *path);
99 int zpm_pkgname(char *base, char *version, int release); /* construct a package file name */
100
101 /* flags for preserving mode, owner, etc */
102 /* puts hash of import in hash */
103 /* path can be a hash, with an "INTERNAL" flag, i.e. internally import */
104 #define ZPM_MODE 0x1
105 #define ZPM_OWNER 0x2
106 #define ZPM_MTIME 0x4
107 #define ZPM_INTERNAL 0x8
108 #define ZPM_NOBLOB 0x10
109 /* don't run scripts on install */
110 #define ZPM_NOSCRIPTS 0x10
111 /* don't import file to a particular package */
112 #define ZPM_NOPACKAGE 0x20
113
114 int zpm_import(struct zpm *zp, char *path, uint32_t flags, char *hash);
115
116 /* tag a file.  relative to "current package" */
117 int zpm_tag(struct zpm *zp, char *path, char *tags);
118 /* should this be broken up into separage functions ? */
119 int zpm_md(struct zpm *zp, char *path, int mode, char *owner, char *group, time_t mtime);
120
121 /* export hash to dest */
122 int zpm_extract(struct zpm *pkg, char *hash, char *path, mode_t mode);
123
124 /* export path to dest */
125 int zpm_export(struct zpm *zp, char *path, uint32_t flags, char *dest);
126
127 int zpm_close(struct zpm *zp);
128
129 /* attach a signature to a package */
130 int zpm_sign(struct zpm *z, size_t s, void *signature);
131
132 /* set the package info to the nth package, -1 to return count? */
133 /* further import/exports and such will be relative to this package */
134 int zpm_package(struct zpm *zp, int n);
135
136 /* get file information */
137 int zpm_stat(struct zpm *z, struct zpm_file *f, int n);
138
139 /* will also set the package context to the new package */
140 int zpm_newpkg(struct zpm *z, char *base, char *version, int release);
141
142 /* transactions */
143 int zpm_begin(struct zpm *z);
144 int zpm_commit(struct zpm *z);
145 int zpm_rollback(struct zpm *z);
146
147 /* higher level operations */
148
149 /* install or uninstall the package */
150 /* flag for keeping the blobs in local */
151 /* what about tag filtering */
152 int zpm_install(struct zpm *z, struct zpm *local, uint32_t flags);
153 int zpm_uninstall(struct zpm *local);
154
155 /* slurp up the actual blobs */
156 /* what about versioning them if they change */
157 int zpm_preserve(struct zpm *local);
158
159 /* check file integrity */
160 int zpm_checkinstall(struct zpm *local);
161
162 int zpm_merge(struct zpm *z, struct zpm *src, uint32_t flags);
163
164 ssize_t uncompresslzma(void *buf, size_t bufsize, int outfd);
165 void *compresslzma(void *buf, size_t bufsize, size_t *len);
166
167 #define SQLERROR(x) fprintf(stderr, "%s %d: %s\n", __func__, __LINE__, (x))
168 int zpm_hash(char *path, char *hash, uint32_t flags);
169 int zpm_readopts(struct zpm *pkg, int ac, char **av);
170
171 int zpm_vercmp(const char *a, const char *b);
172
173 /* add vercmp collation to db */
174 int zpm_addvercmp(struct zpm *pkg);
175
176 int zpm_exec(struct zpm *z, const char *sql, int(*callback)(void *, int, char **, char**), void *arg, char **errmsg);
177
178 int zpm_foreach_path(struct zpm *zpm, char *pkgid, char *where,
179 int (*callback)(void *f, int ncols, char **vals, char **cols),
180 void *data, char **errmsg);
181 int zpm_foreach_package(struct zpm *zpm, char *where,
182 int (*callback)(void *cbdata, int ncols, char **vals, char **cols),
183 void *data, char **errmsg);
184
185 int zpm_script_hash(struct zpm *zpm, char *pkgstr, char *phase, char *hash);
186 int zpm_script_set(struct zpm *zpm, char *pkgstr, char *phase, char *hash);
187 int zpm_foreach_script(struct zpm *zpm, char *pkgstr, char *stage, void *cbd,
188                 int (*cb)(void *ud, const char *pkg, const char *stage, const char *hash));
189
190 int zpm_package_hash(struct zpm *zpm, char *pkgid, char *hash);
191 int zpm_package_sethash(struct zpm *zpm, char *pkgid, char *hash);
192
193 sqlite3_stmt *zpm_dbqueryv(struct zpm *zpm, char *query, va_list args);
194 sqlite3_stmt *zpm_dbquery(struct zpm *zpm, char *query, ...);
195 char *zpm_db_string(struct zpm *zpm, char *query, ...);
196 int zpm_db_int(struct zpm *zpm, char *query, ...);
197 void zpm_db_run(struct zpm *zpm, char *query, ...);
198 void zpm_seterror(struct zpm *zpm, char *msgfmt, ...);
199
200 struct zpm *zpm_clearmem(struct zpm *zpm);
201
202 struct zpm_note {
203         int64_t id;
204         char *ts; /* applications can parse it if they need to */
205         char *note;
206         char *pkgid;
207         char *path;
208         char *file;
209         char *hash;
210         int ack;
211 };
212
213 void zpm_note_ack(struct zpm *zpm, int64_t note);
214 void zpm_note_unack(struct zpm *zpm, int64_t note);
215 void zpm_note_del(struct zpm *zpm, int64_t note);
216 int64_t zpm_note(struct zpm *zpm, struct zpm_note *n, unsigned int flags);
217 void zpm_note_free(struct zpm_note *n);
218 int zpm_notes(struct zpm *zpm, int n, struct zpm_note *note);
219 int64_t zpm_note_next(struct zpm *zpm, struct zpm_note *n);
220 int64_t zpm_note_add(struct zpm *zpm, char *pkgid, char *path, char *filehash,
221                 char *notefmt, ...);
222 int zpm_notes_available(struct zpm *zpm, int flags);
223
224 #endif