9 libsolv-bindings - access libsolv from perl/python/ruby
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
23 Libsolv's perl bindings can be loaded with the following statement:
27 Objects are either created by calling the new() method on a class or they
28 are returned by calling methods on other objects.
30 my $pool = solv::Pool->new();
31 my $repo = $pool->add_repo("my_first_repo");
33 Swig encapsulates all objects as tied hashes, thus the attributes can be
34 accessed by treating the object as standard hash reference:
36 $pool->{appdata} = 42;
37 printf "appdata is %d\n", $pool->{appdata};
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:
42 my $iter = $pool->solvables_iter();
43 for my $solvable (@$iter) { ... };
45 As a downside of this approach, iterator objects cannot have attributes.
47 If an array needs to be passed to a method it is usually done by reference,
48 if a method returns an array it returns it on the stack:
50 my @problems = $solver->solve(\@jobs);
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.
55 print $dep->str() . "\n";
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:
61 $pool->set_flag($solv::Pool::POOL_FLAG_OBSOLETEUSESCOLORS, 1);
66 The python bindings can be loaded with:
70 Objects are either created by calling the constructor method for a class or they
71 are returned by calling methods on other objects.
74 repo = pool.add_repo("my_first_repo")
76 Attributes can be accessed as usual:
79 print "appdata is %d" % (pool.appdata)
81 Iterators also work as expected:
83 for solvable in pool.solvables_iter():
85 Arrays are passed and returned as list objects:
88 problems = solver.solve(jobs)
90 The bindings define stringification for many classes, some also have a
91 __repr__ method to ease debugging.
96 Constants are attributes of the classes:
98 pool.set_flag(solv.Pool.POOL_FLAG_OBSOLETEUSESCOLORS, 1);
103 The ruby bindings can be loaded with:
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''.
111 pool = Solv::Pool.new
112 repo = pool.add_repo("my_first_repo")
114 Attributes can be accessed as usual:
117 puts "appdata is #{pool.appdata}"
119 Iterators also work as expected:
121 for solvable in pool.solvables_iter() do ...
123 Arrays are passed and returned as array objects:
126 problems = solver.solve(jobs)
128 Most classes define a to_s method, so objects can be easily stringified.
129 Many also define an inspect() method.
134 Constants live in the namespace of the class they belong to:
136 pool.set_flag(Solv::Pool::POOL_FLAG_OBSOLETEUSESCOLORS, 1);
138 Note that boolean methods have an added trailing ``?'', to be consistent with
141 puts "empty repo" if repo.isempty?
146 This is the main namespace of the library, you cannot create objects of this
147 type but it contains some useful constants.
151 Relational flag constants, the first three can be or-ed together
154 the ``less than'' bit
157 the ``equals to'' bit
160 the ``greater then'' bit
163 used for relations that describe an extra architecture filter, the
164 version part of the relation is interpreted as architecture.
169 Access the meta section of a repository or repodata area. This is
170 like an extra Solvable that has the Id SOLVID_META.
173 Use the data position stored inside of the pool instead of accessing
174 some solvable by Id. The bindings have the Datapos objects as an
175 abstraction mechanism, so you do not need this constant.
183 Always one, describes the empty string
186 The keyname Id of the name of the solvable.
189 see the libsolv-constantids manpage for a list of fixed Ids.
194 The pool is libsolv's central resource manager. A pool consists of Solvables,
195 Repositories, Dependencies, each indexed by Ids.
197 === CLASS METHODS ===
200 my $pool = solv::Pool->new();
202 pool = Solv::Pool.new()
204 Create a new pool instance. In most cases you just need
209 void *appdata; /* read/write */
214 Application specific data that may be used in any way by the code using the
217 Solvable solvables[]; /* read only */
218 my $solvable = $pool->{solvables}->[$solvid];
219 solvable = pool.solvables[solvid]
220 solvable = pool.solvables[solvid]
222 Look up a Solvable by its id.
224 Repo repos[]; /* read only */
225 my $repo = $pool->{repos}->[$repoid];
226 repo = pool.repos[repoid]
227 repo = pool.repos[repoid]
229 Look up a Repository by its id.
231 Repo *installed; /* read/write */
232 $pool->{installed} = $repo;
233 pool.installed = repo
234 pool.installed = repo
236 Define which repository contains all the installed packages.
238 const char *errstr; /* read only */
239 my $err = $pool->{errstr};
243 Return the last error string that was stored in the pool.
247 *POOL_FLAG_PROMOTEEPOCH*::
248 Promote the epoch of the providing dependency to the requesting
249 dependency if it does not contain an epoch. Used at some time
250 in old rpm versions, modern systems should never need this.
252 *POOL_FLAG_FORBIDSELFCONFLICTS*::
253 Disallow the installation of packages that conflict with themselves.
254 Debian always allows self-conflicting packages, rpm used to forbid
255 them but switched to also allowing them recently.
257 *POOL_FLAG_OBSOLETEUSESPROVIDES*::
258 Make obsolete type dependency match against provides instead of
259 just the name and version of packages. Very old versions of rpm
260 used the name/version, then it got switched to provides and later
261 switched back again to just name/version.
263 *POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES*::
264 An implicit obsoletes is the internal mechanism to remove the
265 old package on an update. The default is to remove all packages
266 with the same name, rpm-5 switched to also removing packages
267 providing the same name.
269 *POOL_FLAG_OBSOLETEUSESCOLORS*::
270 Rpm's multilib implementation (used in RedHat and Fedora)
271 distinguishes between 32bit and 64bit packages (the terminology
272 is that they have a different color). If obsoleteusescolors is
273 set, packages with different colors will not obsolete each other.
275 *POOL_FLAG_IMPLICITOBSOLETEUSESCOLORS*::
276 Same as POOL_FLAG_OBSOLETEUSESCOLORS, but used to find out if
277 packages of the same name can be installed in parallel. For
278 current Fedora systems, POOL_FLAG_OBSOLETEUSESCOLORS should be
279 false and POOL_FLAG_IMPLICITOBSOLETEUSESCOLORS should be true
280 (this is the default if FEDORA is defined when libsolv is compiled).
282 *POOL_FLAG_NOINSTALLEDOBSOLETES*::
283 New versions of rpm consider the obsoletes of installed packages
284 when checking for dependency, thus you may not install a package
285 that is obsoleted by some other installed package, unless you
286 also erase the other package.
288 *POOL_FLAG_HAVEDISTEPOCH*::
289 Mandriva added a new field called distepoch that gets checked in
290 version comparison if the epoch/version/release of two packages
293 *POOL_FLAG_NOOBSOLETESMULTIVERSION*::
294 If a package is installed in multiversionmode, rpm used to ignore
295 both the implicit obsoletes and the obsolete dependency of a
296 package. This was changed to ignoring just the implicit obsoletes,
297 thus you may install multiple versions of the same name, but
298 obsoleted packages still get removed.
300 *POOL_FLAG_ADDFILEPROVIDESFILTERED*::
301 Make the addfileprovides method only add files from the standard
302 locations (i.e. the ``bin'' and ``etc'' directories). This is
303 useful if you have only few packages that use non-standard file
304 dependencies, but you still wand the fast speed that addfileprovides()
314 Free a pool. This is currently done with a method instead of relying on
315 reference counting or garbage collection because it's hard to track every
318 void setdebuglevel(int level)
319 $pool->setdebuglevel($level);
320 pool.setdebuglevel(level)
321 pool.setdebuglevel(level)
323 Set the debug level. A value of zero means no debug output, the higher the
324 value, the more output is generated.
326 int set_flag(int flag, int value)
327 my $oldvalue = $pool->set_flag($flag, $value);
328 oldvalue = pool.set_flag(flag, value)
329 oldvalue = pool.set_flag(flag, value)
331 int get_flag(int flag)
332 my $value = $pool->get_flag($flag);
333 value = pool.get_flag(flag)
334 value = pool.get_flag(flag)
336 Set/get a pool specific flag. The flags define how the system works, e.g. how
337 the package manager treats obsoletes. The default flags should be sane for most
338 applications, but in some cases you may want to tweak a flag, for example if
339 you want to solv package dependencies for some other system than yours.
341 void set_rootdir(const char *rootdir)
342 $pool->set_rootdir(rootdir);
343 pool.set_rootdir(rootdir)
344 pool.set_rootdir(rootdir)
346 const char *get_rootdir()
347 my $rootdir = $pool->get_rootdir();
348 rootdir = pool.get_rootdir()
349 rootdir = pool.get_rootdir()
351 Set/get the rootdir to use. This is useful if you want package management
352 to work only in some directory, for example if you want to setup a chroot
353 jail. Note that the rootdir will only be prepended to file paths if the
354 *REPO_USE_ROOTDIR* flag is used.
356 void setarch(const char *arch = 0)
361 Set the architecture for your system. The architecture is used to determine
362 which packages are installable. It defaults to the result of ``uname -m''.
364 Repo add_repo(const char *name)
365 $repo = $pool->add_repo($name);
366 repo = pool.add_repo(name)
367 repo = pool.add_repo(name)
369 Add a Repository with the specified name to the pool. The repository is empty
370 on creation, use the repository methods to populate it with packages.
372 Repoiterator repos_iter()
373 for my $repo (@{$pool->repos_iter()})
374 for repo in pool.repos_iter():
375 for repo in pool.repos_iter()
377 Iterate over the existing repositories.
379 Solvableiterator solvables_iter()
380 for my $solvable (@{$pool->solvables_iter()})
381 for solvable in pool.solvables_iter():
382 for solvable in pool.solvables_iter()
384 Iterate over the existing solvables.
386 Dep Dep(const char *str, bool create = 1)
387 my $dep = $pool->Dep($string);
388 dep = pool.Dep(string)
389 dep = pool.Dep(string)
391 Create an object describing a string or dependency. If the string is currently
392 not in the pool and _create_ is false, *undef*/*None*/*nil* is returned.
394 void addfileprovides()
395 $pool->addfileprovides();
396 pool.addfileprovides()
397 pool.addfileprovides()
399 Id *addfileprovides_queue()
400 my @ids = $pool->addfileprovides_queue();
401 ids = pool.addfileprovides_queue()
402 ids = pool.addfileprovides_queue()
404 Some package managers like rpm allow dependencies on files contained in other
405 packages. To allow libsolv to deal with those dependencies in an efficient way,
406 you need to call the addfileprovides method after creating and reading all
407 repositories. This method will scan all dependency for file names and than scan
408 all packages for matching files. If a filename has been matched, it will be
409 added to the provides list of the corresponding package. The
410 addfileprovides_queue variant works the same way but returns an array
411 containing all file dependencies. This information can be stored in the
412 meta section of the repositories to speed up the next time the
413 repository is loaded and addfileprovides is called.
415 void createwhatprovides()
416 $pool->createwhatprovides();
417 pool.createwhatprovides()
418 pool.createwhatprovides()
420 Create the internal ``whatprovides'' hash over all of the provides of all
421 packages. This method must be called before doing any lookups on provides.
422 It's encouraged to do it right after all repos are set up, usually right after
423 the call to addfileprovides().
425 Solvable *whatprovides(DepId dep)
426 my @solvables = $pool->whatprovides($dep);
427 solvables = pool.whatprovides(dep)
428 solvables = pool.whatprovides(dep)
430 Return all solvables that provide the specified dependency. You can use either
431 a Dep object or an simple Id as argument.
433 Id *matchprovidingids(const char *match, int flags)
434 my @ids = $pool->matchprovidingids($match, $flags);
435 ids = pool.matchprovidingids(match, flags)
436 ids = pool.matchprovidingids(match, flags)
438 Search the names of all provides and return the ones matching the specified
439 string. See the Dataiterator class for the allowed flags.
441 Id towhatprovides(Id *ids)
442 my $offset = $pool->towhatprovides(\@ids);
443 offset = pool.towhatprovides(ids)
444 offset = pool.towhatprovides(ids)
446 ``Internalize'' an array containing Ids. The returned value can be used to
447 create solver jobs working on a specific set of packages. See the Solver class
448 for more information.
450 bool isknownarch(DepId id)
451 my $bool = $pool->isknownarch($id);
452 bool = pool.isknownarch(id)
453 bool = pool.isknownarch?(id)
455 Return true if the specified Id describes a known architecture.
458 my $solver = $pool->Solver();
459 solver = pool.Solver()
460 solver = pool.Solver()
462 Create a new solver object.
464 Job Job(int how, Id what)
465 my $job = $pool->Job($how, $what);
466 job = pool.Job(how, what)
467 job = pool.Job(how, what)
469 Create a new Job object. Kind of low level, in most cases you would use a
470 Selection or Dep job constructor instead.
472 Selection Selection()
473 my $sel = $pool->Selection();
474 sel = pool.Selection()
475 sel = pool.Selection()
477 Create an empty selection. Useful as a starting point for merging other
480 Selection Selection_all()
481 my $sel = $pool->Selection_all();
482 sel = pool.Selection_all()
483 sel = pool.Selection_all()
485 Create a selection containing all packages. Useful as starting point for
486 intersecting other selections or for update/distupgrade jobs.
488 Selection select(const char *name, int flags)
489 my $sel = $pool->select($name, $flags);
490 sel = pool.select(name, flags)
491 sel = pool.select(name, flags)
493 Create a selection by matching packages against the specified string. See the
494 Selection class for a list of flags and how to create solver jobs from a
497 void setpooljobs(Jobs *jobs)
498 $pool->setpooljobs(\@jobs);
499 pool.setpooljobs(jobs)
500 pool.setpooljobs(jobs)
503 @jobs = $pool->getpooljobs();
504 jobs = pool.getpooljobs()
505 jobs = pool.getpooljobs()
507 Get/Set fixed jobs stored in the pool. Those jobs are automatically appended to
508 all solver jobs, they are meant for fixed configurations like which packages
509 can be multiversion installed, which packages were userinstalled or must not be
512 void set_loadcallback(Callable *callback)
513 $pool->setloadcallback(\&callbackfunction);
514 pool.setloadcallback(callbackfunction)
515 pool.setloadcallback { |repodata| ... }
517 Set the callback function called when repository metadata needs to be loaded on
518 demand. To make use of this feature, you need to create repodata stubs that
519 tell the library which data is available but not loaded. If later on the data
520 needs to be accessed, the callback function is called with a repodata argument.
521 You can then load the data (maybe fetching it first from an remote server).
522 The callback should return true if the data has been made available.
524 === DATA RETRIEVAL METHODS ===
526 In the following functions, the _keyname_ argument describes what to retrieve.
527 For the standard cases you can use the available Id constants. For example,
529 $solv::SOLVABLE_SUMMARY
530 solv.SOLVABLE_SUMMARY
531 Solv::SOLVABLE_SUMMARY
533 selects the ``Summary'' entry of a solvable. The _solvid_ argument selects the
534 desired solvable by Id.
536 const char *lookup_str(Id solvid, Id keyname)
537 my $string = $pool->lookup_str($solvid, $keyname);
538 string = pool.lookup_str(solvid, keyname)
539 string = pool.lookup_str(solvid, keyname)
541 Id lookup_id(Id solvid, Id keyname)
542 my $id = $pool->lookup_id($solvid, $keyname);
543 id = pool.lookup_id(solvid, keyname)
544 id = pool.lookup_id(solvid, keyname)
546 unsigned long long lookup_num(Id solvid, Id keyname, unsigned long long notfound = 0)
547 my $num = $pool->lookup_num($solvid, $keyname);
548 num = pool.lookup_num(solvid, keyname)
549 num = pool.lookup_num(solvid, keyname)
551 bool lookup_void(Id solvid, Id keyname)
552 my $bool = $pool->lookup_void($solvid, $keyname);
553 bool = pool.lookup_void(solvid, keyname)
554 bool = pool.lookup_void(solvid, keyname)
556 Id *lookup_idarray(Id solvid, Id keyname)
557 my @ids = $pool->lookup_idarray($solvid, $keyname);
558 ids = pool.lookup_idarray(solvid, keyname)
559 ids = pool.lookup_idarray(solvid, keyname)
561 Chksum lookup_checksum(Id solvid, Id keyname)
562 my $chksum = $pool->lookup_checksum($solvid, $keyname);
563 chksum = pool.lookup_checksum(solvid, keyname)
564 chksum = pool.lookup_checksum(solvid, keyname)
566 Lookup functions. Return the data element stored in the specified solvable.
567 You should probably use the methods of the Solvable class instead.
569 Dataiterator Dataiterator(Id solvid, Id keyname, const char *match, int flags)
570 my $di = $pool->Dataiterator($solvid, $keyname, $match, $flags);
571 di = pool.Dataiterator(solvid, keyname, match, flags)
572 di = pool.Dataiterator(solvid, keyname, match, flags)
578 Iterate over the matching data elements. See the Dataiterator class for more
583 The following methods deal with Ids, i.e. integers representing objects in the
584 pool. They are considered ``low level'', in most cases you would not use them
585 but instead the object orientated methods.
588 $repo = $pool->id2repo($id);
589 repo = pool.id2repo(id)
590 repo = pool.id2repo(id)
592 Lookup an existing Repository by id. You can also do this by using the *repos*
595 Solvable id2solvable(Id id)
596 $solvable = $pool->id2solvable($id);
597 solvable = pool.id2solvable(id)
598 solvable = pool.id2solvable(id)
600 Lookup an existing Repository by id. You can also do this by using the
601 *solvables* attribute.
603 const char *solvid2str(Id id)
604 my $str = $pool->solvid2str($id);
605 str = pool.solvid2str(id)
606 str = pool.solvid2str(id)
608 Return a string describing the Solvable with the specified id. The string
609 consists of the name, version, and architecture of the Solvable.
611 Id str2id(const char *str, bool create = 1)
612 my $id = pool->str2id($string);
613 id = pool.str2id(string)
614 id = pool.str2id(string)
616 const char *id2str(Id id)
617 $string = pool->id2str($id);
618 string = pool.id2str(id)
619 string = pool.id2str(id)
621 Convert a string into an Id and back. If the string is currently not in the
622 pool and _create_ is false, zero is returned.
624 Id rel2id(Id name, Id evr, int flags, bool create = 1)
625 my $id = pool->rel2id($nameid, $evrid, $flags);
626 id = pool.rel2id(nameid, evrid, flags)
627 id = pool.rel2id(nameid, evrid, flags)
629 Create a ``relational'' dependency. Such dependencies consist of a name part,
630 the _flags_ describing the relation, and a version part. The flags are:
632 $solv::REL_EQ | $solv::REL_GT | $solv::REL_LT
633 solv.REL_EQ | solv.REL_GT | solv.REL_LT
634 Solv::REL_EQ | Solv::REL_GT | Solv::REL_LT
636 Thus, if you want a ``\<='' relation, you would use *REL_LT | REL_EQ*.
638 Id id2langid(Id id, const char *lang, bool create = 1)
639 my $id = $pool->id2langid($id, $language);
640 id = pool.id2langid(id, language)
641 id = pool.id2langid(id, language)
643 Create a language specific Id from some other id. This function simply converts
644 the id into a string, appends a dot and the specified language to the string
645 and converts the result back into an Id.
647 const char *dep2str(Id id)
648 $string = pool->dep2str($id);
649 string = pool.dep2str(id)
650 string = pool.dep2str(id)
652 Convert a dependency id into a string. If the id is just a string, this
653 function has the same effect as id2str(). For relational dependencies, the
654 result is the correct ``name relation evr'' string.
659 The dependency class is an object orientated way to work with strings and
660 dependencies. Internally, dependencies are represented as Ids, i.e. simple
661 numbers. Dependency objects can be constructed by using the Pool's Dep()
666 Pool *pool; /* read only */
671 Back reference to the pool this dependency belongs to.
673 Id id; /* read only */
678 The id of this dependency.
682 Dep Rel(int flags, DepId evrid, bool create = 1)
683 my $reldep = $dep->Rel($flags, $evrdep);
684 reldep = dep.Rel(flags, evrdep)
685 reldep = dep.Rel(flags, evrdep)
687 Create a relational dependency from to string dependencies and a flags
688 argument. See the pool's rel2id method for a description of the flags.
690 Selection Selection_name(int setflags = 0)
691 my $sel = $dep->Selection_name();
692 sel = dep.Selection_name()
693 sel = dep.Selection_name()
695 Create a Selection from a dependency. The selection consists of all packages
696 that have a name equal to the dependency. If the dependency is of a relational
697 type, the packages version must also fulfill the dependency.
699 Selection Selection_provides(int setflags = 0)
700 my $sel = $dep->Selection_provides();
701 sel = dep.Selection_provides()
702 sel = dep.Selection_provides()
704 Create a Selection from a dependency. The selection consists of all packages
705 that have at least one provides matching the dependency.
708 my $str = $dep->str();
712 Return a string describing the dependency.
719 Same as calling the str() method.
726 The dependencies are equal if they are part of the same pool and have the same
732 A Repository describes a group of packages, normally coming from the same
733 source. Repositories are created by the Pool's add_repo() method.
737 Pool *pool; /* read only */
742 Back reference to the pool this dependency belongs to.
744 Id id; /* read only */
749 The id of the repository.
751 const char *name; /* read/write */
756 The repositories name. To libsolv, the name is just a string with no specific
759 int priority; /* read/write */
764 The priority of the repository. A higher number means that packages of this
765 repository will be chosen over other repositories, even if they have a greater
768 int subpriority; /* read/write */
773 The sub-priority of the repository. This value is compared when the priorities
774 of two repositories are the same. It is useful to make the library prefer
775 on-disk repositories to remote ones.
777 int nsolvables; /* read only */
782 The number of solvables in this repository.
784 void *appdata; /* read/write */
789 Application specific data that may be used in any way by the code using the
792 Datapos *meta; /* read only */
797 Return a Datapos object of the repodata's metadata. You can use the lookup
798 methods of the Datapos class to lookup metadata attributes, like the repository
803 *REPO_REUSE_REPODATA*::
804 Reuse the last repository data area (``repodata'') instead of creating a
807 *REPO_NO_INTERNALIZE*::
808 Do not internalize the added repository data. This is useful if
809 you plan to add more data because internalization is a costly
813 Use the repodata's pool for Id storage instead of the global pool. Useful
814 if you don't want to pollute the global pool with many unneeded ids, like
815 when storing the filelist.
818 Use the repodata that is currently being loaded instead of creating a new
819 one. This only makes sense if used in a load callback.
821 *REPO_EXTEND_SOLVABLES*::
822 Do not create new solvables for the new data, but match existing solvables
823 and add the data to them. Repository metadata is often split into multiple
824 parts, with one primary file describing all packages and other parts
825 holding information that is normally not needed, like the changelog.
828 Prepend the pool's rootdir to the path when doing file operations.
831 Do not add a location element to the solvables. Useful if the solvables
832 are not in the final position, so you can add the correct location later
835 *SOLV_ADD_NO_STUBS*::
836 Do not create stubs for repository parts that can be downloaded on demand.
838 *SUSETAGS_RECORD_SHARES*::
839 This is specific to the add_susetags() method. Susetags allows to refer to
840 already read packages to save disk space. If this data sharing needs to
841 work over multiple calls to add_susetags, you need to specify this flag so
842 that the share information is made available to subsequent calls.
846 void free(bool reuseids = 0)
851 Free the repository and all solvables it contains. If _reuseids_ is set to
852 true, the solvable ids and the repository id may be reused by the library when
853 added new solvables. Thus you should leave it false if you are not sure that
854 somebody holds a reference.
856 void empty(bool reuseids = 0)
861 Free all the solvables in a repository. The repository will be empty after this
862 call. See the free() method for the meaning of _reuseids_.
869 Return true if there are no solvables in this repository.
872 $repo->internalize();
876 Internalize added data. Data must be internalized before it is available to the
877 lookup and data iterator functions.
884 Write a repo as a ``solv'' file. These files can be read very fast and thus are
885 a good way to cache repository data. Returns false if there was some error
888 Solvableiterator solvables_iter()
889 for my $solvable (@{$repo->solvables_iter()})
890 for solvable in repo.solvables_iter():
891 for solvable in repo.solvables_iter()
893 Iterate over all solvables in a repository.
895 Repodata add_repodata(int flags = 0)
896 my $repodata = $repo->add_repodata();
897 repodata = repo.add_repodata()
898 repodata = repo.add_repodata()
900 Add a new repodata area to the repository. This is normally automatically
901 done by the repo_add methods, so you need this method only in very
905 $repo->create_stubs();
909 Calls the create_stubs() repodata method for the last repodata of the
913 $repo->iscontiguous()
917 Return true if the solvables of this repository are all in a single block with
918 no holes, i.e. they have consecutive ids.
920 Repodata first_repodata()
921 my $repodata = $repo->first_repodata();
922 repodata = repo.first_repodata()
923 repodata = repo.first_repodata()
925 Checks if all repodatas but the first repodata are extensions, and return the
926 first repodata if this is the case. Useful if you want to do a store/retrieve
927 sequence on the repository to reduce the memory using and enable paging, as
928 this does not work if the repository contains multiple non-extension repodata
931 Selection Selection(int setflags = 0)
932 my $sel = $repo->Selection();
933 sel = repo.Selection()
934 sel = repo.Selection()
936 Create a Selection consisting of all packages in the repository.
938 Dataiterator Dataiterator(Id p, Id key, const char *match, int flags)
939 my $di = $repo->Dataiterator($solvid, $keyname, $match, $flags);
940 di = repo.Dataiterator(solvid, keyname, match, flags)
941 di = repo.Dataiterator(solvid, keyname, match, flags)
947 Iterate over the matching data elements in this repository. See the
948 Dataiterator class for more information.
951 my $str = $repo->str;
955 Return the name of the repository, or "Repo#<id>" if no name is set.
958 if ($repo1 == $repo2)
962 Two repositories are equal if they belong to the same pool and have the same id.
964 === DATA ADD METHODS ===
966 Solvable add_solvable()
967 $repo->add_solvable();
971 Add a single empty solvable to the repository. Returns a Solvable object, see
972 the Solvable class for more information.
974 bool add_solv(const char *name, int flags = 0)
975 $repo->add_solv($name);
979 bool add_solv(FILE *fp, int flags = 0)
980 $repo->add_solv($fp);
984 Read a ``solv'' file and add its contents to the repository. These files can be
985 written with the write() method and are normally used as fast cache for
988 bool add_rpmdb(int flags = 0)
993 bool add_rpmdb_reffp(FILE *reffp, int flags = 0)
994 $repo->add_rpmdb_reffp($reffp);
995 repo.add_rpmdb_reffp(reffp)
996 repo.add_rpmdb_reffp(reffp)
998 Add the contents of the rpm database to the repository. If a solv file
999 containing an old version of the database is available, it can be passed as
1000 reffp to speed up reading.
1002 Solvable add_rpm(const char *filename, int flags = 0)
1003 my $solvable = $repo->add_rpm($filename);
1004 solvable = repo.add_rpm(filename)
1005 solvable = repo.add_rpm(filename)
1007 Add the metadata of a single rpm package to the repository.
1009 bool add_rpmdb_pubkeys(int flags = 0)
1010 $repo->add_rpmdb_pubkeys();
1011 repo.add_rpmdb_pubkeys()
1012 repo.add_rpmdb_pubkeys()
1014 Add all pubkeys contained in the rpm database to the repository. Note that
1015 newer rpm versions also allow to store the pubkeys in some directory instead
1016 of the rpm database.
1018 Solvable add_pubkey(const char *keyfile, int flags = 0)
1019 my $solvable = $repo->add_pubkey($keyfile);
1020 solvable = repo.add_pubkey(keyfile)
1021 solvable = repo.add_pubkey(keyfile)
1023 Add a pubkey from a file to the repository.
1025 bool add_rpmmd(FILE *fp, const char *language, int flags = 0)
1026 $repo->add_rpmmd($fp, undef);
1027 repo.add_rpmmd(fp, None)
1028 repo.add_rpmmd(fp, nil)
1030 Add metadata stored in the "rpm-md" format (i.e. from files in the ``repodata''
1031 directory) to a repository. Supported files are "primary", "filelists",
1032 "other", "suseinfo". Do not forget to specify the *REPO_EXTEND_SOLVABLES* for
1033 extension files like "filelists" and "other". Use the _language_ parameter if
1034 you have language extension files, otherwise simply use a *undef*/*None*/*nil*
1037 bool add_repomdxml(FILE *fp, int flags = 0)
1038 $repo->add_repomdxml($fp);
1039 repo.add_repomdxml(fp)
1040 repo.add_repomdxml(fp)
1042 Add the repomd.xml meta description from the "rpm-md" format to the repository.
1043 This file contains information about the repository like keywords, and also a
1044 list of all database files with checksums. The data is added the the "meta"
1045 section of the repository, i.e. no package gets created.
1047 bool add_updateinfoxml(FILE *fp, int flags = 0)
1048 $repo->add_updateinfoxml($fp);
1049 repo.add_updateinfoxml(fp)
1050 repo.add_updateinfoxml(fp)
1052 Add the updateinfo.xml file containing available maintenance updates to the
1053 repository. All updates are created as special packages that have a "patch:"
1054 prefix in their name.
1056 bool add_deltainfoxml(FILE *fp, int flags = 0)
1057 $repo->add_deltainfoxml($fp);
1058 repo.add_deltainfoxml(fp)
1059 repo.add_deltainfoxml(fp)
1061 Add the deltainfo.xml file (also called prestodelta.xml) containing available
1062 delta-rpms to the repository. The data is added to the "meta" section, i.e. no
1063 package gets created.
1065 bool add_debdb(int flags = 0)
1070 Add the contents of the debian installed package database to the repository.
1072 bool add_debpackages(FILE *fp, int flags = 0)
1073 $repo->add_debpackages($fp);
1074 repo.add_debpackages($fp)
1075 repo.add_debpackages($fp)
1077 Add the contents of the debian repository metadata (the "packages" file)
1080 Solvable add_deb(const char *filename, int flags = 0)
1081 my $solvable = $repo->add_deb($filename);
1082 solvable = repo.add_deb(filename)
1083 solvable = repo.add_deb(filename)
1085 Add the metadata of a single deb package to the repository.
1087 bool add_mdk(FILE *fp, int flags = 0)
1088 $repo->add_mdk($fp);
1092 Add the contents of the mageia/mandriva repository metadata (the
1093 "synthesis.hdlist" file) to the repository.
1095 bool add_mdk_info(FILE *fp, int flags = 0)
1096 $repo->add_mdk($fp);
1100 Extend the packages from the synthesis file with the info.xml and files.xml
1101 data. Do not forget to specify *REPO_EXTEND_SOLVABLES*.
1103 bool add_arch_repo(FILE *fp, int flags = 0)
1104 $repo->add_arch_repo($fp);
1105 repo.add_arch_repo(fp)
1106 repo.add_arch_repo(fp)
1108 Add the contents of the archlinux repository metadata (the ".db.tar" file) to
1111 bool add_arch_local(const char *dir, int flags = 0)
1112 $repo->add_arch_local($dir);
1113 repo.add_arch_local(dir)
1114 repo.add_arch_local(dir)
1116 Add the contents of the archlinux installed package database to the repository.
1117 The _dir_ parameter is usually set to "/var/lib/pacman/local".
1119 bool add_content(FILE *fp, int flags = 0)
1120 $repo->add_content($fp);
1121 repo.add_content(fp)
1122 repo.add_content(fp)
1124 Add the ``content'' meta description from the susetags format to the repository.
1125 This file contains information about the repository like keywords, and also
1126 a list of all database files with checksums. The data is added the the "meta"
1127 section of the repository, i.e. no package gets created.
1129 bool add_susetags(FILE *fp, Id defvendor, const char *language, int flags = 0)
1130 $repo->add_susetags($fp, $defvendor, $language);
1131 repo.add_susetags(fp, defvendor, language)
1132 repo.add_susetags(fp, defvendor, language)
1134 Add repository metadata in the susetags format to the repository. Like with
1135 add_rpmmd, you can specify a language if you have language extension files. The
1136 _defvendor_ parameter provides a default vendor for packages with missing
1137 vendors, it is usually provided in the content file.
1139 bool add_products(const char *dir, int flags = 0)
1140 $repo->add_products($dir);
1141 repo.add_products(dir)
1142 repo.add_products(dir)
1144 Add the installed SUSE products database to the repository. The _dir_ parameter
1145 is usually "/etc/products.d".
1150 A solvable describes all the information of one package. Each solvable
1151 belongs to one repository, it can be added and filled manually but in
1152 most cases solvables will get created by the repo_add methods.
1156 Repo *repo; /* read only */
1161 The repository this solvable belongs to.
1163 Pool *pool; /* read only */
1168 The pool this solvable belongs to, same as the pool of the repo.
1170 Id id; /* read only */
1175 The specific id of the solvable.
1177 char *name; /* read/write */
1182 char *evr; /* read/write */
1187 char *arch; /* read/write */
1192 char *vendor; /* read/write */
1197 Easy access to often used attributes of solvables. They are
1198 internally stored as Ids.
1200 Id nameid; /* read/write */
1205 Id evrid; /* read/write */
1210 Id archid; /* read/write */
1215 Id vendorid; /* read/write */
1216 $solvable->{vendorid}
1220 Raw interface to the ids. Useful if you want to search for
1221 a specific id and want to avoid the string compare overhead.
1225 const char *lookup_str(Id keyname)
1226 my $string = $solvable->lookup_str($keyname);
1227 string = solvable.lookup_str(keyname)
1228 string = solvable.lookup_str(keyname)
1230 Id lookup_id(Id keyname)
1231 my $id = $solvable->lookup_id($keyname);
1232 id = solvable.lookup_id(solvid)
1233 id = solvable.lookup_id(solvid)
1235 unsigned long long lookup_num(Id solvid, Id keyname, unsigned long long notfound = 0)
1236 my $num = $solvable->lookup_num($keyname);
1237 num = solvable.lookup_num(keyname)
1238 num = solvable.lookup_num(keyname)
1240 bool lookup_void(Id keyname)
1241 my $bool = $solvable->lookup_void($keyname);
1242 bool = solvable.lookup_void(keyname)
1243 bool = solvable.lookup_void(keyname)
1245 Chksum lookup_checksum(Id keyname)
1246 my $chksum = $solvable->lookup_checksum($keyname);
1247 chksum = solvable.lookup_checksum(keyname)
1248 chksum = solvable.lookup_checksum(keyname)
1250 Id *lookup_idarray(Id keyname, Id marker = -1)
1251 my @ids = $solvable->lookup_idarray($keyname);
1252 ids = solvable.lookup_idarray(keyname)
1253 ids = solvable.lookup_idarray(keyname)
1255 Dep *lookup_deparray(Id keyname, Id marker = -1)
1256 my @deps = $solvable->lookup_deparray($keyname);
1257 deps = solvable.lookup_deparray(keyname)
1258 deps = solvable.lookup_deparray(keyname)
1260 Generic lookup methods. Retrieve data stored for the specific keyname.
1261 The lookup_idarray() method will return an array of Ids, use
1262 lookup_deparray if you want an array of Dependency objects instead.
1263 Some Id arrays contain two parts of data divided by a specific marker,
1264 for example the provides array uses the SOLVABLE_FILEMARKER id to
1265 store both the ids provided by the package and the ids added by
1266 the addfileprovides method. The default, -1, translates to the
1267 correct marker for the keyname and returns the first part of the
1268 array, use 1 to select the second part or 0 to retrieve all ids
1269 including the marker.
1271 const char *lookup_location(unsigned int *OUTPUT);
1272 my ($location, $medianr) = $solvable->lookup_location();
1273 location, medianr = solvable.lookup_location()
1274 location, medianr = solvable.lookup_location()
1276 Return a tuple containing the on-media location and an optional
1277 media number for multi-part repositories (e.g. repositories
1278 spawning multiple DVDs).
1280 void add_deparray(Id keyname, DepId dep, Id marker = -1);
1281 $solvable->add_deparray($keyname, $dep);
1282 solvable.add_deparray(keyname, dep)
1283 solvable.add_deparray(keyname, dep)
1285 Add a new dependency to the attributes stored in keyname.
1287 void unset(Id keyname);
1288 $solvable->unset($keyname);
1289 solvable.unset(keyname)
1290 solvable.unset(keyname)
1292 Delete data stored for the specific keyname.
1295 $solvable->installable()
1296 solvable.installable()
1297 solvable.installable?
1299 Return true if the solvable is installable on the system. Solvables
1300 are not installable if the system does not support their architecture.
1303 $solvable->isinstalled()
1304 solvable.isinstalled()
1305 solvable.isinstalled?
1307 Return true if the solvable is installed on the system.
1309 bool identical(Solvable *other)
1310 $solvable->identical($other)
1311 $solvable.identical(other)
1312 $solvable.identical?(other)
1314 Return true if the two solvables are identical.
1316 int evrcmp(Solvable *other)
1317 $solvable->evrcmp(other)
1318 $solvable.evrcmp(other)
1319 $solvable.evrcmp(other)
1321 Returns -1 if the epoch/version/release of the solvable is less then the
1322 one from the other solvable, 1 if it is greater, and 0 if they are equal.
1323 Note that "equal" does not mean that the evr is identical.
1325 Selection Selection(int setflags = 0)
1326 my $sel = $solvable->Selection();
1327 sel = solvable.Selection()
1328 sel = solvable.Selection()
1330 Create a Selection containing just the single solvable.
1333 my $str = $solvable->str();
1334 str = $solvable.str()
1335 str = $solvable.str()
1337 Return a string describing the solvable. The string consists of the name,
1338 version, and architecture of the Solvable.
1341 my $str = $solvable->str;
1345 Same as calling the str() method.
1348 if ($solvable1 == $solvable2)
1349 if solvable1 == solvable2:
1350 if solvable1 == solvable2
1352 Two solvables are equal if they are part of the same pool and have the same
1356 The Dataiterator Class
1357 ----------------------
1358 Dataiterators can be used to do complex string searches or
1359 to iterate over arrays. They can be created via the
1360 constructors in the Pool, Repo, and Solvable classes. The
1361 Repo and Solvable constructors will limit the search to
1362 the repository or the specific package.
1367 Return a match if the search string matches the value.
1369 *SEARCH_STRINGSTART*::
1370 Return a match if the value starts with the search string.
1372 *SEARCH_STRINGEND*::
1373 Return a match if the value ends with the search string.
1375 *SEARCH_SUBSTRING*::
1376 Return a match if the search string can be matched somewhere in the value.
1379 Do a glob match of the search string against the value.
1382 Do a regular expression match of the search string against the value.
1385 Ignore case when matching strings. Works for all the above match types.
1388 Match the complete filenames of the file list, not just the base name.
1390 *SEARCH_COMPLETE_FILELIST*::
1391 When matching the file list, check every file of the package not just the
1392 subset from the primary metadata.
1394 *SEARCH_CHECKSUMS*::
1395 Allow the matching of checksum entries.
1399 void prepend_keyname(Id keyname);
1400 $di->prepend_keyname($keyname);
1401 di.prepend_keyname(keyname)
1402 di.prepend_keyname(keyname)
1404 Do a sub-search in the array stored in keyname.
1406 void skip_solvable();
1407 $di->kip_solvable();
1411 Stop matching the current solvable and advance to the next
1419 Iterate through the matches. If there is a match, the object
1420 in d will be of type Datamatch.
1424 Objects of this type will be created for every value matched
1429 Pool *pool; /* read only */
1434 Back pointer to pool.
1436 Repo *repo; /* read only */
1441 The repository containing the matched object.
1443 Solvable *solvable; /* read only */
1448 The solvable containing the value that was matched.
1450 Id solvid; /* read only */
1455 The id of the solvable that matched.
1464 const char *key_idstr();
1469 The keyname that matched, either as id or string.
1476 const char *type_idstr();
1481 The key type of the value that was matched, either as id or string.
1493 The Id of the value that was matched (only valid for id types),
1494 either as id or string.
1501 The string value that was matched (only valid for string types).
1503 unsigned long long num();
1508 The numeric value that was matched (only valid for numeric types).
1510 unsigned int num2();
1515 The secondary numeric value that was matched (only valid for types
1516 containing two values).
1519 my $pos = $d->pos();
1523 The position object of the current match. It can be used to do
1524 sub-searches starting at the match (if it is of an array type).
1525 See the Datapos class for more information.
1527 Datapos parentpos();
1528 my $pos = $d->parentpos();
1532 The position object of the array containing the current match.
1533 It can be used to do sub-searches, see the Datapos class for more
1541 Return the stringification of the matched value. Stringification
1542 depends on the search flags, for file list entries it will return
1543 just the base name unless SEARCH_FILES is used, for checksums
1544 it will return an empty string unless SEARCH_CHECKSUMS is used.
1545 Numeric values are currently stringified to an empty string.
1550 Selections are a way to easily deal with sets of packages.
1551 There are multiple constructors to create them, the most useful
1552 is probably the select() method in the Pool class.
1557 Create the selection by matching package names.
1559 *SELECTION_PROVIDES*::
1560 Create the selection by matching package provides.
1562 *SELECTION_FILELIST*::
1563 Create the selection by matching package files.
1566 Create the selection by matching the canonical representation
1567 of the package. This is normally a combination of the name,
1568 the version, and the architecture of a package.
1570 *SELECTION_DOTARCH*::
1571 Allow an ``.<architecture>'' suffix when matching names or
1575 Allow the specification of a relation when matching names
1576 or provides, e.g. "name >= 1.2".
1578 *SELECTION_INSTALLED_ONLY*::
1579 Limit the package search to installed packages.
1581 *SELECTION_SOURCE_ONLY*::
1582 Limit the package search to source packages only.
1584 *SELECTION_WITH_SOURCE*::
1585 Extend the package search to also match source packages. The default is
1586 only to match binary packages.
1589 Allow glob matching for package names, package provides, and file names.
1591 *SELECTION_NOCASE*::
1592 Ignore case when matching package names, package provides, and file names.
1595 Return only one selection element describing the selected packages.
1596 The default is to create multiple elements for all globbed packages.
1597 Multiple elements are useful if you want to turn the selection into
1598 an install job, in that case you want an install job for every
1603 Pool *pool; /* read only */
1608 Back pointer to pool.
1613 my $flags = $sel->flags();
1617 Return the result flags of the selection. The flags are a subset
1618 of the ones used when creating the selection, they describe which
1619 method was used to get the result. For example, if you create the
1620 selection with ``SELECTION_NAME | SELECTION_PROVIDES'', the resulting
1621 flags will either be SELECTION_NAME or SELECTION_PROVIDES depending
1622 if there was a package that matched the name or not. If there was
1623 no match at all, the flags will be zero.
1630 Return true if the selection is empty, i.e. no package could be matched.
1632 void filter(Selection *other)
1633 $sel->filter($other);
1637 Intersect two selections. Packages will only stay in the selection if there
1638 are also included in the other selecting. Does an in-place modification.
1640 void add(Selection *other)
1645 Build the union of two selections. All packages of the other selection will
1646 be added to the set of packages of the selection object. Does an in-place
1647 modification. Note that the selection flags are no longer meaningful after the
1650 void add_raw(Id how, Id what)
1651 $sel->add_raw($how, $what);
1652 sel.add_raw(how, what)
1653 sel.add_raw(how, what)
1655 Add a raw element to the selection. Check the Job class for information about
1656 the how and what parameters.
1658 Job *jobs(int action)
1659 my @jobs = $sel->jobs($action);
1660 jobs = sel.jobs(action)
1661 jobs = sel.jobs(action)
1663 Convert a selection into an array of Job objects. The action parameter is or-ed
1664 to the ``how'' part of the job, it describes the type of job (e.g. install,
1665 erase). See the Job class for the action and action modifier constants.
1667 Solvable *solvables()
1668 my @solvables = $sel->solvables();
1669 solvables = sel.solvables()
1670 solvables = sel.solvables()
1672 Convert a selection into an array of Solvable objects.
1675 my $str = $sel->str;
1679 Return a string describing the selection.
1683 Jobs are the way to specify to the dependency solver what to do.
1684 Most of the times jobs will get created by calling the jobs() method
1685 on a Selection object, but there is also a Job() constructor in the
1690 Selection constants:
1693 The ``what'' part is the id of a solvable.
1695 *SOLVER_SOLVABLE_NAME*::
1696 The ``what'' part is the id of a package name.
1698 *SOLVER_SOLVABLE_PROVIDES*::
1699 The ``what'' part is the id of a package provides.
1701 *SOLVER_SOLVABLE_ONE_OF*::
1702 The ``what'' part is an offset into the ``whatprovides'' data, created
1703 by calling the towhatprovides() pool method.
1705 *SOLVER_SOLVABLE_REPO*::
1706 The ``what'' part is the id of a repository.
1708 *SOLVER_SOLVABLE_ALL*::
1709 The ``what'' part is ignored, all packages are selected.
1711 *SOLVER_SOLVABLE_SELECTMASK*::
1712 A mask containing all the above selection bits.
1720 Install a package of the specified set of packages. It tries to install
1721 the best matching package (i.e. the highest version of the packages from
1722 the repositories with the highest priority).
1725 Erase all of the packages from the specified set. If a package is not
1726 installed, erasing it will keep it from getting installed.
1729 Update the matching installed packages to their best version. If none
1730 of the specified packages are installed, try to update the installed
1731 packages to the specified versions. See the section about targeted
1732 updates about more information.
1734 *SOLVER_WEAKENDEPS*::
1735 Allow to break the dependencies of the matching packages. Handle with care.
1737 *SOLVER_MULTIVERSION*::
1738 Mark the matched packages for multiversion install. If they get to be
1739 installed because of some other job, the installation will keep the old
1740 version of the package installed (for rpm this is done by using ``-i''
1744 Do not change the state of the matched packages, i.e. when they are
1745 installed they stay installed, if not they are not selected for
1748 *SOLVER_DISTUPGRADE*::
1749 Update the matching installed packages to the best version included in one
1750 of the repositories. After this operation, all come from one of the available
1751 repositories except orphaned packages. Orphaned packages are packages that
1752 have no relation to the packages in the repositories, i.e. no package in the
1753 repositories have the same name or obsolete the orphaned package.
1754 This action brings the installed packages in sync with the ones in the
1755 repository. It also turns of arch/vendor/version locking for the affected
1756 packages to simulate a fresh installation. This means that distupgrade can
1757 actually downgrade packages if only lower versions of a package are available
1758 in the repositories.
1760 *SOLVER_DROP_ORPHANED*::
1761 Erase all the matching installed packages if they are orphaned. This only makes
1762 sense if there is a ``distupgrade all packages'' job. The default is to erase
1763 orphaned packages only if they block the installation of other packages.
1766 Fix dependency problems of matching installed packages. The default is to ignore
1767 dependency problems for installed packages.
1769 *SOLVER_USERINSTALLED*::
1770 The matching installed packages are considered to be installed by a user,
1771 thus not installed to fulfill some dependency. This is needed input for
1772 the calculation of unneeded packages for jobs that have the
1773 SOLVER_CLEANDEPS flag set.
1776 A mask containing all the above action bits.
1778 Action modifier constants:
1781 Makes the job a weak job. The solver tries to fulfill weak jobs, but does
1782 not report a problem if it is not possible to do so.
1784 *SOLVER_ESSENTIAL*::
1785 Makes the job an essential job. If there is a problem with the job, the
1786 solver will not propose to remove the job as one solution (unless all
1787 other solutions are also to remove essential jobs).
1789 *SOLVER_CLEANDEPS*::
1790 The solver will try to also erase all packages dragged in through
1791 dependencies when erasing the package. This needs SOLVER_USERINSTALLED
1792 jobs to maximize user satisfaction.
1794 *SOLVER_FORCEBEST*::
1795 Insist on the best package for install, update, and distupgrade jobs. If
1796 this flag is not used, the solver will use the second-best package if the
1797 best package cannot be installed for some reason. When this flag is used,
1798 the solver will generate a problem instead.
1801 Forces targeted operation update and distupgrade jobs. See the section
1802 about targeted updates about more information.
1807 The job specified the exact epoch and version of the package set.
1810 The job specified the exact epoch, version, and release of the package set.
1813 The job specified the exact architecture of the packages from the set.
1815 *SOLVER_SETVENDOR*::
1816 The job specified the exact vendor of the packages from the set.
1819 The job specified the exact repository of the packages from the set.
1822 The job specified the exact name of the packages from the set.
1824 *SOLVER_NOAUTOSET*::
1825 Turn of automatic set flag generation for SOLVER_SOLVABLE jobs.
1828 A mask containing all the above set bits.
1830 See the section about set bits for more information.
1834 Pool *pool; /* read only */
1839 Back pointer to pool.
1841 Id how; /* read/write */
1846 Union of the selection, action, action modifier, and set flags.
1847 The selection part describes the semantics of the ``what'' Id.
1849 Id what; /* read/write */
1854 Id describing the set of packages, the meaning depends on the
1855 selection part of the ``how'' attribute.
1859 Solvable *solvables()
1860 my @solvables = $job->solvables();
1861 solvables = job.solvables()
1862 solvables = job.solvables()
1864 Return the set of solvables of the job as an array of Solvable
1867 bool isemptyupdate();
1868 $job->isemptyupdate()
1872 Convenience function to find out if the job describes an update
1873 job with no matching packages, i.e. a job that does nothing.
1874 Some package managers like ``zypper'' like to turn those jobs
1875 into install jobs, i.e. an update of a not-installed package
1876 will result into the installation of the package.
1879 my $str = $job->str;
1883 Return a string describing the job.
1890 Two jobs are equal if they belong to the same pool and both the
1891 ``how'' and the ``what'' attributes are the same.
1893 === TARGETED UPDATES ===
1894 Libsolv has two modes for upgrades and distupgrade: targeted and
1895 untargeted. Untargeted mode means that the installed packages from
1896 the specified set will be updated to the best version. Targeted means
1897 that packages that can be updated to a package in the specified set
1898 will be updated to the best package of the set.
1900 Here's an example to explain the subtle difference. Suppose that
1901 you have package A installed in version "1.1", "A-1.2" is available
1902 in one of the repositories and there is also package "B" that
1903 obsoletes package A.
1905 An untargeted update of "A" will update the installed "A-1.1" to
1906 package "B", because that is the newest version (B obsoletes A and
1909 A targeted update of "A" will update "A-1.1" to "A-1.2", as the
1910 set of packages contains both "A-1.1" and "A-1.2", and "A-1.2" is
1913 An untargeted update of "B" will do nothing, as "B" is not installed.
1915 An targeted update of "B" will update "A-1.1" to "B".
1917 Note that the default is to do "auto-targeting", thus if the specified
1918 set of packages does not include an installed package, the solver
1919 will assume targeted operation even if SOLVER_TARGETED is not used.
1921 This mostly matches the intent of the user, with one exception: In
1922 the example above, an update of "A-1.2" will update "A-1.1" to
1923 "A-1.2" (targeted mode), but a second update of "A-1.2" will suddenly
1924 update to "B", as untargeted mode is chosen because "A-1.2" is now
1927 If you want to have full control over when targeting mode is chosen,
1928 turn off auto-targeting with the SOLVER_FLAG_NO_AUTOTARGET solver option.
1929 In that case, all updates are considered to be untargeted unless they
1930 include the SOLVER_TARGETED flag.
1933 Set bits specify which parts of the specified packages where specified
1934 by the user. It is used by the solver when checking if an operation is
1935 allowed or not. For example, the solver will normally not allow the
1936 downgrade of an installed package. But it will not report a problem if
1937 the SOLVER_SETEVR flag is used, as it then assumes that the user specified
1938 the exact version and thus knows what he is doing.
1940 So if a package "screen-1-1" is installed for the x86_64 architecture and
1941 version "2-1" is only available for the i586 architecture, installing
1942 package "screen-2.1" will ask the user for confirmation because of the
1943 different architecture. When using the Selection class to create jobs
1944 the set bits are automatically added, e.g. selecting ``screen.i586'' will
1945 automatically add SOLVER_SETARCH, and thus no problem will be reported.
1949 Dependency solving is what this library is about. A solver object is needed
1950 for solving to store the result of the solver run. The solver object can be
1951 used multiple times for different jobs, reusing it allows the solver to
1952 re-use the dependency rules it already computed.
1956 Flags to modify some of the solver's behavior:
1958 *SOLVER_FLAG_ALLOW_DOWNGRADE*::
1959 Allow the solver to downgrade packages without asking for confirmation
1960 (i.e. reporting a problem).
1962 *SOLVER_FLAG_ALLOW_ARCHCHANGE*::
1963 Allow the solver to change the architecture of an installed package
1964 without asking for confirmation. Note that changes to/from noarch
1965 are always considered to be allowed.
1967 *SOLVER_FLAG_ALLOW_VENDORCHANGE*::
1968 Allow the solver to change the vendor of an installed package
1969 without asking for confirmation. Each vendor is part of one or more
1970 vendor equivalence classes, normally installed packages may only
1971 change their vendor if the new vendor shares at least one equivalence
1974 *SOLVER_FLAG_ALLOW_NAMECHANGE*::
1975 Allow the solver to change the name of an installed package, i.e.
1976 install a package with a different name that obsoletes the installed
1977 package. This option is on by default.
1979 *SOLVER_FLAG_ALLOW_UNINSTALL*::
1980 Allow the solver to erase installed packages to fulfill the jobs.
1981 This flag also includes the above flags. You may want to set this
1982 flag if you only have SOLVER_ERASE jobs, as in that case it's
1983 better for the user to check the transaction overview instead of
1984 approving every single package that needs to be erased.
1986 *SOLVER_FLAG_NO_UPDATEPROVIDE*::
1987 If multiple packages obsolete an installed package, the solver checks
1988 the provides of every such package and ignores all packages that
1989 do not provide the installed package name. Thus, you can have an
1990 official update candidate that provides the old name, and other
1991 packages that also obsolete the package but are not considered for
1992 updating. If you cannot use this feature, you can turn it off
1993 by setting this flag.
1995 *SOLVER_FLAG_SPLITPROVIDES*::
1996 Make the solver aware of special provides of the form
1997 ``<packagename>:<path>'' used in SUSE systems to support package
2000 *SOLVER_FLAG_IGNORE_RECOMMENDED*::
2001 Do not process optional (aka weak) dependencies.
2003 *SOLVER_FLAG_ADD_ALREADY_RECOMMENDED*::
2004 Install recommended or supplemented packages even if they have no
2005 connection to the current transaction. You can use this feature
2006 to implement a simple way for the user to install new recommended
2007 packages that were not available in the past.
2009 *SOLVER_FLAG_NO_INFARCHCHECK*::
2010 Turn off the inferior architecture checking that is normally done
2011 by the solver. Normally, the solver allows only the installation
2012 of packages from the "best" architecture if a package is available
2013 for multiple architectures.
2015 *SOLVER_FLAG_BEST_OBEY_POLICY*::
2016 Make the SOLVER_FORCEBEST job option consider only packages that
2017 meet the policies for installed packages, i.e. no downgrades,
2018 no architecture change, no vendor change (see the first flags
2019 of this section). If the flag is not specified, the solver will
2020 enforce the installation of the best package ignoring the
2021 installed packages, which may conflict with the set policy.
2023 *SOLVER_FLAG_NO_AUTOTARGET*::
2024 Do not enable auto-targeting up update and distupgrade jobs. See
2025 the section on targeted updates for more information.
2029 *SOLVER_RULE_UNKNOWN*::
2030 A rule of an unknown class. You should never encounter those.
2033 A package dependency rule, called rpm rule for historical reasons.
2035 *SOLVER_RULE_UPDATE*::
2036 A rule to implement the update policy of installed packages. Every
2037 installed package has an update rule that consists of the packages
2038 that may replace the installed package.
2040 *SOLVER_RULE_FEATURE*::
2041 Feature rules are fallback rules used when a update rule is disabled. They
2042 include all packages that may replace the installed package ignoring the
2043 update policy, i.e. they contain downgrades, arch changes and so on.
2044 Without them, the solver would simply erase installed packages if their
2045 update rule gets disabled.
2048 Job rules implement the job given to the solver.
2050 *SOLVER_RULE_DISTUPGRADE*::
2051 This are simple negative assertions that make sure that only packages
2052 are kept that are also available in one of the repositories.
2054 *SOLVER_RULE_INFARCH*::
2055 Infarch rules are also negative assertions, they disallow the installation
2056 of packages when there are packages of the same name but with a better
2059 *SOLVER_RULE_CHOICE*::
2060 Choice rules are used to make sure that the solver prefers updating to
2061 installing different packages when some dependency is provided by
2062 multiple packages with different names. The solver may always break
2063 choice rules, so you will not see them when a problem is found.
2065 *SOLVER_RULE_LEARNT*::
2066 These rules are generated by the solver to keep it from running into
2067 the same problem multiple times when it has to backtrack. They are
2068 the main reason why a sat solver is faster then other dependency solver
2071 Special dependency rule types:
2073 *SOLVER_RULE_RPM_NOT_INSTALLABLE*::
2074 This rule was added to prevent the installation of a package of an
2075 architecture that does not work on the system.
2077 *SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP*::
2078 The package contains a required dependency which was not provided by
2081 *SOLVER_RULE_RPM_PACKAGE_REQUIRES*::
2082 Similar to SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP, but in this case
2083 some packages provided the dependency but none of them could be
2084 installed due to other dependency issues.
2086 *SOLVER_RULE_RPM_SELF_CONFLICT*::
2087 The package conflicts with itself. This is not allowed by older rpm
2090 *SOLVER_RULE_RPM_PACKAGE_CONFLICT*::
2091 To fulfill the dependencies two packages need to be installed, but
2092 one of the packages contains a conflict with the other one.
2094 *SOLVER_RULE_RPM_SAME_NAME*::
2095 The dependencies can only be fulfilled by multiple versions of
2096 a package, but installing multiple versions of the same package
2099 *SOLVER_RULE_RPM_PACKAGE_OBSOLETES*::
2100 To fulfill the dependencies two packages need to be installed, but
2101 one of the packages obsoletes the other one.
2103 *SOLVER_RULE_RPM_IMPLICIT_OBSOLETES*::
2104 To fulfill the dependencies two packages need to be installed, but
2105 one of the packages has provides a dependency that is obsoleted
2106 by the other one. See the POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES
2109 *SOLVER_RULE_RPM_INSTALLEDPKG_OBSOLETES*::
2110 To fulfill the dependencies a package needs to be installed that is
2111 obsoleted by an installed package. See the POOL_FLAG_NOINSTALLEDOBSOLETES
2114 *SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP*::
2115 The user asked for installation of a package providing a specific
2116 dependency, but no available package provides it.
2118 *SOLVER_RULE_JOB_UNKNOWN_PACKAGE*::
2119 The user asked for installation of a package with a specific name,
2120 but no available package has that name.
2122 *SOLVER_RULE_JOB_PROVIDED_BY_SYSTEM*::
2123 The user asked for the erasure of a dependency that is provided by the
2124 system (i.e. for special hardware or language dependencies), this
2125 cannot be done with a job.
2127 *SOLVER_RULE_JOB_UNSUPPORTED*::
2128 The user asked for something that is not yet implemented, e.g. the
2129 installation of all packages at once.
2131 Policy error constants
2133 *POLICY_ILLEGAL_DOWNGRADE*::
2134 The solver ask for permission before downgrading packages.
2136 *POLICY_ILLEGAL_ARCHCHANGE*::
2137 The solver ask for permission before changing the architecture of installed
2140 *POLICY_ILLEGAL_VENDORCHANGE*::
2141 The solver ask for permission before changing the vendor of installed
2144 *POLICY_ILLEGAL_NAMECHANGE*::
2145 The solver ask for permission before replacing an installed packages with
2146 a package that has a different name.
2148 Solution element type constants
2150 *SOLVER_SOLUTION_JOB*::
2151 The problem can be solved by removing the specified job.
2153 *SOLVER_SOLUTION_POOLJOB*::
2154 The problem can be solved by removing the specified job that is defined
2157 *SOLVER_SOLUTION_INFARCH*::
2158 The problem can be solved by allowing the installation of the specified
2159 package with an inferior architecture.
2161 *SOLVER_SOLUTION_DISTUPGRADE*::
2162 The problem can be solved by allowing to keep the specified package
2165 *SOLVER_SOLUTION_BEST*::
2166 The problem can be solved by allowing to install the specified package
2167 that is not the best available package.
2169 *SOLVER_SOLUTION_ERASE*::
2170 The problem can be solved by allowing to erase the specified package.
2172 *SOLVER_SOLUTION_REPLACE*::
2173 The problem can be solved by allowing to replace the package with some
2176 *SOLVER_SOLUTION_REPLACE_DOWNGRADE*::
2177 The problem can be solved by allowing to replace the package with some
2178 other package that has a lower version.
2180 *SOLVER_SOLUTION_REPLACE_ARCHCHANGE*::
2181 The problem can be solved by allowing to replace the package with some
2182 other package that has a different architecture.
2184 *SOLVER_SOLUTION_REPLACE_VENDORCHANGE*::
2185 The problem can be solved by allowing to replace the package with some
2186 other package that has a different vendor.
2188 *SOLVER_SOLUTION_REPLACE_NAMECHANGE*::
2189 The problem can be solved by allowing to replace the package with some
2190 other package that has a different name.
2195 Pool *pool; /* read only */
2200 Back pointer to pool.
2204 int set_flag(int flag, int value)
2205 my $oldvalue = $pool->set_flag($flag, $value);
2206 oldvalue = pool.set_flag(flag, value)
2207 oldvalue = pool.set_flag(flag, value)
2209 int get_flag(int flag)
2210 my $value = $pool->get_flag($flag);
2211 value = pool.get_flag(flag)
2212 value = pool.get_flag(flag)
2214 Set/get a solver specific flag. The flags define the policies the solver has
2215 to obey. The flags are explained in the CONSTANTS section of this class.
2217 Problem *solve(Job *jobs)
2218 my @problems = $solver->solve(\@jobs);
2219 problems = solver.solve(jobs)
2220 problems = solver.solve(jobs)
2222 Solve a problem specified in the job list (plus the jobs defined in the pool).
2223 Returns an array of problems that need user interaction, or an empty array
2224 if no problems were encountered. See the Problem class on how to deal with
2227 Transaction transaction()
2228 my $trans = $solver->transaction();
2229 trans = solver.transaction()
2230 trans = solver.transaction()
2232 Return the transaction to implement the calculated package changes. A transaction
2233 is available even if problems were found, this is useful for interactive user
2234 interfaces that show both the job result and the problems.
2238 Problems are the way of the solver to interact with the user. You can simply list
2239 all problems and terminate your program, but a better way is to present solutions to
2240 the user and let him pick the ones he likes.
2244 Solver *solv; /* read only */
2249 Back pointer to solver object.
2251 Id id; /* read only */
2256 Id of the problem. The first problem has Id 1, they are numbered consecutively.
2260 Rule findproblemrule()
2261 my $probrule = $problem->findproblemrule();
2262 probrule = problem.findproblemrule()
2263 probrule = problem.findproblemrule()
2265 Return the rule that caused the problem. Of course in most situations there is no
2266 single responsible rule, but many rules that interconnect with each created the
2267 problem. Nevertheless, the solver uses some heuristic approach to find a rule
2268 that somewhat describes the problem best to the user.
2270 Rule *findallproblemrules(bool unfiltered = 0)
2271 my @probrules = $problem->findallproblemrules();
2272 probrules = problem.findallproblemrule()
2273 probrules = problem.findallproblemrule()
2275 Return all rules responsible for the problem. The returned set of rules contains
2276 all the needed information why there was a problem, but it's hard to present
2277 them to the user in a sensible way. The default is to filter out all update and
2278 job rules (unless the returned rules only consist of those types).
2280 Solution *solutions()
2281 my @solutions = $problem->solutions();
2282 solutions = problem.solutions()
2283 solutions = problem.solutions()
2285 Return an array containing multiple possible solutions to fix the problem. See
2286 the solution class for more information.
2288 int solution_count()
2289 my $cnt = $problem->solution_count();
2290 cnt = problem.solution_count()
2291 cnt = problem.solution_count()
2293 Return the number of solutions without creating solution objects.
2296 my $str = $problem->str;
2300 Return a string describing the problem. This is a convenience function, it is
2301 a shorthand for calling findproblemrule(), then ruleinfo() on the problem
2302 rule and problemstr() on the ruleinfo object.
2306 Rules are the basic block of sat solving. Each package dependency gets translated
2307 into one or multiple rules.
2311 Solver *solv; /* read only */
2316 Back pointer to solver object.
2318 Id id; /* read only */
2325 int type; /* read only */
2330 The basic type of the rule. See the constant section of the solver class for the type list.
2335 my $ruleinfo = $rule->info();
2336 ruleinfo = rule.info()
2337 ruleinfo = rule.info()
2339 Return a Ruleinfo object that contains information about why the rule was created. But
2340 see the allinfos() method below.
2342 Ruleinfo *allinfos()
2343 my @ruleinfos = $rule->allinfos();
2344 ruleinfos = rule.allinfos()
2345 ruleinfos = rule.allinfos()
2347 As the same dependency rule can get created because of multiple dependencies, one
2348 Ruleinfo is not enough to describe the reason. Thus the allinfos() method returns
2349 an array of all infos about a rule.
2352 if ($rule1 == $rule2)
2356 Two rules are equal if they belong to the same solver and have the same id.
2360 A Ruleinfo describes one reason why a rule was created.
2364 Solver *solv; /* read only */
2369 Back pointer to solver object.
2371 int type; /* read only */
2376 The type of the ruleinfo. See the constant section of the solver class for the
2377 rule type list and the special type list.
2379 Dep *dep; /* read only */
2384 The dependency leading to the creation of the rule.
2386 Dep *dep_id; /* read only */
2387 $ruleinfo->{'dep_id'}
2391 The Id of the dependency leading to the creation of the rule, or zero.
2393 Solvable *solvable; /* read only */
2394 $ruleinfo->{solvable}
2398 The involved Solvable, e.g. the one containing the dependency.
2400 Solvable *othersolvable; /* read only */
2401 $ruleinfo->{othersolvable}
2402 ruleinfo.othersolvable
2403 ruleinfo.othersolvable
2405 The other involved Solvable (if any), e.g. the one containing providing
2406 the dependency for conflicts.
2408 const char *problemstr();
2409 my $str = $ruleinfo->problemstr();
2410 str = ruleinfo.problemstr()
2411 str = ruleinfo.problemstr()
2413 A string describing the ruleinfo from a problem perspective. This probably
2414 only makes sense if the rule is part of a problem.
2418 A solution solves one specific problem. It consists of multiple solution elements
2419 that all need to be executed.
2423 Solver *solv; /* read only */
2428 Back pointer to solver object.
2430 Id problemid; /* read only */
2431 $solution->{problemid}
2435 Id of the problem the solution solves.
2437 Id id; /* read only */
2442 Id of the solution. The first solution has Id 1, they are numbered consecutively.
2446 Solutionelement *elements(bool expandreplaces = 0)
2447 my @solutionelements = $solution->elements();
2448 solutionelements = solution.elements()
2449 solutionelements = solution.elements()
2451 Return an array containing the elements describing what needs to be done to
2452 implement the specific solution. If expandreplaces is true, elements of type
2453 SOLVER_SOLUTION_REPLACE will be replaced by one or more elements replace
2454 elements describing the policy mismatches.
2457 my $cnt = $solution->solution_count();
2458 cnt = solution.element_count()
2459 cnt = solution.element_count()
2461 Return the number of solution elements without creating objects. Note that the
2462 count does not match the number of objects returned by the elements() method
2463 of expandreplaces is set to true.
2466 The Solutionelement Class
2467 -------------------------
2468 A solution element describes a single action of a solution. The action is always
2469 either to remove one specific job or to add a new job that installs or erases
2470 a single specific package.
2474 Solver *solv; /* read only */
2475 $solutionelement->{solv}
2476 solutionelement.solv
2477 solutionelement.solv
2479 Back pointer to solver object.
2481 Id problemid; /* read only */
2482 $solutionelement->{problemid}
2483 solutionelement.problemid
2484 solutionelement.problemid
2486 Id of the problem the element (partly) solves.
2488 Id solutionid; /* read only */
2489 $solutionelement->{solutionid}
2490 solutionelement.solutionid
2491 solutionelement.solutionid
2493 Id of the solution the element is a part of.
2495 Id id; /* read only */
2496 $solutionelement->{id}
2500 Id of the solution element. The first element has Id 1, they are numbered consecutively.
2502 Id type; /* read only */
2503 $solutionelement->{type}
2504 solutionelement.type
2505 solutionelement.type
2507 Type of the solution element. See the constant section of the solver class for the
2510 Solvable *solvable; /* read only */
2511 $solutionelement->{solvable}
2512 solutionelement.solvable
2513 solutionelement.solvable
2515 The installed solvable that needs to be replaced for replacement elements.
2517 Solvable *replacement; /* read only */
2518 $solutionelement->{replacement}
2519 solutionelement.replacement
2520 solutionelement.replacement
2522 The solvable that needs to be installed to fix the problem.
2524 int jobidx; /* read only */
2525 $solutionelement->{jobidx}
2526 solutionelement.jobidx
2527 solutionelement.jobidx
2529 The index of the job that needs to be removed to fix the problem, or -1 if the
2530 element is of another type. Note that it's better to change the job to SOLVER_NOOP
2531 type so that the numbering of other elements does not get disturbed. This
2532 method works both for types SOLVER_SOLUTION_JOB and SOLVER_SOLUTION_POOLJOB.
2536 Solutionelement *replaceelements()
2537 my @solutionelements = $solutionelement->replaceelements();
2538 solutionelements = solutionelement.replaceelements()
2539 solutionelements = solutionelement.replaceelements()
2541 If the solution element is of type SOLVER_SOLUTION_REPLACE, return an array of
2542 elements describing the policy mismatches, otherwise return a copy of the
2543 element. See also the ``expandreplaces'' option in the solution's elements()
2546 int illegalreplace()
2547 my $illegal = $solutionelement->illegalreplace();
2548 illegal = solutionelement.illegalreplace()
2549 illegal = solutionelement.illegalreplace()
2551 Return an integer that contains the policy mismatch bits or-ed together, or
2552 zero if there was no policy mismatch. See the policy error constants in
2556 my $job = $solutionelement->Job();
2557 illegal = solutionelement.Job()
2558 illegal = solutionelement.Job()
2560 Create a job that implements the solution element. Add this job to the array
2561 of jobs for all elements of type different to SOLVER_SOLUTION_JOB and
2562 SOLVER_SOLUTION_POOLJOB. For the later two, a SOLVER_NOOB Job is created,
2563 you should replace the old job with the new one.
2566 my $str = $solutionelement->str();
2567 str = solutionelement.str()
2568 str = solutionelement.str()
2570 A string describing the change the solution element consists of.
2572 The Transaction Class
2573 ---------------------
2574 Transactions describe the output of a solver run. A transaction contains
2575 a number of transaction elements, each either the installation of a new
2576 package or the removal of an already installed package. The Transaction
2577 class supports a classify() method that puts the elements into different
2578 groups so that a transaction can be presented to the user in a meaningful
2583 Transaction element types, both active and passive
2585 *SOLVER_TRANSACTION_IGNORE*::
2586 This element does nothing. Used to map element types that do not match
2589 *SOLVER_TRANSACTION_INSTALL*::
2590 This element installs a package.
2592 *SOLVER_TRANSACTION_ERASE*::
2593 This element erases a package.
2595 *SOLVER_TRANSACTION_MULTIINSTALL*::
2596 This element installs a package with a different version keeping the other
2599 *SOLVER_TRANSACTION_MULTIREINSTALL*::
2600 This element reinstalls a installed package keeping the other versions
2603 Transaction element types, active view
2605 *SOLVER_TRANSACTION_REINSTALL*::
2606 This element re-installs a package, i.e. installs the same package again.
2608 *SOLVER_TRANSACTION_CHANGE*::
2609 This element installs a package with same name, version, architecture but
2612 *SOLVER_TRANSACTION_UPGRADE*::
2613 This element installs a newer version of an installed package.
2615 *SOLVER_TRANSACTION_DOWNGRADE*::
2616 This element installs a older version of an installed package.
2618 *SOLVER_TRANSACTION_OBSOLETES*::
2619 This element installs a package that obsoletes an installed package.
2621 Transaction element types, passive view
2623 *SOLVER_TRANSACTION_REINSTALLED*::
2624 This element re-installs a package, i.e. installs the same package again.
2626 *SOLVER_TRANSACTION_CHANGED*::
2627 This element replaces an installed package with one of the same name,
2628 version, architecture but different content.
2630 *SOLVER_TRANSACTION_UPGRADED*::
2631 This element replaces an installed package with a new version.
2633 *SOLVER_TRANSACTION_DOWNGRADED*::
2634 This element replaces an installed package with an old version.
2636 *SOLVER_TRANSACTION_OBSOLETED*::
2637 This element replaces an installed package with a package that obsoletes
2640 Pseudo element types for showing extra information used by classify()
2642 *SOLVER_TRANSACTION_ARCHCHANGE*::
2643 This element replaces an installed package with a package of a different
2646 *SOLVER_TRANSACTION_VENDORCHANGE*::
2647 This element replaces an installed package with a package of a different
2650 Transaction mode flags
2652 *SOLVER_TRANSACTION_SHOW_ACTIVE*::
2653 Filter for active view types. The default is to return passive view type,
2654 i.e. to show how the installed packages get changed.
2656 *SOLVER_TRANSACTION_SHOW_OBSOLETES*::
2657 Do not map the obsolete view type into INSTALL/ERASE elements.
2659 *SOLVER_TRANSACTION_SHOW_ALL*::
2660 If multiple packages replace an installed package, only the best of them
2661 is kept as OBSOLETE element, the other ones are mapped to INSTALL/ERASE
2662 elements. This is because most applications want to show just one package
2663 replacing the installed one. The SOLVER_TRANSACTION_SHOW_ALL makes the
2664 library keep all OBSOLETE elements.
2666 *SOLVER_TRANSACTION_SHOW_MULTIINSTALL*::
2667 The library maps MULTIINSTALL elements to simple INSTALL elements. This
2668 flag can be used to disable the mapping.
2670 *SOLVER_TRANSACTION_CHANGE_IS_REINSTALL*::
2671 Use this flag if you want to map CHANGE elements to the REINSTALL type.
2673 *SOLVER_TRANSACTION_OBSOLETE_IS_UPGRADE*::
2674 Use this flag if you want to map OBSOLETE elements to the UPGRADE type.
2676 *SOLVER_TRANSACTION_MERGE_ARCHCHANGES*::
2677 Do not add extra categories for every architecture change, instead cumulate
2678 them in one category.
2680 *SOLVER_TRANSACTION_MERGE_VENDORCHANGES*::
2681 Do not add extra categories for every vendor change, instead cumulate
2682 them in one category.
2684 *SOLVER_TRANSACTION_RPM_ONLY*::
2685 Special view mode that just returns IGNORE, ERASE, INSTALL, MULTIINSTALL
2686 elements. Useful if you want to find out what to feed to the underlying
2689 Transaction order flags
2691 *SOLVER_TRANSACTION_KEEP_ORDERDATA*::
2692 Do not throw away the dependency graph used for ordering the transaction.
2693 This flag is needed if you want to do manual ordering.
2697 Pool *pool; /* read only */
2702 Back pointer to pool.
2711 Returns true if the transaction does not do anything, i.e. has no elements.
2713 Solvable *newsolvables();
2714 my @newsolvables = $trans->newsolvables();
2715 newsolvables = trans.newsolvables()
2716 newsolvables = trans.newsolvables()
2718 Return all packages that are to be installed by the transaction. This are
2719 the packages that need to be downloaded from the repositories.
2721 Solvable *keptsolvables();
2722 my @keptsolvables = $trans->keptsolvables();
2723 keptsolvables = trans.keptsolvables()
2724 keptsolvables = trans.keptsolvables()
2726 Return all installed packages that the transaction will keep installed.
2729 my @steps = $trans->steps();
2730 steps = trans.steps()
2731 steps = trans.steps()
2733 Return all solvables that need to be installed (if the returned solvable
2734 is not already installed) or erased (if the returned solvable is installed).
2735 A step is also called a transaction element.
2737 int steptype(Solvable *solvable, int mode)
2738 my $type = $trans->steptype($solvable, $mode);
2739 type = trans.steptype(solvable, mode)
2740 type = trans.steptype(solvable, mode)
2742 Return the transaction type of the specified solvable. See the CONSTANTS
2743 sections for the mode argument flags and the list of returned types.
2745 TransactionClass *classify(int mode = 0)
2746 my @classes = $trans->classify();
2747 classes = trans.classify()
2748 classes = trans.classify()
2750 Group the transaction elements into classes so that they can be displayed
2751 in a structured way. You can use various mapping mode flags to tweak
2752 the result to match your preferences, see the mode argument flag in
2753 the CONSTANTS section. See the TransactionClass class for how to deal
2754 with the returned objects.
2756 Solvable othersolvable(Solvable *solvable);
2757 my $other = $trans->othersolvable($solvable);
2758 other = trans.othersolvable(solvable)
2759 other = trans.othersolvable(solvable)
2761 Return the ``other'' solvable for a given solvable. For installed packages
2762 the other solvable is the best package with the same name that replaces
2763 the installed package, or the best package of the obsoleting packages if
2764 the package does not get replaced by one with the same name.
2766 For to be installed packages, the ``other'' solvable is the best installed
2767 package with the same name that will be replaced, or the best packages
2768 of all the packages that are obsoleted if the new package does not replace
2769 a package with the same name.
2771 Thus, the ``other'' solvable is normally the package that is also shown
2772 for a given package.
2774 Solvable *allothersolvables(Solvable *solvable);
2775 my @others = $trans->allothersolvables($solvable);
2776 others = trans.allothersolvables(solvable)
2777 others = trans.allothersolvables(solvable)
2779 For installed packages, returns all of the packages that replace us. For to
2780 be installed packages, returns all of the packages that the new package
2781 replaces. The special ``other'' solvable is always the first entry of the
2784 int calc_installsizechange();
2785 my $change = $trans->calc_installsizechange();
2786 change = trans.calc_installsizechange()
2787 change = trans.calc_installsizechange()
2789 Return the size change of the installed system in kilobytes (kibibytes).
2791 void order(int flags = 0);
2796 Order the steps in the transactions so that dependant packages are updated
2797 before packages that depend on them. For rpm, you can also use rpmlib's
2798 ordering functionality, debian's dpkg does not provide a way to order a
2801 === ACTIVE/PASSIVE VIEW ===
2803 Active view list what new packages get installed, while passive view shows
2804 what happens to the installed packages. Most often there's not much
2805 difference between the two modes, but things get interesting of multiple
2806 package get replaced by one new package. Say you have installed package
2807 A-1-1 and B-1-1, and now install A-2-1 with has a new dependency that
2808 obsoletes B. The transaction elements will be
2810 updated A-1-1 (other: A-2-1)
2811 obsoleted B-1-1 (other: A-2-1)
2813 in passive mode, but
2815 update A-2-1 (other: A-1-1)
2818 in active mode. If the mode contains SOLVER_TRANSACTION_SHOW_ALL, the
2819 passive mode list will be unchanged but the active mode list will just
2822 The Transactionclass Class
2823 --------------------------
2824 Objects of this type are returned by the classify() Transaction method.
2828 Transaction *transaction; /* read only */
2829 $class->{transaction}
2833 Back pointer to transaction object.
2835 int type; /* read only */
2840 The type of the transaction elements in the class.
2842 int count; /* read only */
2847 The number of elements in the class.
2849 const char *fromstr;
2854 The old vendor or architecture.
2861 The new vendor or architecture.
2868 The id of the old vendor or architecture.
2875 The id of the new vendor or architecture.
2880 my @solvables = $class->solvables();
2881 solvables = class.solvables()
2882 solvables = class.solvables()
2884 Return the solvables for all transaction elements in the class.
2888 Checksums (also called hashes) are used to make sure that downloaded data is
2889 not corrupt and also as a fingerprint mechanism to check if data has changed.
2891 === CLASS METHODS ===
2893 Chksum Chksum(Id type)
2894 my $chksum = solv::Chksum->new($type);
2895 chksum = solv.Chksum(type)
2896 chksum = Solv::Chksum.new(type)
2898 Create a checksum object. Currently the following types are supported:
2904 These keys are constants in the *solv* class.
2906 Chksum Chksum(Id type, const char *hex)
2907 my $chksum = solv::Chksum->new($type, $hex);
2908 chksum = solv.Chksum(type, hex)
2909 chksum = Solv::Chksum.new(type, hex)
2911 Create an already finalized checksum object.
2915 Id type; /* read only */
2920 Return the type of the checksum object.
2924 void add(const char *str)
2929 Add a string to the checksum.
2931 void add_fp(FILE *fp)
2932 $chksum->add_fp($file);
2936 Add the contents of a file to the checksum.
2938 void add_stat(const char *filename)
2939 $chksum->add_stat($filename);
2940 chksum.add_stat(filename)
2941 chksum.add_stat(filename)
2943 Stat the file and add the dev/ino/size/mtime member to the checksum. If the
2944 stat fails, the members are zeroed.
2946 void add_fstat(int fd)
2947 $chksum->add_fstat($fd);
2948 chksum.add_fstat(fd)
2949 chksum.add_fstat(fd)
2951 Same as add_stat, but instead of the filename a file descriptor is used.
2953 unsigned char *raw()
2954 my $raw = $chksum->raw();
2958 Finalize the checksum and return the result as raw bytes. This means that the
2959 result can contain NUL bytes or unprintable characters.
2962 my $raw = $chksum->hex();
2966 Finalize the checksum and return the result as hex string.
2969 if ($chksum1 == $chksum2)
2970 if chksum1 == chksum2:
2971 if chksum1 == chksum2
2973 Checksums are equal if they are of the same type and the finalized results are
2977 my $str = $chksum->str;
2981 If the checksum is finished, the checksum is returned as "<type>:<hex>" string.
2982 Otherwise "<type>:unfinished" is returned.
2987 This functions were added because libsolv uses standard *FILE* pointers to
2988 read/write files, but languages like perl have their own implementation of
2989 files. The libsolv functions also support decompression and compression, the
2990 algorithm is selected by looking at the file name extension.
2992 FILE *xfopen(char *fn, char *mode = "r")
2993 my $file = solv::xfopen($path);
2994 file = solv.xfopen(path)
2995 file = Solv::xfopen(path)
2997 Open a file at the specified path. The `mode` argument is passed on to the
3000 FILE *xfopen_fd(char *fn, int fileno)
3001 my $file = solv::xfopen_fd($path, $fileno);
3002 file = solv.xfopen_fd(path, fileno)
3003 file = Solv::xfopen_fd(path, fileno)
3005 Create a file handle from the specified file descriptor. The path argument is
3006 only used to select the correct (de-)compression algorithm, use an empty path
3007 if you want to make sure to read/write raw data.
3012 my $fileno = $file->fileno();
3013 fileno = file.fileno()
3014 fileno = file.fileno()
3016 Return file file descriptor of the file. If the file is not open, `-1` is
3020 my $fileno = $file->dup();
3024 Return a copy of the descriptor of the file. If the file is not open, `-1` is
3032 Flush the file. Returns false if there was an error. Flushing a closed file
3033 always returns true.
3040 Close the file. This is needed for languages like Ruby, that do not destruct
3041 objects right after they are no longer referenced. In that case, it is good
3042 style to close open files so that the file descriptors are freed right away.
3043 Returns false if there was an error.
3048 The Repodata stores attributes for packages and the repository itself, each
3049 repository can have multiple repodata areas. You normally only need to
3050 directly access them if you implement lazy downloading of repository data.
3051 Repodata areas are created by calling the repository's add_repodata() method
3052 or by using repo_add methods without the REPO_REUSE_REPODATA or REPO_USE_LOADING
3057 Repo *repo; /* read only */
3062 Back pointer to repository object.
3064 Id id; /* read only */
3069 The id of the repodata area. Repodata ids of different repositories overlap.
3074 $data->internalize();
3078 Internalize newly added data. The lookup functions will only see the new data
3079 after it has been internalized.
3081 bool write(FILE *fp);
3086 Write the contents of the repodata area as solv file.
3088 bool add_solv(FILE *fp, int flags = 0);
3089 $data->add_solv($fp);
3093 Replace a stub repodata object with the data from a solv file. This method
3094 automatically adds the REPO_USE_LOADING flag. It should only be used from
3097 void create_stubs();
3098 $data->create_stubs()
3102 Create stub repodatas from the information stored in the repodata meta
3105 void extend_to_repo();
3106 $data->extend_to_repo();
3107 data.extend_to_repo()
3108 data.extend_to_repo()
3110 Extend the repodata so that it has the same size as the repo it belongs to.
3111 This method is only needed when switching to a just written repodata extension
3112 to make the repodata match the written extension (which is always of the
3116 if ($data1 == $data2)
3120 Two repodata objects are equal if they belong to the same repository and have
3123 === DATA RETRIEVAL METHODS ===
3125 const char *lookup_str(Id solvid, Id keyname)
3126 my $string = $data->lookup_str($solvid, $keyname);
3127 string = data.lookup_str(solvid, keyname)
3128 string = data.lookup_str(solvid, keyname)
3130 Id *lookup_idarray(Id solvid, Id keyname)
3131 my @ids = $data->lookup_idarray($solvid, $keyname);
3132 ids = data.lookup_idarray(solvid, keyname)
3133 ids = data.lookup_idarray(solvid, keyname)
3135 Chksum lookup_checksum(Id solvid, Id keyname)
3136 my $chksum = $data->lookup_checksum($solvid, $keyname);
3137 chksum = data.lookup_checksum(solvid, keyname)
3138 chksum = data.lookup_checksum(solvid, keyname)
3140 Lookup functions. Return the data element stored in the specified solvable.
3141 The methods probably only make sense to retrieve data from the special
3142 SOLVID_META solvid that stores repodata meta information.
3144 === DATA STORAGE METHODS ===
3146 void set_id(Id solvid, Id keyname, DepId id);
3147 $data->set_id($solvid, $keyname, $id);
3148 data.set_id(solvid, keyname, id)
3149 data.set_id(solvid, keyname, id)
3151 void set_str(Id solvid, Id keyname, const char *str);
3152 $data->set_str($solvid, $keyname, $str);
3153 data.set_str(solvid, keyname, str)
3154 data.set_str(solvid, keyname, str)
3156 void set_poolstr(Id solvid, Id keyname, const char *str);
3157 $data->set_poolstr($solvid, $keyname, $str);
3158 data.set_poolstr(solvid, keyname, str)
3159 data.set_poolstr(solvid, keyname, str)
3161 void set_checksum(Id solvid, Id keyname, Chksum *chksum);
3162 $data->set_checksum($solvid, $keyname, $chksum);
3163 data.set_checksum(solvid, keyname, chksum)
3164 data.set_checksum(solvid, keyname, chksum)
3166 void add_idarray(Id solvid, Id keyname, DepId id);
3167 $data->add_idarray($solvid, $keyname, $id);
3168 data.add_idarray(solvid, keyname, id)
3169 data.add_idarray(solvid, keyname, id)
3172 my $handle = $data->new_handle();
3173 handle = data.new_handle()
3174 handle = data.new_handle()
3176 void add_flexarray(Id solvid, Id keyname, Id handle);
3177 $data->add_flexarray($solvid, $keyname, $handle);
3178 data.add_flexarray(solvid, keyname, handle)
3179 data.add_flexarray(solvid, keyname, handle)
3181 Data storage methods. Probably only useful to store data in the special
3182 SOLVID_META solvid that stores repodata meta information. Note that
3183 repodata areas can have their own Id pool (see the REPO_LOCALPOOL flag),
3184 so be careful if you need to store ids. Arrays are created by calling
3185 the add function for every element. A flexarray is an array of
3186 sub-structures, call new_handle to create a new structure, use the
3187 handle as solvid to fill the structure with data and call add_flexarray
3188 to put the structure in an array.
3193 Datapos objects describe a specific position in the repository data area.
3194 Thus they are only valid until the repository is modified in some way.
3195 Datapos objects can be created by the pos() and parentpos() methods of
3196 a Datamatch object or by accessing the ``meta'' attribute of a repository.
3200 Repo *repo; /* read only */
3205 Back pointer to repository object.
3209 Dataiterator(Id keyname, const char *match, int flags)
3210 my $di = $datapos->Dataiterator($keyname, $match, $flags);
3211 di = datapos.Dataiterator(keyname, match, flags)
3212 di = datapos.Dataiterator(keyname, match, flags)
3214 Create a Dataiterator at the position of the datapos object.
3216 const char *lookup_deltalocation(unsigned int *OUTPUT);
3217 my ($location, $medianr) = $datapos->lookup_deltalocation();
3218 location, medianr = datapos.lookup_deltalocation()
3219 location, medianr = datapos.lookup_deltalocation()
3221 Return a tuple containing the on-media location and an optional media number
3222 for a delta rpm. This obviously only works if the data position points to
3223 structure describing a delta rpm.
3225 const char *lookup_deltaseq();
3226 my $seq = $datapos->lookup_deltaseq();
3227 seq = datapos.lookup_deltaseq();
3228 seq = datapos.lookup_deltaseq();
3230 Return the delta rpm sequence from the structure describing a delta rpm.
3232 === DATA RETRIEVAL METHODS ===
3234 const char *lookup_str(Id keyname)
3235 my $string = $datapos->lookup_str($keyname);
3236 string = datapos.lookup_str(keyname)
3237 string = datapos.lookup_str(keyname)
3239 Id lookup_id(Id solvid, Id keyname)
3240 my $id = $datapos->lookup_id($keyname);
3241 id = datapos.lookup_id(keyname)
3242 id = datapos.lookup_id(keyname)
3244 unsigned long long lookup_num(Id keyname, unsigned long long notfound = 0)
3245 my $num = $datapos->lookup_num($keyname);
3246 num = datapos.lookup_num(keyname)
3247 num = datapos.lookup_num(keyname)
3249 bool lookup_void(Id keyname)
3250 my $bool = $datapos->lookup_void($keyname);
3251 bool = datapos.lookup_void(keyname)
3252 bool = datapos.lookup_void(keyname)
3254 Id *lookup_idarray(Id keyname)
3255 my @ids = $datapos->lookup_idarray($keyname);
3256 ids = datapos.lookup_idarray(keyname)
3257 ids = datapos.lookup_idarray(keyname)
3259 Chksum lookup_checksum(Id keyname)
3260 my $chksum = $datapos->lookup_checksum($keyname);
3261 chksum = datapos.lookup_checksum(keyname)
3262 chksum = datapos.lookup_checksum(keyname)
3264 Lookup functions. Note that the returned Ids are always translated into
3265 the Ids of the global pool even if the repodata area contains its own pool.
3269 Michael Schroeder <mls@suse.de>