aboutgitcodelistschat:MatrixIRC
path: root/cooker/cooker.h
blob: 53aa0dbaabd19f29a605d2a5a84d79ffdb1496f1 (plain) (blame)
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
95
96
97
98
99
/* SPDX-License-Identifier: GPL-3.0-or-later
 * Copyright 2023 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef COOKER_H
#define COOKER_H

#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define REFS_MAX			256
#define CALL_ARGS			6

struct arg_num;
struct arg_struct;
struct arg_select;

union arg_value {
	struct arg_num		*d_num;
	struct arg_struct	*d_struct;
	struct arg_select	*d_select;
};

enum arg_type {
	ARG_INT,
	ARG_INTMASK,
	ARG_INTFLAGS,

	ARG_U32,
	ARG_U32MASK,
	ARG_U32FLAGS,

	ARG_LONG,
	ARG_LONGMASK,
	ARG_LONGFLAGS,

	ARG_STRING,

	ARG_STRUCT,
	ARG_SELECT,

	ARG_PID,

	ARG_PORT,
	ARG_IPV4,
	ARG_IPV6,

	ARG_FDPATH,

	ARG_TYPE_END,
};

#define ARG_TYPE_COUNT		(ARG_TYPE_END - 1)

struct arg_num {
	char *name;
	long long value;
};

struct arg_struct {
	char *name;
	enum arg_type type;
	size_t offset;

	size_t strlen;

	union arg_value desc;
};

struct arg_select_num {
	long long value;

	enum arg_type type;
	union arg_value desc;
};

struct arg_select {
	struct arg_struct *field;

	union {
		struct arg_select_num *d_num;
	} desc;
};

struct arg {
	int pos;
	char *name;

	enum arg_type type;
	size_t size;

	union arg_value desc;
};

#endif /* COOKER_H */