Skip to content
Snippets Groups Projects
Commit ccf4377f authored by Stephan Bosch's avatar Stephan Bosch
Browse files

Implemented code generation and interpretation for the commands introduced by...

Implemented code generation and interpretation for the commands introduced by the imapflags extension.
parent bac51d56
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,11 @@ ...@@ -11,6 +11,11 @@
static bool cmd_addflag_generate static bool cmd_addflag_generate
(struct sieve_generator *generator, struct sieve_command_context *ctx); (struct sieve_generator *generator, struct sieve_command_context *ctx);
static bool cmd_addflag_opcode_execute
(const struct sieve_opcode *opcode, struct sieve_interpreter *interp,
struct sieve_binary *sbin, sieve_size_t *address);
/* Addflag command /* Addflag command
* *
...@@ -36,8 +41,8 @@ const struct sieve_opcode addflag_opcode = { ...@@ -36,8 +41,8 @@ const struct sieve_opcode addflag_opcode = {
SIEVE_OPCODE_CUSTOM, SIEVE_OPCODE_CUSTOM,
&imapflags_extension, &imapflags_extension,
EXT_IMAPFLAGS_OPCODE_ADDFLAG, EXT_IMAPFLAGS_OPCODE_ADDFLAG,
NULL, sieve_opcode_string_dump,
NULL cmd_addflag_opcode_execute
}; };
...@@ -56,4 +61,26 @@ static bool cmd_addflag_generate ...@@ -56,4 +61,26 @@ static bool cmd_addflag_generate
return TRUE; return TRUE;
} }
/*
* Execution
*/
static bool cmd_addflag_opcode_execute
(const struct sieve_opcode *opcode ATTR_UNUSED,
struct sieve_interpreter *interp ATTR_UNUSED,
struct sieve_binary *sbin, sieve_size_t *address)
{
string_t *redirect;
t_push();
if ( !sieve_opr_string_read(sbin, address, &redirect) ) {
t_pop();
return FALSE;
}
printf(">> ADDFLAG \"%s\"\n", str_c(redirect));
t_pop();
return TRUE;
}
...@@ -13,14 +13,9 @@ ...@@ -13,14 +13,9 @@
static bool cmd_removeflag_generate static bool cmd_removeflag_generate
(struct sieve_generator *generator, struct sieve_command_context *ctx); (struct sieve_generator *generator, struct sieve_command_context *ctx);
static bool cmd_removeflag_opcode_dump
(const struct sieve_opcode *opcode ATTR_UNUSED,
struct sieve_interpreter *interp ATTR_UNUSED, struct sieve_binary *sbin,
sieve_size_t *address);
static bool cmd_removeflag_opcode_execute static bool cmd_removeflag_opcode_execute
(const struct sieve_opcode *opcode ATTR_UNUSED, (const struct sieve_opcode *opcode, struct sieve_interpreter *interp,
struct sieve_interpreter *interp ATTR_UNUSED, struct sieve_binary *sbin, struct sieve_binary *sbin, sieve_size_t *address);
sieve_size_t *address);
/* Removeflag command /* Removeflag command
* *
...@@ -46,7 +41,7 @@ const struct sieve_opcode removeflag_opcode = { ...@@ -46,7 +41,7 @@ const struct sieve_opcode removeflag_opcode = {
SIEVE_OPCODE_CUSTOM, SIEVE_OPCODE_CUSTOM,
&imapflags_extension, &imapflags_extension,
EXT_IMAPFLAGS_OPCODE_REMOVEFLAG, EXT_IMAPFLAGS_OPCODE_REMOVEFLAG,
cmd_removeflag_opcode_dump, sieve_opcode_string_dump,
cmd_removeflag_opcode_execute cmd_removeflag_opcode_execute
}; };
...@@ -66,22 +61,7 @@ static bool cmd_removeflag_generate ...@@ -66,22 +61,7 @@ static bool cmd_removeflag_generate
return TRUE; return TRUE;
} }
/*
* Code dump
*/
static bool cmd_removeflag_opcode_dump
(const struct sieve_opcode *opcode ATTR_UNUSED,
struct sieve_interpreter *interp ATTR_UNUSED,
struct sieve_binary *sbin, sieve_size_t *address)
{
printf("REMOVEFLAG\n");
return
sieve_opr_string_dump(sbin, address);
}
/* /*
* Execution * Execution
*/ */
......
...@@ -12,6 +12,10 @@ ...@@ -12,6 +12,10 @@
static bool cmd_setflag_generate static bool cmd_setflag_generate
(struct sieve_generator *generator, struct sieve_command_context *ctx); (struct sieve_generator *generator, struct sieve_command_context *ctx);
static bool cmd_setflag_opcode_execute
(const struct sieve_opcode *opcode, struct sieve_interpreter *interp,
struct sieve_binary *sbin, sieve_size_t *address);
/* Setflag command /* Setflag command
* *
* Syntax: * Syntax:
...@@ -36,8 +40,8 @@ const struct sieve_opcode setflag_opcode = { ...@@ -36,8 +40,8 @@ const struct sieve_opcode setflag_opcode = {
SIEVE_OPCODE_CUSTOM, SIEVE_OPCODE_CUSTOM,
&imapflags_extension, &imapflags_extension,
EXT_IMAPFLAGS_OPCODE_SETFLAG, EXT_IMAPFLAGS_OPCODE_SETFLAG,
NULL, sieve_opcode_string_dump,
NULL cmd_setflag_opcode_execute
}; };
/* Code generation */ /* Code generation */
...@@ -55,4 +59,28 @@ static bool cmd_setflag_generate ...@@ -55,4 +59,28 @@ static bool cmd_setflag_generate
return TRUE; return TRUE;
} }
/*
* Execution
*/
static bool cmd_setflag_opcode_execute
(const struct sieve_opcode *opcode ATTR_UNUSED,
struct sieve_interpreter *interp ATTR_UNUSED,
struct sieve_binary *sbin, sieve_size_t *address)
{
string_t *redirect;
t_push();
if ( !sieve_opr_string_read(sbin, address, &redirect) ) {
t_pop();
return FALSE;
}
printf(">> SETFLAG \"%s\"\n", str_c(redirect));
t_pop();
return TRUE;
}
...@@ -32,7 +32,7 @@ bool ext_imapflags_command_validate ...@@ -32,7 +32,7 @@ bool ext_imapflags_command_validate
cmd->command->identifier, sieve_ast_argument_name(arg)); cmd->command->identifier, sieve_ast_argument_name(arg));
return FALSE; return FALSE;
} }
//sieve_validator_argument_activate(validator, arg); sieve_validator_argument_activate(validator, arg);
arg2 = sieve_ast_argument_next(arg); arg2 = sieve_ast_argument_next(arg);
...@@ -70,7 +70,7 @@ bool ext_imapflags_command_validate ...@@ -70,7 +70,7 @@ bool ext_imapflags_command_validate
return FALSE; return FALSE;
} }
//sieve_validator_argument_activate(validator, arg2); sieve_validator_argument_activate(validator, arg2);
} }
return TRUE; return TRUE;
} }
......
...@@ -41,7 +41,7 @@ extern const struct sieve_opcode addflag_opcode; ...@@ -41,7 +41,7 @@ extern const struct sieve_opcode addflag_opcode;
extern const struct sieve_opcode removeflag_opcode; extern const struct sieve_opcode removeflag_opcode;
const struct sieve_opcode *imapflags_opcodes[] = const struct sieve_opcode *imapflags_opcodes[] =
{ &setflag_opcode, &addflag_opcode }; { &setflag_opcode, &addflag_opcode, &removeflag_opcode };
const struct sieve_extension imapflags_extension = { const struct sieve_extension imapflags_extension = {
"imapflags", "imapflags",
ext_imapflags_load, ext_imapflags_load,
......
require "imapflags"; require "imapflags";
require "fileinto"; require "fileinto";
setflag "\\Seen";
addflag "$DSNRequired";
removeflag "$DSNRequired";
if header :contains "from" "boss@frobnitzm.example.edu" { if header :contains "from" "boss@frobnitzm.example.edu" {
setflag "\\Flagged"; setflag "\\Flagged";
fileinto "INBOX.From Boss"; fileinto "INBOX.From Boss";
......
...@@ -695,6 +695,8 @@ static bool opc_jmp_dump( ...@@ -695,6 +695,8 @@ static bool opc_jmp_dump(
return TRUE; return TRUE;
} }
/* Code dump for trivial opcodes */
bool sieve_opcode_trivial_dump bool sieve_opcode_trivial_dump
(const struct sieve_opcode *opcode, (const struct sieve_opcode *opcode,
struct sieve_interpreter *interp ATTR_UNUSED, struct sieve_interpreter *interp ATTR_UNUSED,
...@@ -705,6 +707,18 @@ bool sieve_opcode_trivial_dump ...@@ -705,6 +707,18 @@ bool sieve_opcode_trivial_dump
return TRUE; return TRUE;
} }
bool sieve_opcode_string_dump
(const struct sieve_opcode *opcode,
struct sieve_interpreter *interp ATTR_UNUSED,
struct sieve_binary *sbin, sieve_size_t *address)
{
printf("%s\n", opcode->mnemonic);
return
sieve_opr_string_dump(sbin, address);
}
/* Code execution for core commands */ /* Code execution for core commands */
static bool opc_jmp_execute static bool opc_jmp_execute
......
...@@ -154,6 +154,9 @@ const struct sieve_opcode *sieve_operation_read ...@@ -154,6 +154,9 @@ const struct sieve_opcode *sieve_operation_read
bool sieve_opcode_trivial_dump bool sieve_opcode_trivial_dump
(const struct sieve_opcode *opcode, struct sieve_interpreter *interp, (const struct sieve_opcode *opcode, struct sieve_interpreter *interp,
struct sieve_binary *sbin, sieve_size_t *address); struct sieve_binary *sbin, sieve_size_t *address);
bool sieve_opcode_string_dump
(const struct sieve_opcode *opcode, struct sieve_interpreter *interp,
struct sieve_binary *sbin, sieve_size_t *address);
/* Core operands */ /* Core operands */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.