summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/support/arara/src/main/java/com/github/cereda/arara/model/Interpreter.java
blob: 7c8f6e3928aff9beafa032a9b07da4b0c1c5eab1 (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/**
 * Arara, the cool TeX automation tool
 * Copyright (c) 2012 -- 2018, Paulo Roberto Massa Cereda 
 * All rights reserved.
 *
 * Redistribution and  use in source  and binary forms, with  or without
 * modification, are  permitted provided  that the  following conditions
 * are met:
 *
 * 1. Redistributions  of source  code must  retain the  above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form  must reproduce the above copyright
 * notice, this list  of conditions and the following  disclaimer in the
 * documentation and/or other materials provided with the distribution.
 *
 * 3. Neither  the name  of the  project's author nor  the names  of its
 * contributors may be used to  endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS  PROVIDED BY THE COPYRIGHT  HOLDERS AND CONTRIBUTORS
 * "AS IS"  AND ANY  EXPRESS OR IMPLIED  WARRANTIES, INCLUDING,  BUT NOT
 * LIMITED  TO, THE  IMPLIED WARRANTIES  OF MERCHANTABILITY  AND FITNESS
 * FOR  A PARTICULAR  PURPOSE  ARE  DISCLAIMED. IN  NO  EVENT SHALL  THE
 * COPYRIGHT HOLDER OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY,  OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT  NOT LIMITED  TO, PROCUREMENT  OF SUBSTITUTE  GOODS OR  SERVICES;
 * LOSS  OF USE,  DATA, OR  PROFITS; OR  BUSINESS INTERRUPTION)  HOWEVER
 * CAUSED AND  ON ANY THEORY  OF LIABILITY, WHETHER IN  CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
 * WAY  OUT  OF  THE USE  OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
package com.github.cereda.arara.model;

import com.github.cereda.arara.controller.ConfigurationController;
import com.github.cereda.arara.controller.LanguageController;
import com.github.cereda.arara.utils.CommonUtils;
import com.github.cereda.arara.utils.DisplayUtils;
import com.github.cereda.arara.utils.InterpreterUtils;
import com.github.cereda.arara.utils.Methods;
import com.github.cereda.arara.utils.RuleUtils;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.mvel2.templates.TemplateRuntime;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Interprets the list of directives.
 * @author Paulo Roberto Massa Cereda
 * @version 4.0
 * @since 4.0
 */
public class Interpreter {

    // the application messages obtained from the
    // language controller
    private static final LanguageController messages =
            LanguageController.getInstance();
    
    // the class logger obtained from
    // the logger factory
    private static final Logger logger =
            LoggerFactory.getLogger(Interpreter.class);

    // list of directives to be
    // interpreted in here
    private List<Directive> directives;

    /**
     * Sets the list of directives.
     * @param directives The list of directives.
     */
    public void setDirectives(List<Directive> directives) {
        this.directives = directives;
    }

    /**
     * Executes each directive, throwing an exception if something bad has
     * happened.
     * @throws AraraException Something wrong happened, to be caught in the
     * higher levels.
     */
    public void execute() throws AraraException {

        for (Directive directive : directives) {

            logger.info(
                    messages.getMessage(
                            Messages.LOG_INFO_INTERPRET_RULE,
                            directive.getIdentifier()
                    )
            );

            ConfigurationController.getInstance().
                    put("execution.file",
                            directive.getParameters().get("reference")
                    );
            File file = getRule(directive);

            logger.info(
                    messages.getMessage(
                            Messages.LOG_INFO_RULE_LOCATION,
                            file.getParent()
                    )
            );

            ConfigurationController.getInstance().
                    put("execution.info.rule.id", directive.getIdentifier());
            ConfigurationController.getInstance().
                    put("execution.info.rule.path", file.getParent());
            ConfigurationController.getInstance().
                    put("execution.directive.lines",
                            directive.getLineNumbers()
                    );
            ConfigurationController.getInstance().
                    put("execution.directive.reference",
                            directive.getParameters().get("reference")
                    );

            Rule rule = parseRule(file, directive);
            Map<String, Object> parameters = parseArguments(rule, directive);
            Methods.addRuleMethods(parameters);

            String name = rule.getName();
            List<String> authors = rule.getAuthors() == null ?
                    new ArrayList<String>() : rule.getAuthors();
            ConfigurationController.getInstance().
                    put("execution.rule.arguments",
                            InterpreterUtils.getRuleArguments(rule)
                    );

            Evaluator evaluator = new Evaluator();

            boolean available = true;
            if (InterpreterUtils.
                    runPriorEvaluation(directive.getConditional())) {
                available = evaluator.evaluate(directive.getConditional());
            }

            if (available) {

                do {

                    List<RuleCommand> commands = rule.getCommands();
                    for (RuleCommand command : commands) {
                        String closure = command.getCommand();
                        Object result = null;
                        try {
                            result = TemplateRuntime.eval(closure, parameters);
                        } catch (RuntimeException exception) {
                            throw new AraraException(
                                    CommonUtils.getRuleErrorHeader().concat(
                                            messages.getMessage(
                                                    Messages.ERROR_INTERPRETER_COMMAND_RUNTIME_ERROR
                                            )
                                    ),
                                    exception
                            );
                        }

                        List<Object> execution = new ArrayList<Object>();
                        if (CommonUtils.checkClass(List.class, result)) {
                            execution = CommonUtils.flatten((List<?>) result);
                        } else {
                            execution.add(result);
                        }

                        for (Object current : execution) {

                            if (current == null) {
                                throw new AraraException(
                                        CommonUtils.getRuleErrorHeader().concat(
                                                messages.getMessage(
                                                        Messages.ERROR_INTERPRETER_NULL_COMMAND
                                                )
                                        )
                                );
                            } else {

                                if (!CommonUtils.checkEmptyString(
                                        String.valueOf(current))) {

                                    DisplayUtils.printEntry(name,
                                            command.getName() == null ?
                                                    messages.getMessage(
                                                            Messages.INFO_LABEL_UNNAMED_TASK
                                                    )
                                                    : command.getName()
                                    );
                                    boolean success = true;

                                    if (CommonUtils.checkClass(
                                            Trigger.class, current)) {
                                        if (((Boolean) ConfigurationController.
                                                getInstance().
                                                get("execution.dryrun")) == false) {
                                            if (((Boolean) ConfigurationController.
                                                    getInstance().
                                                    get("execution.verbose")) == true) {
                                                DisplayUtils.wrapText(
                                                        messages.getMessage(
                                                                Messages.INFO_INTERPRETER_VERBOSE_MODE_TRIGGER_MODE
                                                        )
                                                );
                                            }
                                        } else {
                                            DisplayUtils.printAuthors(authors);
                                            DisplayUtils.wrapText(
                                                    messages.getMessage(
                                                            Messages.INFO_INTERPRETER_DRYRUN_MODE_TRIGGER_MODE
                                                    )
                                            );
                                            DisplayUtils.printConditional(
                                                    directive.getConditional()
                                            );
                                        }
                                        Trigger trigger = (Trigger) current;
                                        trigger.process();
                                    } else {
                                        Object representation =
                                                CommonUtils.checkClass(
                                                        Command.class,
                                                        current
                                                ) ?
                                                current 
                                                : String.valueOf(current);
                                        logger.info(
                                                messages.getMessage(
                                                        Messages.LOG_INFO_SYSTEM_COMMAND,
                                                        representation
                                                )
                                        );

                                        if (((Boolean) ConfigurationController.
                                                getInstance().
                                                get("execution.dryrun")) == false) {
                                            int code = InterpreterUtils.
                                                    run(representation);
                                            Object check = null;
                                            try {
                                                Map<String, Object> context =
                                                        new HashMap<String, Object>();
                                                context.put("value", code);
                                                check = TemplateRuntime.eval(
                                                        "@{ ".concat(
                                                                command.getExit() == null ?
                                                                        "value == 0"
                                                                        : command.getExit()).concat(" }"),
                                                        context);
                                            } catch (RuntimeException exception) {
                                                throw new AraraException(
                                                        CommonUtils.getRuleErrorHeader().
                                                                concat(
                                                                        messages.getMessage(
                                                                                Messages.ERROR_INTERPRETER_EXIT_RUNTIME_ERROR
                                                                        )
                                                                ),
                                                        exception
                                                );
                                            }
                                            if (CommonUtils.
                                                    checkClass(
                                                            Boolean.class,
                                                            check)) {
                                                success = (Boolean) check;
                                            } else {
                                                throw new AraraException(
                                                        CommonUtils.getRuleErrorHeader().concat(
                                                                messages.getMessage(
                                                                        Messages.ERROR_INTERPRETER_WRONG_EXIT_CLOSURE_RETURN
                                                                )
                                                        )
                                                );
                                            }
                                        } else {
                                            DisplayUtils.printAuthors(authors);
                                            DisplayUtils.wrapText(
                                                    messages.getMessage(
                                                            Messages.INFO_INTERPRETER_DRYRUN_MODE_SYSTEM_COMMAND,
                                                            representation
                                                    )
                                            );
                                            DisplayUtils.printConditional(
                                                    directive.getConditional()
                                            );
                                        }
                                    }

                                    DisplayUtils.printEntryResult(success);

                                    if (((Boolean) ConfigurationController.
                                            getInstance().get("trigger.halt"))
                                            || (((Boolean) ConfigurationController.
                                                    getInstance().
                                                    get("execution.errors.halt")
                                            && !success))) {
                                        return;
                                    }
                                }
                            }
                        }
                    }
                } while (evaluator.evaluate(directive.getConditional()));
            }
        }
    }

    /**
     * Gets the rule according to the provided directive.
     * @param directive The provided directive.
     * @return The absolute canonical path of the rule, given the provided
     * directive.
     * @throws AraraException Something wrong happened, to be caught in the
     * higher levels.
     */
    private File getRule(Directive directive) throws AraraException {
        File file = InterpreterUtils.buildRulePath(directive.getIdentifier());
        if (file == null) {
            throw new AraraException(
                    messages.getMessage(
                            Messages.ERROR_INTERPRETER_RULE_NOT_FOUND,
                            directive.getIdentifier(),
                            CommonUtils.getCollectionElements(
                                    CommonUtils.getAllRulePaths(),
                                    "(",
                                    ")",
                                    "; "
                            )
                    )
            );
        } else {
            return file;
        }
    }

    /**
     * Parses the rule against the provided directive.
     * @param file The file representing the rule.
     * @param directive The directive to be analyzed.
     * @return A rule object.
     * @throws AraraException Something wrong happened, to be caught in the
     * higher levels.
     */
    private Rule parseRule(File file, Directive directive)
            throws AraraException {
        return RuleUtils.parseRule(file, directive.getIdentifier());
    }

    /**
     * Parses the rule arguments against the provided directive.
     * @param rule The rule object.
     * @param directive The directive.
     * @return A map containing all arguments resolved according to the
     * directive parameters.
     * @throws AraraException Something wrong happened, to be caught in the
     * higher levels.
     */
    private Map<String, Object> parseArguments(Rule rule, Directive directive)
            throws AraraException {

        List<Argument> arguments = rule.getArguments();

        Set<String> unknown = CommonUtils.
                getUnknownKeys(directive.getParameters(), arguments);
        unknown.remove("file");
        unknown.remove("reference");
        if (!unknown.isEmpty()) {
            throw new AraraException(
                    CommonUtils.getRuleErrorHeader().concat(
                            messages.getMessage(
                                    Messages.ERROR_INTERPRETER_UNKNOWN_KEYS,
                                    CommonUtils.getCollectionElements(
                                            unknown,
                                            "(",
                                            ")",
                                            ", "
                                    )
                            )
                    )
            );
        }

        Map<String, Object> mapping = new HashMap<String, Object>();
        mapping.put("file", directive.getParameters().get("file"));
        mapping.put("reference", directive.getParameters().get("reference"));

        Map<String, Object> context = new HashMap<String, Object>();
        context.put("parameters", directive.getParameters());
        context.put("file", directive.getParameters().get("file"));
        context.put("reference", directive.getParameters().get("reference"));
        Methods.addRuleMethods(context);

        for (Argument argument : arguments) {
            if ((argument.isRequired()) &&
                    (!directive.getParameters().containsKey(
                            argument.getIdentifier()))) {
                throw new AraraException(
                        CommonUtils.getRuleErrorHeader().concat(
                                messages.getMessage(
                                        Messages.ERROR_INTERPRETER_ARGUMENT_IS_REQUIRED,
                                        argument.getIdentifier()
                                )
                        )
                );
            }

            if (argument.getDefault() != null) {
                try {
                    Object result = TemplateRuntime.
                            eval(argument.getDefault(), context);
                    mapping.put(argument.getIdentifier(), result);
                } catch (RuntimeException exception) {
                    throw new AraraException(
                            CommonUtils.getRuleErrorHeader().
                                    concat(messages.getMessage(
                                            Messages.ERROR_INTERPRETER_DEFAULT_VALUE_RUNTIME_ERROR
                                    )
                            ),
                            exception
                    );
                }
            } else {
                mapping.put(argument.getIdentifier(), "");
            }

            if ((argument.getFlag() != null) &&
                    (directive.getParameters().containsKey(
                            argument.getIdentifier()))) {

                try {
                    Object result = TemplateRuntime.eval(
                            argument.getFlag(),
                            context
                    );
                    mapping.put(argument.getIdentifier(), result);
                } catch (RuntimeException exception) {
                    throw new AraraException(CommonUtils.getRuleErrorHeader().
                            concat(
                                    messages.getMessage(
                                            Messages.ERROR_INTERPRETER_FLAG_RUNTIME_EXCEPTION
                                    )
                            ),
                            exception
                    );
                }
            }
        }
        
        return mapping;
    }

}