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 */
119 /* !! must be sorted by first column !! */
120 static struct stateswitch stateswitches[] = {
122 { STATE_START, "repomd", STATE_REPOMD, 0 },
123 { STATE_START, "suseinfo", STATE_SUSEINFO, 0 },
124 /* we support the tags element in suseinfo in case
125 createrepo version does not support it yet */
126 { STATE_SUSEINFO, "tags", STATE_TAGS, 0 },
127 { STATE_SUSEINFO, "expire", STATE_EXPIRE, 1 },
128 { STATE_SUSEINFO, "keywords", STATE_KEYWORDS, 0 },
129 /* keywords is the suse extension equivalent of
130 tags/content when this one was not yet available.
131 therefore we parse both */
132 { STATE_KEYWORDS, "k", STATE_KEYWORD, 1 },
134 { STATE_REPOMD, "revision", STATE_REVISION, 1 },
135 { STATE_REPOMD, "tags", STATE_TAGS, 0 },
136 { STATE_REPOMD, "data", STATE_DATA, 0 },
138 { STATE_TAGS, "repo", STATE_REPO, 1 },
139 { STATE_TAGS, "content", STATE_CONTENT, 1 },
140 { STATE_TAGS, "distro", STATE_DISTRO, 1 },
141 /* this tag is only valid in suseinfo.xml for now */
142 { STATE_TAGS, "updates", STATE_UPDATES, 1 },
144 { STATE_DATA, "location", STATE_LOCATION, 0 },
145 { STATE_DATA, "checksum", STATE_CHECKSUM, 1 },
146 { STATE_DATA, "timestamp", STATE_TIMESTAMP, 1 },
147 { STATE_DATA, "open-checksum", STATE_OPENCHECKSUM, 1 },
165 struct stateswitch *swtab[NUMSTATES];
166 enum state sbtab[NUMSTATES];
168 /* handles for collection
174 /* repo data handle */
184 static inline const char *
185 find_attr(const char *txt, const char **atts)
187 for (; *atts; atts += 2)
189 if (!strcmp(*atts, txt))
197 startElement(void *userData, const char *name, const char **atts)
199 struct parsedata *pd = userData;
200 /*Pool *pool = pd->pool;*/
201 struct stateswitch *sw;
204 fprintf(stderr, "start: [%d]%s\n", pd->state, name);
206 if (pd->depth != pd->statedepth)
213 if (!pd->swtab[pd->state])
215 for (sw = pd->swtab[pd->state]; sw->from == pd->state; sw++) /* find name in statetable */
216 if (!strcmp(sw->ename, name))
219 if (sw->from != pd->state)
222 fprintf(stderr, "into unknown: %s (from: %d)\n", name, pd->state);
227 pd->docontent = sw->docontent;
228 pd->statedepth = pd->depth;
234 case STATE_START: break;
239 /* this should be OBSOLETE soon */
240 updstr = find_attr("updates", atts);
243 char *value = solv_strdup(updstr);
244 char *fvalue = value; /* save the first */
247 char *p = strchr(value, ',');
251 repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_UPDATES, value);
258 case STATE_SUSEINFO: break;
259 case STATE_EXPIRE: break;
260 case STATE_KEYWORDS: break;
261 case STATE_KEYWORD: break;
262 case STATE_CONTENT: break;
263 case STATE_REVISION: break;
266 /* this is extra metadata about the product this repository
268 const char *cpeid = find_attr("cpeid", atts);
269 pd->rphandle = repodata_new_handle(pd->data);
270 /* set the cpeid for the product
271 the label is set in the content of the tag */
273 repodata_set_poolstr(pd->data, pd->rphandle, REPOSITORY_PRODUCT_CPEID, cpeid);
278 /* this is extra metadata about the product this repository
280 const char *cpeid = find_attr("cpeid", atts);
281 pd->ruhandle = repodata_new_handle(pd->data);
282 /* set the cpeid for the product
283 the label is set in the content of the tag */
285 repodata_set_poolstr(pd->data, pd->ruhandle, REPOSITORY_PRODUCT_CPEID, cpeid);
290 const char *type= find_attr("type", atts);
291 pd->rdhandle = repodata_new_handle(pd->data);
293 repodata_set_poolstr(pd->data, pd->rdhandle, REPOSITORY_REPOMD_TYPE, type);
298 const char *href = find_attr("href", atts);
300 repodata_set_str(pd->data, pd->rdhandle, REPOSITORY_REPOMD_LOCATION, href);
304 case STATE_OPENCHECKSUM:
306 const char *type= find_attr("type", atts);
307 pd->chksumtype = type && *type ? solv_chksum_str2type(type) : 0;
310 fprintf(stderr, "Unknown checksum type: %d: %s\n", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), type ? type : "NULL");
322 endElement(void *userData, const char *name)
324 struct parsedata *pd = userData;
325 /* Pool *pool = pd->pool; */
328 fprintf(stderr, "endElement: %s\n", name);
330 if (pd->depth != pd->statedepth)
334 fprintf(stderr, "back from unknown %d %d %d\n", pd->state, pd->depth, pd->statedepth);
343 case STATE_START: break;
345 if (pd->timestamp > 0)
346 repodata_set_num(pd->data, SOLVID_META, REPOSITORY_TIMESTAMP, pd->timestamp);
350 repodata_add_flexarray(pd->data, SOLVID_META, REPOSITORY_REPOMD, pd->rdhandle);
353 case STATE_LOCATION: break;
356 case STATE_OPENCHECKSUM:
357 if (strlen(pd->content) != 2 * solv_chksum_len(pd->chksumtype))
359 fprintf(stderr, "Invalid checksum length: %d: for %s\n", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), solv_chksum_type2str(pd->chksumtype));
362 repodata_set_checksum(pd->data, pd->rdhandle, pd->state == STATE_CHECKSUM ? REPOSITORY_REPOMD_CHECKSUM : REPOSITORY_REPOMD_OPENCHECKSUM, pd->chksumtype, pd->content);
365 case STATE_TIMESTAMP:
368 * we want to look for the newest timestamp
369 * of all resources to save it as the time
370 * the metadata was generated
372 int timestamp = atoi(pd->content);
374 repodata_set_num(pd->data, pd->rdhandle, REPOSITORY_REPOMD_TIMESTAMP, timestamp);
375 if (timestamp > pd->timestamp)
376 pd->timestamp = timestamp;
381 int expire = atoi(pd->content);
383 repodata_set_num(pd->data, SOLVID_META, REPOSITORY_EXPIRE, expire);
386 /* repomd.xml content and suseinfo.xml keywords are equivalent */
390 repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_KEYWORDS, pd->content);
394 repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_REVISION, pd->content);
397 /* distro tag is used in repomd.xml to say the product this repo is
400 repodata_set_str(pd->data, pd->rphandle, REPOSITORY_PRODUCT_LABEL, pd->content);
401 repodata_add_flexarray(pd->data, SOLVID_META, REPOSITORY_DISTROS, pd->rphandle);
404 /* distro tag is used in suseinfo.xml to say the repo updates a product
405 however it s not yet a tag standarized for repomd.xml */
407 repodata_set_str(pd->data, pd->ruhandle, REPOSITORY_PRODUCT_LABEL, pd->content);
408 repodata_add_flexarray(pd->data, SOLVID_META, REPOSITORY_UPDATES, pd->ruhandle);
412 repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_REPOID, pd->content);
414 case STATE_SUSEINFO: break;
415 case STATE_KEYWORDS: break;
416 case NUMSTATES: break;
421 pd->state = pd->sbtab[pd->state];
429 characterData(void *userData, const XML_Char *s, int len)
431 struct parsedata *pd = userData;
436 l = pd->lcontent + len + 1;
437 if (l > pd->acontent)
439 pd->content = realloc(pd->content, l + 256);
440 pd->acontent = l + 256;
442 c = pd->content + pd->lcontent;
449 #define BUFF_SIZE 8192
452 repo_add_repomdxml(Repo *repo, FILE *fp, int flags)
454 Pool *pool = repo->pool;
459 struct stateswitch *sw;
462 data = repo_add_repodata(repo, flags);
464 memset(&pd, 0, sizeof(pd));
466 for (i = 0, sw = stateswitches; sw->from != NUMSTATES; i++, sw++)
468 if (!pd.swtab[sw->from])
469 pd.swtab[sw->from] = sw;
470 pd.sbtab[sw->to] = sw->from;
476 pd.content = malloc(256);
479 parser = XML_ParserCreate(NULL);
480 XML_SetUserData(parser, &pd);
482 XML_SetElementHandler(parser, startElement, endElement);
483 XML_SetCharacterDataHandler(parser, characterData);
486 l = fread(buf, 1, sizeof(buf), fp);
487 if (XML_Parse(parser, buf, l, l == 0) == XML_STATUS_ERROR)
489 pool_debug(pool, SOLV_FATAL, "repo_repomdxml: %s at line %u:%u\n", XML_ErrorString(XML_GetErrorCode(parser)), (unsigned int)XML_GetCurrentLineNumber(parser), (unsigned int)XML_GetCurrentColumnNumber(parser));
495 XML_ParserFree(parser);
497 if (!(flags & REPO_NO_INTERNALIZE))
498 repodata_internalize(data);