Imported Upstream version 0.6.23
[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 than'' 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 want 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 between 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 then 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 a 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 a 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 one 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 to 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 to 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 than 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_ALLOWUNINSTALL*::
1877 Allow the solver to deinstall the matching installed packages if they get
1878 into the way of resolving a dependency. This is like the
1879 SOLVER_FLAG_ALLOW_UNINSTALL flag, but limited to a specific set of packages.
1880
1881 *SOLVER_FAVOR*::
1882 Prefer the specified packages if the solver encounters an alternative. If
1883 a job contains multiple matching favor/disfavor elements, the last one takes
1884 precedence.
1885
1886 *SOLVER_DISFAVOR*::
1887 Avoid the specified packages if the solver encounters an alternative. This
1888 can also be used to block recommended or supplemented packages from being
1889 installed.
1890
1891 *SOLVER_JOBMASK*::
1892 A mask containing all the above action bits.
1893
1894 Action modifier constants:
1895
1896 *SOLVER_WEAK*::
1897 Makes the job a weak job. The solver tries to fulfill weak jobs, but does
1898 not report a problem if it is not possible to do so.
1899
1900 *SOLVER_ESSENTIAL*::
1901 Makes the job an essential job. If there is a problem with the job, the
1902 solver will not propose to remove the job as one solution (unless all
1903 other solutions are also to remove essential jobs).
1904
1905 *SOLVER_CLEANDEPS*::
1906 The solver will try to also erase all packages dragged in through
1907 dependencies when erasing the package. This needs SOLVER_USERINSTALLED
1908 jobs to maximize user satisfaction.
1909
1910 *SOLVER_FORCEBEST*::
1911 Insist on the best package for install, update, and distupgrade jobs. If
1912 this flag is not used, the solver will use the second-best package if the
1913 best package cannot be installed for some reason. When this flag is used,
1914 the solver will generate a problem instead.
1915
1916 *SOLVER_TARGETED*::
1917 Forces targeted operation update and distupgrade jobs. See the section
1918 about targeted updates about more information.
1919
1920 Set constants.
1921
1922 *SOLVER_SETEV*::
1923 The job specified the exact epoch and version of the package set.
1924
1925 *SOLVER_SETEVR*::
1926 The job specified the exact epoch, version, and release of the package set.
1927
1928 *SOLVER_SETARCH*::
1929 The job specified the exact architecture of the packages from the set.
1930
1931 *SOLVER_SETVENDOR*::
1932 The job specified the exact vendor of the packages from the set.
1933
1934 *SOLVER_SETREPO*::
1935 The job specified the exact repository of the packages from the set.
1936
1937 *SOLVER_SETNAME*::
1938 The job specified the exact name of the packages from the set.
1939
1940 *SOLVER_NOAUTOSET*::
1941 Turn of automatic set flag generation for SOLVER_SOLVABLE jobs.
1942
1943 *SOLVER_SETMASK*::
1944 A mask containing all the above set bits.
1945
1946 See the section about set bits for more information.
1947
1948 === ATTRIBUTES ===
1949
1950         Pool *pool;                             /* read only */
1951         $job->{pool}
1952         d.pool
1953         d.pool
1954
1955 Back pointer to pool.
1956
1957         Id how;                                 /* read/write */
1958         $job->{how}
1959         d.how
1960         d.how
1961
1962 Union of the selection, action, action modifier, and set flags.
1963 The selection part describes the semantics of the ``what'' Id.
1964
1965         Id what;                                /* read/write */
1966         $job->{what}
1967         d.what
1968         d.what
1969
1970 Id describing the set of packages, the meaning depends on the
1971 selection part of the ``how'' attribute.
1972
1973 === METHODS ===
1974
1975         Solvable *solvables()
1976         my @solvables = $job->solvables();
1977         solvables = job.solvables()
1978         solvables = job.solvables()
1979
1980 Return the set of solvables of the job as an array of Solvable
1981 objects.
1982
1983         bool isemptyupdate();
1984         $job->isemptyupdate()
1985         job.isemptyupdate()
1986         job.isemptyupdate?
1987
1988 Convenience function to find out if the job describes an update
1989 job with no matching packages, i.e. a job that does nothing.
1990 Some package managers like ``zypper'' like to turn those jobs
1991 into install jobs, i.e. an update of a not-installed package
1992 will result into the installation of the package.
1993
1994         <stringification>
1995         my $str = $job->str;
1996         str = str(job)
1997         str = job.to_s
1998
1999 Return a string describing the job.
2000
2001         <equality>
2002         if ($job1 == $job2)
2003         if job1 == job2:
2004         if job1 == job2
2005
2006 Two jobs are equal if they belong to the same pool and both the
2007 ``how'' and the ``what'' attributes are the same.
2008
2009 === TARGETED UPDATES ===
2010 Libsolv has two modes for upgrades and distupgrade: targeted and
2011 untargeted. Untargeted mode means that the installed packages from
2012 the specified set will be updated to the best version. Targeted means
2013 that packages that can be updated to a package in the specified set
2014 will be updated to the best package of the set.
2015
2016 Here's an example to explain the subtle difference. Suppose that
2017 you have package A installed in version "1.1", "A-1.2" is available
2018 in one of the repositories and there is also package "B" that
2019 obsoletes package A.
2020
2021 An untargeted update of "A" will update the installed "A-1.1" to
2022 package "B", because that is the newest version (B obsoletes A and
2023 is thus newer).
2024
2025 A targeted update of "A" will update "A-1.1" to "A-1.2", as the
2026 set of packages contains both "A-1.1" and "A-1.2", and "A-1.2" is
2027 the newer one.
2028
2029 An untargeted update of "B" will do nothing, as "B" is not installed.
2030
2031 An targeted update of "B" will update "A-1.1" to "B".
2032
2033 Note that the default is to do "auto-targeting", thus if the specified
2034 set of packages does not include an installed package, the solver
2035 will assume targeted operation even if SOLVER_TARGETED is not used.
2036
2037 This mostly matches the intent of the user, with one exception: In
2038 the example above, an update of "A-1.2" will update "A-1.1" to
2039 "A-1.2" (targeted mode), but a second update of "A-1.2" will suddenly
2040 update to "B", as untargeted mode is chosen because "A-1.2" is now
2041 installed.
2042
2043 If you want to have full control over when targeting mode is chosen,
2044 turn off auto-targeting with the SOLVER_FLAG_NO_AUTOTARGET solver option.
2045 In that case, all updates are considered to be untargeted unless they
2046 include the SOLVER_TARGETED flag.
2047
2048 === SET BITS ===
2049 Set bits specify which parts of the specified packages where specified
2050 by the user. It is used by the solver when checking if an operation is
2051 allowed or not. For example, the solver will normally not allow the
2052 downgrade of an installed package. But it will not report a problem if
2053 the SOLVER_SETEVR flag is used, as it then assumes that the user specified
2054 the exact version and thus knows what he is doing.
2055
2056 So if a package "screen-1-1" is installed for the x86_64 architecture and
2057 version "2-1" is only available for the i586 architecture, installing
2058 package "screen-2.1" will ask the user for confirmation because of the
2059 different architecture. When using the Selection class to create jobs
2060 the set bits are automatically added, e.g. selecting ``screen.i586'' will
2061 automatically add SOLVER_SETARCH, and thus no problem will be reported.
2062
2063 The Solver Class
2064 ----------------
2065 Dependency solving is what this library is about. A solver object is needed
2066 for solving to store the result of the solver run. The solver object can be
2067 used multiple times for different jobs, reusing it allows the solver to
2068 re-use the dependency rules it already computed.
2069
2070 === CONSTANTS ===
2071
2072 Flags to modify some of the solver's behavior:
2073
2074 *SOLVER_FLAG_ALLOW_DOWNGRADE*::
2075 Allow the solver to downgrade packages without asking for confirmation
2076 (i.e. reporting a problem).
2077
2078 *SOLVER_FLAG_ALLOW_ARCHCHANGE*::
2079 Allow the solver to change the architecture of an installed package
2080 without asking for confirmation. Note that changes to/from noarch
2081 are always considered to be allowed.
2082   
2083 *SOLVER_FLAG_ALLOW_VENDORCHANGE*::
2084 Allow the solver to change the vendor of an installed package
2085 without asking for confirmation. Each vendor is part of one or more
2086 vendor equivalence classes, normally installed packages may only
2087 change their vendor if the new vendor shares at least one equivalence
2088 class.
2089
2090 *SOLVER_FLAG_ALLOW_NAMECHANGE*::
2091 Allow the solver to change the name of an installed package, i.e.
2092 install a package with a different name that obsoletes the installed
2093 package. This option is on by default.
2094
2095 *SOLVER_FLAG_ALLOW_UNINSTALL*::
2096 Allow the solver to erase installed packages to fulfill the jobs.
2097 This flag also includes the above flags. You may want to set this
2098 flag if you only have SOLVER_ERASE jobs, as in that case it's
2099 better for the user to check the transaction overview instead of
2100 approving every single package that needs to be erased.
2101
2102 *SOLVER_FLAG_DUP_ALLOW_DOWNGRADE*::
2103 Like SOLVER_FLAG_ALLOW_DOWNGRADE, but used in distupgrade mode.
2104
2105 *SOLVER_FLAG_DUP_ALLOW_ARCHCHANGE*::
2106 Like SOLVER_FLAG_ALLOW_ARCHCHANGE, but used in distupgrade mode.
2107
2108 *SOLVER_FLAG_DUP_ALLOW_VENDORCHANGE*::
2109 Like SOLVER_FLAG_ALLOW_VENDORCHANGE, but used in distupgrade mode.
2110
2111 *SOLVER_FLAG_DUP_ALLOW_NAMECHANGE*::
2112 Like SOLVER_FLAG_ALLOW_NAMECHANGE, but used in distupgrade mode.
2113
2114 *SOLVER_FLAG_NO_UPDATEPROVIDE*::
2115 If multiple packages obsolete an installed package, the solver checks
2116 the provides of every such package and ignores all packages that
2117 do not provide the installed package name. Thus, you can have an
2118 official update candidate that provides the old name, and other
2119 packages that also obsolete the package but are not considered for
2120 updating. If you cannot use this feature, you can turn it off
2121 by setting this flag.
2122
2123 *SOLVER_FLAG_SPLITPROVIDES*::
2124 Make the solver aware of special provides of the form
2125 ``<packagename>:<path>'' used in SUSE systems to support package
2126 splits.
2127
2128 *SOLVER_FLAG_IGNORE_RECOMMENDED*::
2129 Do not process optional (aka weak) dependencies.
2130
2131 *SOLVER_FLAG_ADD_ALREADY_RECOMMENDED*::
2132 Install recommended or supplemented packages even if they have no
2133 connection to the current transaction. You can use this feature
2134 to implement a simple way for the user to install new recommended
2135 packages that were not available in the past.
2136   
2137 *SOLVER_FLAG_NO_INFARCHCHECK*::
2138 Turn off the inferior architecture checking that is normally done
2139 by the solver. Normally, the solver allows only the installation
2140 of packages from the "best" architecture if a package is available
2141 for multiple architectures.
2142
2143 *SOLVER_FLAG_BEST_OBEY_POLICY*::
2144 Make the SOLVER_FORCEBEST job option consider only packages that
2145 meet the policies for installed packages, i.e. no downgrades,
2146 no architecture change, no vendor change (see the first flags
2147 of this section). If the flag is not specified, the solver will
2148 enforce the installation of the best package ignoring the
2149 installed packages, which may conflict with the set policy.
2150
2151 *SOLVER_FLAG_NO_AUTOTARGET*::
2152 Do not enable auto-targeting up update and distupgrade jobs. See
2153 the section on targeted updates for more information.
2154
2155 *SOLVER_FLAG_KEEP_ORPHANS*::
2156 Do not allow orphaned packages to be deinstalled if they get
2157 in the way of resolving other packages.
2158
2159 *SOLVER_FLAG_BREAK_ORPHANS*::
2160 Ignore dependencies of orphaned packages that get in the way
2161 of resolving non-orphaned ones. Setting the flag might result
2162 in no longer working packages in case they are orphaned.
2163
2164 *SOLVER_FLAG_FOCUS_INSTALLED*::
2165 Resolve installed packages before resolving the given job.
2166 Setting this flag means that the solver will prefer picking
2167 a package version that fits the other installed packages
2168 over updating installed packages.
2169
2170 Basic rule types:
2171
2172 *SOLVER_RULE_UNKNOWN*::
2173 A rule of an unknown class. You should never encounter those.
2174
2175 *SOLVER_RULE_PKG*::
2176 A package dependency rule.
2177
2178 *SOLVER_RULE_UPDATE*::
2179 A rule to implement the update policy of installed packages. Every
2180 installed package has an update rule that consists of the packages
2181 that may replace the installed package.
2182
2183 *SOLVER_RULE_FEATURE*::
2184 Feature rules are fallback rules used when an update rule is disabled. They
2185 include all packages that may replace the installed package ignoring the
2186 update policy, i.e. they contain downgrades, arch changes and so on.
2187 Without them, the solver would simply erase installed packages if their
2188 update rule gets disabled.
2189
2190 *SOLVER_RULE_JOB*::
2191 Job rules implement the job given to the solver.
2192
2193 *SOLVER_RULE_DISTUPGRADE*::
2194 These are simple negative assertions that make sure that only packages
2195 are kept that are also available in one of the repositories.
2196
2197 *SOLVER_RULE_INFARCH*::
2198 Infarch rules are also negative assertions, they disallow the installation
2199 of packages when there are packages of the same name but with a better
2200 architecture.
2201
2202 *SOLVER_RULE_CHOICE*::
2203 Choice rules are used to make sure that the solver prefers updating to
2204 installing different packages when some dependency is provided by
2205 multiple packages with different names. The solver may always break
2206 choice rules, so you will not see them when a problem is found.
2207
2208 *SOLVER_RULE_LEARNT*::
2209 These rules are generated by the solver to keep it from running into
2210 the same problem multiple times when it has to backtrack. They are
2211 the main reason why a sat solver is faster than other dependency solver
2212 implementations.
2213
2214 Special dependency rule types:
2215
2216 *SOLVER_RULE_PKG_NOT_INSTALLABLE*::
2217 This rule was added to prevent the installation of a package of an
2218 architecture that does not work on the system.
2219
2220 *SOLVER_RULE_PKG_NOTHING_PROVIDES_DEP*::
2221 The package contains a required dependency which was not provided by
2222 any package.
2223
2224 *SOLVER_RULE_PKG_REQUIRES*::
2225 Similar to SOLVER_RULE_PKG_NOTHING_PROVIDES_DEP, but in this case
2226 some packages provided the dependency but none of them could be
2227 installed due to other dependency issues.
2228
2229 *SOLVER_RULE_PKG_SELF_CONFLICT*::
2230 The package conflicts with itself. This is not allowed by older rpm
2231 versions.
2232
2233 *SOLVER_RULE_PKG_CONFLICTS*::
2234 To fulfill the dependencies two packages need to be installed, but
2235 one of the packages contains a conflict with the other one.
2236
2237 *SOLVER_RULE_PKG_SAME_NAME*::
2238 The dependencies can only be fulfilled by multiple versions of
2239 a package, but installing multiple versions of the same package
2240 is not allowed.
2241
2242 *SOLVER_RULE_PKG_OBSOLETES*::
2243 To fulfill the dependencies two packages need to be installed, but
2244 one of the packages obsoletes the other one.
2245
2246 *SOLVER_RULE_PKG_IMPLICIT_OBSOLETES*::
2247 To fulfill the dependencies two packages need to be installed, but
2248 one of the packages has provides a dependency that is obsoleted
2249 by the other one. See the POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES
2250 flag.
2251
2252 *SOLVER_RULE_PKG_INSTALLED_OBSOLETES*::
2253 To fulfill the dependencies a package needs to be installed that is
2254 obsoleted by an installed package. See the POOL_FLAG_NOINSTALLEDOBSOLETES
2255 flag.
2256
2257 *SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP*::
2258 The user asked for installation of a package providing a specific
2259 dependency, but no available package provides it.
2260
2261 *SOLVER_RULE_JOB_UNKNOWN_PACKAGE*::
2262 The user asked for installation of a package with a specific name,
2263 but no available package has that name.
2264
2265 *SOLVER_RULE_JOB_PROVIDED_BY_SYSTEM*::
2266 The user asked for the erasure of a dependency that is provided by the
2267 system (i.e. for special hardware or language dependencies), this
2268 cannot be done with a job.
2269
2270 *SOLVER_RULE_JOB_UNSUPPORTED*::
2271 The user asked for something that is not yet implemented, e.g. the
2272 installation of all packages at once.
2273
2274 Policy error constants
2275
2276 *POLICY_ILLEGAL_DOWNGRADE*::
2277 The solver ask for permission before downgrading packages.
2278
2279 *POLICY_ILLEGAL_ARCHCHANGE*::
2280 The solver ask for permission before changing the architecture of installed
2281 packages.
2282
2283 *POLICY_ILLEGAL_VENDORCHANGE*::
2284 The solver ask for permission before changing the vendor of installed
2285 packages.
2286
2287 *POLICY_ILLEGAL_NAMECHANGE*::
2288 The solver ask for permission before replacing an installed packages with
2289 a package that has a different name.
2290
2291 Solution element type constants
2292
2293 *SOLVER_SOLUTION_JOB*::
2294 The problem can be solved by removing the specified job.
2295
2296 *SOLVER_SOLUTION_POOLJOB*::
2297 The problem can be solved by removing the specified job that is defined
2298 in the pool.
2299
2300 *SOLVER_SOLUTION_INFARCH*::
2301 The problem can be solved by allowing the installation of the specified
2302 package with an inferior architecture.
2303
2304 *SOLVER_SOLUTION_DISTUPGRADE*::
2305 The problem can be solved by allowing to keep the specified package
2306 installed.
2307
2308 *SOLVER_SOLUTION_BEST*::
2309 The problem can be solved by allowing to install the specified package
2310 that is not the best available package.
2311
2312 *SOLVER_SOLUTION_ERASE*::
2313 The problem can be solved by allowing to erase the specified package.
2314
2315 *SOLVER_SOLUTION_REPLACE*::
2316 The problem can be solved by allowing to replace the package with some
2317 other package.
2318
2319 *SOLVER_SOLUTION_REPLACE_DOWNGRADE*::
2320 The problem can be solved by allowing to replace the package with some
2321 other package that has a lower version.
2322
2323 *SOLVER_SOLUTION_REPLACE_ARCHCHANGE*::
2324 The problem can be solved by allowing to replace the package with some
2325 other package that has a different architecture.
2326
2327 *SOLVER_SOLUTION_REPLACE_VENDORCHANGE*::
2328 The problem can be solved by allowing to replace the package with some
2329 other package that has a different vendor.
2330
2331 *SOLVER_SOLUTION_REPLACE_NAMECHANGE*::
2332 The problem can be solved by allowing to replace the package with some
2333 other package that has a different name.
2334
2335
2336 Reason constants
2337
2338 *SOLVER_REASON_UNRELATED*::
2339 The package status did not change as it was not related to any job.
2340
2341 *SOLVER_REASON_UNIT_RULE*::
2342 The package was installed/erased/kept because of a unit rule, i.e. a rule
2343 where all literals but one were false.
2344
2345 *SOLVER_REASON_KEEP_INSTALLED*::
2346 The package was chosen when trying to keep as many packages installed as
2347 possible.
2348
2349 *SOLVER_REASON_RESOLVE_JOB*::
2350 The decision happened to fulfill a job rule.
2351
2352 *SOLVER_REASON_UPDATE_INSTALLED*::
2353 The decision happened to fulfill a package update request.
2354
2355 *SOLVER_REASON_CLEANDEPS_ERASE*::
2356 The package was erased when cleaning up dependencies from other erased
2357 packages.
2358
2359 *SOLVER_REASON_RESOLVE*::
2360 The package was installed to fulfill package dependencies.
2361
2362 *SOLVER_REASON_WEAKDEP*::
2363 The package was installed because of a weak dependency (Recommends or
2364 Supplements).
2365
2366 *SOLVER_REASON_RESOLVE_ORPHAN*::
2367 The decision about the package was made when deciding the fate of orphaned
2368 packages.
2369
2370 *SOLVER_REASON_RECOMMENDED*::
2371 This is a special case of SOLVER_REASON_WEAKDEP.
2372
2373 *SOLVER_REASON_SUPPLEMENTED*::
2374 This is a special case of SOLVER_REASON_WEAKDEP.
2375
2376
2377 === ATTRIBUTES ===
2378
2379         Pool *pool;                             /* read only */
2380         $job->{pool}
2381         d.pool
2382         d.pool
2383
2384 Back pointer to pool.
2385
2386 === METHODS ===
2387
2388         int set_flag(int flag, int value)
2389         my $oldvalue = $solver->set_flag($flag, $value);
2390         oldvalue = solver.set_flag(flag, value)
2391         oldvalue = solver.set_flag(flag, value)
2392
2393         int get_flag(int flag)
2394         my $value = $solver->get_flag($flag);
2395         value = solver.get_flag(flag)
2396         value = solver.get_flag(flag)
2397
2398 Set/get a solver specific flag. The flags define the policies the solver has
2399 to obey. The flags are explained in the CONSTANTS section of this class.
2400
2401         Problem *solve(Job *jobs)
2402         my @problems = $solver->solve(\@jobs);
2403         problems = solver.solve(jobs)
2404         problems = solver.solve(jobs)
2405
2406 Solve a problem specified in the job list (plus the jobs defined in the pool).
2407 Returns an array of problems that need user interaction, or an empty array
2408 if no problems were encountered. See the Problem class on how to deal with
2409 problems.
2410
2411         Transaction transaction()
2412         my $trans = $solver->transaction();
2413         trans = solver.transaction()
2414         trans = solver.transaction()
2415
2416 Return the transaction to implement the calculated package changes. A transaction
2417 is available even if problems were found, this is useful for interactive user
2418 interfaces that show both the job result and the problems.
2419
2420         int reason = describe_decision(Solvable *s, Rule *OUTPUT)
2421         my ($reason, $rule) = $solver->describe_decision($solvable);
2422         (reason, rule) = solver.describe_decision(solvable)
2423         (reason, rule) = solver.describe_decision(solvable)
2424
2425 Return the reason why a specific solvable was installed or erased. For most of
2426 the reasons the rule that triggered the decision is also returned.
2427
2428 The Problem Class
2429 -----------------
2430 Problems are the way of the solver to interact with the user. You can simply list
2431 all problems and terminate your program, but a better way is to present solutions to
2432 the user and let him pick the ones he likes.
2433
2434 === ATTRIBUTES ===
2435
2436         Solver *solv;                           /* read only */
2437         $problem->{solv}
2438         problem.solv
2439         problem.solv
2440
2441 Back pointer to solver object.
2442
2443         Id id;                                  /* read only */
2444         $problem->{id}
2445         problem.id
2446         problem.id
2447
2448 Id of the problem. The first problem has Id 1, they are numbered consecutively.
2449
2450 === METHODS ===
2451
2452         Rule findproblemrule()
2453         my $probrule = $problem->findproblemrule();
2454         probrule = problem.findproblemrule()
2455         probrule = problem.findproblemrule()
2456
2457 Return the rule that caused the problem. Of course in most situations there is no
2458 single responsible rule, but many rules that interconnect with each created the
2459 problem. Nevertheless, the solver uses some heuristic approach to find a rule
2460 that somewhat describes the problem best to the user.
2461
2462         Rule *findallproblemrules(bool unfiltered = 0)
2463         my @probrules = $problem->findallproblemrules();
2464         probrules = problem.findallproblemrule()
2465         probrules = problem.findallproblemrule()
2466
2467 Return all rules responsible for the problem. The returned set of rules contains
2468 all the needed information why there was a problem, but it's hard to present
2469 them to the user in a sensible way. The default is to filter out all update and
2470 job rules (unless the returned rules only consist of those types).
2471
2472         Solution *solutions()
2473         my @solutions = $problem->solutions();
2474         solutions = problem.solutions()
2475         solutions = problem.solutions()
2476
2477 Return an array containing multiple possible solutions to fix the problem. See
2478 the solution class for more information.
2479
2480         int solution_count()
2481         my $cnt = $problem->solution_count();
2482         cnt = problem.solution_count()
2483         cnt = problem.solution_count()
2484
2485 Return the number of solutions without creating solution objects.
2486
2487         <stringification>
2488         my $str = $problem->str;
2489         str = str(problem)
2490         str = problem.to_s
2491
2492 Return a string describing the problem. This is a convenience function, it is
2493 a shorthand for calling findproblemrule(), then ruleinfo() on the problem
2494 rule and problemstr() on the ruleinfo object.
2495
2496 The Rule Class
2497 --------------
2498 Rules are the basic block of sat solving. Each package dependency gets translated
2499 into one or multiple rules.
2500
2501 === ATTRIBUTES ===
2502
2503         Solver *solv;                           /* read only */
2504         $rule->{solv}
2505         rule.solv
2506         rule.solv
2507
2508 Back pointer to solver object.
2509
2510         Id id;                                  /* read only */
2511         $rule->{id}
2512         rule.id
2513         rule.id
2514
2515 The id of the rule.
2516
2517         int type;                               /* read only */
2518         $rule->{type}
2519         rule.type
2520         rule.type
2521
2522 The basic type of the rule. See the constant section of the solver class for the type list.
2523
2524 === METHODS ===
2525
2526         Ruleinfo info()
2527         my $ruleinfo = $rule->info();
2528         ruleinfo = rule.info()
2529         ruleinfo = rule.info()
2530
2531 Return a Ruleinfo object that contains information about why the rule was created. But
2532 see the allinfos() method below.
2533
2534         Ruleinfo *allinfos()
2535         my @ruleinfos = $rule->allinfos();
2536         ruleinfos = rule.allinfos()
2537         ruleinfos = rule.allinfos()
2538
2539 As the same dependency rule can get created because of multiple dependencies, one
2540 Ruleinfo is not enough to describe the reason. Thus the allinfos() method returns
2541 an array of all infos about a rule.
2542
2543         <equality>
2544         if ($rule1 == $rule2)
2545         if rule1 == rule2:
2546         if rule1 == rule2
2547
2548 Two rules are equal if they belong to the same solver and have the same id.
2549
2550 The Ruleinfo Class
2551 ------------------
2552 A Ruleinfo describes one reason why a rule was created.
2553
2554 === ATTRIBUTES ===
2555
2556         Solver *solv;                           /* read only */
2557         $ruleinfo->{solv}
2558         ruleinfo.solv
2559         ruleinfo.solv
2560
2561 Back pointer to solver object.
2562
2563         int type;                               /* read only */
2564         $ruleinfo->{type}
2565         ruleinfo.type
2566         ruleinfo.type
2567
2568 The type of the ruleinfo. See the constant section of the solver class for the
2569 rule type list and the special type list.
2570
2571         Dep *dep;                               /* read only */
2572         $ruleinfo->{dep}
2573         ruleinfo.dep
2574         ruleinfo.dep
2575
2576 The dependency leading to the creation of the rule.
2577
2578         Dep *dep_id;                            /* read only */
2579         $ruleinfo->{'dep_id'}
2580         ruleinfo.dep_id
2581         ruleinfo.dep_id
2582
2583 The Id of the dependency leading to the creation of the rule, or zero.
2584
2585         Solvable *solvable;                     /* read only */
2586         $ruleinfo->{solvable}
2587         ruleinfo.solvable
2588         ruleinfo.solvable
2589
2590 The involved Solvable, e.g. the one containing the dependency.
2591
2592         Solvable *othersolvable;                /* read only */
2593         $ruleinfo->{othersolvable}
2594         ruleinfo.othersolvable
2595         ruleinfo.othersolvable
2596
2597 The other involved Solvable (if any), e.g. the one containing providing
2598 the dependency for conflicts.
2599
2600         const char *problemstr();
2601         my $str = $ruleinfo->problemstr();
2602         str = ruleinfo.problemstr()
2603         str = ruleinfo.problemstr()
2604
2605 A string describing the ruleinfo from a problem perspective. This probably
2606 only makes sense if the rule is part of a problem.
2607
2608 The Solution Class
2609 ------------------
2610 A solution solves one specific problem. It consists of multiple solution elements
2611 that all need to be executed.
2612
2613 === ATTRIBUTES ===
2614
2615         Solver *solv;                           /* read only */
2616         $solution->{solv}
2617         solution.solv
2618         solution.solv
2619
2620 Back pointer to solver object.
2621
2622         Id problemid;                           /* read only */
2623         $solution->{problemid}
2624         solution.problemid
2625         solution.problemid
2626
2627 Id of the problem the solution solves.
2628
2629         Id id;                                  /* read only */
2630         $solution->{id}
2631         solution.id
2632         solution.id
2633
2634 Id of the solution. The first solution has Id 1, they are numbered consecutively.
2635
2636 === METHODS ===
2637
2638         Solutionelement *elements(bool expandreplaces = 0)
2639         my @solutionelements = $solution->elements();
2640         solutionelements = solution.elements()
2641         solutionelements = solution.elements()
2642
2643 Return an array containing the elements describing what needs to be done to
2644 implement the specific solution. If expandreplaces is true, elements of type
2645 SOLVER_SOLUTION_REPLACE will be replaced by one or more elements replace
2646 elements describing the policy mismatches.
2647
2648         int element_count()
2649         my $cnt = $solution->solution_count();
2650         cnt = solution.element_count()
2651         cnt = solution.element_count()
2652
2653 Return the number of solution elements without creating objects. Note that the
2654 count does not match the number of objects returned by the elements() method
2655 of expandreplaces is set to true.
2656
2657
2658 The Solutionelement Class
2659 -------------------------
2660 A solution element describes a single action of a solution. The action is always
2661 either to remove one specific job or to add a new job that installs or erases
2662 a single specific package.
2663
2664 === ATTRIBUTES ===
2665
2666         Solver *solv;                           /* read only */
2667         $solutionelement->{solv}
2668         solutionelement.solv
2669         solutionelement.solv
2670
2671 Back pointer to solver object.
2672
2673         Id problemid;                           /* read only */
2674         $solutionelement->{problemid}
2675         solutionelement.problemid
2676         solutionelement.problemid
2677
2678 Id of the problem the element (partly) solves.
2679
2680         Id solutionid;                          /* read only */
2681         $solutionelement->{solutionid}
2682         solutionelement.solutionid
2683         solutionelement.solutionid
2684
2685 Id of the solution the element is a part of.
2686
2687         Id id;                                  /* read only */
2688         $solutionelement->{id}
2689         solutionelement.id
2690         solutionelement.id
2691
2692 Id of the solution element. The first element has Id 1, they are numbered consecutively.
2693
2694         Id type;                                /* read only */
2695         $solutionelement->{type}
2696         solutionelement.type
2697         solutionelement.type
2698
2699 Type of the solution element. See the constant section of the solver class for the
2700 existing types.
2701
2702         Solvable *solvable;                     /* read only */
2703         $solutionelement->{solvable}
2704         solutionelement.solvable
2705         solutionelement.solvable
2706
2707 The installed solvable that needs to be replaced for replacement elements.
2708
2709         Solvable *replacement;                  /* read only */
2710         $solutionelement->{replacement}
2711         solutionelement.replacement
2712         solutionelement.replacement
2713
2714 The solvable that needs to be installed to fix the problem.
2715
2716         int jobidx;                             /* read only */
2717         $solutionelement->{jobidx}
2718         solutionelement.jobidx
2719         solutionelement.jobidx
2720
2721 The index of the job that needs to be removed to fix the problem, or -1 if the
2722 element is of another type. Note that it's better to change the job to SOLVER_NOOP
2723 type so that the numbering of other elements does not get disturbed. This
2724 method works both for types SOLVER_SOLUTION_JOB and SOLVER_SOLUTION_POOLJOB.
2725
2726 === METHODS ===
2727
2728         Solutionelement *replaceelements()
2729         my @solutionelements = $solutionelement->replaceelements();
2730         solutionelements = solutionelement.replaceelements()
2731         solutionelements = solutionelement.replaceelements()
2732
2733 If the solution element is of type SOLVER_SOLUTION_REPLACE, return an array of
2734 elements describing the policy mismatches, otherwise return a copy of the
2735 element. See also the ``expandreplaces'' option in the solution's elements()
2736 method.
2737
2738         int illegalreplace()
2739         my $illegal = $solutionelement->illegalreplace();
2740         illegal = solutionelement.illegalreplace()
2741         illegal = solutionelement.illegalreplace()
2742
2743 Return an integer that contains the policy mismatch bits or-ed together, or
2744 zero if there was no policy mismatch. See the policy error constants in
2745 the solver class.
2746
2747         Job Job()
2748         my $job = $solutionelement->Job();
2749         illegal = solutionelement.Job()
2750         illegal = solutionelement.Job()
2751
2752 Create a job that implements the solution element. Add this job to the array
2753 of jobs for all elements of type different to SOLVER_SOLUTION_JOB and
2754 SOLVER_SOLUTION_POOLJOB. For the later two, a SOLVER_NOOB Job is created,
2755 you should replace the old job with the new one.
2756
2757         const char *str()
2758         my $str = $solutionelement->str();
2759         str = solutionelement.str()
2760         str = solutionelement.str()
2761
2762 A string describing the change the solution element consists of.
2763
2764 The Transaction Class
2765 ---------------------
2766 Transactions describe the output of a solver run. A transaction contains
2767 a number of transaction elements, each either the installation of a new
2768 package or the removal of an already installed package. The Transaction
2769 class supports a classify() method that puts the elements into different
2770 groups so that a transaction can be presented to the user in a meaningful
2771 way.
2772
2773 === CONSTANTS ===
2774
2775 Transaction element types, both active and passive
2776
2777 *SOLVER_TRANSACTION_IGNORE*::
2778 This element does nothing. Used to map element types that do not match
2779 the view mode.
2780
2781 *SOLVER_TRANSACTION_INSTALL*::
2782 This element installs a package.
2783
2784 *SOLVER_TRANSACTION_ERASE*::
2785 This element erases a package.
2786
2787 *SOLVER_TRANSACTION_MULTIINSTALL*::
2788 This element installs a package with a different version keeping the other
2789 versions installed.
2790
2791 *SOLVER_TRANSACTION_MULTIREINSTALL*::
2792 This element reinstalls an installed package keeping the other versions
2793 installed.
2794
2795 Transaction element types, active view
2796
2797 *SOLVER_TRANSACTION_REINSTALL*::
2798 This element re-installs a package, i.e. installs the same package again.
2799
2800 *SOLVER_TRANSACTION_CHANGE*::
2801 This element installs a package with same name, version, architecture but
2802 different content.
2803
2804 *SOLVER_TRANSACTION_UPGRADE*::
2805 This element installs a newer version of an installed package.
2806
2807 *SOLVER_TRANSACTION_DOWNGRADE*::
2808 This element installs an older version of an installed package.
2809
2810 *SOLVER_TRANSACTION_OBSOLETES*::
2811 This element installs a package that obsoletes an installed package.
2812
2813 Transaction element types, passive view
2814
2815 *SOLVER_TRANSACTION_REINSTALLED*::
2816 This element re-installs a package, i.e. installs the same package again.
2817
2818 *SOLVER_TRANSACTION_CHANGED*::
2819 This element replaces an installed package with one of the same name,
2820 version, architecture but different content.
2821
2822 *SOLVER_TRANSACTION_UPGRADED*::
2823 This element replaces an installed package with a new version.
2824
2825 *SOLVER_TRANSACTION_DOWNGRADED*::
2826 This element replaces an installed package with an old version.
2827
2828 *SOLVER_TRANSACTION_OBSOLETED*::
2829 This element replaces an installed package with a package that obsoletes
2830 it.
2831
2832 Pseudo element types for showing extra information used by classify()
2833
2834 *SOLVER_TRANSACTION_ARCHCHANGE*::
2835 This element replaces an installed package with a package of a different
2836 architecture.
2837
2838 *SOLVER_TRANSACTION_VENDORCHANGE*::
2839 This element replaces an installed package with a package of a different
2840 vendor.
2841
2842 Transaction mode flags
2843
2844 *SOLVER_TRANSACTION_SHOW_ACTIVE*::
2845 Filter for active view types. The default is to return passive view type,
2846 i.e. to show how the installed packages get changed.
2847
2848 *SOLVER_TRANSACTION_SHOW_OBSOLETES*::
2849 Do not map the obsolete view type into INSTALL/ERASE elements.
2850
2851 *SOLVER_TRANSACTION_SHOW_ALL*::
2852 If multiple packages replace an installed package, only the best of them
2853 is kept as OBSOLETE element, the other ones are mapped to INSTALL/ERASE
2854 elements. This is because most applications want to show just one package
2855 replacing the installed one. The SOLVER_TRANSACTION_SHOW_ALL makes the
2856 library keep all OBSOLETE elements.
2857
2858 *SOLVER_TRANSACTION_SHOW_MULTIINSTALL*::
2859 The library maps MULTIINSTALL elements to simple INSTALL elements. This
2860 flag can be used to disable the mapping.
2861
2862 *SOLVER_TRANSACTION_CHANGE_IS_REINSTALL*::
2863 Use this flag if you want to map CHANGE elements to the REINSTALL type.
2864
2865 *SOLVER_TRANSACTION_OBSOLETE_IS_UPGRADE*::
2866 Use this flag if you want to map OBSOLETE elements to the UPGRADE type.
2867
2868 *SOLVER_TRANSACTION_MERGE_ARCHCHANGES*::
2869 Do not add extra categories for every architecture change, instead cumulate
2870 them in one category.
2871   
2872 *SOLVER_TRANSACTION_MERGE_VENDORCHANGES*::
2873 Do not add extra categories for every vendor change, instead cumulate
2874 them in one category.
2875
2876 *SOLVER_TRANSACTION_RPM_ONLY*::
2877 Special view mode that just returns IGNORE, ERASE, INSTALL, MULTIINSTALL
2878 elements. Useful if you want to find out what to feed to the underlying
2879 package manager.
2880
2881 Transaction order flags
2882
2883 *SOLVER_TRANSACTION_KEEP_ORDERDATA*::
2884 Do not throw away the dependency graph used for ordering the transaction.
2885 This flag is needed if you want to do manual ordering.
2886
2887 === ATTRIBUTES ===
2888
2889         Pool *pool;                             /* read only */
2890         $trans->{pool}
2891         trans.pool
2892         trans.pool
2893
2894 Back pointer to pool.
2895
2896 === METHODS ===
2897
2898         bool isempty();
2899         $trans->isempty()
2900         trans.isempty()
2901         trans.isempty?
2902
2903 Returns true if the transaction does not do anything, i.e. has no elements.
2904
2905         Solvable *newsolvables();
2906         my @newsolvables = $trans->newsolvables();
2907         newsolvables = trans.newsolvables()
2908         newsolvables = trans.newsolvables()
2909
2910 Return all packages that are to be installed by the transaction. These are
2911 the packages that need to be downloaded from the repositories.
2912
2913         Solvable *keptsolvables();
2914         my @keptsolvables = $trans->keptsolvables();
2915         keptsolvables = trans.keptsolvables()
2916         keptsolvables = trans.keptsolvables()
2917
2918 Return all installed packages that the transaction will keep installed.
2919
2920         Solvable *steps();
2921         my @steps = $trans->steps();
2922         steps = trans.steps()
2923         steps = trans.steps()
2924
2925 Return all solvables that need to be installed (if the returned solvable
2926 is not already installed) or erased (if the returned solvable is installed).
2927 A step is also called a transaction element.
2928
2929         int steptype(Solvable *solvable, int mode)
2930         my $type = $trans->steptype($solvable, $mode);
2931         type = trans.steptype(solvable, mode)
2932         type = trans.steptype(solvable, mode)
2933
2934 Return the transaction type of the specified solvable. See the CONSTANTS
2935 sections for the mode argument flags and the list of returned types.
2936
2937         TransactionClass *classify(int mode = 0)
2938         my @classes = $trans->classify();
2939         classes = trans.classify()
2940         classes = trans.classify()
2941
2942 Group the transaction elements into classes so that they can be displayed
2943 in a structured way. You can use various mapping mode flags to tweak
2944 the result to match your preferences, see the mode argument flag in
2945 the CONSTANTS section. See the TransactionClass class for how to deal
2946 with the returned objects.
2947
2948         Solvable othersolvable(Solvable *solvable);
2949         my $other = $trans->othersolvable($solvable);
2950         other = trans.othersolvable(solvable)
2951         other = trans.othersolvable(solvable)
2952
2953 Return the ``other'' solvable for a given solvable. For installed packages
2954 the other solvable is the best package with the same name that replaces
2955 the installed package, or the best package of the obsoleting packages if
2956 the package does not get replaced by one with the same name.
2957
2958 For to be installed packages, the ``other'' solvable is the best installed
2959 package with the same name that will be replaced, or the best packages
2960 of all the packages that are obsoleted if the new package does not replace
2961 a package with the same name.
2962
2963 Thus, the ``other'' solvable is normally the package that is also shown
2964 for a given package.
2965
2966         Solvable *allothersolvables(Solvable *solvable);
2967         my @others = $trans->allothersolvables($solvable);
2968         others = trans.allothersolvables(solvable)
2969         others = trans.allothersolvables(solvable)
2970
2971 For installed packages, returns all of the packages that replace us. For to
2972 be installed packages, returns all of the packages that the new package
2973 replaces. The special ``other'' solvable is always the first entry of the
2974 returned array.
2975
2976         int calc_installsizechange();
2977         my $change = $trans->calc_installsizechange();
2978         change = trans.calc_installsizechange()
2979         change = trans.calc_installsizechange()
2980
2981 Return the size change of the installed system in kilobytes (kibibytes).
2982
2983         void order(int flags = 0);
2984         $trans->order();
2985         trans.order()
2986         trans.order()
2987
2988 Order the steps in the transactions so that dependent packages are updated
2989 before packages that depend on them. For rpm, you can also use rpmlib's
2990 ordering functionality, debian's dpkg does not provide a way to order a
2991 transaction.
2992
2993 === ACTIVE/PASSIVE VIEW ===
2994
2995 Active view lists what new packages get installed, while passive view shows
2996 what happens to the installed packages. Most often there's not much
2997 difference between the two modes, but things get interesting if multiple
2998 packages get replaced by one new package. Say you have installed packages
2999 A-1-1 and B-1-1, and now install A-2-1 which has a new dependency that
3000 obsoletes B. The transaction elements will be
3001
3002   updated   A-1-1 (other: A-2-1)
3003   obsoleted B-1-1 (other: A-2-1)
3004
3005 in passive mode, but
3006
3007   update A-2-1 (other: A-1-1)
3008   erase  B
3009
3010 in active mode. If the mode contains SOLVER_TRANSACTION_SHOW_ALL, the 
3011 passive mode list will be unchanged but the active mode list will just
3012 contain A-2-1.
3013
3014 The Transactionclass Class
3015 --------------------------
3016 Objects of this type are returned by the classify() Transaction method.
3017
3018 === ATTRIBUTES ===
3019
3020         Transaction *transaction;               /* read only */
3021         $class->{transaction}
3022         class.transaction
3023         class.transaction
3024
3025 Back pointer to transaction object.
3026
3027         int type;                               /* read only */
3028         $class->{type}
3029         class.type
3030         class.type
3031
3032 The type of the transaction elements in the class.
3033
3034         int count;                              /* read only */
3035         $class->{count}
3036         class.count
3037         class.count
3038
3039 The number of elements in the class.
3040
3041         const char *fromstr;
3042         $class->{fromstr}
3043         class.fromstr
3044         class.fromstr
3045
3046 The old vendor or architecture.
3047
3048         const char *tostr;
3049         $class->{tostr}
3050         class.tostr
3051         class.tostr
3052
3053 The new vendor or architecture.
3054
3055         Id fromid;
3056         $class->{fromid}
3057         class.fromid
3058         class.fromid
3059
3060 The id of the old vendor or architecture.
3061
3062         Id toid;
3063         $class->{toid}
3064         class.toid
3065         class.toid
3066
3067 The id of the new vendor or architecture.
3068
3069 === METHODS ===
3070
3071         void solvables();
3072         my @solvables = $class->solvables();
3073         solvables = class.solvables()
3074         solvables = class.solvables()
3075
3076 Return the solvables for all transaction elements in the class.
3077
3078 Checksums
3079 ---------
3080 Checksums (also called hashes) are used to make sure that downloaded data is
3081 not corrupt and also as a fingerprint mechanism to check if data has changed.
3082
3083 === CLASS METHODS ===
3084
3085         Chksum Chksum(Id type)
3086         my $chksum = solv::Chksum->new($type);
3087         chksum = solv.Chksum(type)
3088         chksum = Solv::Chksum.new(type)
3089
3090 Create a checksum object. Currently the following types are supported:
3091
3092         REPOKEY_TYPE_MD5
3093         REPOKEY_TYPE_SHA1
3094         REPOKEY_TYPE_SHA256
3095
3096 These keys are constants in the *solv* class.
3097
3098         Chksum Chksum(Id type, const char *hex)
3099         my $chksum = solv::Chksum->new($type, $hex);
3100         chksum = solv.Chksum(type, hex)
3101         chksum = Solv::Chksum.new(type, hex)
3102
3103 Create an already finalized checksum object from a hex string.
3104
3105         Chksum Chksum_from_bin(Id type, char *bin)
3106         my $chksum = solv::Chksum->from_bin($type, $bin);
3107         chksum = solv.Chksum.from_bin(type, bin)
3108         chksum = Solv::Chksum.from_bin(type, bin)
3109
3110 Create an already finalized checksum object from a binary checksum.
3111
3112 === ATTRIBUTES ===
3113
3114         Id type;                        /* read only */
3115         $chksum->{type}
3116         chksum.type
3117         chksum.type
3118
3119 Return the type of the checksum object.
3120
3121 === METHODS ===
3122
3123         void add(const char *str)
3124         $chksum->add($str);
3125         chksum.add(str)
3126         chksum.add(str)
3127
3128 Add a (binary) string to the checksum.
3129
3130         void add_fp(FILE *fp)
3131         $chksum->add_fp($file);
3132         chksum.add_fp(file)
3133         chksum.add_fp(file)
3134
3135 Add the contents of a file to the checksum.
3136         
3137         void add_stat(const char *filename)
3138         $chksum->add_stat($filename);
3139         chksum.add_stat(filename)
3140         chksum.add_stat(filename)
3141
3142 Stat the file and add the dev/ino/size/mtime member to the checksum. If the
3143 stat fails, the members are zeroed.
3144
3145         void add_fstat(int fd)
3146         $chksum->add_fstat($fd);
3147         chksum.add_fstat(fd)
3148         chksum.add_fstat(fd)
3149
3150 Same as add_stat, but instead of the filename a file descriptor is used.
3151
3152         unsigned char *raw()
3153         my $raw = $chksum->raw();
3154         raw = chksum.raw()
3155         raw = chksum.raw()
3156
3157 Finalize the checksum and return the result as raw bytes. This means that the
3158 result can contain NUL bytes or unprintable characters.
3159
3160         const char *hex()
3161         my $raw = $chksum->hex();
3162         raw = chksum.hex()
3163         raw = chksum.hex()
3164
3165 Finalize the checksum and return the result as hex string.
3166
3167         const char *typestr()
3168         my $typestr = $chksum->typestr();
3169         typestr = chksum.typestr
3170         typestr = chksum.typestr
3171
3172 Return the type of the checksum as a string, e.g. "sha256".
3173
3174         <equality>
3175         if ($chksum1 == $chksum2)
3176         if chksum1 == chksum2:
3177         if chksum1 == chksum2
3178
3179 Checksums are equal if they are of the same type and the finalized results are
3180 the same.
3181
3182         <stringification>
3183         my $str = $chksum->str;
3184         str = str(chksum)
3185         str = chksum.to_s
3186
3187 If the checksum is finished, the checksum is returned as "<type>:<hex>" string.
3188 Otherwise "<type>:unfinished" is returned.
3189
3190
3191 File Management
3192 ---------------
3193 This functions were added because libsolv uses standard *FILE* pointers to
3194 read/write files, but languages like perl have their own implementation of
3195 files. The libsolv functions also support decompression and compression, the
3196 algorithm is selected by looking at the file name extension.
3197
3198         FILE *xfopen(char *fn, char *mode = "r")
3199         my $file = solv::xfopen($path);
3200         file = solv.xfopen(path)
3201         file = Solv::xfopen(path)
3202
3203 Open a file at the specified path. The `mode` argument is passed on to the
3204 stdio library.
3205
3206         FILE *xfopen_fd(char *fn, int fileno)
3207         my $file = solv::xfopen_fd($path, $fileno);
3208         file = solv.xfopen_fd(path, fileno)
3209         file = Solv::xfopen_fd(path, fileno)
3210
3211 Create a file handle from the specified file descriptor. The path argument is
3212 only used to select the correct (de-)compression algorithm, use an empty path
3213 if you want to make sure to read/write raw data. The file descriptor is dup()ed
3214 before the file handle is created.
3215
3216 === METHODS ===
3217
3218         int fileno()
3219         my $fileno = $file->fileno();
3220         fileno = file.fileno()
3221         fileno = file.fileno()
3222
3223 Return file file descriptor of the file. If the file is not open, `-1` is
3224 returned.
3225
3226         void cloexec(bool state)
3227         $file->cloexec($state)
3228         file.cloexec(state)
3229         file.cloexec(state)
3230
3231 Set the close-on-exec flag of the file descriptor. The xfopen function
3232 returns files with close-on-exec turned on, so if you want to pass
3233 a file to some other process you need to call cloexec(0) before calling
3234 exec.
3235
3236         int dup()
3237         my $fileno = $file->dup();
3238         fileno = file.dup()
3239         fileno = file.dup()
3240
3241 Return a copy of the descriptor of the file. If the file is not open, `-1` is
3242 returned.
3243
3244         bool flush()
3245         $file->flush();
3246         file.flush()
3247         file.flush()
3248
3249 Flush the file. Returns false if there was an error. Flushing a closed file
3250 always returns true.
3251
3252         bool close()
3253         $file->close();
3254         file.close()
3255         file.close()
3256
3257 Close the file. This is needed for languages like Ruby that do not destruct
3258 objects right after they are no longer referenced. In that case, it is good
3259 style to close open files so that the file descriptors are freed right away.
3260 Returns false if there was an error.
3261
3262
3263 The Repodata Class
3264 ------------------
3265 The Repodata stores attributes for packages and the repository itself, each
3266 repository can have multiple repodata areas. You normally only need to
3267 directly access them if you implement lazy downloading of repository data.
3268 Repodata areas are created by calling the repository's add_repodata() method 
3269 or by using repo_add methods without the REPO_REUSE_REPODATA or REPO_USE_LOADING
3270 flag.
3271
3272 === ATTRIBUTES ===
3273
3274         Repo *repo;                     /* read only */
3275         $data->{repo}
3276         data.repo
3277         data.repo
3278
3279 Back pointer to repository object.
3280
3281         Id id;                                  /* read only */
3282         $data->{id}
3283         data.id
3284         data.id
3285
3286 The id of the repodata area. Repodata ids of different repositories overlap.
3287
3288 === METHODS ===
3289
3290         internalize();
3291         $data->internalize();
3292         data.internalize()
3293         data.internalize()
3294
3295 Internalize newly added data. The lookup functions will only see the new data
3296 after it has been internalized.
3297
3298         bool write(FILE *fp);
3299         $data->write($fp);
3300         data.write(fp)
3301         data.write(fp)
3302
3303 Write the contents of the repodata area as solv file.
3304
3305         bool add_solv(FILE *fp, int flags = 0);
3306         $data->add_solv($fp);
3307         data.add_solv(fp)
3308         data.add_solv(fp)
3309
3310 Replace a stub repodata object with the data from a solv file. This method
3311 automatically adds the REPO_USE_LOADING flag. It should only be used from
3312 a load callback.
3313
3314         void create_stubs();
3315         $data->create_stubs()
3316         data.create_stubs()
3317         data.create_stubs()
3318
3319 Create stub repodatas from the information stored in the repodata meta
3320 area.
3321
3322         void extend_to_repo();
3323         $data->extend_to_repo();
3324         data.extend_to_repo()
3325         data.extend_to_repo()
3326
3327 Extend the repodata so that it has the same size as the repo it belongs to.
3328 This method is only needed when switching to a just written repodata extension
3329 to make the repodata match the written extension (which is always of the
3330 size of the repo).
3331
3332         <equality>
3333         if ($data1 == $data2)
3334         if data1 == data2:
3335         if data1 == data2
3336
3337 Two repodata objects are equal if they belong to the same repository and have
3338 the same id.
3339
3340 === DATA RETRIEVAL METHODS ===
3341
3342         const char *lookup_str(Id solvid, Id keyname)
3343         my $string = $data->lookup_str($solvid, $keyname);
3344         string = data.lookup_str(solvid, keyname)
3345         string = data.lookup_str(solvid, keyname)
3346
3347         Id *lookup_idarray(Id solvid, Id keyname)
3348         my @ids = $data->lookup_idarray($solvid, $keyname);
3349         ids = data.lookup_idarray(solvid, keyname)
3350         ids = data.lookup_idarray(solvid, keyname)
3351
3352         Chksum lookup_checksum(Id solvid, Id keyname)
3353         my $chksum = $data->lookup_checksum($solvid, $keyname);
3354         chksum = data.lookup_checksum(solvid, keyname)
3355         chksum = data.lookup_checksum(solvid, keyname)
3356
3357 Lookup functions. Return the data element stored in the specified solvable.
3358 The methods probably only make sense to retrieve data from the special
3359 SOLVID_META solvid that stores repodata meta information.
3360
3361 === DATA STORAGE METHODS ===
3362
3363         void set_id(Id solvid, Id keyname, DepId id);
3364         $data->set_id($solvid, $keyname, $id);
3365         data.set_id(solvid, keyname, id)
3366         data.set_id(solvid, keyname, id)
3367
3368         void set_str(Id solvid, Id keyname, const char *str);
3369         $data->set_str($solvid, $keyname, $str);
3370         data.set_str(solvid, keyname, str)
3371         data.set_str(solvid, keyname, str)
3372
3373         void set_poolstr(Id solvid, Id keyname, const char *str);
3374         $data->set_poolstr($solvid, $keyname, $str);
3375         data.set_poolstr(solvid, keyname, str)
3376         data.set_poolstr(solvid, keyname, str)
3377
3378         void set_checksum(Id solvid, Id keyname, Chksum *chksum);
3379         $data->set_checksum($solvid, $keyname, $chksum);
3380         data.set_checksum(solvid, keyname, chksum)
3381         data.set_checksum(solvid, keyname, chksum)
3382
3383         void add_idarray(Id solvid, Id keyname, DepId id);
3384         $data->add_idarray($solvid, $keyname, $id);
3385         data.add_idarray(solvid, keyname, id)
3386         data.add_idarray(solvid, keyname, id)
3387
3388         Id new_handle();
3389         my $handle = $data->new_handle();
3390         handle = data.new_handle()
3391         handle = data.new_handle()
3392
3393         void add_flexarray(Id solvid, Id keyname, Id handle);
3394         $data->add_flexarray($solvid, $keyname, $handle);
3395         data.add_flexarray(solvid, keyname, handle)
3396         data.add_flexarray(solvid, keyname, handle)
3397
3398 Data storage methods. Probably only useful to store data in the special
3399 SOLVID_META solvid that stores repodata meta information. Note that
3400 repodata areas can have their own Id pool (see the REPO_LOCALPOOL flag),
3401 so be careful if you need to store ids. Arrays are created by calling
3402 the add function for every element. A flexarray is an array of
3403 sub-structures, call new_handle to create a new structure, use the
3404 handle as solvid to fill the structure with data and call add_flexarray
3405 to put the structure in an array.
3406
3407
3408 The Datapos Class
3409 -----------------
3410 Datapos objects describe a specific position in the repository data area.
3411 Thus they are only valid until the repository is modified in some way.
3412 Datapos objects can be created by the pos() and parentpos() methods of
3413 a Datamatch object or by accessing the ``meta'' attribute of a repository.
3414
3415 === ATTRIBUTES ===
3416
3417         Repo *repo;                     /* read only */
3418         $data->{repo}
3419         data.repo
3420         data.repo
3421
3422 Back pointer to repository object.
3423
3424 === METHODS ===
3425
3426         Dataiterator(Id keyname, const char *match, int flags)
3427         my $di = $datapos->Dataiterator($keyname, $match, $flags);
3428         di = datapos.Dataiterator(keyname, match, flags)
3429         di = datapos.Dataiterator(keyname, match, flags)
3430
3431 Create a Dataiterator at the position of the datapos object.
3432
3433         const char *lookup_deltalocation(unsigned int *OUTPUT);
3434         my ($location, $medianr) = $datapos->lookup_deltalocation();
3435         location, medianr = datapos.lookup_deltalocation()
3436         location, medianr = datapos.lookup_deltalocation()
3437
3438 Return a tuple containing the on-media location and an optional media number
3439 for a delta rpm. This obviously only works if the data position points to
3440 structure describing a delta rpm.
3441
3442         const char *lookup_deltaseq();
3443         my $seq = $datapos->lookup_deltaseq();
3444         seq = datapos.lookup_deltaseq();
3445         seq = datapos.lookup_deltaseq();
3446
3447 Return the delta rpm sequence from the structure describing a delta rpm.
3448
3449 === DATA RETRIEVAL METHODS ===
3450
3451         const char *lookup_str(Id keyname)
3452         my $string = $datapos->lookup_str($keyname);
3453         string = datapos.lookup_str(keyname)
3454         string = datapos.lookup_str(keyname)
3455
3456         Id lookup_id(Id solvid, Id keyname)
3457         my $id = $datapos->lookup_id($keyname);
3458         id = datapos.lookup_id(keyname)
3459         id = datapos.lookup_id(keyname)
3460
3461         unsigned long long lookup_num(Id keyname, unsigned long long notfound = 0)
3462         my $num = $datapos->lookup_num($keyname);
3463         num = datapos.lookup_num(keyname)
3464         num = datapos.lookup_num(keyname)
3465
3466         bool lookup_void(Id keyname)
3467         my $bool = $datapos->lookup_void($keyname);
3468         bool = datapos.lookup_void(keyname)
3469         bool = datapos.lookup_void(keyname)
3470
3471         Id *lookup_idarray(Id keyname)
3472         my @ids = $datapos->lookup_idarray($keyname);
3473         ids = datapos.lookup_idarray(keyname)
3474         ids = datapos.lookup_idarray(keyname)
3475
3476         Chksum lookup_checksum(Id keyname)
3477         my $chksum = $datapos->lookup_checksum($keyname);
3478         chksum = datapos.lookup_checksum(keyname)
3479         chksum = datapos.lookup_checksum(keyname)
3480
3481 Lookup functions. Note that the returned Ids are always translated into
3482 the Ids of the global pool even if the repodata area contains its own pool.
3483
3484         Dataiterator Dataiterator(Id keyname, const char *match = 0, int flags = 0)
3485         my $di = $datapos->Dataiterator($keyname, $match, $flags);
3486         di = datapos.Dataiterator(keyname, match, flags)
3487         di = datapos.Dataiterator(keyname, match, flags)
3488
3489         for my $d (@$di)
3490         for d in di:
3491         for d in di
3492
3493 Iterate over the matching data elements. See the Dataiterator class for more
3494 information.
3495
3496 Author
3497 ------
3498 Michael Schroeder <mls@suse.de>
3499