aboutsummaryrefslogtreecommitdiffstats
path: root/src/fetch.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2013-06-19 14:49:44 +0300
committerTimo Teräs <timo.teras@iki.fi>2013-06-19 14:49:44 +0300
commit9c54ef726c624a4635c0b1a8160baab7b575df62 (patch)
treee048e0c62e066811b20b273c211f35fa77cc22bf /src/fetch.c
parenta984fd3679ef83edd8bd98f55233e5eb12f0faf0 (diff)
downloadaports-9c54ef726c624a4635c0b1a8160baab7b575df62.tar.bz2
aports-9c54ef726c624a4635c0b1a8160baab7b575df62.tar.xz
fetch, del: perform wildcard matching
ref #511
Diffstat (limited to 'src/fetch.c')
-rw-r--r--src/fetch.c94
1 files changed, 51 insertions, 43 deletions
diff --git a/src/fetch.c b/src/fetch.c
index 7891ac2acd..c3f6e3b381 100644
--- a/src/fetch.c
+++ b/src/fetch.c
@@ -187,13 +187,59 @@ static void mark_package(struct fetch_ctx *ctx, struct apk_package *pkg)
pkg->marked = 1;
}
-static int fetch_main(void *pctx, struct apk_database *db, struct apk_string_array *args)
+static void mark_error(struct fetch_ctx *ctx, const char *match, struct apk_name *name)
{
- struct fetch_ctx *ctx = (struct fetch_ctx *) pctx;
+ if (strchr(match, '*') != NULL)
+ return;
+
+ apk_message("%s: unable to select package (or it's dependencies)", name->name);
+ ctx->errors++;
+}
+
+static void mark_name_recursive(struct apk_database *db, const char *match, struct apk_name *name, void *ctx)
+{
+ struct apk_changeset changeset = {};
+ struct apk_dependency dep = (struct apk_dependency) {
+ .name = name,
+ .version = &apk_null_blob,
+ .result_mask = APK_DEPMASK_ANY,
+ };
struct apk_dependency_array *world;
struct apk_change *change;
- char **parg;
- int r = 0;
+ int r;
+
+ apk_dependency_array_init(&world);
+ *apk_dependency_array_add(&world) = dep;
+ r = apk_solver_solve(db, 0, world, &changeset);
+ apk_dependency_array_free(&world);
+ if (r == 0) {
+ foreach_array_item(change, changeset.changes)
+ mark_package(ctx, change->new_pkg);
+ } else
+ mark_error(ctx, match, name);
+
+ apk_change_array_free(&changeset.changes);
+}
+
+static void mark_name(struct apk_database *db, const char *match, struct apk_name *name, void *ctx)
+{
+ struct apk_package *pkg = NULL;
+ struct apk_provider *p;
+
+ foreach_array_item(p, name->providers)
+ if (pkg == NULL || apk_pkg_version_compare(p->pkg, pkg) == APK_VERSION_GREATER)
+ pkg = p->pkg;
+
+ if (pkg != NULL)
+ mark_package(ctx, pkg);
+ else
+ mark_error(ctx, match, name);
+}
+
+static int fetch_main(void *pctx, struct apk_database *db, struct apk_string_array *args)
+{
+ struct fetch_ctx *ctx = (struct fetch_ctx *) pctx;
+ void *mark = (ctx->flags & FETCH_RECURSIVE) ? mark_name_recursive : mark_name;
if (ctx->outdir_fd == 0)
ctx->outdir_fd = AT_FDCWD;
@@ -205,46 +251,8 @@ static int fetch_main(void *pctx, struct apk_database *db, struct apk_string_arr
return 0;
}
- foreach_array_item(parg, args) {
- struct apk_dependency dep = (struct apk_dependency) {
- .name = apk_db_get_name(db, APK_BLOB_STR(*parg)),
- .version = apk_blob_atomize(APK_BLOB_NULL),
- .result_mask = APK_DEPMASK_ANY,
- };
-
- if (ctx->flags & FETCH_RECURSIVE) {
- struct apk_changeset changeset = {};
-
- apk_dependency_array_init(&world);
- *apk_dependency_array_add(&world) = dep;
- r = apk_solver_solve(db, 0, world, &changeset);
- apk_dependency_array_free(&world);
- if (r != 0) {
- apk_error("%s: unable to get dependencies", dep.name->name);
- ctx->errors++;
- } else {
- foreach_array_item(change, changeset.changes)
- mark_package(ctx, change->new_pkg);
- }
- apk_change_array_free(&changeset.changes);
- } else {
- struct apk_package *pkg = NULL;
- struct apk_provider *p;
-
- foreach_array_item(p, dep.name->providers)
- if (pkg == NULL || apk_pkg_version_compare(p->pkg, pkg) == APK_VERSION_GREATER)
- pkg = p->pkg;
-
- if (pkg == NULL) {
- apk_message("%s: unable to select a version", dep.name->name);
- ctx->errors++;
- } else {
- mark_package(ctx, pkg);
- }
- }
- }
-
ctx->db = db;
+ apk_name_foreach_matching(db, args, apk_foreach_genid(), mark, ctx);
apk_hash_foreach(&db->available.packages, fetch_package, ctx);
return ctx->errors;