7e9e5f37d4273e59506fe549a5ea9867dbd25e28
[pspp] / src / language / control / define.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2021 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include <limits.h>
20
21 #include "language/command.h"
22 #include "language/lexer/lexer.h"
23 #include "language/lexer/macro.h"
24 #include "language/lexer/scan.h"
25 #include "language/lexer/token.h"
26 #include "libpspp/message.h"
27
28 #include "gl/xalloc.h"
29
30 #include "gettext.h"
31 #define _(msgid) gettext (msgid)
32
33 static bool
34 force_macro_id (struct lexer *lexer)
35 {
36   return lex_token (lexer) == T_MACRO_ID || lex_force_id (lexer);
37 }
38
39 static bool
40 match_macro_id (struct lexer *lexer, const char *keyword)
41 {
42   if (keyword[0] != '!')
43     return lex_match_id (lexer, keyword);
44   else if (lex_token (lexer) == T_MACRO_ID
45            && lex_id_match_n (ss_cstr (keyword), lex_tokss (lexer), 4))
46     {
47       lex_get (lexer);
48       return true;
49     }
50   else
51     return false;
52 }
53
54 static bool
55 parse_quoted_token (struct lexer *lexer, struct token *token)
56 {
57   if (!lex_force_string (lexer))
58     return false;
59
60   struct substring s = lex_tokss (lexer);
61   struct string_lexer slex;
62   string_lexer_init (&slex, s.string, s.length, SEG_MODE_INTERACTIVE);
63   struct token another_token = { .type = T_STOP };
64   if (!string_lexer_next (&slex, token)
65       || string_lexer_next (&slex, &another_token))
66     {
67       token_uninit (token);
68       token_uninit (&another_token);
69       lex_error (lexer, _("String must contain exactly one token."));
70       return false;
71     }
72   lex_get (lexer);
73   return true;
74 }
75
76 int
77 cmd_define (struct lexer *lexer, struct dataset *ds UNUSED)
78 {
79   if (!force_macro_id (lexer))
80     return CMD_FAILURE;
81
82   /* Parse macro name. */
83   struct macro *m = xmalloc (sizeof *m);
84   *m = (struct macro) { .name = ss_xstrdup (lex_tokss (lexer)) };
85   lex_get (lexer);
86
87   if (!lex_force_match (lexer, T_LPAREN))
88     goto error;
89
90   size_t allocated_params = 0;
91   while (!lex_match (lexer, T_RPAREN))
92     {
93       if (m->n_params >= allocated_params)
94         m->params = x2nrealloc (m->params, &allocated_params,
95                                 sizeof *m->params);
96
97       size_t param_index = m->n_params++;
98       struct macro_param *p = &m->params[param_index];
99       *p = (struct macro_param) { .expand_arg = true };
100
101       /* Parse parameter name. */
102       if (match_macro_id (lexer, "!POSITIONAL"))
103         {
104           if (param_index > 0 && !m->params[param_index - 1].positional)
105             {
106               lex_error (lexer, _("Positional parameters must precede "
107                                   "keyword parameters."));
108               goto error;
109             }
110
111           p->positional = true;
112           p->name = xasprintf ("!%zu", param_index + 1);
113         }
114       else
115         {
116           if (!lex_force_id (lexer))
117             goto error;
118
119           p->positional = false;
120           p->name = xasprintf ("!%s", lex_tokcstr (lexer));
121           lex_get (lexer);
122
123           if (!lex_force_match (lexer, T_EQUALS))
124             goto error;
125         }
126
127       /* Parse default value. */
128       if (match_macro_id (lexer, "!DEFAULT"))
129         {
130           if (!lex_force_match (lexer, T_LPAREN))
131             goto error;
132
133           /* XXX Should this handle balanced inner parentheses? */
134           while (!lex_match (lexer, T_RPAREN))
135             {
136               if (lex_token (lexer) == T_ENDCMD)
137                 {
138                   lex_error_expecting (lexer, ")");
139                   goto error;
140                 }
141               const struct macro_token mt = {
142                 .token = *lex_next (lexer, 0),
143                 .representation = lex_next_representation (lexer, 0, 0),
144               };
145               macro_tokens_add (&p->def, &mt);
146               lex_get (lexer);
147             }
148         }
149
150       if (match_macro_id (lexer, "!NOEXPAND"))
151         p->expand_arg = false;
152
153       if (match_macro_id (lexer, "!TOKENS"))
154         {
155           if (!lex_force_match (lexer, T_LPAREN)
156               || !lex_force_int_range (lexer, "!TOKENS", 1, INT_MAX))
157             goto error;
158           p->arg_type = ARG_N_TOKENS;
159           p->n_tokens = lex_integer (lexer);
160           lex_get (lexer);
161           if (!lex_force_match (lexer, T_RPAREN))
162             goto error;
163         }
164       else if (match_macro_id (lexer, "!CHAREND"))
165         {
166           p->arg_type = ARG_CHAREND;
167           p->charend = (struct token) { .type = T_STOP };
168
169           if (!lex_force_match (lexer, T_LPAREN)
170               || !parse_quoted_token (lexer, &p->charend)
171               || !lex_force_match (lexer, T_RPAREN))
172             goto error;
173         }
174       else if (match_macro_id (lexer, "!ENCLOSE"))
175         {
176           p->arg_type = ARG_ENCLOSE;
177           p->enclose[0] = p->enclose[1] = (struct token) { .type = T_STOP };
178
179           if (!lex_force_match (lexer, T_LPAREN)
180               || !parse_quoted_token (lexer, &p->enclose[0])
181               || !lex_force_match (lexer, T_COMMA)
182               || !parse_quoted_token (lexer, &p->enclose[1])
183               || !lex_force_match (lexer, T_RPAREN))
184             goto error;
185         }
186       else if (match_macro_id (lexer, "!CMDEND"))
187         p->arg_type = ARG_CMDEND;
188       else
189         {
190           lex_error_expecting (lexer, "!TOKENS", "!CHAREND",
191                                "!ENCLOSE", "!CMDEND");
192           goto error;
193         }
194
195       if (lex_token (lexer) != T_RPAREN && !lex_force_match (lexer, T_SLASH))
196         goto error;
197     }
198
199   struct string body = DS_EMPTY_INITIALIZER;
200   while (!match_macro_id (lexer, "!ENDDEFINE"))
201     {
202       if (lex_token (lexer) != T_STRING)
203         {
204           lex_error (lexer, _("Expecting macro body or !ENDDEFINE"));
205           ds_destroy (&body);
206           goto error;
207         }
208
209       ds_put_substring (&body, lex_tokss (lexer));
210       ds_put_byte (&body, '\n');
211       lex_get (lexer);
212     }
213
214   macro_tokens_from_string (&m->body, body.ss, lex_get_syntax_mode (lexer));
215   ds_destroy (&body);
216
217   lex_define_macro (lexer, m);
218
219   return CMD_SUCCESS;
220
221 error:
222   macro_destroy (m);
223   return CMD_FAILURE;
224 }
225
226 int
227 cmd_debug_expand (struct lexer *lexer, struct dataset *ds UNUSED)
228 {
229   settings_set_mprint (true);
230
231   while (lex_token (lexer) != T_STOP)
232     {
233       if (!lex_next_is_from_macro (lexer, 0) && lex_token (lexer) != T_ENDCMD)
234         {
235           struct substring rep = lex_next_representation (lexer, 0, 0);
236           msg (MN, "unexpanded token \"%.*s\"", (int) rep.length, rep.string);
237         }
238       lex_get (lexer);
239     }
240   return CMD_SUCCESS;
241 }