From: Igor Gnatenko Date: Sat, 9 Feb 2019 17:30:29 +0000 (+0100) Subject: bindings: Add pool.best_solvables() X-Git-Tag: 0.7.4~20^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ddb0ce955faacaaaee03b22407049e10a2317ea;p=thirdparty%2Flibsolv.git bindings: Add pool.best_solvables() Signed-off-by: Igor Gnatenko --- diff --git a/bindings/solv.i b/bindings/solv.i index adaf1a37..cbfddb73 100644 --- a/bindings/solv.i +++ b/bindings/solv.i @@ -381,6 +381,7 @@ typedef struct { %typemap(in) Queue Array2Queue(SWIG_AsVal_int, "integers") %typemap(in) Queue solvejobs ObjArray2Queue(Job *, queue_push2(&$1, obj->how, obj->what)) +%typemap(in) Queue solvables ObjArray2Queue(XSolvable *, queue_push(&$1, obj->id)) @@ -1945,6 +1946,14 @@ typedef struct { queue_push(&q, p); return q; } + %typemap(out) Queue best_solvables Queue2Array(XSolvable *, 1, new_XSolvable(arg1, id)); + %newobject best_solvables; + Queue best_solvables(Queue solvables, int flags=0) { + Queue q; + queue_init_clone(&q, &solvables); + pool_best_solvables($self, &q, flags); + return q; + } Id towhatprovides(Queue q) { return pool_queuetowhatprovides($self, &q); diff --git a/doc/gen/libsolv-bindings.3 b/doc/gen/libsolv-bindings.3 index 9f84c77e..a6cf3588 100644 --- a/doc/gen/libsolv-bindings.3 +++ b/doc/gen/libsolv-bindings.3 @@ -2,12 +2,12 @@ .\" Title: Libsolv-Bindings .\" Author: [see the "Author" section] .\" Generator: DocBook XSL Stylesheets vsnapshot -.\" Date: 12/06/2018 +.\" Date: 02/13/2019 .\" Manual: LIBSOLV .\" Source: libsolv .\" Language: English .\" -.TH "LIBSOLV\-BINDINGS" "3" "12/06/2018" "libsolv" "LIBSOLV" +.TH "LIBSOLV\-BINDINGS" "3" "02/13/2019" "libsolv" "LIBSOLV" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -851,6 +851,21 @@ Return all solvables that provide the specified dependency\&. You can use either .RS 4 .\} .nf +\fBSolvable *best_solvables(Solvable *\fR\fIsolvables\fR\fB, int\fR \fIflags\fR \fB= 0)\fR +my \fI@solvables\fR \fB=\fR \fI$pool\fR\fB\->best_solvables(\fR\fI$solvables\fR\fB)\fR; +\fIsolvables\fR \fB=\fR \fIpool\fR\fB\&.best_solvables(\fR\fIsolvables\fR\fB)\fR +\fIsolvables\fR \fB=\fR \fIpool\fR\fB\&.best_solvables(\fR\fIsolvables\fR\fB)\fR +.fi +.if n \{\ +.RE +.\} +.sp +Filter list of solvables by repo priority, architecture and version\&. +.sp +.if n \{\ +.RS 4 +.\} +.nf \fBId *matchprovidingids(const char *\fR\fImatch\fR\fB, int\fR \fIflags\fR\fB)\fR my \fI@ids\fR \fB=\fR \fI$pool\fR\fB\->matchprovidingids(\fR\fI$match\fR\fB,\fR \fI$flags\fR\fB)\fR; \fIids\fR \fB=\fR \fIpool\fR\fB\&.matchprovidingids(\fR\fImatch\fR\fB,\fR \fIflags\fR\fB)\fR diff --git a/doc/libsolv-bindings.txt b/doc/libsolv-bindings.txt index 3839ed96..450ed41c 100644 --- a/doc/libsolv-bindings.txt +++ b/doc/libsolv-bindings.txt @@ -488,6 +488,13 @@ the call to addfileprovides(). Return all solvables that provide the specified dependency. You can use either a Dep object or a simple Id as argument. + Solvable *best_solvables(Solvable *solvables, int flags = 0) + my @solvables = $pool->best_solvables($solvables); + solvables = pool.best_solvables(solvables) + solvables = pool.best_solvables(solvables) + +Filter list of solvables by repo priority, architecture and version. + Id *matchprovidingids(const char *match, int flags) my @ids = $pool->matchprovidingids($match, $flags); ids = pool.matchprovidingids(match, flags)