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