- fix bug in repo_addid_dep
[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 #include "attr_store.h"
19
20 typedef struct _Repokey {
21   Id name;
22   Id type;
23   Id size;
24   Id storage;
25 } Repokey;
26
27 #define KEY_STORAGE_DROPPED             0
28 #define KEY_STORAGE_SOLVABLE            1
29 #define KEY_STORAGE_INCORE              2
30 #define KEY_STORAGE_VERTICAL_OFFSET     3
31
32 struct _Repo;
33
34 typedef struct _Repodata {
35   struct _Repo *repo;           /* back pointer to repo */
36
37   int start;                    /* start of solvables this repodata is valid for */
38   int end;                      /* last solvable + 1 of this repodata */
39
40   FILE *fp;                     /* file pointer of solv file */
41   int error;                    /* corrupt solv file */
42
43   /* Keys provided by this attribute store, sorted by name value.
44      The same keys may be provided by multiple attribute stores, but
45      then only for different solvables.  I.e. the relation
46        (solvable,name) -> store
47      has to be injective.  */
48
49   Repokey *keys;                /* keys, first entry is always zero */
50   unsigned int nkeys;           /* length of keys array */
51
52   Id *schemata;                 /* schema -> offset into schemadata */
53   unsigned int nschemata;       /* number of schemata */
54
55   Id *schemadata;               /* schema storage */
56
57   unsigned char *entryschemau8; /* schema for entry */
58   Id *entryschema;              /* schema for entry */
59
60   unsigned char *incoredata;    /* in-core data (flat_attrs) */
61   unsigned int incoredatalen;   /* data len (attr_next_free) */
62   unsigned int incoredatafree;  /* free data len */
63
64   Id *incoreoffset;             /* offset for all entries (ent2attr) */
65
66   Id verticaloffset;            /* file offset of verticals */
67   char *strbuf;                 /* just for testing */
68   int strbuflen;                /* just for testing */
69
70
71   /* The attribute store itself.  */
72   Attrstore *s;
73   /* A filename where to find this attribute store, or where to store
74      it.  May be "", in which case we can't load it on demand or store
75      into it.  It may also be NULL for at most one of the repodata per
76      repo, in which case these are the embedded attributes.  */
77
78   const char *location;
79   /* The SHA1 checksum of the file.  */
80   unsigned char checksum[20];
81 } Repodata;
82
83
84 typedef struct _Repo {
85   const char *name;
86   struct _Pool *pool;           /* pool containing repo data */
87
88   int start;                    /* start of this repo solvables within pool->solvables */
89   int end;                      /* last solvable + 1 of this repo */
90   int nsolvables;               /* number of solvables repo is contributing to pool */
91
92   int priority;                 /* priority of this repo */
93
94   Id *idarraydata;              /* array of metadata Ids, solvable dependencies are offsets into this array */
95   int idarraysize;
96   Offset lastoff;
97
98   Id *rpmdbid;
99
100   /* The attribute stores we know about.  */
101   Repodata *repodata;
102   /* Number of attribute stores..  */
103   unsigned nrepodata;
104 } Repo;
105
106 extern Repo *repo_create(Pool *pool, const char *name);
107 extern void repo_free(Repo *repo, int reuseids);
108 extern void repo_freeallrepos(Pool *pool, int reuseids);
109
110 extern Offset repo_addid(Repo *repo, Offset olddeps, Id id);
111 extern Offset repo_addid_dep(Repo *repo, Offset olddeps, Id id, Id marker);
112 extern Offset repo_reserve_ids(Repo *repo, Offset olddeps, int num);
113 extern Offset repo_fix_legacy(Repo *repo, Offset provides, Offset supplements);
114
115 extern void repo_add_attrstore (Repo *repo, Attrstore *s, const char *location);
116
117 static inline const char *repo_name(const Repo *repo)
118 {
119   return repo->name;
120 }
121
122 static inline Id repo_add_solvable(Repo *repo)
123 {
124   extern Id pool_add_solvable(Pool *pool);
125   Id p = pool_add_solvable(repo->pool);
126   if (!repo->start || repo->start == repo->end)
127     {
128       repo->start = p;
129       repo->end = p + 1;
130     }
131   else
132     {
133       if (p < repo->start)
134         repo->start = p;
135       if (p + 1 > repo->end)
136         repo->end = p + 1;
137     }
138   repo->nsolvables++;
139   repo->pool->solvables[p].repo = repo;
140   return p;
141 }
142
143 static inline Id repo_add_solvable_block(Repo *repo, int count)
144 {
145   extern Id pool_add_solvable_block(Pool *pool, int count);
146   Id p;
147   Solvable *s;
148   if (!count)
149     return 0;
150   p = pool_add_solvable_block(repo->pool, count);
151   if (!repo->start || repo->start == repo->end)
152     {
153       repo->start = p;
154       repo->end = p + count;
155     }
156   else
157     {
158       if (p < repo->start)
159         repo->start = p;
160       if (p + count > repo->end)
161         repo->end = p + count;
162     }
163   repo->nsolvables += count;
164   for (s = repo->pool->solvables + p; count--; s++)
165     s->repo = repo;
166   return p;
167 }
168
169 static inline void repo_free_solvable_block(Repo *repo, Id start, int count, int reuseids)
170 {
171   extern void pool_free_solvable_block(Pool *pool, Id start, int count, int reuseids);
172   Solvable *s;
173   int i;
174   if (start + count == repo->end)
175     repo->end -= count;
176   repo->nsolvables -= count;
177   for (s = repo->pool->solvables + start, i = count; i--; s++)
178     s->repo = 0;
179   pool_free_solvable_block(repo->pool, start, count, reuseids);
180 }
181
182 #define FOR_REPO_SOLVABLES(r, p, s)                                             \
183   for (p = (r)->start, s = (r)->pool->solvables + p; p < (r)->end; p++, s++)    \
184     if (s->repo == (r))
185
186 #endif /* SATSOLVER_REPO_H */