added types for database access
authorewt <devnull@localhost>
Wed, 27 Dec 1995 19:19:13 +0000 (19:19 +0000)
committerewt <devnull@localhost>
Wed, 27 Dec 1995 19:19:13 +0000 (19:19 +0000)
CVS patchset: 98
CVS date: 1995/12/27 19:19:13

lib/rpmlib.h

index b5f099d..c5c644a 100644 (file)
@@ -3,6 +3,13 @@
 
 /* This is the *only* module users of rpmlib should need to include */
 
+#include <db.h>
+
+/* it shouldn't need these :-( */
+#include "dbindex.h"
+#include "falloc.h"
+#include "header.h"
+
 /* these tags are for both the database and packages */
 /* none of these can be 0 !!                         */
 
 #define RPMFILE_CONFIG                 1
 #define RPMFILE_DOC                    2
 
+struct rpmdb {
+    faFile pkgs;
+    dbIndex * nameIndex, * fileIndex, * groupIndex;
+};
+
+int rpmdbOpen (char * prefix, struct rpmdb *rpmdb, int mode, int perms);
+    /* 0 on error */
+int rpmdbCreate (struct rpmdb *rpmdb, int mode, int perms);
+    /* this fails if any part of the db already exists */
+void rpmdbClose (struct rpmdb *rpmdb);
+
+unsigned int rpmdbFirstRecNum(struct rpmdb * rpmdb);
+unsigned int rpmdbNextRecNum(struct rpmdb * rpmdb, unsigned int lastOffset);  
+    /* 0 at end */
+
+Header rpmdbGetRecord(struct rpmdb * rpmdb, unsigned int offset);
+int rpmdbFindByFile(struct rpmdb * rpmdb, char * filespec, 
+                   dbIndexSet * matches);
+
 #endif