2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
11 #include <sys/types.h>
22 #include "repo_repomdxml.h"
27 <!-- these tags are available in create repo > 0.9.6 -->
28 <revision>timestamp_or_arbitrary_user_supplied_string</revision>
30 <content>opensuse</content>
31 <content>i386</content>
32 <content>other string</content>
33 <distro cpeid="cpe://o:opensuse_project:opensuse:11">openSUSE 11.0</distro>
38 <location href="repodata/primary.xml.gz"/>
39 <checksum type="sha">e9162516fa25fec8d60caaf4682d2e49967786cc</checksum>
40 <timestamp>1215708444</timestamp>
41 <open-checksum type="sha">c796c48184cd5abc260e4ba929bdf01be14778a7</open-checksum>
43 <data type="filelists">
44 <location href="repodata/filelists.xml.gz"/>
45 <checksum type="sha">1c638295c49e9707c22810004ebb0799791fcf45</checksum>
46 <timestamp>1215708445</timestamp>
47 <open-checksum type="sha">54a40d5db3df0813b8acbe58cea616987eb9dc16</open-checksum>
50 <location href="repodata/other.xml.gz"/>
51 <checksum type="sha">a81ef39eaa70e56048f8351055119d8c82af2491</checksum>
52 <timestamp>1215708447</timestamp>
53 <open-checksum type="sha">4d1ee867c8864025575a2fb8fde3b85371d51978</open-checksum>
55 <data type="deltainfo">
56 <location href="repodata/deltainfo.xml.gz"/>
57 <checksum type="sha">5880cfa5187026a24a552d3c0650904a44908c28</checksum>
58 <timestamp>1215708447</timestamp>
59 <open-checksum type="sha">7c964a2c3b17df5bfdd962c3be952c9ca6978d8b</open-checksum>
61 <data type="updateinfo">
62 <location href="repodata/updateinfo.xml.gz"/>
63 <checksum type="sha">4097f7e25c7bb0770ae31b2471a9c8c077ee904b</checksum>
64 <timestamp>1215708447</timestamp>
65 <open-checksum type="sha">24f8252f3dd041e37e7c3feb2d57e02b4422d316</open-checksum>
67 <data type="diskusage">
68 <location href="repodata/diskusage.xml.gz"/>
69 <checksum type="sha">4097f7e25c7bb0770ae31b2471a9c8c077ee904b</checksum>
70 <timestamp>1215708447</timestamp>
71 <open-checksum type="sha">24f8252f3dd041e37e7c3feb2d57e02b4422d316</open-checksum>
75 support also extension suseinfo format
77 <expire>timestamp</expire>
96 /* normal repomd.xml */
120 /* !! must be sorted by first column !! */
121 static struct stateswitch stateswitches[] = {
123 { STATE_START, "repomd", STATE_REPOMD, 0 },
124 { STATE_START, "suseinfo", STATE_SUSEINFO, 0 },
125 /* we support the tags element in suseinfo in case
126 createrepo version does not support it yet */
127 { STATE_SUSEINFO, "tags", STATE_TAGS, 0 },
128 { STATE_SUSEINFO, "expire", STATE_EXPIRE, 1 },
129 { STATE_SUSEINFO, "keywords", STATE_KEYWORDS, 0 },
130 /* keywords is the suse extension equivalent of
131 tags/content when this one was not yet available.
132 therefore we parse both */
133 { STATE_KEYWORDS, "k", STATE_KEYWORD, 1 },
135 { STATE_REPOMD, "revision", STATE_REVISION, 1 },
136 { STATE_REPOMD, "tags", STATE_TAGS, 0 },
137 { STATE_REPOMD, "data", STATE_DATA, 0 },
139 { STATE_TAGS, "repo", STATE_REPO, 1 },
140 { STATE_TAGS, "content", STATE_CONTENT, 1 },
141 { STATE_TAGS, "distro", STATE_DISTRO, 1 },
142 /* this tag is only valid in suseinfo.xml for now */
143 { STATE_TAGS, "updates", STATE_UPDATES, 1 },
145 { STATE_DATA, "location", STATE_LOCATION, 0 },
146 { STATE_DATA, "checksum", STATE_CHECKSUM, 1 },
147 { STATE_DATA, "timestamp", STATE_TIMESTAMP, 1 },
148 { STATE_DATA, "open-checksum", STATE_OPENCHECKSUM, 1 },
149 { STATE_DATA, "size", STATE_SIZE, 1 },
168 struct stateswitch *swtab[NUMSTATES];
169 enum state sbtab[NUMSTATES];
171 /* handles for collection
177 /* repo data handle */
187 static inline const char *
188 find_attr(const char *txt, const char **atts)
190 for (; *atts; atts += 2)
192 if (!strcmp(*atts, txt))
200 startElement(void *userData, const char *name, const char **atts)
202 struct parsedata *pd = userData;
203 /*Pool *pool = pd->pool;*/
204 struct stateswitch *sw;
207 fprintf(stderr, "start: [%d]%s\n", pd->state, name);
209 if (pd->depth != pd->statedepth)
216 if (!pd->swtab[pd->state])
218 for (sw = pd->swtab[pd->state]; sw->from == pd->state; sw++) /* find name in statetable */
219 if (!strcmp(sw->ename, name))
222 if (sw->from != pd->state)
225 fprintf(stderr, "into unknown: %s (from: %d)\n", name, pd->state);
230 pd->docontent = sw->docontent;
231 pd->statedepth = pd->depth;
241 /* this should be OBSOLETE soon */
242 updstr = find_attr("updates", atts);
245 char *value = solv_strdup(updstr);
246 char *fvalue = value; /* save the first */
249 char *p = strchr(value, ',');
253 repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_UPDATES, value);
262 /* this is extra metadata about the product this repository
264 const char *cpeid = find_attr("cpeid", atts);
265 pd->rphandle = repodata_new_handle(pd->data);
266 /* set the cpeid for the product
267 the label is set in the content of the tag */
269 repodata_set_poolstr(pd->data, pd->rphandle, REPOSITORY_PRODUCT_CPEID, cpeid);
274 /* this is extra metadata about the product this repository
276 const char *cpeid = find_attr("cpeid", atts);
277 pd->ruhandle = repodata_new_handle(pd->data);
278 /* set the cpeid for the product
279 the label is set in the content of the tag */
281 repodata_set_poolstr(pd->data, pd->ruhandle, REPOSITORY_PRODUCT_CPEID, cpeid);
286 const char *type= find_attr("type", atts);
287 pd->rdhandle = repodata_new_handle(pd->data);
289 repodata_set_poolstr(pd->data, pd->rdhandle, REPOSITORY_REPOMD_TYPE, type);
294 const char *href = find_attr("href", atts);
296 repodata_set_str(pd->data, pd->rdhandle, REPOSITORY_REPOMD_LOCATION, href);
300 case STATE_OPENCHECKSUM:
302 const char *type= find_attr("type", atts);
303 pd->chksumtype = type && *type ? solv_chksum_str2type(type) : 0;
305 pd->ret = pool_error(pd->pool, -1, "line %d: unknown checksum type: %s", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), type ? type : "NULL");
315 endElement(void *userData, const char *name)
317 struct parsedata *pd = userData;
318 /* Pool *pool = pd->pool; */
321 fprintf(stderr, "endElement: %s\n", name);
323 if (pd->depth != pd->statedepth)
327 fprintf(stderr, "back from unknown %d %d %d\n", pd->state, pd->depth, pd->statedepth);
337 if (pd->timestamp > 0)
338 repodata_set_num(pd->data, SOLVID_META, REPOSITORY_TIMESTAMP, pd->timestamp);
342 repodata_add_flexarray(pd->data, SOLVID_META, REPOSITORY_REPOMD, pd->rdhandle);
347 case STATE_OPENCHECKSUM:
350 if (strlen(pd->content) != 2 * solv_chksum_len(pd->chksumtype))
351 pd->ret = pool_error(pd->pool, -1, "line %d: invalid checksum length for %s", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), solv_chksum_type2str(pd->chksumtype));
353 repodata_set_checksum(pd->data, pd->rdhandle, pd->state == STATE_CHECKSUM ? REPOSITORY_REPOMD_CHECKSUM : REPOSITORY_REPOMD_OPENCHECKSUM, pd->chksumtype, pd->content);
356 case STATE_TIMESTAMP:
359 * we want to look for the newest timestamp
360 * of all resources to save it as the time
361 * the metadata was generated
363 int timestamp = atoi(pd->content);
365 repodata_set_num(pd->data, pd->rdhandle, REPOSITORY_REPOMD_TIMESTAMP, timestamp);
366 if (timestamp > pd->timestamp)
367 pd->timestamp = timestamp;
372 int expire = atoi(pd->content);
374 repodata_set_num(pd->data, SOLVID_META, REPOSITORY_EXPIRE, expire);
377 /* repomd.xml content and suseinfo.xml keywords are equivalent */
381 repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_KEYWORDS, pd->content);
385 repodata_set_str(pd->data, SOLVID_META, REPOSITORY_REVISION, pd->content);
388 /* distro tag is used in repomd.xml to say the product this repo is
391 repodata_set_str(pd->data, pd->rphandle, REPOSITORY_PRODUCT_LABEL, pd->content);
392 repodata_add_flexarray(pd->data, SOLVID_META, REPOSITORY_DISTROS, pd->rphandle);
395 /* updates tag is used in suseinfo.xml to say the repo updates a product
396 however it s not yet a tag standarized for repomd.xml */
398 repodata_set_str(pd->data, pd->ruhandle, REPOSITORY_PRODUCT_LABEL, pd->content);
399 repodata_add_flexarray(pd->data, SOLVID_META, REPOSITORY_UPDATES, pd->ruhandle);
403 repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_REPOID, pd->content);
407 repodata_set_num(pd->data, pd->rdhandle, REPOSITORY_REPOMD_SIZE, strtoull(pd->content, 0, 10));
413 pd->state = pd->sbtab[pd->state];
421 characterData(void *userData, const XML_Char *s, int len)
423 struct parsedata *pd = userData;
428 l = pd->lcontent + len + 1;
429 if (l > pd->acontent)
431 pd->content = realloc(pd->content, l + 256);
432 pd->acontent = l + 256;
434 c = pd->content + pd->lcontent;
441 #define BUFF_SIZE 8192
444 repo_add_repomdxml(Repo *repo, FILE *fp, int flags)
446 Pool *pool = repo->pool;
451 struct stateswitch *sw;
454 data = repo_add_repodata(repo, flags);
456 memset(&pd, 0, sizeof(pd));
458 for (i = 0, sw = stateswitches; sw->from != NUMSTATES; i++, sw++)
460 if (!pd.swtab[sw->from])
461 pd.swtab[sw->from] = sw;
462 pd.sbtab[sw->to] = sw->from;
468 pd.content = malloc(256);
471 parser = XML_ParserCreate(NULL);
472 XML_SetUserData(parser, &pd);
474 XML_SetElementHandler(parser, startElement, endElement);
475 XML_SetCharacterDataHandler(parser, characterData);
478 l = fread(buf, 1, sizeof(buf), fp);
479 if (XML_Parse(parser, buf, l, l == 0) == XML_STATUS_ERROR)
481 pd.ret = pool_error(pool, -1, "repo_repomdxml: %s at line %u:%u", XML_ErrorString(XML_GetErrorCode(parser)), (unsigned int)XML_GetCurrentLineNumber(parser), (unsigned int)XML_GetCurrentColumnNumber(parser));
487 XML_ParserFree(parser);
489 if (!(flags & REPO_NO_INTERNALIZE))
490 repodata_internalize(data);