File: option-parser.h

package info (click to toggle)
wayvnc 0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 836 kB
  • sloc: ansic: 8,928; xml: 2,660; sh: 430; python: 127; makefile: 4
file content (67 lines) | stat: -rw-r--r-- 1,983 bytes parent folder | download
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
/*
 * Copyright (c) 2022 Andri Yngvason
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 */

#pragma once

#include <stdio.h>
#include <stdbool.h>

struct wv_option {
	char short_opt;
	const char* long_opt;
	const char* schema;
	const char* help;
	const char* default_;
	const char* positional;
	bool is_subcommand;
};

struct wv_option_value {
	const struct wv_option* option;
	char value[256];
};

struct option_parser {
	const char* name;
	const struct wv_option* options;
	int n_opts;

	struct wv_option_value values[128];
	int n_values;
	int position;

	size_t remaining_argc;
	const char* const* remaining_argv;
};

void option_parser_init(struct option_parser* self,
		const struct wv_option* options);

void option_parser_print_usage(struct option_parser* self, FILE* stream);

int option_parser_print_arguments(struct option_parser* self, FILE* stream);

void option_parser_print_options(struct option_parser* self, FILE* stream);

int option_parser_parse(struct option_parser* self, int argc,
		const char* const* argv);

const char* option_parser_get_value(const struct option_parser* self,
		const char* name);
const char* option_parser_get_value_no_default(const struct option_parser* self,
		const char* name);

void option_parser_print_cmd_summary(const char* summary, FILE* stream);