1 /* Copyright (C) 2017 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
4 * \file mp.h Internal mood parser API (backend).
6 * This header is included from the lexer, the parser, and from \ref mp.c, but
7 * not from \ref mood.c, the only user of the mood parser front end. It
8 * contains structures and function prototypes which are considered
9 * implementation details.
11 * There is one function for each keyword in the context-free grammar of the
12 * parser. These functions return the semantic value of the keyword.
14 * The functions declared here are defined either in mp.c or in mp.y.
17 /** Opaque, only known to mp.c. Passed to the generated mp_yyparse(). */
21 * Since we use a reentrant lexer, all functions generated by flex(1)
22 * receive an additional argument of this type.
24 typedef void *mp_yyscan_t;
26 /** Parsed regex pattern. */
27 struct mp_re_pattern {
28 regex_t preg; /**< Pre-compiled regex. **/
29 unsigned flags; /**< Subset of the cflags described in regex(3). */
32 /** Parsed wildcard pattern. */
33 struct mp_wc_pattern {
34 char *pat; /**< Unescaped C string (without quotes and flags). */
35 unsigned flags; /**< For modifying matching behaviour. */
39 * The possible values of a node in the abstract syntax tree (AST).
41 * Constant semantic values (string literals, numeric constants, wildcard and
42 * regex patterns which are part of the mood definition) are determined during
43 * \ref mp_init() while values which depend on the audio file (path, bitrate,
44 * etc.) are determined during mp_eval_row().
46 * This union, and the \ref mp_ast_node structure below are used extensively in
47 * mp.y. However, both need to be public because the lexer must be able to
48 * create AST nodes for the constant semantic values.
50 union mp_semantic_value {
51 bool boolval; /**< Comparators, =~ and =|. */
52 char *strval; /**< String literals, tags, path. */
53 int64_t intval; /**< Constants, bitrate, frequency, etc. */
54 struct mp_wc_pattern wc_pattern; /**< Right-hand side operand of =|. */
55 struct mp_re_pattern re_pattern; /**< Right-hand side operand of =~. */
59 * Describes one node of the abstract syntax tree.
61 * A node is either interior or a leaf node. Interior nodes have at least one
62 * child while leaf nodes have a semantic value and no children.
64 * Examples: (a) STRING_LITERAL has a semantic value (the unescaped string
65 * literal) and no children, (b) NEG (unary minus) has no semantic value but
66 * one child (the numeric expression that is to be negated), (c) LESS_OR_EQUAL
67 * has no semantic value and two children (the two numeric expressions being
71 /** Corresponds to a token type, for example LESS_OR_EQUAL. */
74 /** Pointers to the child nodes (interior nodes only). */
75 struct mp_ast_node **children;
76 /** Leaf nodes only. */
77 union mp_semantic_value sv;
80 * The number of children is implicitly given by the id, but we include
81 * it here to avoid having to maintain a lookup table. The AST is
82 * usually small, so we can afford to waste a byte per node.
87 /* Called from both the lexer and the parser. */
88 __printf_3_4 void mp_parse_error(int line, struct mp_context *ctx,
89 const char *fmt, ...);
91 /* Helper functions for the lexer. */
92 unsigned parse_quoted_string(const char *src, const char quote_chars[2],
94 int mp_parse_regex_pattern(const char *src, struct mp_re_pattern *result);
95 void mp_parse_wildcard_pattern(const char *src, struct mp_wc_pattern *result);
98 * The functions below are implemented in mp.y. They are documented here
99 * because mp.y is not doxyfied.
103 * Allocate a new leaf node for the abstract syntax tree.
105 * \param id Initial value for the ->id field of the new node
107 * \return Pointer to a node whose ->num_children field is initialized to zero.
108 * The caller is expected to initialize the ->sv field.
110 struct mp_ast_node *mp_new_ast_leaf_node(int id);
113 * Evaluate an abstract syntax tree, starting at the root node.
115 * \param root As returned from \ref mp_init() via the context pointer.
116 * \param ctx Contains the aft row to evaluate.
118 * \return True if the AST evaluates to true, a non-empty string, or a
119 * non-zero number. False otherwise.
123 bool mp_eval_ast(struct mp_ast_node *root, struct mp_context *ctx);
126 * Deallocate an abstract syntax tree.
128 * This frees the memory occupied by the nodes of the AST, the child pointers
129 * of the internal nodes and the (constant) semantic values of the leaf nodes
130 * (string literals, unescaped wildcard patterns and pre-compiled regular
133 * \param root It's OK to pass NULL here.
135 void mp_free_ast(struct mp_ast_node *root);
137 /* Helper functions for the parser. */
138 bool mp_is_set(const char *attr, struct mp_context *ctx);
139 char *mp_path(struct mp_context *ctx);
140 int64_t mp_year(struct mp_context *ctx);
141 int64_t mp_num_attributes_set(struct mp_context *ctx);
142 int64_t mp_duration(struct mp_context *ctx);
144 /* Generated with MP_AFSI() */
146 int64_t mp_num_played(struct mp_context *ctx);
147 int64_t mp_image_id(struct mp_context *ctx);
148 int64_t mp_lyrics_id(struct mp_context *ctx);
151 /* Generated with MP_AFHI() */
153 int64_t mp_bitrate(struct mp_context *ctx);
154 int64_t mp_frequency(struct mp_context *ctx);
155 int64_t mp_channels(struct mp_context *ctx);
158 /* Generated with MP_TAG() */
160 char *mp_artist(struct mp_context *ctx);
161 char *mp_title(struct mp_context *ctx);
162 char *mp_album(struct mp_context *ctx);
163 char *mp_comment(struct mp_context *ctx);