X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=zpm.h;h=c7144649940bfd6bbf8008732a480d4f646a85ef;hb=9d52e76ca7992bf2f38868dbcf9c84a7cc1484c9;hp=1617619f227328a4b689f4a4b5b867e9f4f11b4a;hpb=b515d621f8cad499bd83a7df919079b2e47dcb09;p=zpackage diff --git a/zpm.h b/zpm.h index 1617619..c714464 100644 --- a/zpm.h +++ b/zpm.h @@ -5,6 +5,7 @@ #include #include #include +#include #include @@ -175,11 +176,40 @@ 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