Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
apk-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
59
Issues
59
List
Boards
Labels
Service Desk
Milestones
Merge Requests
14
Merge Requests
14
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
apk-tools
Commits
31e4f588
Commit
31e4f588
authored
Sep 09, 2011
by
Timo Teräs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: fix for updated solver api
parent
a5a70216
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
20 deletions
+14
-20
src/test.c
src/test.c
+14
-20
No files found.
src/test.c
View file @
31e4f588
...
...
@@ -19,6 +19,7 @@
struct
test_ctx
{
const
char
*
installed_db
;
struct
apk_string_array
*
repos
;
unsigned
short
solver_flags
;
};
static
int
test_parse
(
void
*
pctx
,
struct
apk_db_options
*
dbopts
,
...
...
@@ -36,10 +37,10 @@ static int test_parse(void *pctx, struct apk_db_options *dbopts,
*
apk_string_array_add
(
&
ctx
->
repos
)
=
(
char
*
)
optarg
;
break
;
case
'u'
:
apk_flags
|=
APK
_UPGRADE
;
ctx
->
solver_flags
|=
APK_SOLVERF
_UPGRADE
;
break
;
case
'a'
:
apk_flags
|=
APK_PREFER
_AVAILABLE
;
ctx
->
solver_flags
|=
APK_SOLVERF
_AVAILABLE
;
break
;
default:
return
-
1
;
...
...
@@ -90,8 +91,7 @@ static inline void print_change(struct apk_package *oldpkg,
}
}
static
void
print_dep_errors
(
char
*
label
,
struct
apk_dependency_array
*
deps
,
struct
apk_package
**
name_pkgs
)
static
void
print_dep_errors
(
char
*
label
,
struct
apk_dependency_array
*
deps
)
{
int
i
,
print_label
=
1
;
char
buf
[
256
];
...
...
@@ -99,7 +99,7 @@ static void print_dep_errors(char *label, struct apk_dependency_array *deps,
for
(
i
=
0
;
i
<
deps
->
num
;
i
++
)
{
struct
apk_dependency
*
dep
=
&
deps
->
item
[
i
];
struct
apk_package
*
pkg
=
name_pkgs
[
dep
->
name
->
id
]
;
struct
apk_package
*
pkg
=
dep
->
name
->
state_ptr
;
if
(
pkg
!=
NULL
&&
apk_dep_is_satisfied
(
dep
,
pkg
))
continue
;
...
...
@@ -121,25 +121,22 @@ static void print_dep_errors(char *label, struct apk_dependency_array *deps,
static
void
print_errors_in_solution
(
struct
apk_database
*
db
,
int
unsatisfiable
,
struct
apk_package_array
*
solution
)
{
struct
apk_package
**
name_pkg
;
int
i
;
printf
(
"%d unsatisfiable dependencies (solution with %d names)
\n
"
,
unsatisfiable
,
solution
->
num
);
name_pkg
=
alloca
(
sizeof
(
struct
apk_package
*
)
*
db
->
available
.
names
.
num_items
);
memset
(
name_pkg
,
0
,
sizeof
(
struct
apk_package
*
)
*
db
->
available
.
names
.
num_items
);
for
(
i
=
0
;
i
<
solution
->
num
;
i
++
)
{
struct
apk_package
*
pkg
=
solution
->
item
[
i
];
name_pkg
[
pkg
->
name
->
id
]
=
pkg
;
pkg
->
name
->
state_ptr
=
pkg
;
}
print_dep_errors
(
"world"
,
db
->
world
,
name_pkg
);
print_dep_errors
(
"world"
,
db
->
world
);
for
(
i
=
0
;
i
<
solution
->
num
;
i
++
)
{
struct
apk_package
*
pkg
=
solution
->
item
[
i
];
char
pkgtext
[
256
];
snprintf
(
pkgtext
,
sizeof
(
pkgtext
),
PKG_VER_FMT
,
PKG_VER_PRINTF
(
solution
->
item
[
i
]));
print_dep_errors
(
pkgtext
,
pkg
->
depends
,
name_pkg
);
print_dep_errors
(
pkgtext
,
pkg
->
depends
);
}
}
...
...
@@ -149,7 +146,7 @@ static int test_main(void *pctx, struct apk_database *db, int argc, char **argv)
struct
test_ctx
*
ctx
=
(
struct
test_ctx
*
)
pctx
;
struct
apk_bstream
*
bs
;
struct
apk_package_array
*
solution
=
NULL
;
struct
apk_changeset
changeset
;
struct
apk_changeset
changeset
=
{}
;
int
i
,
r
;
if
(
argc
!=
1
)
...
...
@@ -179,16 +176,13 @@ static int test_main(void *pctx, struct apk_database *db, int argc, char **argv)
apk_deps_parse
(
db
,
&
db
->
world
,
APK_BLOB_STR
(
argv
[
0
]));
/* run solver */
r
=
apk_solver_solve
(
db
,
db
->
world
,
&
solution
,
TRUE
);
r
=
apk_solver_solve
(
db
,
ctx
->
solver_flags
,
db
->
world
,
&
solution
,
&
changeset
);
if
(
r
==
0
)
{
memset
(
&
changeset
,
0
,
sizeof
(
changeset
));
if
(
apk_solver_generate_changeset
(
db
,
solution
,
&
changeset
)
==
0
)
{
/* dump changeset */
for
(
i
=
0
;
i
<
changeset
.
changes
->
num
;
i
++
)
{
struct
apk_change
*
c
=
&
changeset
.
changes
->
item
[
i
];
print_change
(
c
->
oldpkg
,
c
->
newpkg
);
}
}
}
else
{
/* r >= 1*/
print_errors_in_solution
(
db
,
r
,
solution
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment