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
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
#include "sieve-common.h"
#include "sieve-commands.h"
#include "sieve-code.h"
#include "sieve-generator.h"
#include "sieve-interpreter.h"
/*
* Stop command
*
* Syntax
* stop
*/
static bool cmd_stop_generate
(const struct sieve_codegen_env *cgenv,
struct sieve_command *ctx ATTR_UNUSED);
static bool cmd_stop_validate
(struct sieve_validator *valdtr, struct sieve_command *cmd);
const struct sieve_command_def cmd_stop = {
.identifier = "stop",
.type = SCT_COMMAND,
.positional_args = 0,
.subtests = 0,
.block_allowed = FALSE,
.block_required = FALSE,
.validate = cmd_stop_validate,
.generate = cmd_stop_generate
};
/*
* Stop operation
*/
static int opc_stop_execute
(const struct sieve_runtime_env *renv, sieve_size_t *address);
const struct sieve_operation_def cmd_stop_operation = {
.mnemonic = "STOP",
.code = SIEVE_OPERATION_STOP,
.execute = opc_stop_execute
};
/*
* Command validation
*/
static bool cmd_stop_validate
(struct sieve_validator *valdtr ATTR_UNUSED, struct sieve_command *cmd)
{
sieve_command_exit_block_unconditionally(cmd);
return TRUE;
}
/*
* Code generation
*/
static bool cmd_stop_generate
(const struct sieve_codegen_env *cgenv,
struct sieve_command *cmd ATTR_UNUSED)
{
sieve_operation_emit(cgenv->sblock, NULL, &cmd_stop_operation);
return TRUE;
}
/*
* Code execution
*/
static int opc_stop_execute
(const struct sieve_runtime_env *renv, sieve_size_t *address ATTR_UNUSED)
{
sieve_runtime_trace(renv, SIEVE_TRLVL_COMMANDS,
"stop command; end all script execution");
sieve_interpreter_interrupt(renv->interp);
return SIEVE_EXEC_OK;
}
|