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
|
#ifndef SIEVE_OBJECTS_H
#define SIEVE_OBJECTS_H
/*
* Object definition
*/
struct sieve_object_def {
const char *identifier;
const struct sieve_operand_def *operand;
unsigned int code;
};
#define SIEVE_OBJECT(_identifier, _operand, _code) \
.obj_def = { \
.identifier = (_identifier), \
.operand = (_operand), \
.code = (_code) \
}
/*
* Object instance
*/
struct sieve_object {
const struct sieve_object_def *def;
const struct sieve_extension *ext;
};
#define SIEVE_OBJECT_DEFAULT(_obj) \
{ &((_obj).obj_def), NULL }
#define SIEVE_OBJECT_EXTENSION(_obj) \
(_obj->object.ext)
#define SIEVE_OBJECT_SET_DEF(_obj, def_value) \
STMT_START { \
(_obj)->def = def_value; \
(_obj)->object.def = &(_obj)->def->obj_def; \
} STMT_END
/*
* Object coding
*/
void sieve_opr_object_emit
(struct sieve_binary_block *sblock, const struct sieve_extension *ext,
const struct sieve_object_def *obj_def);
bool sieve_opr_object_read_data
(struct sieve_binary_block *sblock, const struct sieve_operand *operand,
const struct sieve_operand_class *opclass, sieve_size_t *address,
struct sieve_object *obj);
bool sieve_opr_object_read
(const struct sieve_runtime_env *renv,
const struct sieve_operand_class *opclass, sieve_size_t *address,
struct sieve_object *obj);
bool sieve_opr_object_dump
(const struct sieve_dumptime_env *denv,
const struct sieve_operand_class *opclass, sieve_size_t *address,
struct sieve_object *obj);
#endif
|