1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/* add.c - Alpine Package Keeper (APK)
*
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
* Copyright (C) 2008 Timo Teräs <timo.teras@iki.fi>
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation. See http://www.gnu.org/ for details.
*/
#include <errno.h>
#include <stdio.h>
#include "apk_applet.h"
#include "apk_database.h"
struct add_ctx {
unsigned int open_flags;
};
static int add_parse(void *ctx, int optch, int optindex, const char *optarg)
{
struct add_ctx *actx = (struct add_ctx *) ctx;
switch (optch) {
case 0x10000:
actx->open_flags |= APK_OPENF_CREATE;
break;
case 'u':
apk_upgrade = 1;
break;
default:
return -1;
}
return 0;
}
static int add_main(void *ctx, int argc, char **argv)
{
struct add_ctx *actx = (struct add_ctx *) ctx;
struct apk_database db;
int i, r, ret = 1;
r = apk_db_open(&db, apk_root, actx->open_flags | APK_OPENF_WRITE);
if (r != 0)
return r;
for (i = 0; i < argc; i++) {
struct apk_dependency dep;
if (strstr(argv[i], ".apk") != NULL) {
struct apk_package *pkg;
pkg = apk_db_pkg_add_file(&db, argv[i]);
if (pkg == NULL) {
apk_error("Unable to read '%s'", argv[i]);
goto err;
}
dep = (struct apk_dependency) {
.name = pkg->name,
.min_version = pkg->version,
.max_version = pkg->version,
};
} else {
dep = (struct apk_dependency) {
.name = apk_db_get_name(&db, APK_BLOB_STR(argv[i])),
};
}
apk_deps_add(&db.world, &dep);
}
ret = apk_db_recalculate_and_commit(&db);
err:
apk_db_close(&db);
return ret;
}
static struct option add_options[] = {
{ "initdb", no_argument, NULL, 0x10000 },
{ "upgrade", no_argument, NULL, 'u' },
};
static struct apk_applet apk_add = {
.name = "add",
.usage = "[--initdb] [--upgrade|-u] apkname...",
.context_size = sizeof(struct add_ctx),
.num_options = ARRAY_SIZE(add_options),
.options = add_options,
.parse = add_parse,
.main = add_main,
};
APK_DEFINE_APPLET(apk_add);
|