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