2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
19 #include "tools_util.h"
20 #include "repo_rpmmd.h"
39 /* resobject attributes */
54 /* Novell/SUSE extended attributes */
68 STATE_CATEGORY, /* pattern and patches */
82 STATE_DISTNAME, // obsolete
83 STATE_DISTEDITION, // obsolete
91 /* rpm-md dependencies inside the
107 STATE_OBSOLETESENTRY,
108 STATE_CONFLICTSENTRY,
109 STATE_RECOMMENDSENTRY,
110 STATE_SUPPLEMENTSENTRY,
128 static struct stateswitch stateswitches[] = {
129 /** fake tag used to enclose 2 different xml files in one **/
130 { STATE_START, "rpmmd", STATE_START, 0 },
132 /** tags for different package data, we just ignore the tag **/
133 { STATE_START, "metadata", STATE_START, 0 },
134 { STATE_START, "otherdata", STATE_START, 0 },
135 { STATE_START, "filelists", STATE_START, 0 },
136 { STATE_START, "diskusagedata", STATE_START, 0 },
137 { STATE_START, "susedata", STATE_START, 0 },
139 { STATE_START, "product", STATE_SOLVABLE, 0 },
140 { STATE_START, "pattern", STATE_SOLVABLE, 0 },
141 { STATE_START, "patch", STATE_SOLVABLE, 0 },
142 { STATE_START, "package", STATE_SOLVABLE, 0 },
144 { STATE_SOLVABLE, "name", STATE_NAME, 1 },
145 { STATE_SOLVABLE, "arch", STATE_ARCH, 1 },
146 { STATE_SOLVABLE, "version", STATE_VERSION, 0 },
148 // package attributes rpm-md
149 { STATE_SOLVABLE, "location", STATE_LOCATION, 0 },
150 { STATE_SOLVABLE, "checksum", STATE_CHECKSUM, 1 },
152 /* resobject attributes */
154 { STATE_SOLVABLE, "summary", STATE_SUMMARY, 1 },
155 { STATE_SOLVABLE, "description", STATE_DESCRIPTION, 1 },
156 { STATE_SOLVABLE, "distribution", STATE_DISTRIBUTION, 1 },
157 { STATE_SOLVABLE, "url", STATE_URL, 1 },
158 { STATE_SOLVABLE, "packager", STATE_PACKAGER, 1 },
159 //{ STATE_SOLVABLE, "???", STATE_INSNOTIFY, 1 },
160 //{ STATE_SOLVABLE, "??", STATE_DELNOTIFY, 1 },
161 { STATE_SOLVABLE, "vendor", STATE_VENDOR, 1 },
162 { STATE_SOLVABLE, "size", STATE_SIZE, 0 },
163 { STATE_SOLVABLE, "archive-size", STATE_DOWNLOADSIZE, 1 },
164 { STATE_SOLVABLE, "install-time", STATE_INSTALLTIME, 1 },
165 { STATE_SOLVABLE, "install-only", STATE_INSTALLONLY, 1 },
166 { STATE_SOLVABLE, "time", STATE_TIME, 0 },
168 /* extended Novell/SUSE attributes (susedata.xml) */
169 { STATE_SOLVABLE, "eula", STATE_EULA, 1 },
170 { STATE_SOLVABLE, "keyword", STATE_KEYWORD, 1 },
171 { STATE_SOLVABLE, "diskusage", STATE_DISKUSAGE, 0 },
174 { STATE_SOLVABLE, "script", STATE_SCRIPT, 1 },
175 { STATE_SOLVABLE, "icon", STATE_ICON, 1 },
176 { STATE_SOLVABLE, "uservisible", STATE_USERVISIBLE, 1 },
177 { STATE_SOLVABLE, "category", STATE_CATEGORY, 1 },
178 { STATE_SOLVABLE, "order", STATE_ORDER, 1 },
179 { STATE_SOLVABLE, "includes", STATE_INCLUDES, 0 },
180 { STATE_SOLVABLE, "extends", STATE_EXTENDS, 0 },
181 { STATE_SOLVABLE, "default", STATE_DEFAULT, 1 },
182 { STATE_SOLVABLE, "install-time", STATE_INSTALL_TIME, 1 },
184 /* product attributes */
185 /* note the product type is an attribute */
186 { STATE_SOLVABLE, "release-notes-url", STATE_RELNOTESURL, 1 },
187 { STATE_SOLVABLE, "update-url", STATE_UPDATEURL, 1 },
188 { STATE_SOLVABLE, "optional-url", STATE_OPTIONALURL, 1 },
189 { STATE_SOLVABLE, "flag", STATE_FLAG, 1 },
191 { STATE_SOLVABLE, "rpm:vendor", STATE_VENDOR, 1 },
192 { STATE_SOLVABLE, "rpm:group", STATE_RPM_GROUP, 1 },
193 { STATE_SOLVABLE, "rpm:license", STATE_RPM_LICENSE, 1 },
195 /* rpm-md dependencies */
196 { STATE_SOLVABLE, "rpm:provides", STATE_PROVIDES, 0 },
197 { STATE_SOLVABLE, "rpm:requires", STATE_REQUIRES, 0 },
198 { STATE_SOLVABLE, "rpm:obsoletes", STATE_OBSOLETES, 0 },
199 { STATE_SOLVABLE, "rpm:conflicts", STATE_CONFLICTS, 0 },
200 { STATE_SOLVABLE, "rpm:recommends", STATE_RECOMMENDS , 0 },
201 { STATE_SOLVABLE, "rpm:supplements", STATE_SUPPLEMENTS, 0 },
202 { STATE_SOLVABLE, "rpm:suggests", STATE_SUGGESTS, 0 },
203 { STATE_SOLVABLE, "rpm:enhances", STATE_ENHANCES, 0 },
204 { STATE_SOLVABLE, "rpm:freshens", STATE_FRESHENS, 0 },
205 { STATE_SOLVABLE, "rpm:sourcerpm", STATE_SOURCERPM, 1 },
206 { STATE_SOLVABLE, "rpm:header-range", STATE_HEADERRANGE, 0 },
207 { STATE_SOLVABLE, "file", STATE_FILE, 1 },
209 /* extended Novell/SUSE diskusage attributes (susedata.xml) */
210 { STATE_DISKUSAGE, "dirs", STATE_DIRS, 0 },
211 { STATE_DIRS, "dir", STATE_DIR, 0 },
213 { STATE_PROVIDES, "rpm:entry", STATE_PROVIDESENTRY, 0 },
214 { STATE_REQUIRES, "rpm:entry", STATE_REQUIRESENTRY, 0 },
215 { STATE_OBSOLETES, "rpm:entry", STATE_OBSOLETESENTRY, 0 },
216 { STATE_CONFLICTS, "rpm:entry", STATE_CONFLICTSENTRY, 0 },
217 { STATE_RECOMMENDS, "rpm:entry", STATE_RECOMMENDSENTRY, 0 },
218 { STATE_SUPPLEMENTS, "rpm:entry", STATE_SUPPLEMENTSENTRY, 0 },
219 { STATE_SUGGESTS, "rpm:entry", STATE_SUGGESTSENTRY, 0 },
220 { STATE_ENHANCES, "rpm:entry", STATE_ENHANCESENTRY, 0 },
221 { STATE_FRESHENS, "rpm:entry", STATE_FRESHENSENTRY, 0 },
223 { STATE_INCLUDES, "item", STATE_INCLUDESENTRY, 0 },
224 { STATE_EXTENDS, "item", STATE_EXTENDSENTRY, 0 },
229 /* maxmum initial size of
230 the checksum cache */
231 #define MAX_CSCACHE 32768
232 #define CSREALLOC_STEP 1024
235 struct parsedata_common common;
246 struct stateswitch *swtab[NUMSTATES];
247 enum state sbtab[NUMSTATES];
248 /* temporal to store attribute tag language */
251 // used to store tmp attributes
252 // while the tag ends
257 Id (*dirs)[3]; // dirid, size, nfiles
259 Id langcache[ID_NUM_INTERNAL];
260 /** system language */
261 const char *language;
267 /** Hash to maps checksums to solv */
269 /** Cache of known checksums to solvable id */
271 /* the current longest index in the table */
276 langtag(struct parsedata *pd, Id tag, const char *language)
278 if (!language) /* fall back to default if not specified */
279 language = pd->language;
280 if (language && (!language[0] || !strcmp(language, "en")))
282 if (!language || tag >= ID_NUM_INTERNAL)
283 return pool_id2langid(pd->common.repo->pool, tag, language, 1);
284 return pool_id2langid(pd->common.repo->pool, tag, language, 1);
285 if (!pd->langcache[tag])
286 pd->langcache[tag] = pool_id2langid(pd->common.repo->pool, tag, language, 1);
287 return pd->langcache[tag];
291 id3_cmp (const void *v1, const void *v2, void *dp)
295 return i1[0] - i2[0];
299 commit_diskusage (struct parsedata *pd, unsigned handle)
302 Dirpool *dp = &pd->data->dirpool;
303 /* Now sort in dirid order. This ensures that parents come before
306 solv_sort(pd->dirs, pd->ndirs, sizeof (pd->dirs[0]), id3_cmp, 0);
307 /* Substract leaf numbers from all parents to make the numbers
308 non-cumulative. This must be done post-order (i.e. all leafs
309 adjusted before parents). We ensure this by starting at the end of
310 the array moving to the start, hence seeing leafs before parents. */
311 for (i = pd->ndirs; i--;)
313 unsigned p = dirpool_parent(dp, pd->dirs[i][0]);
315 for (; p; p = dirpool_parent(dp, p))
318 if (pd->dirs[j][0] == p)
322 if (pd->dirs[j][1] < pd->dirs[i][1])
325 pd->dirs[j][1] -= pd->dirs[i][1];
326 if (pd->dirs[j][2] < pd->dirs[i][2])
329 pd->dirs[j][2] -= pd->dirs[i][2];
332 /* Haven't found this parent in the list, look further if
333 we maybe find the parents parent. */
340 unsigned slen = sizeof (sbuf);
341 for (i = 0; i < pd->ndirs; i++)
343 dir2str (attr, pd->dirs[i][0], &buf, &slen);
344 fprintf (stderr, "have dir %d %d %d %s\n", pd->dirs[i][0], pd->dirs[i][1], pd->dirs[i][2], buf);
349 for (i = 0; i < pd->ndirs; i++)
350 if (pd->dirs[i][1] || pd->dirs[i][2])
352 repodata_add_dirnumnum(pd->data, handle, SOLVABLE_DISKUSAGE, pd->dirs[i][0], pd->dirs[i][1], pd->dirs[i][2]);
360 * parse 'epoch', 'ver' and 'rel', return evr Id
365 makeevr_atts(Pool *pool, struct parsedata *pd, const char **atts)
367 const char *e, *v, *r, *v2;
372 for (; *atts; atts += 2)
374 if (!strcmp(*atts, "epoch"))
376 else if (!strcmp(*atts, "ver"))
378 else if (!strcmp(*atts, "rel"))
381 if (e && !strcmp(e, "0"))
385 for (v2 = v; *v2 >= '0' && *v2 <= '9'; v2++)
387 if (v2 > v && *v2 == ':')
397 if (l > pd->acontent)
399 pd->content = solv_realloc(pd->content, l + 256);
400 pd->acontent = l + 256;
424 fprintf(stderr, "evr: %s\n", pd->content);
426 return pool_str2id(pool, pd->content, 1);
432 * find value for xml attribute
433 * I: txt, name of attribute
434 * I: atts, list of key/value attributes
435 * O: pointer to value of matching key, or NULL
439 static inline const char *
440 find_attr(const char *txt, const char **atts)
442 for (; *atts; atts += 2)
444 if (!strcmp(*atts, txt))
452 * dependency relations
455 static char *flagtab[] = {
467 * parse attributes to reldep Id
472 adddep(Pool *pool, struct parsedata *pd, unsigned int olddeps, const char **atts, int isreq)
475 const char *n, *f, *k;
479 marker = isreq ? -SOLVABLE_PREREQMARKER : 0;
480 for (a = atts; *a; a += 2)
482 if (!strcmp(*a, "name"))
484 else if (!strcmp(*a, "flags"))
486 else if (!strcmp(*a, "kind"))
488 else if (isreq && !strcmp(*a, "pre") && a[1][0] == '1')
489 marker = SOLVABLE_PREREQMARKER;
493 if (k && !strcmp(k, "package"))
497 int l = strlen(k) + 1 + strlen(n) + 1;
498 if (l > pd->acontent)
500 pd->content = solv_realloc(pd->content, l + 256);
501 pd->acontent = l + 256;
503 sprintf(pd->content, "%s:%s", k, n);
504 name = pool_str2id(pool, pd->content, 1);
507 name = pool_str2id(pool, (char *)n, 1);
510 Id evr = makeevr_atts(pool, pd, atts);
512 for (flags = 0; flags < 6; flags++)
513 if (!strcmp(f, flagtab[flags]))
515 flags = flags < 6 ? flags + 1 : 0;
516 id = pool_rel2id(pool, name, evr, flags, 1);
521 fprintf(stderr, "new dep %s%s%s\n", pool_id2str(pool, d), id2rel(pool, d), id2evr(pool, d));
523 return repo_addid_dep(pd->common.repo, olddeps, id, marker);
528 * set_description_author
532 set_description_author(Repodata *data, Id handle, char *str, struct parsedata *pd)
538 for (aut = str; (aut = strchr(aut, '\n')) != 0; aut++)
539 if (!strncmp(aut, "\nAuthors:\n--------\n", 19))
543 /* oh my, found SUSE special author section */
546 while (l > 0 && str[l - 1] == '\n')
549 repodata_set_str(data, handle, langtag(pd, SOLVABLE_DESCRIPTION, pd->tmplang), str);
551 aut = str; /* copy over */
552 while (*p == ' ' || *p == '\n')
565 while (aut != str && aut[-1] == '\n')
569 repodata_set_str(data, handle, SOLVABLE_AUTHORS, str);
572 repodata_set_str(data, handle, langtag(pd, SOLVABLE_DESCRIPTION, pd->tmplang), str);
582 set_sourcerpm(Repodata *data, Solvable *s, Id handle, char *sourcerpm)
584 const char *p, *sevr, *sarch, *name, *evr;
587 p = strrchr(sourcerpm, '.');
588 if (!p || strcmp(p, ".rpm") != 0)
591 while (p > sourcerpm && *p != '.')
593 if (*p != '.' || p == sourcerpm)
596 while (p > sourcerpm && *p != '-')
598 if (*p != '-' || p == sourcerpm)
601 while (p > sourcerpm && *p != '-')
603 if (*p != '-' || p == sourcerpm)
606 pool = s->repo->pool;
607 if (!strcmp(sarch, "src.rpm"))
608 repodata_set_constantid(data, handle, SOLVABLE_SOURCEARCH, ARCH_SRC);
609 else if (!strcmp(sarch, "nosrc.rpm"))
610 repodata_set_constantid(data, handle, SOLVABLE_SOURCEARCH, ARCH_NOSRC);
612 repodata_set_constantid(data, handle, SOLVABLE_SOURCEARCH, pool_strn2id(pool, sarch, strlen(sarch) - 4, 1));
613 evr = pool_id2str(pool, s->evr);
614 if (evr && !strncmp(sevr, evr, sarch - sevr - 1) && evr[sarch - sevr - 1] == 0)
615 repodata_set_void(data, handle, SOLVABLE_SOURCEEVR);
617 repodata_set_id(data, handle, SOLVABLE_SOURCEEVR, pool_strn2id(pool, sevr, sarch - sevr - 1, 1));
618 name = pool_id2str(pool, s->name);
619 if (name && !strncmp(sourcerpm, name, sevr - sourcerpm - 1) && name[sevr - sourcerpm - 1] == 0)
620 repodata_set_void(data, handle, SOLVABLE_SOURCENAME);
622 repodata_set_id(data, handle, SOLVABLE_SOURCENAME, pool_strn2id(pool, sourcerpm, sevr - sourcerpm - 1, 1));
625 /*-----------------------------------------------*/
635 startElement(void *userData, const char *name, const char **atts)
637 //fprintf(stderr,"+tag: %s\n", name);
638 struct parsedata *pd = userData;
639 Pool *pool = pd->common.pool;
640 Solvable *s = pd->solvable;
641 struct stateswitch *sw;
643 Id handle = pd->handle;
646 // fprintf(stderr, "into %s, from %d, depth %d, statedepth %d\n", name, pd->state, pd->depth, pd->statedepth);
648 if (pd->depth != pd->statedepth)
654 if (pd->state == STATE_START && !strcmp(name, "patterns"))
656 if (pd->state == STATE_START && !strcmp(name, "products"))
658 //if (pd->state == STATE_START && !strcmp(name, "metadata"))
660 if (pd->state == STATE_SOLVABLE && !strcmp(name, "format"))
664 if (!pd->swtab[pd->state])
666 for (sw = pd->swtab[pd->state]; sw->from == pd->state; sw++)
667 if (!strcmp(sw->ename, name))
669 if (sw->from != pd->state)
672 fprintf(stderr, "into unknown: %s\n", name);
677 pd->docontent = sw->docontent;
678 pd->statedepth = pd->depth;
685 if (name[2] == 't' && name[3] == 't')
686 pd->kind = "pattern";
687 else if (name[1] == 'r')
688 pd->kind = "product";
689 else if (name[2] == 't' && name[3] == 'c')
692 /* to support extension metadata files like others.xml which
693 have the following structure:
695 <otherdata xmlns="http://linux.duke.edu/metadata/other"
697 <package pkgid="b78f8664cd90efe42e09a345e272997ef1b53c18"
698 name="zaptel-kmp-default"
699 arch="i586"><version epoch="0"
700 ver="1.2.10_2.6.22_rc4_git6_2" rel="70"/>
703 we need to check if the pkgid is there and if it matches
704 an already seen package, that means we don't need to create
705 a new solvable but just append the attributes to the existing
708 if ((pkgid = find_attr("pkgid", atts)) != NULL)
710 // look at the checksum cache
711 Id index = stringpool_str2id(&pd->cspool, pkgid, 0);
712 if (!index || index >= pd->ncscache || !pd->cscache[index])
714 fprintf(stderr, "error, the repository specifies extra information about package with checksum '%s', which does not exist in the repository.\n", pkgid);
717 pd->solvable = pool_id2solvable(pool, pd->cscache[index]);
721 /* this is a new package */
722 pd->solvable = pool_id2solvable(pool, repo_add_solvable(pd->common.repo));
725 pd->handle = pd->solvable - pool->solvables;
727 fprintf(stderr, "package #%d\n", pd->solvable - pool->solvables);
732 s->evr = makeevr_atts(pool, pd, atts);
737 case STATE_PROVIDESENTRY:
738 s->provides = adddep(pool, pd, s->provides, atts, 0);
743 case STATE_REQUIRESENTRY:
744 s->requires = adddep(pool, pd, s->requires, atts, 1);
746 case STATE_OBSOLETES:
749 case STATE_OBSOLETESENTRY:
750 s->obsoletes = adddep(pool, pd, s->obsoletes, atts, 0);
752 case STATE_CONFLICTS:
755 case STATE_CONFLICTSENTRY:
756 s->conflicts = adddep(pool, pd, s->conflicts, atts, 0);
758 case STATE_RECOMMENDS:
761 case STATE_RECOMMENDSENTRY:
762 s->recommends = adddep(pool, pd, s->recommends, atts, 0);
764 case STATE_SUPPLEMENTS:
767 case STATE_SUPPLEMENTSENTRY:
768 s->supplements = adddep(pool, pd, s->supplements, atts, 0);
773 case STATE_SUGGESTSENTRY:
774 s->suggests = adddep(pool, pd, s->suggests, atts, 0);
779 case STATE_ENHANCESENTRY:
780 s->enhances = adddep(pool, pd, s->enhances, atts, 0);
785 case STATE_FRESHENSENTRY:
786 pd->freshens = adddep(pool, pd, pd->freshens, atts, 0);
791 case STATE_DESCRIPTION:
792 pd->tmplang = find_attr("lang", atts);
794 case STATE_USERVISIBLE:
795 repodata_set_void(pd->data, handle, SOLVABLE_ISVISIBLE );
797 case STATE_INCLUDESENTRY:
799 const char *tmp = find_attr("pattern", atts);
801 repodata_add_poolstr_array(pd->data, pd->handle, SOLVABLE_INCLUDES, join2("pattern", ":", tmp));
804 case STATE_EXTENDSENTRY:
806 const char *tmp = find_attr("pattern", atts);
808 repodata_add_poolstr_array(pd->data, pd->handle, SOLVABLE_EXTENDS, join2("pattern", ":", tmp));
812 str = find_attr("href", atts);
814 repodata_set_location(pd->data, handle, 0, 0, str);
817 pd->tmpattr = find_attr("type", atts);
822 str = find_attr("build", atts);
823 if (str && (t = atoi(str)) != 0)
824 repodata_set_num(pd->data, handle, SOLVABLE_BUILDTIME, t);
830 str = find_attr("installed", atts);
831 if (str && (k = atoi(str)) != 0)
832 repodata_set_num(pd->data, handle, SOLVABLE_INSTALLSIZE, (k + 1023) / 1024);
833 /* XXX the "package" attribute gives the size of the rpm file,
834 i.e. the download size. Except on packman, there it seems to be
835 something else entirely, it has a value near to the other two
836 values, as if the rpm is uncompressed. */
837 str = find_attr("package", atts);
838 if (str && (k = atoi(str)) != 0)
839 repodata_set_num(pd->data, handle, SOLVABLE_DOWNLOADSIZE, (k + 1023) / 1024);
842 case STATE_HEADERRANGE:
845 str = find_attr("end", atts);
846 if (str && (end = atoi(str)) != 0)
847 repodata_set_num(pd->data, handle, SOLVABLE_HEADEREND, end);
852 <dir name="/" size="56" count="11"/>
853 <dir name="usr/" size="56" count="11"/>
854 <dir name="usr/bin/" size="38" count="10"/>
855 <dir name="usr/share/" size="18" count="1"/>
856 <dir name="usr/share/doc/" size="18" count="1"/>
860 case STATE_DISKUSAGE:
862 /* Really, do nothing, wat for <dir> tag */
867 long filesz = 0, filenum = 0;
869 if ((str = find_attr("name", atts)) != 0)
870 dirid = repodata_str2dir(pd->data, str, 1);
873 fprintf( stderr, "<dir .../> tag without 'name' attribute, atts = %p, *atts = %p\n",
874 (void *)atts, *atts);
877 if ((str = find_attr("size", atts)) != 0)
878 filesz = strtol(str, 0, 0);
879 if ((str = find_attr("count", atts)) != 0)
880 filenum = strtol(str, 0, 0);
881 pd->dirs = solv_extend(pd->dirs, pd->ndirs, 1, sizeof(pd->dirs[0]), 31);
882 pd->dirs[pd->ndirs][0] = dirid;
883 pd->dirs[pd->ndirs][1] = filesz;
884 pd->dirs[pd->ndirs][2] = filenum;
901 endElement(void *userData, const char *name)
903 //fprintf(stderr,"-tag: %s\n", name);
904 struct parsedata *pd = userData;
905 Pool *pool = pd->common.pool;
906 Solvable *s = pd->solvable;
907 Repo *repo = pd->common.repo;
908 Id handle = pd->handle;
912 if (pd->depth != pd->statedepth)
915 // printf("back from unknown %d %d %d\n", pd->state, pd->depth, pd->statedepth);
919 /* ignore patterns & metadata */
920 if (pd->state == STATE_START && !strcmp(name, "patterns"))
922 if (pd->state == STATE_START && !strcmp(name, "products"))
924 //if (pd->state == STATE_START && !strcmp(name, "metadata"))
926 if (pd->state == STATE_SOLVABLE && !strcmp(name, "format"))
934 if (pd->kind && !s->name) /* add namespace in case of NULL name */
935 s->name = pool_str2id(pool, join2(pd->kind, ":", ""), 1);
937 s->arch = ARCH_NOARCH;
939 s->evr = ID_EMPTY; /* some patterns have this */
940 if (s->name && s->arch != ARCH_SRC && s->arch != ARCH_NOSRC)
941 s->provides = repo_addid_dep(repo, s->provides, pool_rel2id(pool, s->name, s->evr, REL_EQ, 1), 0);
942 s->supplements = repo_fix_supplements(repo, s->provides, s->supplements, pd->freshens);
943 s->conflicts = repo_fix_conflicts(repo, s->conflicts);
949 s->name = pool_str2id(pool, join2(pd->kind, ":", pd->content), 1);
951 s->name = pool_str2id(pool, pd->content, 1);
954 s->arch = pool_str2id(pool, pd->content, 1);
957 s->vendor = pool_str2id(pool, pd->content, 1);
959 case STATE_RPM_GROUP:
960 repodata_set_poolstr(pd->data, handle, SOLVABLE_GROUP, pd->content);
962 case STATE_RPM_LICENSE:
963 repodata_set_poolstr(pd->data, handle, SOLVABLE_LICENSE, pd->content);
968 type = solv_chksum_str2type(pd->tmpattr);
971 fprintf(stderr, "Unknown checksum type: %d: %s\n", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), pd->tmpattr);
974 if (strlen(pd->content) != 2 * solv_chksum_len(type))
976 fprintf(stderr, "Invalid checksum length: %d: for %s\n", (unsigned int)XML_GetCurrentLineNumber(*pd->parser), pd->tmpattr);
979 repodata_set_checksum(pd->data, handle, SOLVABLE_CHECKSUM, type, pd->content);
980 /* we save the checksum to solvable id relationship for extended
982 index = stringpool_str2id(&pd->cspool, pd->content, 1 /* create it */);
983 if (index >= pd->ncscache)
985 pd->cscache = solv_zextend(pd->cscache, pd->ncscache, index + 1 - pd->ncscache, sizeof(Id), 255);
986 pd->ncscache = index + 1;
988 /* add the checksum to the cache */
989 pd->cscache[index] = s - pool->solvables;
994 id = pool_str2id(pool, pd->content, 1);
995 s->provides = repo_addid_dep(repo, s->provides, id, SOLVABLE_FILEMARKER);
997 if ((p = strrchr(pd->content, '/')) != 0)
1000 if (pd->lastdir && !strcmp(pd->lastdirstr, pd->content))
1007 id = repodata_str2dir(pd->data, pd->content, 1);
1008 l = strlen(pd->content) + 1;
1009 if (l > pd->lastdirstrl)
1011 pd->lastdirstrl = l + 128;
1012 pd->lastdirstr = solv_realloc(pd->lastdirstr, pd->lastdirstrl);
1014 strcpy(pd->lastdirstr, pd->content);
1024 id = repodata_str2dir(pd->data, "/", 1);
1025 repodata_add_dirstr(pd->data, handle, SOLVABLE_FILELIST, id, p);
1028 repodata_set_str(pd->data, handle, langtag(pd, SOLVABLE_SUMMARY, pd->tmplang), pd->content);
1030 case STATE_DESCRIPTION:
1031 set_description_author(pd->data, handle, pd->content, pd);
1033 case STATE_CATEGORY:
1034 repodata_set_str(pd->data, handle, langtag(pd, SOLVABLE_CATEGORY, pd->tmplang), pd->content);
1036 case STATE_DISTRIBUTION:
1037 repodata_set_poolstr(pd->data, handle, SOLVABLE_DISTRIBUTION, pd->content);
1041 repodata_set_str(pd->data, handle, SOLVABLE_URL, pd->content);
1043 case STATE_PACKAGER:
1045 repodata_set_poolstr(pd->data, handle, SOLVABLE_PACKAGER, pd->content);
1047 case STATE_SOURCERPM:
1048 set_sourcerpm(pd->data, s, handle, pd->content);
1050 case STATE_RELNOTESURL:
1053 repodata_add_poolstr_array(pd->data, pd->handle, PRODUCT_URL, pd->content);
1054 repodata_add_idarray(pd->data, pd->handle, PRODUCT_URL_TYPE, pool_str2id(pool, "releasenotes", 1));
1057 case STATE_UPDATEURL:
1060 repodata_add_poolstr_array(pd->data, pd->handle, PRODUCT_URL, pd->content);
1061 repodata_add_idarray(pd->data, pd->handle, PRODUCT_URL_TYPE, pool_str2id(pool, "update", 1));
1064 case STATE_OPTIONALURL:
1067 repodata_add_poolstr_array(pd->data, pd->handle, PRODUCT_URL, pd->content);
1068 repodata_add_idarray(pd->data, pd->handle, PRODUCT_URL_TYPE, pool_str2id(pool, "optional", 1));
1073 repodata_set_poolstr(pd->data, handle, PRODUCT_FLAGS, pd->content);
1077 repodata_set_str(pd->data, handle, langtag(pd, SOLVABLE_EULA, pd->tmplang), pd->content);
1081 repodata_add_poolstr_array(pd->data, pd->handle, SOLVABLE_KEYWORDS, pd->content);
1083 case STATE_DISKUSAGE:
1085 commit_diskusage(pd, pd->handle);
1089 repodata_set_str(pd->data, pd->handle, SOLVABLE_ORDER, pd->content);
1093 pd->state = pd->sbtab[pd->state];
1095 // fprintf(stderr, "back from known %d %d %d\n", pd->state, pd->depth, pd->statedepth);
1106 characterData(void *userData, const XML_Char *s, int len)
1108 struct parsedata *pd = userData;
1114 l = pd->lcontent + len + 1;
1115 if (l > pd->acontent)
1117 pd->content = solv_realloc(pd->content, l + 256);
1118 pd->acontent = l + 256;
1120 c = pd->content + pd->lcontent;
1121 pd->lcontent += len;
1128 /*-----------------------------------------------*/
1131 #define BUFF_SIZE 8192
1135 * parse rpm-md metadata (primary, others)
1140 repo_add_rpmmd(Repo *repo, FILE *fp, const char *language, int flags)
1142 Pool *pool = repo->pool;
1143 struct parsedata pd;
1144 char buf[BUFF_SIZE];
1146 struct stateswitch *sw;
1151 now = solv_timems(0);
1152 data = repo_add_repodata(repo, flags);
1154 memset(&pd, 0, sizeof(pd));
1155 for (i = 0, sw = stateswitches; sw->from != NUMSTATES; i++, sw++)
1157 if (!pd.swtab[sw->from])
1158 pd.swtab[sw->from] = sw;
1159 pd.sbtab[sw->to] = sw->from;
1161 pd.common.pool = pool;
1162 pd.common.repo = repo;
1166 pd.content = solv_malloc(256);
1172 pd.language = language;
1174 /* initialize the string pool where we will store
1175 the package checksums we know about, to get an Id
1176 we can use in a cache */
1177 stringpool_init_empty(&pd.cspool);
1178 if ((flags & REPO_EXTEND_SOLVABLES) != 0)
1180 /* setup join data */
1182 dataiterator_init(&di, pool, repo, 0, SOLVABLE_CHECKSUM, 0, 0);
1183 while (dataiterator_step(&di))
1188 if (!solv_chksum_len(di.key->type))
1190 str = repodata_chk2str(di.data, di.key->type, (const unsigned char *)di.kv.str);
1191 index = stringpool_str2id(&pd.cspool, str, 1);
1192 if (index >= pd.ncscache)
1194 pd.cscache = solv_zextend(pd.cscache, pd.ncscache, index + 1 - pd.ncscache, sizeof(Id), 255);
1195 pd.ncscache = index + 1;
1197 pd.cscache[index] = di.solvid;
1199 dataiterator_free(&di);
1202 parser = XML_ParserCreate(NULL);
1203 XML_SetUserData(parser, &pd);
1204 pd.parser = &parser;
1205 XML_SetElementHandler(parser, startElement, endElement);
1206 XML_SetCharacterDataHandler(parser, characterData);
1209 l = fread(buf, 1, sizeof(buf), fp);
1210 if (XML_Parse(parser, buf, l, l == 0) == XML_STATUS_ERROR)
1212 pool_debug(pool, SOLV_FATAL, "repo_rpmmd: %s at line %u:%u\n", XML_ErrorString(XML_GetErrorCode(parser)), (unsigned int)XML_GetCurrentLineNumber(parser), (unsigned int)XML_GetCurrentColumnNumber(parser));
1218 XML_ParserFree(parser);
1219 solv_free(pd.content);
1220 solv_free(pd.lastdirstr);
1222 stringpool_free(&pd.cspool);
1223 solv_free(pd.cscache);
1225 if (!(flags & REPO_NO_INTERNALIZE))
1226 repodata_internalize(data);
1227 POOL_DEBUG(SOLV_DEBUG_STATS, "repo_add_rpmmd took %d ms\n", solv_timems(now));
1228 POOL_DEBUG(SOLV_DEBUG_STATS, "repo size: %d solvables\n", repo->nsolvables);
1229 POOL_DEBUG(SOLV_DEBUG_STATS, "repo memory used: %d K incore, %d K idarray\n", data->incoredatalen/1024, repo->idarraysize / (int)(1024/sizeof(Id)));