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