fix unbalanced ===
[platform/upstream/libsolv.git] / doc / libsolv-bindings.txt
1 Libsolv-Bindings(3)
2 ===================
3 :man manual: LIBSOLV
4 :man source: libsolv
5
6
7 Name
8 ----
9 libsolv-bindings - access libsolv from perl/python/ruby
10
11
12 Description
13 -----------
14 Libsolv's language bindings offer an abstract, object orientated interface
15 to the library. The supported languages are currently perl, python, and ruby.
16 All example code (except in the specifics sections, of course) lists first
17 the ``C-ish'' interface, then the syntax for perl, python, and ruby (in that
18 order).
19
20
21 Perl Specifics
22 --------------
23 Libsolv's perl bindings can be loaded with the following statement:
24
25         use solv;
26
27 Objects are either created by calling the new() method on a class or they
28 are returned by calling methods on other objects.
29
30         my $pool = solv::Pool->new();
31         my $repo = $pool->add_repo("my_first_repo");
32
33 Swig encapsulates all objects as tied hashes, thus the attributes can be
34 accessed by treating the object as standard hash reference:
35
36         $pool->{appdata} = 42;
37         printf "appdata is %d\n", $pool->{appdata};
38
39 A special exception to this are iterator objects, they are encapsulated as
40 tied arrays so that it is possible to iterate with a for() statement:
41
42         my $iter = $pool->solvables_iter();
43         for my $solvable (@$iter) { ... };
44
45 As a downside of this approach, iterator objects cannot have attributes.
46
47 If an array needs to be passed to a method it is usually done by reference,
48 if a method returns an array it returns it on the stack:
49
50         my @problems = $solver->solve(\@jobs);
51
52 Due to a bug in swig, stringification does not work for libsolv's objects.
53 Instead, you have to call the object's str() method.
54
55         print $dep->str() . "\n";
56
57 Swig implements all constants as numeric variables (instead of the more
58 natural constant subs), so don't forget the leading ``$'' when accessing a
59 constant. Also do not forget to prepend the namespace of the constant:
60
61         $pool->set_flag($solv::Pool::POOL_FLAG_OBSOLETEUSESCOLORS, 1);
62         
63
64 Python Specifics
65 ----------------
66 The python bindings can be loaded with:
67
68         import solv
69
70 Objects are either created by calling the constructor method for a class or they
71 are returned by calling methods on other objects.
72
73         pool = solv.Pool()
74         repo = pool.add_repo("my_first_repo")
75
76 Attributes can be accessed as usual:
77
78         pool.appdata = 42
79         print "appdata is %d" % (pool.appdata)
80
81 Iterators also work as expected:
82
83         for solvable in pool.solvables_iter():
84
85 Arrays are passed and returned as list objects:
86
87         jobs = []
88         problems = solver.solve(jobs)
89
90 The bindings define stringification for many classes, some also have a
91 __repr__ method to ease debugging.
92
93         print dep
94         print repr(repo)
95
96 Constants are attributes of the classes:
97
98         pool.set_flag(solv.Pool.POOL_FLAG_OBSOLETEUSESCOLORS, 1);
99
100
101 Ruby Specifics
102 --------------
103 The ruby bindings can be loaded with:
104
105         require 'solv'
106
107 Objects are either created by calling the new method on a class or they
108 are returned by calling methods on other objects. Note that all classes start
109 with an uppercase letter in ruby, so the class is called ``Solv''.
110
111         pool = Solv::Pool.new
112         repo = pool.add_repo("my_first_repo")
113
114 Attributes can be accessed as usual:
115
116         pool.appdata = 42
117         puts "appdata is #{pool.appdata}"
118
119 Iterators also work as expected:
120
121         for solvable in pool.solvables_iter() do ...
122
123 Arrays are passed and returned as array objects:
124
125         jobs = []
126         problems = solver.solve(jobs)
127
128 Most classes define a to_s method, so objects can be easily stringified.
129 Many also define an inspect() method.
130
131         puts dep
132         puts repo.inspect
133
134 Constants live in the namespace of the class they belong to:
135
136         pool.set_flag(Solv::Pool::POOL_FLAG_OBSOLETEUSESCOLORS, 1);
137
138 Note that boolean methods have an added trailing ``?'', to be consistent with
139 other ruby modules:
140
141         puts "empty repo" if repo.isempty?
142
143
144 The Solv Class
145 --------------
146 This is the main namespace of the library, you cannot create objects of this
147 type but it contains some useful constants.
148
149 === CONSTANTS ===
150
151 Relational flag constants, the first three can be or-ed together
152
153 *REL_LT*::
154 the ``less than'' bit
155
156 *REL_EQ*::
157 the ``equals to'' bit
158
159 *REL_GT*::
160 the ``greater then'' bit
161
162 *REL_ARCH*::
163 used for relations that describe an extra architecture filter, the
164 version part of the relation is interpreted as architecture.
165
166 Special Solvable Ids
167
168 *SOLVID_META*::
169 Access the meta section of a repository or repodata area. This is
170 like an extra Solvable that has the Id SOLVID_META.
171
172 *SOLVID_POS*::
173 Use the data position stored inside of the pool instead of accessing
174 some solvable by Id. The bindings have the Datapos objects as an
175 abstraction mechanism, so you do not need this constant.
176
177 Constant string Ids
178   
179 *ID_NULL*::
180 Always zero
181
182 *ID_EMPTY*::
183 Always one, describes the empty string
184
185 *SOLVABLE_NAME*::
186 The keyname Id of the name of the solvable.
187
188 *...*::
189 see the libsolv-constantids manpage for a list of fixed Ids.
190
191
192 The Pool Class
193 --------------
194 The pool is libsolv's central resource manager. A pool consists of Solvables,
195 Repositories, Dependencies, each indexed by Ids.
196
197 === CLASS METHODS ===
198
199         Pool *Pool()
200         my $pool = solv::Pool->new();
201         pool = solv.Pool()
202         pool = Solv::Pool.new()
203
204 Create a new pool instance. In most cases you just need
205 one pool.
206
207 === ATTRIBUTES ===
208
209         void *appdata;                  /* read/write */
210         $pool->{appdata}
211         pool.appdata
212         pool.appdata
213
214 Application specific data that may be used in any way by the code using the
215 pool.
216
217         Solvable solvables[];           /* read only */
218         my $solvable = $pool->{solvables}->[$solvid];
219         solvable = pool.solvables[solvid]
220         solvable = pool.solvables[solvid]
221
222 Look up a Solvable by its id.
223
224         Repo repos[];                   /* read only */
225         my $repo = $pool->{repos}->[$repoid];
226         repo = pool.repos[repoid]
227         repo = pool.repos[repoid]
228
229 Look up a Repository by its id.
230
231         Repo *installed;                /* read/write */
232         $pool->{installed} = $repo;
233         pool.installed = repo
234         pool.installed = repo
235
236 Define which repository contains all the installed packages.
237
238         const char *errstr;             /* read only */
239         my $err = $pool->{errstr};
240         err = pool.errstr
241         err = pool.errstr
242
243 Return the last error string that was stored in the pool.
244
245 === CONSTANTS ===
246
247 *POOL_FLAG_PROMOTEEPOCH*::
248 Promote the epoch of the providing dependency to the requesting
249 dependency if it does not contain an epoch. Used at some time
250 in old rpm versions, modern systems should never need this.
251
252 *POOL_FLAG_FORBIDSELFCONFLICTS*::
253 Disallow the installation of packages that conflict with themselves.
254 Debian always allows self-conflicting packages, rpm used to forbid
255 them but switched to also allowing them recently.
256
257 *POOL_FLAG_OBSOLETEUSESPROVIDES*::
258 Make obsolete type dependency match against provides instead of
259 just the name and version of packages. Very old versions of rpm
260 used the name/version, then it got switched to provides and later
261 switched back again to just name/version.
262
263 *POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES*::
264 An implicit obsoletes is the internal mechanism to remove the
265 old package on an update. The default is to remove all packages
266 with the same name, rpm-5 switched to also removing packages
267 providing the same name.
268
269 *POOL_FLAG_OBSOLETEUSESCOLORS*::
270 Rpm's multilib implementation (used in RedHat and Fedora)
271 distinguishes between 32bit and 64bit packages (the terminology
272 is that they have a different color). If obsoleteusescolors is
273 set, packages with different colors will not obsolete each other.
274
275 *POOL_FLAG_IMPLICITOBSOLETEUSESCOLORS*::
276 Same as POOL_FLAG_OBSOLETEUSESCOLORS, but used to find out if
277 packages of the same name can be installed in parallel. For
278 current Fedora systems, POOL_FLAG_OBSOLETEUSESCOLORS should be
279 false and POOL_FLAG_IMPLICITOBSOLETEUSESCOLORS should be true
280 (this is the default if FEDORA is defined when libsolv is compiled).
281
282 *POOL_FLAG_NOINSTALLEDOBSOLETES*::
283 New versions of rpm consider the obsoletes of installed packages
284 when checking for dependency, thus you may not install a package
285 that is obsoleted by some other installed package, unless you
286 also erase the other package.
287
288 *POOL_FLAG_HAVEDISTEPOCH*::
289 Mandriva added a new field called distepoch that gets checked in
290 version comparison if the epoch/version/release of two packages
291 are the same.
292
293 *POOL_FLAG_NOOBSOLETESMULTIVERSION*::
294 If a package is installed in multiversionmode, rpm used to ignore
295 both the implicit obsoletes and the obsolete dependency of a
296 package. This was changed to ignoring just the implicit obsoletes,
297 thus you may install multiple versions of the same name, but
298 obsoleted packages still get removed.
299
300 *POOL_FLAG_ADDFILEPROVIDESFILTERED*::
301 Make the addfileprovides method only add files from the standard
302 locations (i.e. the ``bin'' and ``etc'' directories). This is
303 useful if you have only few packages that use non-standard file
304 dependencies, but you still wand the fast speed that addfileprovides()
305 generates.
306
307 === METHODS ===
308
309         void free()
310         $pool->free();
311         pool.free()
312         pool.free()
313
314 Free a pool. This is currently done with a method instead of relying on
315 reference counting or garbage collection because it's hard to track every
316 reference to a pool.
317
318         void setdebuglevel(int level)
319         $pool->setdebuglevel($level);
320         pool.setdebuglevel(level)
321         pool.setdebuglevel(level)
322
323 Set the debug level. A value of zero means no debug output, the higher the
324 value, the more output is generated.
325
326         int set_flag(int flag, int value)
327         my $oldvalue = $pool->set_flag($flag, $value);
328         oldvalue = pool.set_flag(flag, value)
329         oldvalue = pool.set_flag(flag, value)
330
331         int get_flag(int flag)
332         my $value = $pool->get_flag($flag);
333         value = pool.get_flag(flag)
334         value = pool.get_flag(flag)
335
336 Set/get a pool specific flag. The flags define how the system works, e.g. how
337 the package manager treats obsoletes. The default flags should be sane for most
338 applications, but in some cases you may want to tweak a flag, for example if
339 you want to solv package dependencies for some other system than yours.
340
341         void set_rootdir(const char *rootdir)
342         $pool->set_rootdir(rootdir);
343         pool.set_rootdir(rootdir)
344         pool.set_rootdir(rootdir)
345
346         const char *get_rootdir()
347         my $rootdir = $pool->get_rootdir();
348         rootdir = pool.get_rootdir()
349         rootdir = pool.get_rootdir()
350
351 Set/get the rootdir to use. This is useful if you want package management
352 to work only in some directory, for example if you want to setup a chroot
353 jail. Note that the rootdir will only be prepended to file paths if the
354 *REPO_USE_ROOTDIR* flag is used.
355
356         void setarch(const char *arch = 0)
357         $pool->setarch();
358         pool.setarch()
359         pool.setarch()
360
361 Set the architecture for your system. The architecture is used to determine
362 which packages are installable. It defaults to the result of ``uname -m''.
363
364         Repo add_repo(const char *name)
365         $repo = $pool->add_repo($name);
366         repo = pool.add_repo(name)
367         repo = pool.add_repo(name)
368
369 Add a Repository with the specified name to the pool. The repository is empty
370 on creation, use the repository methods to populate it with packages.
371
372         Repoiterator repos_iter()
373         for my $repo (@{$pool->repos_iter()})
374         for repo in pool.repos_iter():
375         for repo in pool.repos_iter()
376
377 Iterate over the existing repositories.
378
379         Solvableiterator solvables_iter()
380         for my $solvable (@{$pool->solvables_iter()})
381         for solvable in pool.solvables_iter():
382         for solvable in pool.solvables_iter()
383
384 Iterate over the existing solvables.
385
386         Dep Dep(const char *str, bool create = 1)
387         my $dep = $pool->Dep($string);
388         dep = pool.Dep(string)
389         dep = pool.Dep(string)
390
391 Create an object describing a string or dependency. If the string is currently
392 not in the pool and _create_ is false, *undef*/*None*/*nil* is returned.
393
394         void addfileprovides()
395         $pool->addfileprovides();
396         pool.addfileprovides()
397         pool.addfileprovides()
398
399         Id *addfileprovides_queue()
400         my @ids = $pool->addfileprovides_queue();
401         ids = pool.addfileprovides_queue()
402         ids = pool.addfileprovides_queue()
403
404 Some package managers like rpm allow dependencies on files contained in other
405 packages. To allow libsolv to deal with those dependencies in an efficient way,
406 you need to call the addfileprovides method after creating and reading all
407 repositories. This method will scan all dependency for file names and than scan
408 all packages for matching files. If a filename has been matched, it will be
409 added to the provides list of the corresponding package. The
410 addfileprovides_queue variant works the same way but returns an array
411 containing all file dependencies. This information can be stored in the
412 meta section of the repositories to speed up the next time the
413 repository is loaded and addfileprovides is called.
414
415         void createwhatprovides()
416         $pool->createwhatprovides();
417         pool.createwhatprovides()
418         pool.createwhatprovides()
419
420 Create the internal ``whatprovides'' hash over all of the provides of all
421 packages. This method must be called before doing any lookups on provides.
422 It's encouraged to do it right after all repos are set up, usually right after
423 the call to addfileprovides().
424
425         Solvable *whatprovides(DepId dep)
426         my @solvables = $pool->whatprovides($dep);
427         solvables = pool.whatprovides(dep)
428         solvables = pool.whatprovides(dep)
429
430 Return all solvables that provide the specified dependency. You can use either
431 a Dep object or an simple Id as argument.
432
433         Id *matchprovidingids(const char *match, int flags)
434         my @ids = $pool->matchprovidingids($match, $flags);
435         ids = pool.matchprovidingids(match, flags)
436         ids = pool.matchprovidingids(match, flags)
437
438 Search the names of all provides and return the ones matching the specified
439 string. See the Dataiterator class for the allowed flags.
440
441         Id towhatprovides(Id *ids)
442         my $offset = $pool->towhatprovides(\@ids);
443         offset = pool.towhatprovides(ids)
444         offset = pool.towhatprovides(ids)
445
446 ``Internalize'' an array containing Ids. The returned value can be used to
447 create solver jobs working on a specific set of packages. See the Solver class
448 for more information.
449
450         bool isknownarch(DepId id)
451         my $bool = $pool->isknownarch($id);
452         bool = pool.isknownarch(id)
453         bool = pool.isknownarch?(id)
454
455 Return true if the specified Id describes a known architecture.
456
457         Solver Solver()
458         my $solver = $pool->Solver();
459         solver = pool.Solver()
460         solver = pool.Solver()
461
462 Create a new solver object.
463
464         Job Job(int how, Id what)
465         my $job = $pool->Job($how, $what);
466         job = pool.Job(how, what)
467         job = pool.Job(how, what)
468
469 Create a new Job object. Kind of low level, in most cases you would use a
470 Selection or Dep job constructor instead.
471
472         Selection Selection()
473         my $sel = $pool->Selection();
474         sel = pool.Selection()
475         sel = pool.Selection()
476
477 Create an empty selection. Useful as a starting point for merging other
478 selections.
479
480         Selection Selection_all()
481         my $sel = $pool->Selection_all();
482         sel = pool.Selection_all()
483         sel = pool.Selection_all()
484         
485 Create a selection containing all packages. Useful as starting point for
486 intersecting other selections or for update/distupgrade jobs.
487
488         Selection select(const char *name, int flags)
489         my $sel = $pool->select($name, $flags);
490         sel = pool.select(name, flags)
491         sel = pool.select(name, flags)
492
493 Create a selection by matching packages against the specified string. See the
494 Selection class for a list of flags and how to create solver jobs from a
495 selection.
496
497         void setpooljobs(Jobs *jobs)
498         $pool->setpooljobs(\@jobs);
499         pool.setpooljobs(jobs)
500         pool.setpooljobs(jobs)
501
502         Job *getpooljobs()
503         @jobs = $pool->getpooljobs();
504         jobs = pool.getpooljobs()
505         jobs = pool.getpooljobs()
506
507 Get/Set fixed jobs stored in the pool. Those jobs are automatically appended to
508 all solver jobs, they are meant for fixed configurations like which packages
509 can be multiversion installed, which packages were userinstalled or must not be
510 erased.
511
512         void set_loadcallback(Callable *callback)
513         $pool->setloadcallback(\&callbackfunction);
514         pool.setloadcallback(callbackfunction)
515         pool.setloadcallback { |repodata| ... }
516
517 Set the callback function called when repository metadata needs to be loaded on
518 demand. To make use of this feature, you need to create repodata stubs that
519 tell the library which data is available but not loaded. If later on the data
520 needs to be accessed, the callback function is called with a repodata argument.
521 You can then load the data (maybe fetching it first from an remote server).
522 The callback should return true if the data has been made available.
523
524 === DATA RETRIEVAL METHODS ===
525
526 In the following functions, the _keyname_ argument describes what to retrieve.
527 For the standard cases you can use the available Id constants. For example,
528
529         $solv::SOLVABLE_SUMMARY
530         solv.SOLVABLE_SUMMARY
531         Solv::SOLVABLE_SUMMARY
532
533 selects the ``Summary'' entry of a solvable. The _solvid_ argument selects the
534 desired solvable by Id.
535
536         const char *lookup_str(Id solvid, Id keyname)
537         my $string = $pool->lookup_str($solvid, $keyname);
538         string = pool.lookup_str(solvid, keyname)
539         string = pool.lookup_str(solvid, keyname)
540
541         Id lookup_id(Id solvid, Id keyname)
542         my $id = $pool->lookup_id($solvid, $keyname);
543         id = pool.lookup_id(solvid, keyname)
544         id = pool.lookup_id(solvid, keyname)
545
546         unsigned long long lookup_num(Id solvid, Id keyname, unsigned long long notfound = 0)
547         my $num = $pool->lookup_num($solvid, $keyname);
548         num = pool.lookup_num(solvid, keyname)
549         num = pool.lookup_num(solvid, keyname)
550
551         bool lookup_void(Id solvid, Id keyname)
552         my $bool = $pool->lookup_void($solvid, $keyname);
553         bool = pool.lookup_void(solvid, keyname)
554         bool = pool.lookup_void(solvid, keyname)
555
556         Id *lookup_idarray(Id solvid, Id keyname)
557         my @ids = $pool->lookup_idarray($solvid, $keyname);
558         ids = pool.lookup_idarray(solvid, keyname)
559         ids = pool.lookup_idarray(solvid, keyname)
560
561         Chksum lookup_checksum(Id solvid, Id keyname)
562         my $chksum = $pool->lookup_checksum($solvid, $keyname);
563         chksum = pool.lookup_checksum(solvid, keyname)
564         chksum = pool.lookup_checksum(solvid, keyname)
565
566 Lookup functions. Return the data element stored in the specified solvable.
567 You should probably use the methods of the Solvable class instead.
568
569         Dataiterator Dataiterator(Id solvid, Id keyname, const char *match, int flags)
570         my $di = $pool->Dataiterator($solvid, $keyname, $match, $flags);
571         di = pool.Dataiterator(solvid, keyname, match, flags)
572         di = pool.Dataiterator(solvid, keyname, match, flags)
573
574         for my $d (@$di)
575         for d in di:
576         for d in di
577
578 Iterate over the matching data elements. See the Dataiterator class for more
579 information.
580
581 === ID METHODS ===
582
583 The following methods deal with Ids, i.e. integers representing objects in the
584 pool. They are considered ``low level'', in most cases you would not use them
585 but instead the object orientated methods.
586
587         Repo id2repo(Id id)
588         $repo = $pool->id2repo($id);
589         repo = pool.id2repo(id)
590         repo = pool.id2repo(id)
591
592 Lookup an existing Repository by id. You can also do this by using the *repos*
593 attribute.
594
595         Solvable id2solvable(Id id)
596         $solvable = $pool->id2solvable($id);
597         solvable = pool.id2solvable(id)
598         solvable = pool.id2solvable(id)
599
600 Lookup an existing Repository by id. You can also do this by using the
601 *solvables* attribute.
602
603         const char *solvid2str(Id id)
604         my $str = $pool->solvid2str($id);
605         str = pool.solvid2str(id)
606         str = pool.solvid2str(id)
607
608 Return a string describing the Solvable with the specified id. The string
609 consists of the name, version, and architecture of the Solvable.
610
611         Id str2id(const char *str, bool create = 1)
612         my $id = pool->str2id($string);
613         id = pool.str2id(string)
614         id = pool.str2id(string)
615
616         const char *id2str(Id id)
617         $string = pool->id2str($id);
618         string = pool.id2str(id)
619         string = pool.id2str(id)
620
621 Convert a string into an Id and back. If the string is currently not in the
622 pool and _create_ is false, zero is returned.
623
624         Id rel2id(Id name, Id evr, int flags, bool create = 1)
625         my $id = pool->rel2id($nameid, $evrid, $flags);
626         id = pool.rel2id(nameid, evrid, flags)
627         id = pool.rel2id(nameid, evrid, flags)
628
629 Create a ``relational'' dependency. Such dependencies consist of a name part,
630 the _flags_ describing the relation, and a version part. The flags are:
631
632         $solv::REL_EQ | $solv::REL_GT | $solv::REL_LT
633         solv.REL_EQ | solv.REL_GT | solv.REL_LT
634         Solv::REL_EQ | Solv::REL_GT | Solv::REL_LT
635
636 Thus, if you want a ``\<='' relation, you would use *REL_LT | REL_EQ*.
637
638         Id id2langid(Id id, const char *lang, bool create = 1)
639         my $id = $pool->id2langid($id, $language);
640         id = pool.id2langid(id, language)
641         id = pool.id2langid(id, language)
642
643 Create a language specific Id from some other id. This function simply converts
644 the id into a string, appends a dot and the specified language to the string
645 and converts the result back into an Id.
646
647         const char *dep2str(Id id)
648         $string = pool->dep2str($id);
649         string = pool.dep2str(id)
650         string = pool.dep2str(id)
651
652 Convert a dependency id into a string. If the id is just a string, this
653 function has the same effect as id2str(). For relational dependencies, the
654 result is the correct ``name relation evr'' string.
655
656
657 The Dependency Class
658 --------------------
659 The dependency class is an object orientated way to work with strings and
660 dependencies. Internally, dependencies are represented as Ids, i.e. simple
661 numbers. Dependency objects can be constructed by using the Pool's Dep()
662 method.
663
664 === ATTRIBUTES ===
665
666         Pool *pool;             /* read only */
667         $dep->{pool}
668         dep.pool
669         dep.pool
670
671 Back reference to the pool this dependency belongs to.
672
673         Id id;          /* read only */
674         $dep->{id}
675         dep.id
676         dep.id
677
678 The id of this dependency.
679
680 == Methods ==
681
682         Dep Rel(int flags, DepId evrid, bool create = 1)
683         my $reldep = $dep->Rel($flags, $evrdep);
684         reldep = dep.Rel(flags, evrdep)
685         reldep = dep.Rel(flags, evrdep)
686
687 Create a relational dependency from to string dependencies and a flags
688 argument. See the pool's rel2id method for a description of the flags.
689
690         Selection Selection_name(int setflags = 0)
691         my $sel = $dep->Selection_name();
692         sel = dep.Selection_name()
693         sel = dep.Selection_name()
694
695 Create a Selection from a dependency. The selection consists of all packages
696 that have a name equal to the dependency. If the dependency is of a relational
697 type, the packages version must also fulfill the dependency.
698
699         Selection Selection_provides(int setflags = 0)
700         my $sel = $dep->Selection_provides();
701         sel = dep.Selection_provides()
702         sel = dep.Selection_provides()
703
704 Create a Selection from a dependency. The selection consists of all packages
705 that have at least one provides matching the dependency.
706
707         const char *str()
708         my $str = $dep->str();
709         str = $dep.str()
710         str = $dep.str()
711
712 Return a string describing the dependency.
713
714         <stringification>
715         my $str = $dep->str;
716         str = str(dep)
717         str = dep.to_s
718
719 Same as calling the str() method.
720
721         <equality>
722         if ($dep1 == $dep2)
723         if dep1 == dep2:
724         if dep1 == dep2
725
726 The dependencies are equal if they are part of the same pool and have the same
727 ids.
728
729
730 The Repository Class
731 --------------------
732 A Repository describes a group of packages, normally coming from the same
733 source. Repositories are created by the Pool's add_repo() method.
734
735 === ATTRIBUTES ===
736
737         Pool *pool;                     /* read only */
738         $repo->{pool}
739         repo.pool
740         repo.pool
741
742 Back reference to the pool this dependency belongs to.
743
744         Id id;                          /* read only */
745         $repo->{id}
746         repo.id
747         repo.id
748
749 The id of the repository.
750
751         const char *name;               /* read/write */
752         $repo->{name}
753         repo.name
754         repo.name
755         
756 The repositories name. To libsolv, the name is just a string with no specific
757 meaning.
758
759         int priority;                   /* read/write */
760         $repo->{priority}
761         repo.priority
762         repo.priority
763
764 The priority of the repository. A higher number means that packages of this
765 repository will be chosen over other repositories, even if they have a greater
766 package version.
767
768         int subpriority;                /* read/write */
769         $repo->{subpriority}
770         repo.subpriority
771         repo.subpriority
772
773 The sub-priority of the repository. This value is compared when the priorities
774 of two repositories are the same. It is useful to make the library prefer
775 on-disk repositories to remote ones.
776
777         int nsolvables;                 /* read only */
778         $repo->{nsolvables}
779         repo.nsolvables
780         repo.nsolvables
781
782 The number of solvables in this repository.
783
784         void *appdata;                  /* read/write */
785         $repo->{appdata}
786         repo.appdata
787         repo.appdata
788
789 Application specific data that may be used in any way by the code using the
790 repository.
791
792         Datapos *meta;                  /* read only */
793         $repo->{meta}
794         repo.meta
795         repo.meta
796
797 Return a Datapos object of the repodata's metadata. You can use the lookup
798 methods of the Datapos class to lookup metadata attributes, like the repository
799 timestamp.
800
801 === CONSTANTS ===
802
803 *REPO_REUSE_REPODATA*::
804 Reuse the last repository data area (``repodata'') instead of creating a
805 new one.
806
807 *REPO_NO_INTERNALIZE*::
808 Do not internalize the added repository data. This is useful if
809 you plan to add more data because internalization is a costly
810 operation.
811
812 *REPO_LOCALPOOL*::
813 Use the repodata's pool for Id storage instead of the global pool. Useful
814 if you don't want to pollute the global pool with many unneeded ids, like
815 when storing the filelist.
816
817 *REPO_USE_LOADING*::
818 Use the repodata that is currently being loaded instead of creating a new
819 one. This only makes sense if used in a load callback.
820
821 *REPO_EXTEND_SOLVABLES*::
822 Do not create new solvables for the new data, but match existing solvables
823 and add the data to them. Repository metadata is often split into multiple
824 parts, with one primary file describing all packages and other parts
825 holding information that is normally not needed, like the changelog.
826
827 *REPO_USE_ROOTDIR*::
828 Prepend the pool's rootdir to the path when doing file operations.
829
830 *REPO_NO_LOCATION*::
831 Do not add a location element to the solvables. Useful if the solvables
832 are not in the final position, so you can add the correct location later
833 in your code.
834
835 *SOLV_ADD_NO_STUBS*::
836 Do not create stubs for repository parts that can be downloaded on demand.
837
838 *SUSETAGS_RECORD_SHARES*::
839 This is specific to the add_susetags() method. Susetags allows to refer to
840 already read packages to save disk space. If this data sharing needs to
841 work over multiple calls to add_susetags, you need to specify this flag so
842 that the share information is made available to subsequent calls.
843
844 === METHODS ===
845
846         void free(bool reuseids = 0)
847         $repo->free();
848         repo.free()
849         repo.free()
850
851 Free the repository and all solvables it contains. If _reuseids_ is set to
852 true, the solvable ids and the repository id may be reused by the library when
853 added new solvables. Thus you should leave it false if you are not sure that
854 somebody holds a reference.
855
856         void empty(bool reuseids = 0)
857         $repo->empty();
858         repo.empty()
859         repo.empty()
860
861 Free all the solvables in a repository. The repository will be empty after this
862 call. See the free() method for the meaning of _reuseids_.
863
864         bool isempty()
865         $repo->isempty()
866         repo.empty()
867         repo.empty?
868
869 Return true if there are no solvables in this repository.
870
871         void internalize()
872         $repo->internalize();
873         repo.internalize()
874         repo.internalize()
875
876 Internalize added data. Data must be internalized before it is available to the
877 lookup and data iterator functions.
878
879         bool write(FILE *fp)
880         $repo->write($fp)
881         repo.write(fp)
882         repo.write(fp)
883
884 Write a repo as a ``solv'' file. These files can be read very fast and thus are
885 a good way to cache repository data. Returns false if there was some error
886 writing the file.
887
888         Solvableiterator solvables_iter()
889         for my $solvable (@{$repo->solvables_iter()})
890         for solvable in repo.solvables_iter():
891         for solvable in repo.solvables_iter()
892
893 Iterate over all solvables in a repository.
894
895         Repodata add_repodata(int flags = 0)
896         my $repodata = $repo->add_repodata();
897         repodata = repo.add_repodata()
898         repodata = repo.add_repodata()
899
900 Add a new repodata area to the repository. This is normally automatically
901 done by the repo_add methods, so you need this method only in very
902 rare circumstances.
903
904         void create_stubs()
905         $repo->create_stubs();
906         repo.create_stubs()
907         repo.create_stubs()
908
909 Calls the create_stubs() repodata method for the last repodata of the
910 repository.
911
912         bool iscontiguous()
913         $repo->iscontiguous()
914         repo.iscontiguous()
915         repo.iscontiguous?
916
917 Return true if the solvables of this repository are all in a single block with
918 no holes, i.e. they have consecutive ids.
919
920         Repodata first_repodata()
921         my $repodata = $repo->first_repodata();
922         repodata = repo.first_repodata()
923         repodata = repo.first_repodata()
924
925 Checks if all repodatas but the first repodata are extensions, and return the
926 first repodata if this is the case. Useful if you want to do a store/retrieve
927 sequence on the repository to reduce the memory using and enable paging, as
928 this does not work if the repository contains multiple non-extension repodata
929 areas.
930
931         Selection Selection(int setflags = 0)
932         my $sel = $repo->Selection();
933         sel = repo.Selection()
934         sel = repo.Selection()
935
936 Create a Selection consisting of all packages in the repository.
937
938         Dataiterator Dataiterator(Id p, Id key, const char *match, int flags)
939         my $di = $repo->Dataiterator($solvid, $keyname, $match, $flags);
940         di = repo.Dataiterator(solvid, keyname, match, flags)
941         di = repo.Dataiterator(solvid, keyname, match, flags)
942
943         for my $d (@$di)
944         for d in di:
945         for d in di
946
947 Iterate over the matching data elements in this repository. See the
948 Dataiterator class for more information.
949
950         <stringification>
951         my $str = $repo->str;
952         str = str(repo)
953         str = repo.to_s
954
955 Return the name of the repository, or "Repo#<id>" if no name is set.
956
957         <equality>
958         if ($repo1 == $repo2)
959         if repo1 == repo2:
960         if repo1 == repo2
961
962 Two repositories are equal if they belong to the same pool and have the same id.
963
964 === DATA ADD METHODS ===
965
966         Solvable add_solvable()
967         $repo->add_solvable();
968         repo.add_solvable()
969         repo.add_solvable()
970
971 Add a single empty solvable to the repository. Returns a Solvable object, see
972 the Solvable class for more information.
973
974         bool add_solv(const char *name, int flags = 0)
975         $repo->add_solv($name);
976         repo.add_solv(name)
977         repo.add_solv(name)
978
979         bool add_solv(FILE *fp, int flags = 0)
980         $repo->add_solv($fp);
981         repo.add_solv(fp)
982         repo.add_solv(fp)
983
984 Read a ``solv'' file and add its contents to the repository. These files can be
985 written with the write() method and are normally used as fast cache for
986 repository metadata.
987
988         bool add_rpmdb(int flags = 0)
989         $repo->add_rpmdb();
990         repo.add_rpmdb()
991         repo.add_rpmdb()
992
993         bool add_rpmdb_reffp(FILE *reffp, int flags = 0)
994         $repo->add_rpmdb_reffp($reffp);
995         repo.add_rpmdb_reffp(reffp)
996         repo.add_rpmdb_reffp(reffp)
997
998 Add the contents of the rpm database to the repository. If a solv file
999 containing an old version of the database is available, it can be passed as
1000 reffp to speed up reading.
1001
1002         Solvable add_rpm(const char *filename, int flags = 0)
1003         my $solvable = $repo->add_rpm($filename);
1004         solvable = repo.add_rpm(filename)
1005         solvable = repo.add_rpm(filename)
1006
1007 Add the metadata of a single rpm package to the repository.
1008
1009         bool add_rpmdb_pubkeys(int flags = 0)
1010         $repo->add_rpmdb_pubkeys();
1011         repo.add_rpmdb_pubkeys()
1012         repo.add_rpmdb_pubkeys()
1013
1014 Add all pubkeys contained in the rpm database to the repository. Note that
1015 newer rpm versions also allow to store the pubkeys in some directory instead
1016 of the rpm database.
1017
1018         Solvable add_pubkey(const char *keyfile, int flags = 0)
1019         my $solvable = $repo->add_pubkey($keyfile);
1020         solvable = repo.add_pubkey(keyfile)
1021         solvable = repo.add_pubkey(keyfile)
1022
1023 Add a pubkey from a file to the repository.
1024
1025         bool add_rpmmd(FILE *fp, const char *language, int flags = 0)
1026         $repo->add_rpmmd($fp, undef);
1027         repo.add_rpmmd(fp, None)
1028         repo.add_rpmmd(fp, nil)
1029
1030 Add metadata stored in the "rpm-md" format (i.e. from files in the ``repodata''
1031 directory) to a repository. Supported files are "primary", "filelists",
1032 "other", "suseinfo". Do not forget to specify the *REPO_EXTEND_SOLVABLES* for
1033 extension files like "filelists" and "other". Use the _language_ parameter if
1034 you have language extension files, otherwise simply use a *undef*/*None*/*nil*
1035 parameter.
1036
1037         bool add_repomdxml(FILE *fp, int flags = 0)
1038         $repo->add_repomdxml($fp);
1039         repo.add_repomdxml(fp)
1040         repo.add_repomdxml(fp)
1041
1042 Add the repomd.xml meta description from the "rpm-md" format to the repository.
1043 This file contains information about the repository like keywords, and also a
1044 list of all database files with checksums. The data is added the the "meta"
1045 section of the repository, i.e. no package gets created.
1046
1047         bool add_updateinfoxml(FILE *fp, int flags = 0)
1048         $repo->add_updateinfoxml($fp);
1049         repo.add_updateinfoxml(fp)
1050         repo.add_updateinfoxml(fp)
1051
1052 Add the updateinfo.xml file containing available maintenance updates to the
1053 repository. All updates are created as special packages that have a "patch:"
1054 prefix in their name.
1055
1056         bool add_deltainfoxml(FILE *fp, int flags = 0)
1057         $repo->add_deltainfoxml($fp);
1058         repo.add_deltainfoxml(fp)
1059         repo.add_deltainfoxml(fp)
1060
1061 Add the deltainfo.xml file (also called prestodelta.xml) containing available
1062 delta-rpms to the repository. The data is added to the "meta" section, i.e. no
1063 package gets created.
1064
1065         bool add_debdb(int flags = 0)
1066         $repo->add_debdb();
1067         repo.add_debdb()
1068         repo.add_debdb()
1069
1070 Add the contents of the debian installed package database to the repository.
1071
1072         bool add_debpackages(FILE *fp, int flags = 0)
1073         $repo->add_debpackages($fp);
1074         repo.add_debpackages($fp)
1075         repo.add_debpackages($fp)
1076
1077 Add the contents of the debian repository metadata (the "packages" file)
1078 to the repository.
1079
1080         Solvable add_deb(const char *filename, int flags = 0)
1081         my $solvable = $repo->add_deb($filename);
1082         solvable = repo.add_deb(filename)
1083         solvable = repo.add_deb(filename)
1084
1085 Add the metadata of a single deb package to the repository.
1086
1087         bool add_mdk(FILE *fp, int flags = 0)
1088         $repo->add_mdk($fp);
1089         repo.add_mdk(fp)
1090         repo.add_mdk(fp)
1091
1092 Add the contents of the mageia/mandriva repository metadata (the
1093 "synthesis.hdlist" file) to the repository.
1094
1095         bool add_mdk_info(FILE *fp, int flags = 0)
1096         $repo->add_mdk($fp);
1097         repo.add_mdk(fp)
1098         repo.add_mdk(fp)
1099
1100 Extend the packages from the synthesis file with the info.xml and files.xml
1101 data. Do not forget to specify *REPO_EXTEND_SOLVABLES*.
1102
1103         bool add_arch_repo(FILE *fp, int flags = 0)
1104         $repo->add_arch_repo($fp);
1105         repo.add_arch_repo(fp)
1106         repo.add_arch_repo(fp)
1107
1108 Add the contents of the archlinux repository metadata (the ".db.tar" file) to
1109 the repository.
1110
1111         bool add_arch_local(const char *dir, int flags = 0)
1112         $repo->add_arch_local($dir);
1113         repo.add_arch_local(dir)
1114         repo.add_arch_local(dir)
1115
1116 Add the contents of the archlinux installed package database to the repository.
1117 The _dir_ parameter is usually set to "/var/lib/pacman/local".
1118
1119         bool add_content(FILE *fp, int flags = 0)
1120         $repo->add_content($fp);
1121         repo.add_content(fp)
1122         repo.add_content(fp)
1123
1124 Add the ``content'' meta description from the susetags format to the repository.
1125 This file contains information about the repository like keywords, and also
1126 a list of all database files with checksums. The data is added the the "meta"
1127 section of the repository, i.e. no package gets created.
1128
1129         bool add_susetags(FILE *fp, Id defvendor, const char *language, int flags = 0)
1130         $repo->add_susetags($fp, $defvendor, $language);
1131         repo.add_susetags(fp, defvendor, language)
1132         repo.add_susetags(fp, defvendor, language)
1133
1134 Add repository metadata in the susetags format to the repository. Like with
1135 add_rpmmd, you can specify a language if you have language extension files. The
1136 _defvendor_ parameter provides a default vendor for packages with missing
1137 vendors, it is usually provided in the content file.
1138
1139         bool add_products(const char *dir, int flags = 0)
1140         $repo->add_products($dir);
1141         repo.add_products(dir)
1142         repo.add_products(dir)
1143
1144 Add the installed SUSE products database to the repository. The _dir_ parameter
1145 is usually "/etc/products.d".
1146
1147
1148 The Solvable Class
1149 ------------------
1150 A solvable describes all the information of one package. Each solvable
1151 belongs to one repository, it can be added and filled manually but in
1152 most cases solvables will get created by the repo_add methods.
1153
1154 === ATTRIBUTES ===
1155
1156         Repo *repo;                     /* read only */
1157         $solvable->{repo}
1158         solvable.repo
1159         solvable.repo
1160
1161 The repository this solvable belongs to.
1162
1163         Pool *pool;                     /* read only */
1164         $solvable->{pool}
1165         solvable.pool
1166         solvable.pool
1167
1168 The pool this solvable belongs to, same as the pool of the repo.
1169
1170         Id id;                          /* read only */
1171         $solvable->{id}
1172         solvable.id
1173         solvable.id
1174
1175 The specific id of the solvable.
1176
1177         char *name;                     /* read/write */
1178         $solvable->{name}
1179         solvable.name
1180         solvable.name
1181
1182         char *evr;                      /* read/write */
1183         $solvable->{evr}
1184         solvable.evr
1185         solvable.evr
1186
1187         char *arch;                     /* read/write */
1188         $solvable->{arch}
1189         solvable.arch
1190         solvable.arch
1191
1192         char *vendor;                   /* read/write */
1193         $solvable->{vendor}
1194         solvable.vendor
1195         solvable.vendor
1196
1197 Easy access to often used attributes of solvables. They are
1198 internally stored as Ids.
1199
1200         Id nameid;                      /* read/write */
1201         $solvable->{nameid}
1202         solvable.nameid
1203         solvable.nameid
1204
1205         Id evrid;                       /* read/write */
1206         $solvable->{evrid}
1207         solvable.evrid
1208         solvable.evrid
1209
1210         Id archid;                      /* read/write */
1211         $solvable->{archid}
1212         solvable.archid
1213         solvable.archid
1214
1215         Id vendorid;                    /* read/write */
1216         $solvable->{vendorid}
1217         solvable.vendorid
1218         solvable.vendorid
1219
1220 Raw interface to the ids. Useful if you want to search for
1221 a specific id and want to avoid the string compare overhead.
1222
1223 === METHODS ===
1224
1225         const char *lookup_str(Id keyname)
1226         my $string = $solvable->lookup_str($keyname);
1227         string = solvable.lookup_str(keyname)
1228         string = solvable.lookup_str(keyname)
1229
1230         Id lookup_id(Id keyname)
1231         my $id = $solvable->lookup_id($keyname);
1232         id = solvable.lookup_id(solvid)
1233         id = solvable.lookup_id(solvid)
1234
1235         unsigned long long lookup_num(Id solvid, Id keyname, unsigned long long notfound = 0)
1236         my $num = $solvable->lookup_num($keyname);
1237         num = solvable.lookup_num(keyname)
1238         num = solvable.lookup_num(keyname)
1239
1240         bool lookup_void(Id keyname)
1241         my $bool = $solvable->lookup_void($keyname);
1242         bool = solvable.lookup_void(keyname)
1243         bool = solvable.lookup_void(keyname)
1244
1245         Chksum lookup_checksum(Id keyname)
1246         my $chksum = $solvable->lookup_checksum($keyname);
1247         chksum = solvable.lookup_checksum(keyname)
1248         chksum = solvable.lookup_checksum(keyname)
1249
1250         Id *lookup_idarray(Id keyname, Id marker = -1)
1251         my @ids = $solvable->lookup_idarray($keyname);
1252         ids = solvable.lookup_idarray(keyname)
1253         ids = solvable.lookup_idarray(keyname)
1254
1255         Dep *lookup_deparray(Id keyname, Id marker = -1)
1256         my @deps = $solvable->lookup_deparray($keyname);
1257         deps = solvable.lookup_deparray(keyname)
1258         deps = solvable.lookup_deparray(keyname)
1259         
1260 Generic lookup methods. Retrieve data stored for the specific keyname.
1261 The lookup_idarray() method will return an array of Ids, use
1262 lookup_deparray if you want an array of Dependency objects instead.
1263 Some Id arrays contain two parts of data divided by a specific marker,
1264 for example the provides array uses the SOLVABLE_FILEMARKER id to
1265 store both the ids provided by the package and the ids added by
1266 the addfileprovides method. The default, -1, translates to the
1267 correct marker for the keyname and returns the first part of the
1268 array, use 1 to select the second part or 0 to retrieve all ids
1269 including the marker.
1270
1271         const char *lookup_location(unsigned int *OUTPUT);
1272         my ($location, $medianr) = $solvable->lookup_location();
1273         location, medianr = solvable.lookup_location()
1274         location, medianr = solvable.lookup_location()
1275
1276 Return a tuple containing the on-media location and an optional
1277 media number for multi-part repositories (e.g. repositories
1278 spawning multiple DVDs).
1279
1280         void add_deparray(Id keyname, DepId dep, Id marker = -1);
1281         $solvable->add_deparray($keyname, $dep);
1282         solvable.add_deparray(keyname, dep)
1283         solvable.add_deparray(keyname, dep)
1284
1285 Add a new dependency to the attributes stored in keyname.
1286
1287         void unset(Id keyname);
1288         $solvable->unset($keyname);
1289         solvable.unset(keyname)
1290         solvable.unset(keyname)
1291
1292 Delete data stored for the specific keyname.
1293
1294         bool installable();
1295         $solvable->installable()
1296         solvable.installable()
1297         solvable.installable?
1298
1299 Return true if the solvable is installable on the system. Solvables
1300 are not installable if the system does not support their architecture.
1301
1302         bool isinstalled();
1303         $solvable->isinstalled()
1304         solvable.isinstalled()
1305         solvable.isinstalled?
1306
1307 Return true if the solvable is installed on the system.
1308
1309         Selection Selection(int setflags = 0)
1310         my $sel = $solvable->Selection();
1311         sel = solvable.Selection()
1312         sel = solvable.Selection()
1313
1314 Create a Selection containing just the single solvable.
1315
1316         const char *str()
1317         my $str = $solvable->str();
1318         str = $solvable.str()
1319         str = $solvable.str()
1320
1321 Return a string describing the solvable. The string consists of the name,
1322 version, and architecture of the Solvable.
1323
1324         <stringification>
1325         my $str = $solvable->str;
1326         str = str(solvable)
1327         str = solvable.to_s
1328
1329 Same as calling the str() method.
1330
1331         <equality>
1332         if ($solvable1 == $solvable2)
1333         if solvable1 == solvable2:
1334         if solvable1 == solvable2
1335
1336 Two solvables are equal if they are part of the same pool and have the same
1337 ids.
1338
1339
1340 The Dataiterator Class
1341 ----------------------
1342 Dataiterators can be used to do complex string searches or
1343 to iterate over arrays. They can be created via the
1344 constructors in the Pool, Repo, and Solvable classes. The
1345 Repo and Solvable constructors will limit the search to
1346 the repository or the specific package.
1347
1348 === CONSTANTS ===
1349
1350 *SEARCH_STRING*::
1351 Return a match if the search string matches the value.
1352
1353 *SEARCH_STRINGSTART*::
1354 Return a match if the value starts with the search string.
1355
1356 *SEARCH_STRINGEND*::
1357 Return a match if the value ends with the search string.
1358
1359 *SEARCH_SUBSTRING*::
1360 Return a match if the search string can be matched somewhere in the value.
1361
1362 *SEARCH_GLOB*::
1363 Do a glob match of the search string against the value.
1364
1365 *SEARCH_REGEX*::
1366 Do a regular expression match of the search string against the value.
1367
1368 *SEARCH_NOCASE*::
1369 Ignore case when matching strings. Works for all the above match types.
1370
1371 *SEARCH_FILES*::
1372 Match the complete filenames of the file list, not just the base name.
1373
1374 *SEARCH_COMPLETE_FILELIST*::
1375 When matching the file list, check every file of the package not just the
1376 subset from the primary metadata.
1377
1378 *SEARCH_CHECKSUMS*::
1379 Allow the matching of checksum entries.
1380
1381 === METHODS ===
1382
1383         void prepend_keyname(Id keyname);
1384         $di->prepend_keyname($keyname);
1385         di.prepend_keyname(keyname)
1386         di.prepend_keyname(keyname)
1387
1388 Do a sub-search in the array stored in keyname.
1389
1390         void skip_solvable();
1391         $di->kip_solvable();
1392         di.skip_solvable()
1393         di.skip_solvable()
1394
1395 Stop matching the current solvable and advance to the next
1396 one.
1397
1398         <iteration>
1399         for my $d (@$di)
1400         for d in di:
1401         for d in di
1402
1403 Iterate through the matches. If there is a match, the object
1404 in d will be of type Datamatch.
1405
1406 The Datamatch Class
1407 -------------------
1408 Objects of this type will be created for every value matched
1409 by a dataiterator.
1410
1411 === ATTRIBUTES ===
1412
1413         Pool *pool;                             /* read only */
1414         $d->{pool}
1415         d.pool
1416         d.pool
1417
1418 Back pointer to pool.
1419
1420         Repo *repo;                             /* read only */
1421         $d->{repo}
1422         d.repo
1423         d.repo
1424
1425 The repository containing the matched object.
1426
1427         Solvable *solvable;                     /* read only */
1428         $d->{solvable}
1429         d.solvable
1430         d.solvable
1431
1432 The solvable containing the value that was matched.
1433
1434         Id solvid;                              /* read only */
1435         $d->{solvid}
1436         d.solvid
1437         d.solvid
1438
1439 The id of the solvable that matched.
1440
1441 === METHODS ===
1442
1443         Id key_id();
1444         $d->key_id()
1445         d.key_id()
1446         d.key_id()
1447
1448         const char *key_idstr();
1449         $d->key_idstr()
1450         d.key_idstr()
1451         d.key_idstr()
1452
1453 The keyname that matched, either as id or string.
1454
1455         Id type_id();
1456         $d->type_id()
1457         d.type_id()
1458         d.type_id()
1459
1460         const char *type_idstr();
1461         $d->type_idstr();
1462         d.type_idstr()
1463         d.type_idstr()
1464
1465 The key type of the value that was matched, either as id or string.
1466
1467         Id id();
1468         $d->id()
1469         d.id()
1470         d.id()
1471
1472         Id idstr();
1473         $d->idstr()
1474         d.idstr()
1475         d.idstr()
1476
1477 The Id of the value that was matched (only valid for id types),
1478 either as id or string.
1479
1480         const char *str();
1481         $d->str()
1482         d.str()
1483         d.str()
1484
1485 The string value that was matched (only valid for string types).
1486
1487         unsigned long long num();
1488         $d->num()
1489         d.num()
1490         d.num()
1491
1492 The numeric value that was matched (only valid for numeric types).
1493
1494         unsigned int num2();
1495         $d->num2()
1496         d.num2()
1497         d.num2()
1498
1499 The secondary numeric value that was matched (only valid for types
1500 containing two values).
1501
1502         Datapos pos();
1503         my $pos = $d->pos();
1504         pos = d.pos()
1505         pos = d.pos()
1506
1507 The position object of the current match. It can be used to do
1508 sub-searches starting at the match (if it is of an array type).
1509 See the Datapos class for more information.
1510
1511         Datapos parentpos();
1512         my $pos = $d->parentpos();
1513         pos = d.parentpos()
1514         pos = d.parentpos()
1515
1516 The position object of the array containing the current match.
1517 It can be used to do sub-searches, see the Datapos class for more
1518 information.
1519
1520         <stringification>
1521         my $str = $d->str;
1522         str = str(d)
1523         str = d.to_s
1524
1525 Return the stringification of the matched value. Stringification
1526 depends on the search flags, for file list entries it will return
1527 just the base name unless SEARCH_FILES is used, for checksums
1528 it will return an empty string unless SEARCH_CHECKSUMS is used.
1529 Numeric values are currently stringified to an empty string.
1530
1531
1532 The Selection Class
1533 -------------------
1534 Selections are a way to easily deal with sets of packages.
1535 There are multiple constructors to create them, the most useful
1536 is probably the select() method in the Pool class.
1537
1538 === CONSTANTS ===
1539
1540 *SELECTION_NAME*::
1541 Create the selection by matching package names.
1542
1543 *SELECTION_PROVIDES*::
1544 Create the selection by matching package provides.
1545
1546 *SELECTION_FILELIST*::
1547 Create the selection by matching package files.
1548
1549 *SELECTION_CANON*::
1550 Create the selection by matching the canonical representation
1551 of the package. This is normally a combination of the name,
1552 the version, and the architecture of a package.
1553
1554 *SELECTION_DOTARCH*::
1555 Allow an ``.<architecture>'' suffix when matching names or
1556 provides.
1557  
1558 *SELECTION_REL*::
1559 Allow the specification of a relation when matching names
1560 or provides, e.g. "name >= 1.2".
1561
1562 *SELECTION_INSTALLED_ONLY*::
1563 Limit the package search to installed packages.
1564
1565 *SELECTION_SOURCE_ONLY*::
1566 Limit the package search to source packages only.
1567
1568 *SELECTION_WITH_SOURCE*::
1569 Extend the package search to also match source packages. The default is
1570 only to match binary packages.
1571
1572 *SELECTION_GLOB*::
1573 Allow glob matching for package names, package provides, and file names.
1574
1575 *SELECTION_NOCASE*::
1576 Ignore case when matching package names, package provides, and file names.
1577
1578 *SELECTION_FLAT*::
1579 Return only one selection element describing the selected packages.
1580 The default is to create multiple elements for all globbed packages.
1581 Multiple elements are useful if you want to turn the selection into
1582 an install job, in that case you want an install job for every
1583 globbed package.
1584
1585 === ATTRIBUTES ===
1586
1587         Pool *pool;                             /* read only */
1588         $d->{pool}
1589         d.pool
1590         d.pool
1591
1592 Back pointer to pool.
1593
1594 === METHODS ===
1595
1596         int flags();
1597         my $flags = $sel->flags();
1598         flags = sel.flags()
1599         flags = sel.flags()
1600
1601 Return the result flags of the selection. The flags are a subset
1602 of the ones used when creating the selection, they describe which
1603 method was used to get the result. For example, if you create the
1604 selection with ``SELECTION_NAME | SELECTION_PROVIDES'', the resulting
1605 flags will either be SELECTION_NAME or SELECTION_PROVIDES depending
1606 if there was a package that matched the name or not. If there was
1607 no match at all, the flags will be zero.
1608
1609         bool isempty();
1610         $sel->isempty()
1611         sel.isempty()
1612         sel.isempty?
1613
1614 Return true if the selection is empty, i.e. no package could be matched.
1615
1616         void filter(Selection *other)
1617         $sel->filter($other);
1618         sel.filter(other)
1619         sel.filter(other)
1620
1621 Intersect two selections. Packages will only stay in the selection if there
1622 are also included in the other selecting. Does an in-place modification.
1623
1624         void add(Selection *other)
1625         $sel->add($other);
1626         sel.add(other)
1627         sel.add(other)
1628
1629 Build the union of two selections. All packages of the other selection will
1630 be added to the set of packages of the selection object. Does an in-place
1631 modification. Note that the selection flags are no longer meaningful after the
1632 add operation.
1633
1634         void add_raw(Id how, Id what)
1635         $sel->add_raw($how, $what);
1636         sel.add_raw(how, what)
1637         sel.add_raw(how, what)
1638
1639 Add a raw element to the selection. Check the Job class for information about
1640 the how and what parameters.
1641
1642         Job *jobs(int action)
1643         my @jobs = $sel->jobs($action);
1644         jobs = sel.jobs(action)
1645         jobs = sel.jobs(action)
1646
1647 Convert a selection into an array of Job objects. The action parameter is or-ed
1648 to the ``how'' part of the job, it describes the type of job (e.g. install,
1649 erase). See the Job class for the action and action modifier constants.
1650
1651         Solvable *solvables()
1652         my @solvables = $sel->solvables();
1653         solvables = sel.solvables()
1654         solvables = sel.solvables()
1655
1656 Convert a selection into an array of Solvable objects.
1657
1658         <stringification>
1659         my $str = $sel->str;
1660         str = str(sel)
1661         str = sel.to_s
1662
1663 Return a string describing the selection.
1664
1665 The Job Class
1666 -------------
1667 Jobs are the way to specify to the dependency solver what to do.
1668 Most of the times jobs will get created by calling the jobs() method
1669 on a Selection object, but there is also a Job() constructor in the
1670 Pool class.
1671
1672 === CONSTANTS ===
1673
1674 Selection constants:
1675
1676 *SOLVER_SOLVABLE*::
1677 The ``what'' part is the id of a solvable.
1678
1679 *SOLVER_SOLVABLE_NAME*::
1680 The ``what'' part is the id of a package name.
1681
1682 *SOLVER_SOLVABLE_PROVIDES*::
1683 The ``what'' part is the id of a package provides.
1684
1685 *SOLVER_SOLVABLE_ONE_OF*::
1686 The ``what'' part is an offset into the ``whatprovides'' data, created
1687 by calling the towhatprovides() pool method.
1688
1689 *SOLVER_SOLVABLE_REPO*::
1690 The ``what'' part is the id of a repository.
1691
1692 *SOLVER_SOLVABLE_ALL*::
1693 The ``what'' part is ignored, all packages are selected.
1694
1695 *SOLVER_SOLVABLE_SELECTMASK*::
1696 A mask containing all the above selection bits.
1697
1698 Action constants:
1699
1700 *SOLVER_NOOP*::
1701 Do nothing.
1702
1703 *SOLVER_INSTALL*::
1704 Install a package of the specified set of packages. It tries to install
1705 the best matching package (i.e. the highest version of the packages from
1706 the repositories with the highest priority).
1707
1708 *SOLVER_ERASE*::
1709 Erase all of the packages from the specified set. If a package is not
1710 installed, erasing it will keep it from getting installed.
1711
1712 *SOLVER_UPDATE*::
1713 Update the matching installed packages to their best version. If none
1714 of the specified packages are installed, try to update the installed
1715 packages to the specified versions. See the section about targeted
1716 updates about more information.
1717  
1718 *SOLVER_WEAKENDEPS*::
1719 Allow to break the dependencies of the matching packages. Handle with care.
1720
1721 *SOLVER_MULTIVERSION*::
1722 Mark the matched packages for multiversion install. If they get to be
1723 installed because of some other job, the installation will keep the old
1724 version of the package installed (for rpm this is done by using ``-i''
1725 instead of ``-U'').
1726
1727 *SOLVER_LOCK*::
1728 Do not change the state of the matched packages, i.e. when they are
1729 installed they stay installed, if not they are not selected for
1730 installation.
1731
1732 *SOLVER_DISTUPGRADE*::
1733 Update the matching installed packages to the best version included in one
1734 of the repositories. After this operation, all come from one of the available
1735 repositories except orphaned packages. Orphaned packages are packages that
1736 have no relation to the packages in the repositories, i.e. no package in the
1737 repositories have the same name or obsolete the orphaned package.
1738 This action brings the installed packages in sync with the ones in the
1739 repository. It also turns of arch/vendor/version locking for the affected
1740 packages to simulate a fresh installation. This means that distupgrade can
1741 actually downgrade packages if only lower versions of a package are available
1742 in the repositories.
1743
1744 *SOLVER_DROP_ORPHANED*::
1745 Erase all the matching installed packages if they are orphaned. This only makes
1746 sense if there is a ``distupgrade all packages'' job. The default is to erase
1747 orphaned packages only if they block the installation of other packages.
1748
1749 *SOLVER_VERIFY*::
1750 Fix dependency problems of matching installed packages. The default is to ignore
1751 dependency problems for installed packages.
1752
1753 *SOLVER_USERINSTALLED*::
1754 The matching installed packages are considered to be installed by a user,
1755 thus not installed to fulfill some dependency. This is needed input for
1756 the calculation of unneeded packages for jobs that have the
1757 SOLVER_CLEANDEPS flag set.
1758
1759 *SOLVER_JOBMASK*::
1760 A mask containing all the above action bits.
1761
1762 Action modifier constants:
1763
1764 *SOLVER_WEAK*::
1765 Makes the job a weak job. The solver tries to fulfill weak jobs, but does
1766 not report a problem if it is not possible to do so.
1767
1768 *SOLVER_ESSENTIAL*::
1769 Makes the job an essential job. If there is a problem with the job, the
1770 solver will not propose to remove the job as one solution (unless all
1771 other solutions are also to remove essential jobs).
1772
1773 *SOLVER_CLEANDEPS*::
1774 The solver will try to also erase all packages dragged in through
1775 dependencies when erasing the package. This needs SOLVER_USERINSTALLED
1776 jobs to maximize user satisfaction.
1777
1778 *SOLVER_FORCEBEST*::
1779 Insist on the best package for install, update, and distupgrade jobs. If
1780 this flag is not used, the solver will use the second-best package if the
1781 best package cannot be installed for some reason. When this flag is used,
1782 the solver will generate a problem instead.
1783
1784 *SOLVER_TARGETED*::
1785 Forces targeted operation update and distupgrade jobs. See the section
1786 about targeted updates about more information.
1787
1788 Set constants.
1789
1790 *SOLVER_SETEV*::
1791 The job specified the exact epoch and version of the package set.
1792
1793 *SOLVER_SETEVR*::
1794 The job specified the exact epoch, version, and release of the package set.
1795
1796 *SOLVER_SETARCH*::
1797 The job specified the exact architecture of the packages from the set.
1798
1799 *SOLVER_SETVENDOR*::
1800 The job specified the exact vendor of the packages from the set.
1801
1802 *SOLVER_SETREPO*::
1803 The job specified the exact repository of the packages from the set.
1804
1805 *SOLVER_SETNAME*::
1806 The job specified the exact name of the packages from the set.
1807
1808 *SOLVER_NOAUTOSET*::
1809 Turn of automatic set flag generation for SOLVER_SOLVABLE jobs.
1810
1811 *SOLVER_SETMASK*::
1812 A mask containing all the above set bits.
1813
1814 See the section about set bits for more information.
1815
1816 === ATTRIBUTES ===
1817
1818         Pool *pool;                             /* read only */
1819         $job->{pool}
1820         d.pool
1821         d.pool
1822
1823 Back pointer to pool.
1824
1825         Id how;                                 /* read/write */
1826         $job->{how}
1827         d.how
1828         d.how
1829
1830 Union of the selection, action, action modifier, and set flags.
1831 The selection part describes the semantics of the ``what'' Id.
1832
1833         Id what;                                /* read/write */
1834         $job->{what}
1835         d.what
1836         d.what
1837
1838 Id describing the set of packages, the meaning depends on the
1839 selection part of the ``how'' attribute.
1840
1841 === METHODS ===
1842
1843         Solvable *solvables()
1844         my @solvables = $job->solvables();
1845         solvables = job.solvables()
1846         solvables = job.solvables()
1847
1848 Return the set of solvables of the job as an array of Solvable
1849 objects.
1850
1851         bool isemptyupdate();
1852         $job->isemptyupdate()
1853         job.isemptyupdate()
1854         job.isemptyupdate?
1855
1856 Convenience function to find out if the job describes an update
1857 job with no matching packages, i.e. a job that does nothing.
1858 Some package managers like ``zypper'' like to turn those jobs
1859 into install jobs, i.e. an update of a not-installed package
1860 will result into the installation of the package.
1861
1862         <stringification>
1863         my $str = $job->str;
1864         str = str(job)
1865         str = job.to_s
1866
1867 Return a string describing the job.
1868
1869         <equality>
1870         if ($job1 == $job2)
1871         if job1 == job2:
1872         if job1 == job2
1873
1874 Two jobs are equal if they belong to the same pool and both the
1875 ``how'' and the ``what'' attributes are the same.
1876
1877 === TARGETED UPDATES ===
1878 Libsolv has two modes for upgrades and distupgrade: targeted and
1879 untargeted. Untargeted mode means that the installed packages from
1880 the specified set will be updated to the best version. Targeted means
1881 that packages that can be updated to a package in the specified set
1882 will be updated to the best package of the set.
1883
1884 Here's an example to explain the subtle difference. Suppose that
1885 you have package A installed in version "1.1", "A-1.2" is available
1886 in one of the repositories and there is also package "B" that
1887 obsoletes package A.
1888
1889 An untargeted update of "A" will update the installed "A-1.1" to
1890 package "B", because that is the newest version (B obsoletes A and
1891 is thus newer).
1892
1893 A targeted update of "A" will update "A-1.1" to "A-1.2", as the
1894 set of packages contains both "A-1.1" and "A-1.2", and "A-1.2" is
1895 the newer one.
1896
1897 An untargeted update of "B" will do nothing, as "B" is not installed.
1898
1899 An targeted update of "B" will update "A-1.1" to "B".
1900
1901 Note that the default is to do "auto-targeting", thus if the specified
1902 set of packages does not include an installed package, the solver
1903 will assume targeted operation even if SOLVER_TARGETED is not used.
1904
1905 This mostly matches the intent of the user, with one exception: In
1906 the example above, an update of "A-1.2" will update "A-1.1" to
1907 "A-1.2" (targeted mode), but a second update of "A-1.2" will suddenly
1908 update to "B", as untargeted mode is chosen because "A-1.2" is now
1909 installed.
1910
1911 If you want to have full control over when targeting mode is chosen,
1912 turn off auto-targeting with the SOLVER_FLAG_NO_AUTOTARGET solver option.
1913 In that case, all updates are considered to be untargeted unless they
1914 include the SOLVER_TARGETED flag.
1915
1916 === SET BITS ===
1917 Set bits specify which parts of the specified packages where specified
1918 by the user. It is used by the solver when checking if an operation is
1919 allowed or not. For example, the solver will normally not allow the
1920 downgrade of an installed package. But it will not report a problem if
1921 the SOLVER_SETEVR flag is used, as it then assumes that the user specified
1922 the exact version and thus knows what he is doing.
1923
1924 So if a package "screen-1-1" is installed for the x86_64 architecture and
1925 version "2-1" is only available for the i586 architecture, installing
1926 package "screen-2.1" will ask the user for confirmation because of the
1927 different architecture. When using the Selection class to create jobs
1928 the set bits are automatically added, e.g. selecting ``screen.i586'' will
1929 automatically add SOLVER_SETARCH, and thus no problem will be reported.
1930
1931 The Solver Class
1932 ----------------
1933 Dependency solving is what this library is about. A solver object is needed
1934 for solving to store the result of the solver run. The solver object can be
1935 used multiple times for different jobs, reusing it allows the solver to
1936 re-use the dependency rules it already computed.
1937
1938 === CONSTANTS ===
1939
1940 Flags to modify some of the solver's behavior:
1941
1942 *SOLVER_FLAG_ALLOW_DOWNGRADE*::
1943 Allow the solver to downgrade packages without asking for confirmation
1944 (i.e. reporting a problem).
1945
1946 *SOLVER_FLAG_ALLOW_ARCHCHANGE*::
1947 Allow the solver to change the architecture of an installed package
1948 without asking for confirmation. Note that changes to/from noarch
1949 are always considered to be allowed.
1950   
1951 *SOLVER_FLAG_ALLOW_VENDORCHANGE*::
1952 Allow the solver to change the vendor of an installed package
1953 without asking for confirmation. Each vendor is part of one or more
1954 vendor equivalence classes, normally installed packages may only
1955 change their vendor if the new vendor shares at least one equivalence
1956 class.
1957
1958 *SOLVER_FLAG_ALLOW_NAMECHANGE*::
1959 Allow the solver to change the name of an installed package, i.e.
1960 install a package with a different name that obsoletes the installed
1961 package. This option is on by default.
1962
1963 *SOLVER_FLAG_ALLOW_UNINSTALL*::
1964 Allow the solver to erase installed packages to fulfill the jobs.
1965 This flag also includes the above flags. You may want to set this
1966 flag if you only have SOLVER_ERASE jobs, as in that case it's
1967 better for the user to check the transaction overview instead of
1968 approving every single package that needs to be erased.
1969
1970 *SOLVER_FLAG_NO_UPDATEPROVIDE*::
1971 If multiple packages obsolete an installed package, the solver checks
1972 the provides of every such package and ignores all packages that
1973 do not provide the installed package name. Thus, you can have an
1974 official update candidate that provides the old name, and other
1975 packages that also obsolete the package but are not considered for
1976 updating. If you cannot use this feature, you can turn it off
1977 by setting this flag.
1978
1979 *SOLVER_FLAG_SPLITPROVIDES*::
1980 Make the solver aware of special provides of the form
1981 ``<packagename>:<path>'' used in SUSE systems to support package
1982 splits.
1983
1984 *SOLVER_FLAG_IGNORE_RECOMMENDED*::
1985 Do not process optional (aka weak) dependencies.
1986
1987 *SOLVER_FLAG_ADD_ALREADY_RECOMMENDED*::
1988 Install recommended or supplemented packages even if they have no
1989 connection to the current transaction. You can use this feature
1990 to implement a simple way for the user to install new recommended
1991 packages that were not available in the past.
1992   
1993 *SOLVER_FLAG_NO_INFARCHCHECK*::
1994 Turn off the inferior architecture checking that is normally done
1995 by the solver. Normally, the solver allows only the installation
1996 of packages from the "best" architecture if a package is available
1997 for multiple architectures.
1998
1999 *SOLVER_FLAG_BEST_OBEY_POLICY*::
2000 Make the SOLVER_FORCEBEST job option consider only packages that
2001 meet the policies for installed packages, i.e. no downgrades,
2002 no architecture change, no vendor change (see the first flags
2003 of this section). If the flag is not specified, the solver will
2004 enforce the installation of the best package ignoring the
2005 installed packages, which may conflict with the set policy.
2006
2007 *SOLVER_FLAG_NO_AUTOTARGET*::
2008 Do not enable auto-targeting up update and distupgrade jobs. See
2009 the section on targeted updates for more information.
2010
2011 Basic rule types:
2012
2013 *SOLVER_RULE_UNKNOWN*::
2014 A rule of an unknown class. You should never encounter those.
2015
2016 *SOLVER_RULE_RPM*::
2017 A package dependency rule, called rpm rule for historical reasons.
2018
2019 *SOLVER_RULE_UPDATE*::
2020 A rule to implement the update policy of installed packages. Every
2021 installed package has an update rule that consists of the packages
2022 that may replace the installed package.
2023
2024 *SOLVER_RULE_FEATURE*::
2025 Feature rules are fallback rules used when a update rule is disabled. They
2026 include all packages that may replace the installed package ignoring the
2027 update policy, i.e. they contain downgrades, arch changes and so on.
2028 Without them, the solver would simply erase installed packages if their
2029 update rule gets disabled.
2030
2031 *SOLVER_RULE_JOB*::
2032 Job rules implement the job given to the solver.
2033
2034 *SOLVER_RULE_DISTUPGRADE*::
2035 This are simple negative assertions that make sure that only packages
2036 are kept that are also available in one of the repositories.
2037
2038 *SOLVER_RULE_INFARCH*::
2039 Infarch rules are also negative assertions, they disallow the installation
2040 of packages when there are packages of the same name but with a better
2041 architecture.
2042
2043 *SOLVER_RULE_CHOICE*::
2044 Choice rules are used to make sure that the solver prefers updating to
2045 installing different packages when some dependency is provided by
2046 multiple packages with different names. The solver may always break
2047 choice rules, so you will not see them when a problem is found.
2048
2049 *SOLVER_RULE_LEARNT*::
2050 These rules are generated by the solver to keep it from running into
2051 the same problem multiple times when it has to backtrack. They are
2052 the main reason why a sat solver is faster then other dependency solver
2053 implementations.
2054
2055 Special dependency rule types:
2056
2057 *SOLVER_RULE_RPM_NOT_INSTALLABLE*::
2058 This rule was added to prevent the installation of a package of an
2059 architecture that does not work on the system.
2060
2061 *SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP*::
2062 The package contains a required dependency which was not provided by
2063 any package.
2064
2065 *SOLVER_RULE_RPM_PACKAGE_REQUIRES*::
2066 Similar to SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP, but in this case
2067 some packages provided the dependency but none of them could be
2068 installed due to other dependency issues.
2069
2070 *SOLVER_RULE_RPM_SELF_CONFLICT*::
2071 The package conflicts with itself. This is not allowed by older rpm
2072 versions.
2073
2074 *SOLVER_RULE_RPM_PACKAGE_CONFLICT*::
2075 To fulfill the dependencies two packages need to be installed, but
2076 one of the packages contains a conflict with the other one.
2077
2078 *SOLVER_RULE_RPM_SAME_NAME*::
2079 The dependencies can only be fulfilled by multiple versions of
2080 a package, but installing multiple versions of the same package
2081 is not allowed.
2082
2083 *SOLVER_RULE_RPM_PACKAGE_OBSOLETES*::
2084 To fulfill the dependencies two packages need to be installed, but
2085 one of the packages obsoletes the other one.
2086
2087 *SOLVER_RULE_RPM_IMPLICIT_OBSOLETES*::
2088 To fulfill the dependencies two packages need to be installed, but
2089 one of the packages has provides a dependency that is obsoleted
2090 by the other one. See the POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES
2091 flag.
2092
2093 *SOLVER_RULE_RPM_INSTALLEDPKG_OBSOLETES*::
2094 To fulfill the dependencies a package needs to be installed that is
2095 obsoleted by an installed package. See the POOL_FLAG_NOINSTALLEDOBSOLETES
2096 flag.
2097
2098 *SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP*::
2099 The user asked for installation of a package providing a specific
2100 dependency, but no available package provides it.
2101
2102 *SOLVER_RULE_JOB_UNKNOWN_PACKAGE*::
2103 The user asked for installation of a package with a specific name,
2104 but no available package has that name.
2105
2106 *SOLVER_RULE_JOB_PROVIDED_BY_SYSTEM*::
2107 The user asked for the erasure of a dependency that is provided by the
2108 system (i.e. for special hardware or language dependencies), this
2109 cannot be done with a job.
2110
2111 *SOLVER_RULE_JOB_UNSUPPORTED*::
2112 The user asked for something that is not yet implemented, e.g. the
2113 installation of all packages at once.
2114
2115 Policy error constants
2116
2117 *POLICY_ILLEGAL_DOWNGRADE*::
2118 The solver ask for permission before downgrading packages.
2119
2120 *POLICY_ILLEGAL_ARCHCHANGE*::
2121 The solver ask for permission before changing the architecture of installed
2122 packages.
2123
2124 *POLICY_ILLEGAL_VENDORCHANGE*::
2125 The solver ask for permission before changing the vendor of installed
2126 packages.
2127
2128 *POLICY_ILLEGAL_NAMECHANGE*::
2129 The solver ask for permission before replacing an installed packages with
2130 a package that has a different name.
2131
2132 Solution element type constants
2133
2134 *SOLVER_SOLUTION_JOB*::
2135 The problem can be solved by removing the specified job.
2136
2137 *SOLVER_SOLUTION_POOLJOB*::
2138 The problem can be solved by removing the specified job that is defined
2139 in the pool.
2140
2141 *SOLVER_SOLUTION_INFARCH*::
2142 The problem can be solved by allowing the installation of the specified
2143 package with an inferior architecture.
2144
2145 *SOLVER_SOLUTION_DISTUPGRADE*::
2146 The problem can be solved by allowing to keep the specified package
2147 installed.
2148
2149 *SOLVER_SOLUTION_BEST*::
2150 The problem can be solved by allowing to install the specified package
2151 that is not the best available package.
2152
2153 *SOLVER_SOLUTION_ERASE*::
2154 The problem can be solved by allowing to erase the specified package.
2155
2156 *SOLVER_SOLUTION_REPLACE*::
2157 The problem can be solved by allowing to replace the package with some
2158 other package.
2159
2160 *SOLVER_SOLUTION_REPLACE_DOWNGRADE*::
2161 The problem can be solved by allowing to replace the package with some
2162 other package that has a lower version.
2163
2164 *SOLVER_SOLUTION_REPLACE_ARCHCHANGE*::
2165 The problem can be solved by allowing to replace the package with some
2166 other package that has a different architecture.
2167
2168 *SOLVER_SOLUTION_REPLACE_VENDORCHANGE*::
2169 The problem can be solved by allowing to replace the package with some
2170 other package that has a different vendor.
2171
2172 *SOLVER_SOLUTION_REPLACE_NAMECHANGE*::
2173 The problem can be solved by allowing to replace the package with some
2174 other package that has a different name.
2175
2176
2177 === ATTRIBUTES ===
2178
2179         Pool *pool;                             /* read only */
2180         $job->{pool}
2181         d.pool
2182         d.pool
2183
2184 Back pointer to pool.
2185
2186 === METHODS ===
2187
2188         int set_flag(int flag, int value)
2189         my $oldvalue = $pool->set_flag($flag, $value);
2190         oldvalue = pool.set_flag(flag, value)
2191         oldvalue = pool.set_flag(flag, value)
2192
2193         int get_flag(int flag)
2194         my $value = $pool->get_flag($flag);
2195         value = pool.get_flag(flag)
2196         value = pool.get_flag(flag)
2197
2198 Set/get a solver specific flag. The flags define the policies the solver has
2199 to obey. The flags are explained in the CONSTANTS section of this class.
2200
2201         Problem *solve(Job *jobs)
2202         my @problems = $solver->solve(\@jobs);
2203         problems = solver.solve(jobs)
2204         problems = solver.solve(jobs)
2205
2206 Solve a problem specified in the job list (plus the jobs defined in the pool).
2207 Returns an array of problems that need user interaction, or an empty array
2208 if no problems were encountered. See the Problem class on how to deal with
2209 problems.
2210
2211         Transaction transaction()
2212         my $trans = $solver->transaction();
2213         trans = solver.transaction()
2214         trans = solver.transaction()
2215
2216 Return the transaction to implement the calculated package changes. A transaction
2217 is available even if problems were found, this is useful for interactive user
2218 interfaces that show both the job result and the problems.
2219
2220 The Problem Class
2221 -----------------
2222 Problems are the way of the solver to interact with the user. You can simply list
2223 all problems and terminate your program, but a better way is to present solutions to
2224 the user and let him pick the ones he likes.
2225
2226 === ATTRIBUTES ===
2227
2228         Solver *solv;                           /* read only */
2229         $problem->{solv}
2230         problem.solv
2231         problem.solv
2232
2233 Back pointer to solver object.
2234
2235         Id id;                                  /* read only */
2236         $problem->{id}
2237         problem.id
2238         problem.id
2239
2240 Id of the problem. The first problem has Id 1, they are numbered consecutively.
2241
2242 === METHODS ===
2243
2244         Rule findproblemrule()
2245         my $probrule = $problem->findproblemrule();
2246         probrule = problem.findproblemrule()
2247         probrule = problem.findproblemrule()
2248
2249 Return the rule that caused the problem. Of course in most situations there is no
2250 single responsible rule, but many rules that interconnect with each created the
2251 problem. Nevertheless, the solver uses some heuristic approach to find a rule
2252 that somewhat describes the problem best to the user.
2253
2254         Rule *findallproblemrules(bool unfiltered = 0)
2255         my @probrules = $problem->findallproblemrules();
2256         probrules = problem.findallproblemrule()
2257         probrules = problem.findallproblemrule()
2258
2259 Return all rules responsible for the problem. The returned set of rules contains
2260 all the needed information why there was a problem, but it's hard to present
2261 them to the user in a sensible way. The default is to filter out all update and
2262 job rules (unless the returned rules only consist of those types).
2263
2264         Solution *solutions()
2265         my @solutions = $problem->solutions();
2266         solutions = problem.solutions()
2267         solutions = problem.solutions()
2268
2269 Return an array containing multiple possible solutions to fix the problem. See
2270 the solution class for more information.
2271
2272         int solution_count()
2273         my $cnt = $problem->solution_count();
2274         cnt = problem.solution_count()
2275         cnt = problem.solution_count()
2276
2277 Return the number of solutions without creating solution objects.
2278
2279         <stringification>
2280         my $str = $problem->str;
2281         str = str(problem)
2282         str = problem.to_s
2283
2284 Return a string describing the problem. This is a convenience function, it is
2285 a shorthand for calling findproblemrule(), then ruleinfo() on the problem
2286 rule and problemstr() on the ruleinfo object.
2287
2288 The Rule Class
2289 --------------
2290 Rules are the basic block of sat solving. Each package dependency gets translated
2291 into one or multiple rules.
2292
2293 === ATTRIBUTES ===
2294
2295         Solver *solv;                           /* read only */
2296         $rule->{solv}
2297         rule.solv
2298         rule.solv
2299
2300 Back pointer to solver object.
2301
2302         Id id;                                  /* read only */
2303         $rule->{id}
2304         rule.id
2305         rule.id
2306
2307 The id of the rule.
2308
2309         int type;                               /* read only */
2310         $rule->{type}
2311         rule.type
2312         rule.type
2313
2314 The basic type of the rule. See the constant section of the solver class for the type list.
2315
2316 === METHODS ===
2317
2318         Ruleinfo info()
2319         my $ruleinfo = $rule->info();
2320         ruleinfo = rule.info()
2321         ruleinfo = rule.info()
2322
2323 Return a Ruleinfo object that contains information about why the rule was created. But
2324 see the allinfos() method below.
2325
2326         Ruleinfo *allinfos()
2327         my @ruleinfos = $rule->allinfos();
2328         ruleinfos = rule.allinfos()
2329         ruleinfos = rule.allinfos()
2330
2331 As the same dependency rule can get created because of multiple dependencies, one
2332 Ruleinfo is not enough to describe the reason. Thus the allinfos() method returns
2333 an array of all infos about a rule.
2334
2335         <equality>
2336         if ($rule1 == $rule2)
2337         if rule1 == rule2:
2338         if rule1 == rule2
2339
2340 Two rules are equal if they belong to the same solver and have the same id.
2341
2342 The Ruleinfo Class
2343 ------------------
2344 A Ruleinfo describes one reason why a rule was created.
2345
2346 === ATTRIBUTES ===
2347
2348         Solver *solv;                           /* read only */
2349         $ruleinfo->{solv}
2350         ruleinfo.solv
2351         ruleinfo.solv
2352
2353 Back pointer to solver object.
2354
2355         int type;                               /* read only */
2356         $ruleinfo->{type}
2357         ruleinfo.type
2358         ruleinfo.type
2359
2360 The type of the ruleinfo. See the constant section of the solver class for the
2361 rule type list and the special type list.
2362
2363         Dep *dep;                               /* read only */
2364         $ruleinfo->{dep}
2365         ruleinfo.dep
2366         ruleinfo.dep
2367
2368 The dependency leading to the creation of the rule.
2369
2370         Dep *dep_id;                            /* read only */
2371         $ruleinfo->{'dep_id'}
2372         ruleinfo.dep_id
2373         ruleinfo.dep_id
2374
2375 The Id of the dependency leading to the creation of the rule, or zero.
2376
2377         Solvable *solvable;                     /* read only */
2378         $ruleinfo->{solvable}
2379         ruleinfo.solvable
2380         ruleinfo.solvable
2381
2382 The involved Solvable, e.g. the one containing the dependency.
2383
2384         Solvable *othersolvable;                /* read only */
2385         $ruleinfo->{othersolvable}
2386         ruleinfo.othersolvable
2387         ruleinfo.othersolvable
2388
2389 The other involved Solvable (if any), e.g. the one containing providing
2390 the dependency for conflicts.
2391
2392         const char *problemstr();
2393         my $str = $ruleinfo->problemstr();
2394         str = ruleinfo.problemstr()
2395         str = ruleinfo.problemstr()
2396
2397 A string describing the ruleinfo from a problem perspective. This probably
2398 only makes sense if the rule is part of a problem.
2399
2400 The Solution Class
2401 ------------------
2402 A solution solves one specific problem. It consists of multiple solution elements
2403 that all need to be executed.
2404
2405 === ATTRIBUTES ===
2406
2407         Solver *solv;                           /* read only */
2408         $solution->{solv}
2409         solution.solv
2410         solution.solv
2411
2412 Back pointer to solver object.
2413
2414         Id problemid;                           /* read only */
2415         $solution->{problemid}
2416         solution.problemid
2417         solution.problemid
2418
2419 Id of the problem the solution solves.
2420
2421         Id id;                                  /* read only */
2422         $solution->{id}
2423         solution.id
2424         solution.id
2425
2426 Id of the solution. The first solution has Id 1, they are numbered consecutively.
2427
2428 === METHODS ===
2429
2430         Solutionelement *elements(bool expandreplaces = 0)
2431         my @solutionelements = $solution->elements();
2432         solutionelements = solution.elements()
2433         solutionelements = solution.elements()
2434
2435 Return an array containing the elements describing what needs to be done to
2436 implement the specific solution. If expandreplaces is true, elements of type
2437 SOLVER_SOLUTION_REPLACE will be replaced by one or more elements replace
2438 elements describing the policy mismatches.
2439
2440         int element_count()
2441         my $cnt = $solution->solution_count();
2442         cnt = solution.element_count()
2443         cnt = solution.element_count()
2444
2445 Return the number of solution elements without creating objects. Note that the
2446 count does not match the number of objects returned by the elements() method
2447 of expandreplaces is set to true.
2448
2449
2450 The Solutionelement Class
2451 -------------------------
2452 A solution element describes a single action of a solution. The action is always
2453 either to remove one specific job or to add a new job that installs or erases
2454 a single specific package.
2455
2456 === ATTRIBUTES ===
2457
2458         Solver *solv;                           /* read only */
2459         $solutionelement->{solv}
2460         solutionelement.solv
2461         solutionelement.solv
2462
2463 Back pointer to solver object.
2464
2465         Id problemid;                           /* read only */
2466         $solutionelement->{problemid}
2467         solutionelement.problemid
2468         solutionelement.problemid
2469
2470 Id of the problem the element (partly) solves.
2471
2472         Id solutionid;                          /* read only */
2473         $solutionelement->{solutionid}
2474         solutionelement.solutionid
2475         solutionelement.solutionid
2476
2477 Id of the solution the element is a part of.
2478
2479         Id id;                                  /* read only */
2480         $solutionelement->{id}
2481         solutionelement.id
2482         solutionelement.id
2483
2484 Id of the solution element. The first element has Id 1, they are numbered consecutively.
2485
2486         Id type;                                /* read only */
2487         $solutionelement->{type}
2488         solutionelement.type
2489         solutionelement.type
2490
2491 Type of the solution element. See the constant section of the solver class for the
2492 existing types.
2493
2494         Solvable *solvable;                     /* read only */
2495         $solutionelement->{solvable}
2496         solutionelement.solvable
2497         solutionelement.solvable
2498
2499 The installed solvable that needs to be replaced for replacement elements.
2500
2501         Solvable *replacement;                  /* read only */
2502         $solutionelement->{replacement}
2503         solutionelement.replacement
2504         solutionelement.replacement
2505
2506 The solvable that needs to be installed to fix the problem.
2507
2508         int jobidx;                             /* read only */
2509         $solutionelement->{jobidx}
2510         solutionelement.jobidx
2511         solutionelement.jobidx
2512
2513 The index of the job that needs to be removed to fix the problem, or -1 if the
2514 element is of another type. Note that it's better to change the job to SOLVER_NOOP
2515 type so that the numbering of other elements does not get disturbed. This
2516 method works both for types SOLVER_SOLUTION_JOB and SOLVER_SOLUTION_POOLJOB.
2517
2518 === METHODS ===
2519
2520         Solutionelement *replaceelements()
2521         my @solutionelements = $solutionelement->replaceelements();
2522         solutionelements = solutionelement.replaceelements()
2523         solutionelements = solutionelement.replaceelements()
2524
2525 If the solution element is of type SOLVER_SOLUTION_REPLACE, return an array of
2526 elements describing the policy mismatches, otherwise return a copy of the
2527 element. See also the ``expandreplaces'' option in the solution's elements()
2528 method.
2529
2530         int illegalreplace()
2531         my $illegal = $solutionelement->illegalreplace();
2532         illegal = solutionelement.illegalreplace()
2533         illegal = solutionelement.illegalreplace()
2534
2535 Return an integer that contains the policy mismatch bits or-ed together, or
2536 zero if there was no policy mismatch. See the policy error constants in
2537 the solver class.
2538
2539         Job Job()
2540         my $job = $solutionelement->Job();
2541         illegal = solutionelement.Job()
2542         illegal = solutionelement.Job()
2543
2544 Create a job that implements the solution element. Add this job to the array
2545 of jobs for all elements of type different to SOLVER_SOLUTION_JOB and
2546 SOLVER_SOLUTION_POOLJOB. For the later two, a SOLVER_NOOB Job is created,
2547 you should replace the old job with the new one.
2548
2549         const char *str()
2550         my $str = $solutionelement->str();
2551         str = solutionelement.str()
2552         str = solutionelement.str()
2553
2554 A string describing the change the solution element consists of.
2555
2556 The Transaction Class
2557 ---------------------
2558 Transactions describe the output of a solver run. A transaction contains
2559 a number of transaction elements, each either the installation of a new
2560 package or the removal of an already installed package. The Transaction
2561 class supports a classify() method that puts the elements into different
2562 groups so that a transaction can be presented to the user in a meaningful
2563 way.
2564
2565 === CONSTANTS ===
2566
2567 Transaction element types, both active and passive
2568
2569 *SOLVER_TRANSACTION_IGNORE*::
2570 This element does nothing. Used to map element types that do not match
2571 the view mode.
2572
2573 *SOLVER_TRANSACTION_INSTALL*::
2574 This element installs a package.
2575
2576 *SOLVER_TRANSACTION_ERASE*::
2577 This element erases a package.
2578
2579 *SOLVER_TRANSACTION_MULTIINSTALL*::
2580 This element installs a package with a different version keeping the other
2581 versions installed.
2582
2583 *SOLVER_TRANSACTION_MULTIREINSTALL*::
2584 This element reinstalls a installed package keeping the other versions
2585 installed.
2586
2587 Transaction element types, active view
2588
2589 *SOLVER_TRANSACTION_REINSTALL*::
2590 This element re-installs a package, i.e. installs the same package again.
2591
2592 *SOLVER_TRANSACTION_CHANGE*::
2593 This element installs a package with same name, version, architecture but
2594 different content.
2595
2596 *SOLVER_TRANSACTION_UPGRADE*::
2597 This element installs a newer version of an installed package.
2598
2599 *SOLVER_TRANSACTION_DOWNGRADE*::
2600 This element installs a older version of an installed package.
2601
2602 *SOLVER_TRANSACTION_OBSOLETES*::
2603 This element installs a package that obsoletes an installed package.
2604
2605 Transaction element types, passive view
2606
2607 *SOLVER_TRANSACTION_REINSTALLED*::
2608 This element re-installs a package, i.e. installs the same package again.
2609
2610 *SOLVER_TRANSACTION_CHANGED*::
2611 This element replaces an installed package with one of the same name,
2612 version, architecture but different content.
2613
2614 *SOLVER_TRANSACTION_UPGRADED*::
2615 This element replaces an installed package with a new version.
2616
2617 *SOLVER_TRANSACTION_DOWNGRADED*::
2618 This element replaces an installed package with an old version.
2619
2620 *SOLVER_TRANSACTION_OBSOLETED*::
2621 This element replaces an installed package with a package that obsoletes
2622 it.
2623
2624 Pseudo element types for showing extra information used by classify()
2625
2626 *SOLVER_TRANSACTION_ARCHCHANGE*::
2627 This element replaces an installed package with a package of a different
2628 architecture.
2629
2630 *SOLVER_TRANSACTION_VENDORCHANGE*::
2631 This element replaces an installed package with a package of a different
2632 vendor.
2633
2634 Transaction mode flags
2635
2636 *SOLVER_TRANSACTION_SHOW_ACTIVE*::
2637 Filter for active view types. The default is to return passive view type,
2638 i.e. to show how the installed packages get changed.
2639
2640 *SOLVER_TRANSACTION_SHOW_OBSOLETES*::
2641 Do not map the obsolete view type into INSTALL/ERASE elements.
2642
2643 *SOLVER_TRANSACTION_SHOW_ALL*::
2644 If multiple packages replace an installed package, only the best of them
2645 is kept as OBSOLETE element, the other ones are mapped to INSTALL/ERASE
2646 elements. This is because most applications want to show just one package
2647 replacing the installed one. The SOLVER_TRANSACTION_SHOW_ALL makes the
2648 library keep all OBSOLETE elements.
2649
2650 *SOLVER_TRANSACTION_SHOW_MULTIINSTALL*::
2651 The library maps MULTIINSTALL elements to simple INSTALL elements. This
2652 flag can be used to disable the mapping.
2653
2654 *SOLVER_TRANSACTION_CHANGE_IS_REINSTALL*::
2655 Use this flag if you want to map CHANGE elements to the REINSTALL type.
2656
2657 *SOLVER_TRANSACTION_OBSOLETE_IS_UPGRADE*::
2658 Use this flag if you want to map OBSOLETE elements to the UPGRADE type.
2659
2660 *SOLVER_TRANSACTION_MERGE_ARCHCHANGES*::
2661 Do not add extra categories for every architecture change, instead cumulate
2662 them in one category.
2663   
2664 *SOLVER_TRANSACTION_MERGE_VENDORCHANGES*::
2665 Do not add extra categories for every vendor change, instead cumulate
2666 them in one category.
2667
2668 *SOLVER_TRANSACTION_RPM_ONLY*::
2669 Special view mode that just returns IGNORE, ERASE, INSTALL, MULTIINSTALL
2670 elements. Useful if you want to find out what to feed to the underlying
2671 package manager.
2672
2673 Transaction order flags
2674
2675 *SOLVER_TRANSACTION_KEEP_ORDERDATA*::
2676 Do not throw away the dependency graph used for ordering the transaction.
2677 This flag is needed if you want to do manual ordering.
2678
2679 === ATTRIBUTES ===
2680
2681         Pool *pool;                             /* read only */
2682         $trans->{pool}
2683         trans.pool
2684         trans.pool
2685
2686 Back pointer to pool.
2687
2688 === METHODS ===
2689
2690         bool isempty();
2691         $trans->isempty()
2692         trans.isempty()
2693         trans.isempty?
2694
2695 Returns true if the transaction does not do anything, i.e. has no elements.
2696
2697         Solvable *newsolvables();
2698         my @newsolvables = $trans->newsolvables();
2699         newsolvables = trans.newsolvables()
2700         newsolvables = trans.newsolvables()
2701
2702 Return all packages that are to be installed by the transaction. This are
2703 the packages that need to be downloaded from the repositories.
2704
2705         Solvable *keptsolvables();
2706         my @keptsolvables = $trans->keptsolvables();
2707         keptsolvables = trans.keptsolvables()
2708         keptsolvables = trans.keptsolvables()
2709
2710 Return all installed packages that the transaction will keep installed.
2711
2712         Solvable *steps();
2713         my @steps = $trans->steps();
2714         steps = trans.steps()
2715         steps = trans.steps()
2716
2717 Return all solvables that need to be installed (if the returned solvable
2718 is not already installed) or erased (if the returned solvable is installed).
2719 A step is also called a transaction element.
2720
2721         int steptype(Solvable *solvable, int mode)
2722         my $type = $trans->steptype($solvable, $mode);
2723         type = trans.steptype(solvable, mode)
2724         type = trans.steptype(solvable, mode)
2725
2726 Return the transaction type of the specified solvable. See the CONSTANTS
2727 sections for the mode argument flags and the list of returned types.
2728
2729         TransactionClass *classify(int mode = 0)
2730         my @classes = $trans->classify();
2731         classes = trans.classify()
2732         classes = trans.classify()
2733
2734 Group the transaction elements into classes so that they can be displayed
2735 in a structured way. You can use various mapping mode flags to tweak
2736 the result to match your preferences, see the mode argument flag in
2737 the CONSTANTS section. See the TransactionClass class for how to deal
2738 with the returned objects.
2739
2740         Solvable othersolvable(Solvable *solvable);
2741         my $other = $trans->othersolvable($solvable);
2742         other = trans.othersolvable(solvable)
2743         other = trans.othersolvable(solvable)
2744
2745 Return the ``other'' solvable for a given solvable. For installed packages
2746 the other solvable is the best package with the same name that replaces
2747 the installed package, or the best package of the obsoleting packages if
2748 the package does not get replaced by one with the same name.
2749
2750 For to be installed packages, the ``other'' solvable is the best installed
2751 package with the same name that will be replaced, or the best packages
2752 of all the packages that are obsoleted if the new package does not replace
2753 a package with the same name.
2754
2755 Thus, the ``other'' solvable is normally the package that is also shown
2756 for a given package.
2757
2758         Solvable *allothersolvables(Solvable *solvable);
2759         my @others = $trans->allothersolvables($solvable);
2760         others = trans.allothersolvables(solvable)
2761         others = trans.allothersolvables(solvable)
2762
2763 For installed packages, returns all of the packages that replace us. For to
2764 be installed packages, returns all of the packages that the new package
2765 replaces. The special ``other'' solvable is always the first entry of the
2766 returned array.
2767
2768         int calc_installsizechange();
2769         my $change = $trans->calc_installsizechange();
2770         change = trans.calc_installsizechange()
2771         change = trans.calc_installsizechange()
2772
2773 Return the size change of the installed system in kilobytes (kibibytes).
2774
2775         void order(int flags = 0);
2776         $trans->order();
2777         trans.order()
2778         trans.order()
2779
2780 Order the steps in the transactions so that dependant packages are updated
2781 before packages that depend on them. For rpm, you can also use rpmlib's
2782 ordering functionality, debian's dpkg does not provide a way to order a
2783 transaction.
2784
2785 === ACTIVE/PASSIVE VIEW ===
2786
2787 Active view list what new packages get installed, while passive view shows
2788 what happens to the installed packages. Most often there's not much
2789 difference between the two modes, but things get interesting of multiple
2790 package get replaced by one new package. Say you have installed package
2791 A-1-1 and B-1-1, and now install A-2-1 with has a new dependency that
2792 obsoletes B. The transaction elements will be
2793
2794   updated   A-1-1 (other: A-2-1)
2795   obsoleted B-1-1 (other: A-2-1)
2796
2797 in passive mode, but
2798
2799   update A-2-1 (other: A-1-1)
2800   erase  B
2801
2802 in active mode. If the mode contains SOLVER_TRANSACTION_SHOW_ALL, the 
2803 passive mode list will be unchanged but the active mode list will just
2804 contain A-2-1.
2805
2806 The Transactionclass Class
2807 --------------------------
2808 Objects of this type are returned by the classify() Transaction method.
2809
2810 === ATTRIBUTES ===
2811
2812         Transaction *transaction;               /* read only */
2813         $class->{transaction}
2814         class.transaction
2815         class.transaction
2816
2817 Back pointer to transaction object.
2818
2819         int type;                               /* read only */
2820         $class->{type}
2821         class.type
2822         class.type
2823
2824 The type of the transaction elements in the class.
2825
2826         int count;                              /* read only */
2827         $class->{count}
2828         class.count
2829         class.count
2830
2831 The number of elements in the class.
2832
2833         const char *fromstr;
2834         $class->{fromstr}
2835         class.fromstr
2836         class.fromstr
2837
2838 The old vendor or architecture.
2839
2840         const char *tostr;
2841         $class->{tostr}
2842         class.tostr
2843         class.tostr
2844
2845 The new vendor or architecture.
2846
2847         Id fromid;
2848         $class->{fromid}
2849         class.fromid
2850         class.fromid
2851
2852 The id of the old vendor or architecture.
2853
2854         Id toid;
2855         $class->{toid}
2856         class.toid
2857         class.toid
2858
2859 The id of the new vendor or architecture.
2860
2861 === METHODS ===
2862
2863         void solvables();
2864         my @solvables = $class->solvables();
2865         solvables = class.solvables()
2866         solvables = class.solvables()
2867
2868 Return the solvables for all transaction elements in the class.
2869
2870 Checksums
2871 ---------
2872 Checksums (also called hashes) are used to make sure that downloaded data is
2873 not corrupt and also as a fingerprint mechanism to check if data has changed.
2874
2875 === CLASS METHODS ===
2876
2877         Chksum Chksum(Id type)
2878         my $chksum = solv::Chksum->new($type);
2879         chksum = solv.Chksum(type)
2880         chksum = Solv::Chksum.new(type)
2881
2882 Create a checksum object. Currently the following types are supported:
2883
2884         REPOKEY_TYPE_MD5
2885         REPOKEY_TYPE_SHA1
2886         REPOKEY_TYPE_SHA256
2887
2888 These keys are constants in the *solv* class.
2889
2890         Chksum Chksum(Id type, const char *hex)
2891         my $chksum = solv::Chksum->new($type, $hex);
2892         chksum = solv.Chksum(type, hex)
2893         chksum = Solv::Chksum.new(type, hex)
2894
2895 Create an already finalized checksum object.
2896
2897 === ATTRIBUTES ===
2898
2899         Id type;                        /* read only */
2900         $chksum->{type}
2901         chksum.type
2902         chksum.type
2903
2904 Return the type of the checksum object.
2905
2906 === METHODS ===
2907
2908         void add(const char *str)
2909         $chksum->add($str);
2910         chksum.add(str)
2911         chksum.add(str)
2912
2913 Add a string to the checksum.
2914
2915         void add_fp(FILE *fp)
2916         $chksum->add_fp($file);
2917         chksum.add_fp(file)
2918         chksum.add_fp(file)
2919
2920 Add the contents of a file to the checksum.
2921         
2922         void add_stat(const char *filename)
2923         $chksum->add_stat($filename);
2924         chksum.add_stat(filename)
2925         chksum.add_stat(filename)
2926
2927 Stat the file and add the dev/ino/size/mtime member to the checksum. If the
2928 stat fails, the members are zeroed.
2929
2930         void add_fstat(int fd)
2931         $chksum->add_fstat($fd);
2932         chksum.add_fstat(fd)
2933         chksum.add_fstat(fd)
2934
2935 Same as add_stat, but instead of the filename a file descriptor is used.
2936
2937         unsigned char *raw()
2938         my $raw = $chksum->raw();
2939         raw = chksum.raw()
2940         raw = chksum.raw()
2941
2942 Finalize the checksum and return the result as raw bytes. This means that the
2943 result can contain NUL bytes or unprintable characters.
2944
2945         const char *hex()
2946         my $raw = $chksum->hex();
2947         raw = chksum.hex()
2948         raw = chksum.hex()
2949
2950 Finalize the checksum and return the result as hex string.
2951
2952         <equality>
2953         if ($chksum1 == $chksum2)
2954         if chksum1 == chksum2:
2955         if chksum1 == chksum2
2956
2957 Checksums are equal if they are of the same type and the finalized results are
2958 the same.
2959
2960         <stringification>
2961         my $str = $chksum->str;
2962         str = str(chksum)
2963         str = chksum.to_s
2964
2965 If the checksum is finished, the checksum is returned as "<type>:<hex>" string.
2966 Otherwise "<type>:unfinished" is returned.
2967
2968
2969 File Management
2970 ---------------
2971 This functions were added because libsolv uses standard *FILE* pointers to
2972 read/write files, but languages like perl have their own implementation of
2973 files. The libsolv functions also support decompression and compression, the
2974 algorithm is selected by looking at the file name extension.
2975
2976         FILE *xfopen(char *fn, char *mode = "r")
2977         my $file = solv::xfopen($path);
2978         file = solv.xfopen(path)
2979         file = Solv::xfopen(path)
2980
2981 Open a file at the specified path. The `mode` argument is passed on to the
2982 stdio library.
2983
2984         FILE *xfopen_fd(char *fn, int fileno)
2985         my $file = solv::xfopen_fd($path, $fileno);
2986         file = solv.xfopen_fd(path, fileno)
2987         file = Solv::xfopen_fd(path, fileno)
2988
2989 Create a file handle from the specified file descriptor. The path argument is
2990 only used to select the correct (de-)compression algorithm, use an empty path
2991 if you want to make sure to read/write raw data.
2992
2993 === METHODS ===
2994
2995         int fileno()
2996         my $fileno = $file->fileno();
2997         fileno = file.fileno()
2998         fileno = file.fileno()
2999
3000 Return file file descriptor of the file. If the file is not open, `-1` is
3001 returned.
3002
3003         int dup()
3004         my $fileno = $file->dup();
3005         fileno = file.dup()
3006         fileno = file.dup()
3007
3008 Return a copy of the descriptor of the file. If the file is not open, `-1` is
3009 returned.
3010
3011         bool flush()
3012         $file->flush();
3013         file.flush()
3014         file.flush()
3015
3016 Flush the file. Returns false if there was an error. Flushing a closed file
3017 always returns true.
3018
3019         bool close()
3020         $file->close();
3021         file.close()
3022         file.close()
3023
3024 Close the file. This is needed for languages like Ruby, that do not destruct
3025 objects right after they are no longer referenced. In that case, it is good
3026 style to close open files so that the file descriptors are freed right away.
3027 Returns false if there was an error.
3028
3029
3030 The Repodata Class
3031 ------------------
3032 The Repodata stores attributes for packages and the repository itself, each
3033 repository can have multiple repodata areas. You normally only need to
3034 directly access them if you implement lazy downloading of repository data.
3035 Repodata areas are created by calling the repository's add_repodata() method 
3036 or by using repo_add methods without the REPO_REUSE_REPODATA or REPO_USE_LOADING
3037 flag.
3038
3039 === ATTRIBUTES ===
3040
3041         Repo *repo;                     /* read only */
3042         $data->{repo}
3043         data.repo
3044         data.repo
3045
3046 Back pointer to repository object.
3047
3048         Id id;                                  /* read only */
3049         $data->{id}
3050         data.id
3051         data.id
3052
3053 The id of the repodata area. Repodata ids of different repositories overlap.
3054
3055 === METHODS ===
3056
3057         internalize();
3058         $data->internalize();
3059         data.internalize()
3060         data.internalize()
3061
3062 Internalize newly added data. The lookup functions will only see the new data
3063 after it has been internalized.
3064
3065         bool write(FILE *fp);
3066         $data->write($fp);
3067         data.write(fp)
3068         data.write(fp)
3069
3070 Write the contents of the repodata area as solv file.
3071
3072         bool add_solv(FILE *fp, int flags = 0);
3073         $data->add_solv($fp);
3074         data.add_solv(fp)
3075         data.add_solv(fp)
3076
3077 Replace a stub repodata object with the data from a solv file. This method
3078 automatically adds the REPO_USE_LOADING flag. It should only be used from
3079 a load callback.
3080
3081         void create_stubs();
3082         $data->create_stubs()
3083         data.create_stubs()
3084         data.create_stubs()
3085
3086 Create stub repodatas from the information stored in the repodata meta
3087 area.
3088
3089         void extend_to_repo();
3090         $data->extend_to_repo();
3091         data.extend_to_repo()
3092         data.extend_to_repo()
3093
3094 Extend the repodata so that it has the same size as the repo it belongs to.
3095 This method is only needed when switching to a just written repodata extension
3096 to make the repodata match the written extension (which is always of the
3097 size of the repo).
3098
3099         <equality>
3100         if ($data1 == $data2)
3101         if data1 == data2:
3102         if data1 == data2
3103
3104 Two repodata objects are equal if they belong to the same repository and have
3105 the same id.
3106
3107 === DATA RETRIEVAL METHODS ===
3108
3109         const char *lookup_str(Id solvid, Id keyname)
3110         my $string = $data->lookup_str($solvid, $keyname);
3111         string = data.lookup_str(solvid, keyname)
3112         string = data.lookup_str(solvid, keyname)
3113
3114         Id *lookup_idarray(Id solvid, Id keyname)
3115         my @ids = $data->lookup_idarray($solvid, $keyname);
3116         ids = data.lookup_idarray(solvid, keyname)
3117         ids = data.lookup_idarray(solvid, keyname)
3118
3119         Chksum lookup_checksum(Id solvid, Id keyname)
3120         my $chksum = $data->lookup_checksum($solvid, $keyname);
3121         chksum = data.lookup_checksum(solvid, keyname)
3122         chksum = data.lookup_checksum(solvid, keyname)
3123
3124 Lookup functions. Return the data element stored in the specified solvable.
3125 The methods probably only make sense to retrieve data from the special
3126 SOLVID_META solvid that stores repodata meta information.
3127
3128 === DATA STORAGE METHODS ===
3129
3130         void set_id(Id solvid, Id keyname, DepId id);
3131         $data->set_id($solvid, $keyname, $id);
3132         data.set_id(solvid, keyname, id)
3133         data.set_id(solvid, keyname, id)
3134
3135         void set_str(Id solvid, Id keyname, const char *str);
3136         $data->set_str($solvid, $keyname, $str);
3137         data.set_str(solvid, keyname, str)
3138         data.set_str(solvid, keyname, str)
3139
3140         void set_poolstr(Id solvid, Id keyname, const char *str);
3141         $data->set_poolstr($solvid, $keyname, $str);
3142         data.set_poolstr(solvid, keyname, str)
3143         data.set_poolstr(solvid, keyname, str)
3144
3145         void set_checksum(Id solvid, Id keyname, Chksum *chksum);
3146         $data->set_checksum($solvid, $keyname, $chksum);
3147         data.set_checksum(solvid, keyname, chksum)
3148         data.set_checksum(solvid, keyname, chksum)
3149
3150         void add_idarray(Id solvid, Id keyname, DepId id);
3151         $data->add_idarray($solvid, $keyname, $id);
3152         data.add_idarray(solvid, keyname, id)
3153         data.add_idarray(solvid, keyname, id)
3154
3155         Id new_handle();
3156         my $handle = $data->new_handle();
3157         handle = data.new_handle()
3158         handle = data.new_handle()
3159
3160         void add_flexarray(Id solvid, Id keyname, Id handle);
3161         $data->add_flexarray($solvid, $keyname, $handle);
3162         data.add_flexarray(solvid, keyname, handle)
3163         data.add_flexarray(solvid, keyname, handle)
3164
3165 Data storage methods. Probably only useful to store data in the special
3166 SOLVID_META solvid that stores repodata meta information. Note that
3167 repodata areas can have their own Id pool (see the REPO_LOCALPOOL flag),
3168 so be careful if you need to store ids. Arrays are created by calling
3169 the add function for every element. A flexarray is an array of
3170 sub-structures, call new_handle to create a new structure, use the
3171 handle as solvid to fill the structure with data and call add_flexarray
3172 to put the structure in an array.
3173
3174
3175 The Datapos Class
3176 -----------------
3177 Datapos objects describe a specific position in the repository data area.
3178 Thus they are only valid until the repository is modified in some way.
3179 Datapos objects can be created by the pos() and parentpos() methods of
3180 a Datamatch object or by accessing the ``meta'' attribute of a repository.
3181
3182 === ATTRIBUTES ===
3183
3184         Repo *repo;                     /* read only */
3185         $data->{repo}
3186         data.repo
3187         data.repo
3188
3189 Back pointer to repository object.
3190
3191 === METHODS ===
3192
3193         Dataiterator(Id keyname, const char *match, int flags)
3194         my $di = $datapos->Dataiterator($keyname, $match, $flags);
3195         di = datapos.Dataiterator(keyname, match, flags)
3196         di = datapos.Dataiterator(keyname, match, flags)
3197
3198 Create a Dataiterator at the position of the datapos object.
3199
3200         const char *lookup_deltalocation(unsigned int *OUTPUT);
3201         my ($location, $medianr) = $datapos->lookup_deltalocation();
3202         location, medianr = datapos.lookup_deltalocation()
3203         location, medianr = datapos.lookup_deltalocation()
3204
3205 Return a tuple containing the on-media location and an optional media number
3206 for a delta rpm. This obviously only works if the data position points to
3207 structure describing a delta rpm.
3208
3209         const char *lookup_deltaseq();
3210         my $seq = $datapos->lookup_deltaseq();
3211         seq = datapos.lookup_deltaseq();
3212         seq = datapos.lookup_deltaseq();
3213
3214 Return the delta rpm sequence from the structure describing a delta rpm.
3215
3216 === DATA RETRIEVAL METHODS ===
3217
3218         const char *lookup_str(Id keyname)
3219         my $string = $datapos->lookup_str($keyname);
3220         string = datapos.lookup_str(keyname)
3221         string = datapos.lookup_str(keyname)
3222
3223         Id lookup_id(Id solvid, Id keyname)
3224         my $id = $datapos->lookup_id($keyname);
3225         id = datapos.lookup_id(keyname)
3226         id = datapos.lookup_id(keyname)
3227
3228         unsigned long long lookup_num(Id keyname, unsigned long long notfound = 0)
3229         my $num = $datapos->lookup_num($keyname);
3230         num = datapos.lookup_num(keyname)
3231         num = datapos.lookup_num(keyname)
3232
3233         bool lookup_void(Id keyname)
3234         my $bool = $datapos->lookup_void($keyname);
3235         bool = datapos.lookup_void(keyname)
3236         bool = datapos.lookup_void(keyname)
3237
3238         Id *lookup_idarray(Id keyname)
3239         my @ids = $datapos->lookup_idarray($keyname);
3240         ids = datapos.lookup_idarray(keyname)
3241         ids = datapos.lookup_idarray(keyname)
3242
3243         Chksum lookup_checksum(Id keyname)
3244         my $chksum = $datapos->lookup_checksum($keyname);
3245         chksum = datapos.lookup_checksum(keyname)
3246         chksum = datapos.lookup_checksum(keyname)
3247
3248 Lookup functions. Note that the returned Ids are always translated into
3249 the Ids of the global pool even if the repodata area contains its own pool.
3250
3251 Author
3252 ------
3253 Michael Schroeder <mls@suse.de>
3254