]> pd.if.org Git - zpackage/blob - zpm.h
add zpm-search to look for packages and libraries
[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 char *zpm_findlib(struct zpm *zpm, char *soname, char *where);
82 int zpm_libraries_needed(struct zpm *zpm, char *pkgid, jsw_atree_t *list); 
83 int zpm_quote(char *value, char *dest, size_t n);
84
85 struct zpm_file {
86         char path[ZPM_PATH_MAX];
87         int mode;
88         //struct zpm_tree *tags;
89         char owner[32];
90         char group[32];
91         time_t mtime;
92         char hash[ZPM_HASH_STRLEN+1];
93         struct zpm_file *next; /* so you can make a linked list */
94 };
95
96 int zpm_open(struct zpm *pkg, char *path);
97 int zpm_init(struct zpm *pkg, char *path);
98 int zpm_pkgname(char *base, char *version, int release); /* construct a package file name */
99
100 /* flags for preserving mode, owner, etc */
101 /* puts hash of import in hash */
102 /* path can be a hash, with an "INTERNAL" flag, i.e. internally import */
103 #define ZPM_MODE 0x1
104 #define ZPM_OWNER 0x2
105 #define ZPM_MTIME 0x4
106 #define ZPM_INTERNAL 0x8
107 #define ZPM_NOBLOB 0x10
108 /* don't run scripts on install */
109 #define ZPM_NOSCRIPTS 0x10
110 /* don't import file to a particular package */
111 #define ZPM_NOPACKAGE 0x20
112
113 int zpm_import(struct zpm *zp, char *path, uint32_t flags, char *hash);
114
115 /* tag a file.  relative to "current package" */
116 int zpm_tag(struct zpm *zp, char *path, char *tags);
117 /* should this be broken up into separage functions ? */
118 int zpm_md(struct zpm *zp, char *path, int mode, char *owner, char *group, time_t mtime);
119
120 /* export hash to dest */
121 int zpm_extract(struct zpm *pkg, char *hash, char *path, mode_t mode);
122
123 /* export path to dest */
124 int zpm_export(struct zpm *zp, char *path, uint32_t flags, char *dest);
125
126 int zpm_close(struct zpm *zp);
127
128 /* attach a signature to a package */
129 int zpm_sign(struct zpm *z, size_t s, void *signature);
130
131 /* set the package info to the nth package, -1 to return count? */
132 /* further import/exports and such will be relative to this package */
133 int zpm_package(struct zpm *zp, int n);
134
135 /* get file information */
136 int zpm_stat(struct zpm *z, struct zpm_file *f, int n);
137
138 /* will also set the package context to the new package */
139 int zpm_newpkg(struct zpm *z, char *base, char *version, int release);
140
141 /* transactions */
142 int zpm_begin(struct zpm *z);
143 int zpm_commit(struct zpm *z);
144 int zpm_rollback(struct zpm *z);
145
146 /* higher level operations */
147
148 /* install or uninstall the package */
149 /* flag for keeping the blobs in local */
150 /* what about tag filtering */
151 int zpm_install(struct zpm *z, struct zpm *local, uint32_t flags);
152 int zpm_uninstall(struct zpm *local);
153
154 /* slurp up the actual blobs */
155 /* what about versioning them if they change */
156 int zpm_preserve(struct zpm *local);
157
158 /* check file integrity */
159 int zpm_checkinstall(struct zpm *local);
160
161 int zpm_merge(struct zpm *z, struct zpm *src, uint32_t flags);
162
163 ssize_t uncompresslzma(void *buf, size_t bufsize, int outfd);
164 void *compresslzma(void *buf, size_t bufsize, size_t *len);
165
166 #define SQLERROR(x) fprintf(stderr, "%s %d: %s\n", __func__, __LINE__, (x))
167 int zpm_hash(char *path, char *hash, uint32_t flags);
168 int zpm_readopts(struct zpm *pkg, int ac, char **av);
169
170 int zpm_vercmp(const char *a, const char *b);
171
172 /* add vercmp collation to db */
173 int zpm_addvercmp(struct zpm *pkg);
174
175 int zpm_exec(struct zpm *z, const char *sql, int(*callback)(void *, int, char **, char**), void *arg, char **errmsg);
176
177 int zpm_foreach_path(struct zpm *zpm, char *pkgid, char *where,
178 int (*callback)(void *f, int ncols, char **vals, char **cols),
179 void *data, char **errmsg);
180 int zpm_foreach_package(struct zpm *zpm, char *where,
181 int (*callback)(void *cbdata, int ncols, char **vals, char **cols),
182 void *data, char **errmsg);
183
184 int zpm_script_hash(struct zpm *zpm, char *pkgstr, char *phase, char *hash);
185 int zpm_script_set(struct zpm *zpm, char *pkgstr, char *phase, char *hash);
186 int zpm_foreach_script(struct zpm *zpm, char *pkgstr, char *stage, void *cbd,
187                 int (*cb)(void *ud, const char *pkg, const char *stage, const char *hash));
188
189 int zpm_package_hash(struct zpm *zpm, char *pkgid, char *hash);
190 int zpm_package_sethash(struct zpm *zpm, char *pkgid, char *hash);
191
192 sqlite3_stmt *zpm_dbqueryv(struct zpm *zpm, char *query, va_list args);
193 sqlite3_stmt *zpm_dbquery(struct zpm *zpm, char *query, ...);
194 char *zpm_db_string(struct zpm *zpm, char *query, ...);
195 int zpm_db_int(struct zpm *zpm, char *query, ...);
196 void zpm_db_run(struct zpm *zpm, char *query, ...);
197 void zpm_seterror(struct zpm *zpm, char *msgfmt, ...);
198
199 struct zpm *zpm_clearmem(struct zpm *zpm);
200
201 struct zpm_note {
202         int64_t id;
203         time_t ts; /* or timespec */
204         char *note;
205         char *pkgid;
206         char *path;
207         char *file;
208         char *hash;
209         int ack;
210 };
211
212 void zpm_note_ack(struct zpm *zpm, int64_t note);
213 void zpm_note_unack(struct zpm *zpm, int64_t note);
214 void zpm_note_del(struct zpm *zpm, int64_t note);
215 int64_t zpm_note(struct zpm *zpm, struct zpm_note *n, unsigned int flags);
216 void zpm_note_free(struct zpm_note *n);
217 int zpm_notes(struct zpm *zpm, int n, struct zpm_note *note);
218 int64_t zpm_note_next(struct zpm *zpm, struct zpm_note *n);
219 int64_t zpm_note_add(struct zpm *zpm, char *pkgid, char *path, char *filehash,
220                 char *notefmt, ...);
221 int zpm_notes_available(struct zpm *zpm, int flags);
222
223 #endif