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
|
/*
* libdpkg - Debian packaging suite library routines
* options.h - option parsing functions
*
* Copyright © 1994,1995 Ian Jackson <ijackson@chiark.greenend.org.uk>
* Copyright © 2008-2014 Guillem Jover <guillem@debian.org>
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef LIBDPKG_OPTIONS_H
#define LIBDPKG_OPTIONS_H
#include <dpkg/macros.h>
#include <dpkg/dpkg-db.h>
DPKG_BEGIN_DECLS
/**
* @defgroup options Option parsing
* @ingroup dpkg-internal
* @{
*/
typedef int action_func(const char *const *argv);
struct cmdinfo {
const char *olong;
char oshort;
/*
* 0 = Normal (-o, --option)
* 1 = Standard value (-o=value, --option=value or
* -o value, --option value)
* 2 = Option string continued (--option-value)
*/
int takesvalue;
int *iassignto;
const char **sassignto;
void (*call)(const struct cmdinfo*, const char *value);
int arg_int;
void *arg_ptr;
action_func *action;
};
void badusage(const char *fmt, ...) DPKG_ATTR_NORET DPKG_ATTR_PRINTF(1);
#define MAX_CONFIG_LINE 1024
void dpkg_options_load(const char *prog, const struct cmdinfo *cmdinfos);
void dpkg_options_parse(const char *const **argvp,
const struct cmdinfo *cmdinfos, const char *help_str);
long dpkg_options_parse_arg_int(const struct cmdinfo *cmd, const char *str);
struct pkginfo *
dpkg_options_parse_pkgname(const struct cmdinfo *cmd, const char *name);
/**
* Current cmdinfo action.
*/
extern const struct cmdinfo *cipaction;
void setaction(const struct cmdinfo *cip, const char *value);
void setobsolete(const struct cmdinfo *cip, const char *value);
#define ACTION(longopt, shortopt, code, func) \
{ longopt, shortopt, 0, NULL, NULL, setaction, code, NULL, func }
#define OBSOLETE(longopt, shortopt) \
{ longopt, shortopt, 0, NULL, NULL, setobsolete, 0, NULL, NULL }
/** @} */
DPKG_END_DECLS
#endif /* LIBDPKG_OPTIONS_H */
|