X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=zpm.h;h=c7144649940bfd6bbf8008732a480d4f646a85ef;hb=22da8d52b3a8a7556b81c3e921d5c4555b76b799;hp=f3e37346ad214ec0fe39881bc1ef4e841efd31d7;hpb=5774fe14b7203c06873e29d13c9520c9a32321cb;p=zpackage diff --git a/zpm.h b/zpm.h index f3e3734..c714464 100644 --- a/zpm.h +++ b/zpm.h @@ -5,6 +5,7 @@ #include #include #include +#include #include @@ -171,15 +172,44 @@ int zpm_addvercmp(struct zpm *pkg); int zpm_exec(struct zpm *z, const char *sql, int(*callback)(void *, int, char **, char**), void *arg, char **errmsg); -int zpm_foreach_path(struct zpm *zpm, char *pkgid, +int zpm_foreach_path(struct zpm *zpm, char *pkgid, char *where, int (*callback)(void *f, int ncols, char **vals, char **cols), void *data, char **errmsg); + int zpm_script_hash(struct zpm *zpm, char *pkgstr, char *phase, char *hash); int zpm_package_hash(struct zpm *zpm, char *pkgid, char *hash); int zpm_package_sethash(struct zpm *zpm, char *pkgid, char *hash); +sqlite3_stmt *zpm_dbqueryv(struct zpm *zpm, char *query, va_list args); sqlite3_stmt *zpm_dbquery(struct zpm *zpm, char *query, ...); +char *zpm_db_string(struct zpm *zpm, char *query, ...); +int zpm_db_int(struct zpm *zpm, char *query, ...); +void zpm_db_run(struct zpm *zpm, char *query, ...); +void zpm_seterror(struct zpm *zpm, char *msgfmt, ...); + struct zpm *zpm_clearmem(struct zpm *zpm); +struct zpm_note { + int64_t id; + time_t ts; /* or timespec */ + char *note; + char *pkgid; + char *path; + char *file; + char *hash; + int ack; +}; + +void zpm_note_ack(struct zpm *zpm, int64_t note); +void zpm_note_unack(struct zpm *zpm, int64_t note); +void zpm_note_del(struct zpm *zpm, int64_t note); +int64_t zpm_note(struct zpm *zpm, struct zpm_note *n, unsigned int flags); +void zpm_note_free(struct zpm_note *n); +int zpm_notes(struct zpm *zpm, int n, struct zpm_note *note); +int64_t zpm_note_next(struct zpm *zpm, struct zpm_note *n); +int64_t zpm_note_add(struct zpm *zpm, char *pkgid, char *path, char *filehash, + char *notefmt, ...); +int zpm_notes_available(struct zpm *zpm, int flags); + #endif