expose repo_lookup_str and add lookup_num (nonworking)
[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 SATSOLVER_REPO_H
14 #define SATSOLVER_REPO_H
15
16 #include "pooltypes.h"
17 #include "pool.h"
18 #if 0
19 #include "attr_store.h"
20 #endif
21 #include "repodata.h"
22
23 typedef struct _Repokey {
24   Id name;
25   Id type;
26   Id size;
27   Id storage;
28 } Repokey;
29
30 #define KEY_STORAGE_DROPPED             0
31 #define KEY_STORAGE_SOLVABLE            1
32 #define KEY_STORAGE_INCORE              2
33 #define KEY_STORAGE_VERTICAL_OFFSET     3
34
35
36 typedef struct _Repo {
37   const char *name;
38   struct _Pool *pool;           /* pool containing repo data */
39
40   int start;                    /* start of this repo solvables within pool->solvables */
41   int end;                      /* last solvable + 1 of this repo */
42   int nsolvables;               /* number of solvables repo is contributing to pool */
43
44   int priority;                 /* priority of this repo */
45
46   Id *idarraydata;              /* array of metadata Ids, solvable dependencies are offsets into this array */
47   int idarraysize;
48   Offset lastoff;
49
50   Id *rpmdbid;                  /* hmm, go to repodata? */
51
52   Repodata *repodata;           /* our stores for non-solvable related data */
53   unsigned nrepodata;           /* number of our stores..  */
54 } Repo;
55
56 extern Repo *repo_create(Pool *pool, const char *name);
57 extern void repo_free(Repo *repo, int reuseids);
58 extern void repo_freeallrepos(Pool *pool, int reuseids);
59
60 extern Offset repo_addid(Repo *repo, Offset olddeps, Id id);
61 extern Offset repo_addid_dep(Repo *repo, Offset olddeps, Id id, Id marker);
62 extern Offset repo_reserve_ids(Repo *repo, Offset olddeps, int num);
63 extern Offset repo_fix_legacy(Repo *repo, Offset provides, Offset supplements);
64
65 #if 0
66 extern void repo_add_attrstore (Repo *repo, Attrstore *s, const char *location);
67 #endif
68
69 static inline const char *repo_name(const Repo *repo)
70 {
71   return repo->name;
72 }
73
74 static inline Id repo_add_solvable(Repo *repo)
75 {
76   extern Id pool_add_solvable(Pool *pool);
77   Id p = pool_add_solvable(repo->pool);
78   if (!repo->start || repo->start == repo->end)
79     {
80       repo->start = p;
81       repo->end = p + 1;
82     }
83   else
84     {
85       if (p < repo->start)
86         repo->start = p;
87       if (p + 1 > repo->end)
88         repo->end = p + 1;
89     }
90   repo->nsolvables++;
91   repo->pool->solvables[p].repo = repo;
92   return p;
93 }
94
95 static inline Id repo_add_solvable_block(Repo *repo, int count)
96 {
97   extern Id pool_add_solvable_block(Pool *pool, int count);
98   Id p;
99   Solvable *s;
100   if (!count)
101     return 0;
102   p = pool_add_solvable_block(repo->pool, count);
103   if (!repo->start || repo->start == repo->end)
104     {
105       repo->start = p;
106       repo->end = p + count;
107     }
108   else
109     {
110       if (p < repo->start)
111         repo->start = p;
112       if (p + count > repo->end)
113         repo->end = p + count;
114     }
115   repo->nsolvables += count;
116   for (s = repo->pool->solvables + p; count--; s++)
117     s->repo = repo;
118   return p;
119 }
120
121 static inline void repo_free_solvable_block(Repo *repo, Id start, int count, int reuseids)
122 {
123   extern void pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids);
124   Solvable *s;
125   int i;
126   if (start + count == repo->end)
127     repo->end -= count;
128   repo->nsolvables -= count;
129   for (s = repo->pool->solvables + start, i = count; i--; s++)
130     s->repo = 0;
131   pool_free_solvable_block(repo->pool, start, count, reuseids);
132 }
133
134 #define FOR_REPO_SOLVABLES(r, p, s)                                             \
135   for (p = (r)->start, s = (r)->pool->solvables + p; p < (r)->end; p++, s++)    \
136     if (s->repo == (r))
137
138
139 /* search callback values */
140
141 #define SEARCH_NEXT_KEY         1
142 #define SEARCH_NEXT_SOLVABLE    2
143 #define SEACH_STOP              3
144
145 typedef struct _KeyValue {
146   Id id;
147   const char *str;
148   int num;
149   int num2;
150   int eof;
151 } KeyValue;
152
153 /* search flags */
154 #define SEARCH_STRINGMASK       15
155 #define SEARCH_STRING           1
156 #define SEARCH_SUBSTRING        2
157 #define SEARCH_GLOB             3
158 #define SEARCH_REGEX            4
159
160 #define SEARCH_NOCASE                   (1<<8)
161 #define SEARCH_NO_STORAGE_SOLVABLE      (1<<9)
162
163 Repodata *repo_add_repodata(Repo *repo);
164 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);
165
166 /* returns the string value of the attribute, or NULL if not found */
167 const char * repo_lookup_str(Solvable *s, Id key);
168 /* returns the string value of the attribute, or 0 if not found */
169 int repo_lookup_num(Solvable *s, Id key);
170
171 void repo_set_id(Repo *repo, Id p, Id keyname, Id id);
172 void repo_set_num(Repo *repo, Id p, Id keyname, Id num);
173 void repo_set_str(Repo *repo, Id p, Id keyname, const char *str);
174 void repo_set_poolstr(Repo *repo, Id p, Id keyname, const char *str);
175 void repo_internalize(Repo *repo);
176
177 #endif /* SATSOLVER_REPO_H */