2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
13 #ifndef SATSOLVER_REPODATA_H
14 #define SATSOLVER_REPODATA_H
18 #include "pooltypes.h"
24 #define SIZEOF_SHA1 20
25 #define SIZEOF_SHA256 32
30 typedef struct _Repokey {
32 Id type; /* REPOKEY_TYPE_xxx */
34 unsigned int storage; /* KEY_STORAGE_xxx */
37 #define KEY_STORAGE_DROPPED 0
38 #define KEY_STORAGE_SOLVABLE 1
39 #define KEY_STORAGE_INCORE 2
40 #define KEY_STORAGE_VERTICAL_OFFSET 3
43 typedef struct _Repodata {
44 struct _Repo *repo; /* back pointer to repo */
46 #define REPODATA_AVAILABLE 0
47 #define REPODATA_STUB 1
48 #define REPODATA_ERROR 2
49 #define REPODATA_STORE 3
50 int state; /* available, stub or error */
52 void (*loadcallback)(struct _Repodata *);
54 int start; /* start of solvables this repodata is valid for */
55 int end; /* last solvable + 1 of this repodata */
57 FILE *fp; /* file pointer of solv file */
58 int error; /* corrupt solv file */
60 Repokey *keys; /* keys, first entry is always zero */
61 unsigned int nkeys; /* length of keys array */
62 unsigned char keybits[32]; /* keyname hash */
64 Id *schemata; /* schema -> offset into schemadata */
65 unsigned int nschemata; /* number of schemata */
66 Id *schemadata; /* schema storage */
67 unsigned int schemadatalen; /* schema storage size */
68 Id *schematahash; /* unification helper */
70 Stringpool spool; /* local string pool */
71 int localpool; /* is local string pool used */
73 Dirpool dirpool; /* local dir pool */
75 unsigned char *incoredata; /* in-core data */
76 unsigned int incoredatalen; /* in-core data used */
77 unsigned int incoredatafree; /* free data len */
79 Id mainschema; /* SOLVID_META schema */
80 Id *mainschemaoffsets; /* SOLVID_META offsets into incoredata */
82 Id *incoreoffset; /* offset for all entries */
84 Id *verticaloffset; /* offset for all verticals, nkeys elements */
85 Id lastverticaloffset; /* end of verticals */
87 Repopagestore store; /* our page store */
89 unsigned char *vincore; /* internal vertical data */
90 unsigned int vincorelen; /* data size */
92 Id **attrs; /* un-internalized attributes */
93 Id **xattrs; /* anonymous handles */
94 int nxattrs; /* number of handles */
96 unsigned char *attrdata; /* their string data space */
97 unsigned int attrdatalen; /* its len */
98 Id *attriddata; /* their id space */
99 unsigned int attriddatalen; /* its len */
101 /* array cache to speed up repodata_add functions*/
108 #define SOLVID_META -1
109 #define SOLVID_POS -2
110 #define SOLVID_SUBSCHEMA -3 /* internal! */
114 * management functions
116 void repodata_initdata(Repodata *data, struct _Repo *repo, int localpool);
117 void repodata_freedata(Repodata *data);
119 Repodata *repodata_create(struct _Repo *repo, int localpool);
120 void repodata_free(Repodata *data);
124 * key management functions
126 Id repodata_key2id(Repodata *data, Repokey *key, int create);
127 static inline Repokey *
128 repodata_id2key(Repodata *data, Id keyid)
130 return data->keys + keyid;
134 * schema management functions
136 Id repodata_schema2id(Repodata *data, Id *schema, int create);
138 repodata_id2schema(Repodata *data, Id schemaid)
140 return data->schemadata + data->schemata[schemaid];
144 * data search and access
147 /* check if there is a chance that the repodata contains data for
148 * the specified keyname */
150 repodata_precheck_keyname(Repodata *data, Id keyname)
152 unsigned char x = data->keybits[(keyname >> 3) & (sizeof(data->keybits) - 1)];
153 return x && (x & (1 << (keyname & 7))) ? 1 : 0;
156 /* search key <keyname> (all keys, if keyname == 0) for Id <solvid>
157 * Call <callback> for each match */
158 void repodata_search(Repodata *data, Id solvid, Id keyname, int flags, int (*callback)(void *cbdata, Solvable *s, Repodata *data, Repokey *key, struct _KeyValue *kv), void *cbdata);
160 /* Make sure the found KeyValue has the "str" field set. Return false
162 int repodata_stringify(Pool *pool, Repodata *data, Repokey *key, struct _KeyValue *kv, int flags);
165 /* lookup functions */
166 Id repodata_lookup_id(Repodata *data, Id solvid, Id keyname);
167 const char *repodata_lookup_str(Repodata *data, Id solvid, Id keyname);
168 int repodata_lookup_num(Repodata *data, Id solvid, Id keyname, unsigned int *value);
169 int repodata_lookup_void(Repodata *data, Id solvid, Id keyname);
170 const unsigned char *repodata_lookup_bin_checksum(Repodata *data, Id solvid, Id keyname, Id *typep);
175 * data assignment functions
179 * extend the data so that it contains the specified solvables
180 * (no longer needed, as the repodata_set functions autoextend)
182 void repodata_extend(Repodata *data, Id p);
183 void repodata_extend_block(Repodata *data, Id p, int num);
184 void repodata_shrink(Repodata *data, int end);
186 /* internalize freshly set data, so that it is found by the search
187 * functions and written out */
188 void repodata_internalize(Repodata *data);
190 /* create an anonymous handle. useful for substructures like
191 * fixarray/flexarray */
192 Id repodata_new_handle(Repodata *data);
194 /* basic types: void, num, string, Id */
195 void repodata_set_void(Repodata *data, Id solvid, Id keyname);
196 void repodata_set_num(Repodata *data, Id solvid, Id keyname, unsigned int num);
197 void repodata_set_id(Repodata *data, Id solvid, Id keyname, Id id);
198 void repodata_set_str(Repodata *data, Id solvid, Id keyname, const char *str);
199 /* create id from string, then set_id */
200 void repodata_set_poolstr(Repodata *data, Id solvid, Id keyname, const char *str);
202 /* set numeric constant */
203 void repodata_set_constant(Repodata *data, Id solvid, Id keyname, unsigned int constant);
205 /* set Id constant */
206 void repodata_set_constantid(Repodata *data, Id solvid, Id keyname, Id id);
209 void repodata_set_bin_checksum(Repodata *data, Id solvid, Id keyname, Id type,
210 const unsigned char *buf);
211 void repodata_set_checksum(Repodata *data, Id solvid, Id keyname, Id type,
214 /* directory (for package file list) */
215 void repodata_add_dirnumnum(Repodata *data, Id solvid, Id keyname, Id dir, Id num, Id num2);
216 void repodata_add_dirstr(Repodata *data, Id solvid, Id keyname, Id dir, const char *str);
220 void repodata_add_idarray(Repodata *data, Id solvid, Id keyname, Id id);
221 void repodata_add_poolstr_array(Repodata *data, Id solvid, Id keyname, const char *str);
222 void repodata_add_fixarray(Repodata *data, Id solvid, Id keyname, Id ghandle);
223 void repodata_add_flexarray(Repodata *data, Id solvid, Id keyname, Id ghandle);
226 merge attributes from one solvable to another
227 works only if the data is not yet internalized
229 void repodata_merge_attrs(Repodata *data, Id dest, Id src);
231 void repodata_join(Repodata *data, Id joinkey);
234 * load all paged data, used to speed up copying in repo_rpmdb
236 void repodata_disable_paging(Repodata *data);
238 /* helper functions */
239 Id repodata_globalize_id(Repodata *data, Id id, int create);
240 Id repodata_str2dir(Repodata *data, const char *dir, int create);
241 const char *repodata_dir2str(Repodata *data, Id did, const char *suf);
242 const char *repodata_chk2str(Repodata *data, Id type, const unsigned char *buf);
243 void repodata_set_location(Repodata *data, Id solvid, int medianr, const char *dir, const char *file);
245 #endif /* SATSOLVER_REPODATA_H */