summaryrefslogtreecommitdiff
path: root/lib/oldrpmdb.h
blob: ea08209afef2b256c57319b9dd01fbf6b99ccca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#ifndef _H_OLDRPMDB
#define _H_OLDRPMDB

#include <gdbm.h>

#include <oldheader.h>

typedef enum
  {
    RPMDB_NONE, RPMDB_GDBM_ERROR, RPMDB_NO_MEMORY
  }
rpm_error;

struct oldrpmdb
  {
    GDBM_FILE packages;
    GDBM_FILE nameIndex;
    GDBM_FILE pathIndex;
    GDBM_FILE groupIndex;
    GDBM_FILE iconIndex;
    GDBM_FILE postIndex;
    rpm_error rpmdbError;
    gdbm_error gdbmError;
  };

enum oldrpmdbFreeType
  {
    RPMDB_NOFREE, RPMDB_FREENAME, RPMDB_FREEALL
  };

struct oldrpmdbLabel
  {
    char *name, *version, *release;
    enum oldrpmdbFreeType freeType;
    struct oldrpmdbLabel *next;
    int fileNumber;		/* -1 means invalid */
  };

struct oldrpmdbPackageInfo
  {
    char *name, *version, *release;
    char *labelstr;
    unsigned int installTime, buildTime;
    unsigned int size;
    char *description;
    char *distribution;
    char *vendor;
    char *buildHost;
    char *preamble;
    char *copyright;
    unsigned int fileCount;
    struct oldrpmFileInfo *files;
  };

#define RPMDB_READER 1

#ifdef __cplusplus
extern "C" {
#endif

int oldrpmdbOpen (struct oldrpmdb *oldrpmdb);
void oldrpmdbClose (struct oldrpmdb *oldrpmdb);
struct oldrpmdbLabel *oldrpmdbGetAllLabels (struct oldrpmdb *oldrpmdb);
struct oldrpmdbLabel *oldrpmdbFindPackagesByFile (struct oldrpmdb *oldrpmdb, char *path);
struct oldrpmdbLabel *oldrpmdbFindPackagesByLabel (struct oldrpmdb *oldrpmdb,
						struct oldrpmdbLabel label);

char *oldrpmdbGetPackageGroup (struct oldrpmdb *oldrpmdb,
			       struct oldrpmdbLabel label);
char *oldrpmdbGetPackagePostun (struct oldrpmdb *oldrpmdb,
				struct oldrpmdbLabel label);
char *oldrpmdbGetPackagePreun (struct oldrpmdb *oldrpmdb,
				struct oldrpmdbLabel label);
char *oldrpmdbGetPackageGif (struct oldrpmdb *oldrpmdb, struct oldrpmdbLabel label,
			     int *size);
int oldrpmdbGetPackageInfo (struct oldrpmdb *oldrpmdb, struct oldrpmdbLabel label,
			    struct oldrpmdbPackageInfo *pinfo);
void oldrpmdbFreePackageInfo (struct oldrpmdbPackageInfo package);

struct oldrpmdbLabel oldrpmdbMakeLabel (char *name, char *version, char *release,
			    int fileNumber, enum oldrpmdbFreeType freeType);
void oldrpmdbFreeLabelList (struct oldrpmdbLabel *list);
void oldrpmdbFreeLabel (struct oldrpmdbLabel label);
int oldrpmdbWasError (struct oldrpmdb *oldrpmdb);

int oldrpmdbLabelstrToLabel (char *str, int length, struct oldrpmdbLabel *label);
char *oldrpmdbLabelToLabelstr (struct oldrpmdbLabel label, int withFileNum);
int oldrpmdbLabelCmp (struct oldrpmdbLabel *one, struct oldrpmdbLabel *two);

void oldrpmdbSetPrefix (char *new);

#ifdef __cplusplus
}
#endif

#endif	/* _H_OLDRPMDB */