i3
commands_parser.h
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * commands.c: all command functions (see commands_parser.c)
8  *
9  */
10 #pragma once
11 
12 #include <config.h>
13 
14 #include <yajl/yajl_gen.h>
15 
16 /*
17  * Holds an intermediate represenation of the result of a call to any command.
18  * When calling parse_command("floating enable, border none"), the parser will
19  * internally use this struct when calling cmd_floating and cmd_border.
20  */
22  /* The JSON generator to append a reply to (may be NULL). */
23  yajl_gen json_gen;
24 
25  /* The next state to transition to. Passed to the function so that we can
26  * determine the next state as a result of a function call, like
27  * cfg_criteria_pop_state() does. */
29 
30  /* Whether the command requires calling tree_render. */
32 };
33 
35 
42 struct CommandResult {
44  /* the error_message is currently only set for parse errors */
47 };
48 
55 char *parse_string(const char **walk, bool as_word);
56 
64 CommandResult *parse_command(const char *input, yajl_gen gen);
65 
CommandResult * parse_command(const char *input, yajl_gen gen)
Parses and executes the given command.
A struct that contains useful information about the result of a command as a whole (e...
void command_result_free(CommandResult *result)
Frees a CommandResult.
char * error_message
char * parse_string(const char **walk, bool as_word)
Parses a string (or word, if as_word is true).