diff options
author | Timo Teräs <timo.teras@iki.fi> | 2020-05-04 21:45:11 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-05-06 13:05:25 +0300 |
commit | 1d7123d83796182f851ccccaf056063955343718 (patch) | |
tree | ca675fd3363af3584694d0db5a3b65e618ae894b /src/app_add.c | |
parent | 791f93fcbe7a543e0bb844887ba395be8ed8ea44 (diff) | |
download | apk-tools-1d7123d83796182f851ccccaf056063955343718.tar.gz apk-tools-1d7123d83796182f851ccccaf056063955343718.tar.bz2 apk-tools-1d7123d83796182f851ccccaf056063955343718.tar.xz apk-tools-1d7123d83796182f851ccccaf056063955343718.zip |
rewrite option descriptors to be single string
This reduces the number of relocations on PIE binaries, and also
reduces the executable size. Parsing of the options is slightly
sped up as only the exact matching option group parser is called.
Diffstat (limited to 'src/app_add.c')
-rw-r--r-- | src/app_add.c | 46 |
1 files changed, 26 insertions, 20 deletions
diff --git a/src/app_add.c b/src/app_add.c index 1e1fe00..9331fb8 100644 --- a/src/app_add.c +++ b/src/app_add.c @@ -23,24 +23,40 @@ struct add_ctx { unsigned short extract_flags; }; -static int option_parse_applet(void *ctx, struct apk_db_options *dbopts, int optch, const char *optarg) +enum { + OPT_ADD_initdb, + OPT_ADD_latest, + OPT_ADD_no_chown, + OPT_ADD_upgrade, + OPT_ADD_virtual, +}; + +static const char option_desc[] = + APK_OPTAPPLET + APK_OPT1n("initdb") + APK_OPT2n("latest", "l") + APK_OPT1n("no-chown") + APK_OPT2n("upgrade", "u") + APK_OPT2R("virtual", "t"); + +static int option_parse_applet(void *ctx, struct apk_db_options *dbopts, int opt, const char *optarg) { struct add_ctx *actx = (struct add_ctx *) ctx; - switch (optch) { - case 0x10000: + switch (opt) { + case OPT_ADD_initdb: dbopts->open_flags |= APK_OPENF_CREATE; break; - case 0x10001: + case OPT_ADD_latest: + actx->solver_flags |= APK_SOLVERF_LATEST; + break; + case OPT_ADD_no_chown: actx->extract_flags |= APK_EXTRACTF_NO_CHOWN; break; - case 'u': + case OPT_ADD_upgrade: actx->solver_flags |= APK_SOLVERF_UPGRADE; break; - case 'l': - actx->solver_flags |= APK_SOLVERF_LATEST; - break; - case 't': + case OPT_ADD_virtual: actx->virtpkg = optarg; break; default: @@ -49,18 +65,8 @@ static int option_parse_applet(void *ctx, struct apk_db_options *dbopts, int opt return 0; } -static const struct apk_option options_applet[] = { - { 0x10000, "initdb" }, - { 0x10001, "no-chown" }, - { 'u', "upgrade" }, - { 'l', "latest" }, - { 't', "virtual", required_argument }, -}; - static const struct apk_option_group optgroup_applet = { - .name = "Add", - .options = options_applet, - .num_options = ARRAY_SIZE(options_applet), + .desc = option_desc, .parse = option_parse_applet, }; |