Imported Upstream version 0.7.12
[platform/upstream/libsolv.git] / src / repo.h
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * repo.h
10  *
11  */
12
13 #ifndef LIBSOLV_REPO_H
14 #define LIBSOLV_REPO_H
15
16 #include "pooltypes.h"
17 #include "pool.h"
18 #include "poolarch.h"
19 #include "repodata.h"
20 #include "dataiterator.h"
21 #include "hash.h"
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 typedef struct s_Repo {
28   const char *name;             /* name pointer */
29   Id repoid;                    /* our id */
30   void *appdata;                /* application private pointer */
31
32   Pool *pool;                   /* pool containing this repo */
33
34   int start;                    /* start of this repo solvables within pool->solvables */
35   int end;                      /* last solvable + 1 of this repo */
36   int nsolvables;               /* number of solvables repo is contributing to pool */
37
38   int disabled;                 /* ignore the solvables? */
39   int priority;                 /* priority of this repo */
40   int subpriority;              /* sub-priority of this repo, used just for sorting, not pruning */
41
42   Id *idarraydata;              /* array of metadata Ids, solvable dependencies are offsets into this array */
43   int idarraysize;
44
45   int nrepodata;                /* number of our stores..  */
46
47   Id *rpmdbid;                  /* solvable side data: rpm database id */
48
49 #ifdef LIBSOLV_INTERNAL
50   Repodata *repodata;           /* our stores for non-solvable related data */
51   Offset lastoff;               /* start of last array in idarraydata */
52
53   Hashtable lastidhash;         /* hash to speed up repo_addid_dep */
54   Hashval lastidhash_mask;
55   int lastidhash_idarraysize;
56   int lastmarker;
57   Offset lastmarkerpos;
58 #endif /* LIBSOLV_INTERNAL */
59 } Repo;
60
61 extern Repo *repo_create(Pool *pool, const char *name);
62 extern void repo_free(Repo *repo, int reuseids);
63 extern void repo_empty(Repo *repo, int reuseids);
64 extern void repo_freedata(Repo *repo);
65 extern Id repo_add_solvable(Repo *repo);
66 extern Id repo_add_solvable_block(Repo *repo, int count);
67 extern void repo_free_solvable(Repo *repo, Id p, int reuseids);
68 extern void repo_free_solvable_block(Repo *repo, Id start, int count, int reuseids);
69 extern void *repo_sidedata_create(Repo *repo, size_t size);
70 extern void *repo_sidedata_extend(Repo *repo, void *b, size_t size, Id p, int count);
71 extern Id repo_add_solvable_block_before(Repo *repo, int count, Repo *beforerepo);
72
73 extern Offset repo_addid(Repo *repo, Offset olddeps, Id id);
74 extern Offset repo_addid_dep(Repo *repo, Offset olddeps, Id id, Id marker);
75 extern Offset repo_reserve_ids(Repo *repo, Offset olddeps, int num);
76
77 static inline const char *repo_name(const Repo *repo)
78 {
79   return repo->name;
80 }
81
82 /* those two functions are here because they need the Repo definition */
83
84 static inline Repo *pool_id2repo(Pool *pool, Id repoid)
85 {
86   return repoid < pool->nrepos ? pool->repos[repoid] : 0;
87 }
88
89 static inline int pool_disabled_solvable(const Pool *pool, Solvable *s)
90 {
91   if (s->repo && s->repo->disabled)
92     return 1;
93   if (pool->considered)
94     {
95       Id id = s - pool->solvables;
96       if (!MAPTST(pool->considered, id))
97         return 1;
98     }
99   return 0;
100 }
101
102 static inline int pool_badarch_solvable(const Pool *pool, Solvable *s)
103 {
104   if (pool->id2arch && (!s->arch || pool_arch2score(pool, s->arch) == 0))
105     return 1;
106   return 0;
107 }
108
109 static inline int pool_installable(const Pool *pool, Solvable *s)
110 {
111   if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
112     return 0;
113   if (s->repo && s->repo->disabled)
114     return 0;
115   if (pool->id2arch && (!s->arch || pool_arch2score(pool, s->arch) == 0))
116     return 0;
117   if (pool->considered)
118     {
119       Id id = s - pool->solvables;
120       if (!MAPTST(pool->considered, id))
121         return 0;
122     }
123   return 1;
124 }
125
126 #ifdef LIBSOLV_INTERNAL
127 static inline int pool_installable_whatprovides(const Pool *pool, Solvable *s)
128 {
129   /* we always need the installed solvable in the whatprovides data,
130      otherwise obsoletes/conflicts on them won't work */
131   if (s->repo != pool->installed)
132     {
133       if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC || pool_badarch_solvable(pool, s))
134         return 0;
135       if (pool->considered && !pool->whatprovideswithdisabled)
136         {
137           Id id = s - pool->solvables;
138           if (!MAPTST(pool->considered, id))
139             return 0;
140         }
141     }
142   return 1;
143 }
144 #endif
145
146 /* not in solvable.h because we need the repo definition */
147 static inline Solvable *solvable_free(Solvable *s, int reuseids)
148 {
149   if (s && s->repo)
150     repo_free_solvable(s->repo, s - s->repo->pool->solvables, reuseids);
151   return 0;
152 }
153
154 /* search callback values */
155 #define SEARCH_NEXT_KEY         1
156 #define SEARCH_NEXT_SOLVABLE    2
157 #define SEARCH_STOP             3
158 #define SEARCH_ENTERSUB         -1
159
160 /* standard flags used in the repo_add functions */
161 #define REPO_REUSE_REPODATA             (1 << 0)
162 #define REPO_NO_INTERNALIZE             (1 << 1)
163 #define REPO_LOCALPOOL                  (1 << 2)
164 #define REPO_USE_LOADING                (1 << 3)
165 #define REPO_EXTEND_SOLVABLES           (1 << 4)
166 #define REPO_USE_ROOTDIR                (1 << 5)
167 #define REPO_NO_LOCATION                (1 << 6)
168
169 Repodata *repo_add_repodata(Repo *repo, int flags);
170 Repodata *repo_id2repodata(Repo *repo, Id id);
171 Repodata *repo_last_repodata(Repo *repo);
172
173 void repo_search(Repo *repo, Id p, Id key, const char *match, int flags, int (*callback)(void *cbdata, Solvable *s, Repodata *data, Repokey *key, KeyValue *kv), void *cbdata);
174
175 /* returns the last repodata that contains the key */
176 Repodata *repo_lookup_repodata(Repo *repo, Id entry, Id keyname);
177 Repodata *repo_lookup_repodata_opt(Repo *repo, Id entry, Id keyname);
178 Repodata *repo_lookup_filelist_repodata(Repo *repo, Id entry, Datamatcher *matcher);
179
180 /* returns the string value of the attribute, or NULL if not found */
181 Id repo_lookup_type(Repo *repo, Id entry, Id keyname);
182 const char *repo_lookup_str(Repo *repo, Id entry, Id keyname);
183 /* returns the integer value of the attribute, or notfound if not found */
184 unsigned long long repo_lookup_num(Repo *repo, Id entry, Id keyname, unsigned long long notfound);
185 Id repo_lookup_id(Repo *repo, Id entry, Id keyname);
186 int repo_lookup_idarray(Repo *repo, Id entry, Id keyname, Queue *q);
187 int repo_lookup_deparray(Repo *repo, Id entry, Id keyname, Queue *q, Id marker);
188 int repo_lookup_void(Repo *repo, Id entry, Id keyname);
189 const char *repo_lookup_checksum(Repo *repo, Id entry, Id keyname, Id *typep);
190 const unsigned char *repo_lookup_bin_checksum(Repo *repo, Id entry, Id keyname, Id *typep);
191 const void *repo_lookup_binary(Repo *repo, Id entry, Id keyname, int *lenp);
192 unsigned int repo_lookup_count(Repo *repo, Id entry, Id keyname);       /* internal */
193 Id solv_depmarker(Id keyname, Id marker);
194
195 void repo_set_id(Repo *repo, Id p, Id keyname, Id id);
196 void repo_set_num(Repo *repo, Id p, Id keyname, unsigned long long num);
197 void repo_set_str(Repo *repo, Id p, Id keyname, const char *str);
198 void repo_set_poolstr(Repo *repo, Id p, Id keyname, const char *str);
199 void repo_add_poolstr_array(Repo *repo, Id p, Id keyname, const char *str);
200 void repo_add_idarray(Repo *repo, Id p, Id keyname, Id id);
201 void repo_add_deparray(Repo *repo, Id p, Id keyname, Id dep, Id marker);
202 void repo_set_idarray(Repo *repo, Id p, Id keyname, Queue *q);
203 void repo_set_deparray(Repo *repo, Id p, Id keyname, Queue *q, Id marker);
204 void repo_unset(Repo *repo, Id p, Id keyname);
205
206 void repo_internalize(Repo *repo);
207 void repo_disable_paging(Repo *repo);
208 Id *repo_create_keyskip(Repo *repo, Id entry, Id **oldkeyskip);
209
210
211 /* iterator macros */
212 #define FOR_REPO_SOLVABLES(r, p, s)                                             \
213   for (p = (r)->start, s = (r)->pool->solvables + p; p < (r)->end; p++, s = (r)->pool->solvables + p)   \
214     if (s->repo != (r))                                                         \
215       continue;                                                                 \
216     else
217
218 #ifdef LIBSOLV_INTERNAL
219 #define FOR_REPODATAS(repo, rdid, data) \
220         for (rdid = 1, data = repo->repodata + rdid; rdid < repo->nrepodata; rdid++, data++)
221 #else
222 #define FOR_REPODATAS(repo, rdid, data) \
223         for (rdid = 1; rdid < repo->nrepodata && (data = repo_id2repodata(repo, rdid)); rdid++)
224 #endif
225
226 /* weird suse stuff, do not use */
227 extern Offset repo_fix_supplements(Repo *repo, Offset provides, Offset supplements, Offset freshens);
228 extern Offset repo_fix_conflicts(Repo *repo, Offset conflicts);
229 extern void repo_rewrite_suse_deps(Solvable *s, Offset freshens);
230
231 #ifdef __cplusplus
232 }
233 #endif
234
235 #endif /* LIBSOLV_REPO_H */