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
//! The slide app. For an overview of slide's design, see [libslide's documentation](libslide).

#![deny(warnings)]
#![deny(missing_docs)]
#![doc(html_logo_url = "https://raw.githubusercontent.com/yslide/slide/master/assets/logo.png")]

#[cfg(test)]
mod test;

mod diagnostics;
use diagnostics::{emit_slide_diagnostics, sanitize_source_for_diagnostics};

use libslide::diagnostics::{Diagnostic, DiagnosticKind};
use libslide::{
    evaluate, lint_expr_pat, lint_stmt, parse_expression_pattern, parse_statements, scan, Emit,
    EmitConfig, EmitFormat, EvaluationResult, ParseResult, ProgramContext, ScanResult, Token,
};

#[cfg(feature = "wasm")]
use serde::{Deserialize, Serialize};
#[cfg(feature = "wasm")]
use wasm_bindgen::prelude::*;

// For wasm, use wee_alloc as a global allocator.
#[cfg(all(feature = "wasm", not(test)))]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;

/// Options to run slide with.
#[cfg_attr(feature = "wasm", derive(Serialize, Deserialize))]
pub struct Opts {
    /// Slide program.
    pub program: String,
    /// How the result of slide's execution should be emitted.
    pub emit_format: String,
    /// Configuration options for slide emit.
    pub emit_config: Vec<String>,
    /// When true, lint warnings for the program will be emitted, if any.
    pub lint: bool,
    /// When true, slide will stop after parsing a program.
    pub parse_only: bool,
    /// When true, slide will expect the program to be an expression pattern.
    pub expr_pat: bool,
    /// When is [Some](Option::Some) diagnostic code, will explain that code.
    pub explain_diagnostic: Option<String>,
    /// When true, slide emit will be colored.
    pub color: bool,
}

/// Parses [Opts](self::Opts) from the command line or given a parser that acts on the clap
/// [App](clap::App).
pub fn get_opts<P>(parser: P, color: bool) -> Result<Opts, clap::Error>
where
    P: for<'a> FnOnce(clap::App<'a, '_>) -> Result<clap::ArgMatches<'a>, clap::Error>,
{
    let matches = clap::App::new(clap::crate_name!())
        .version(clap::crate_version!())
        .about(clap::crate_description!())
        .author(clap::crate_authors!())
        .arg(
            clap::Arg::with_name("program")
                .help("Program to evaluate")
                .required(true)
                .default_value_if("explain", None, "")
        )
        .arg(
            clap::Arg::with_name("output-form")
                .short("-o")
                .long("--output-form")
                .next_line_help(true)
                .help(
                    "Slide emit format. Possible values:\n\
                    \tpretty:       Human-readable text, like \"1 + 2\".\n\
                    \ts-expression: Prefixed s-expression, like \"(+ 1 2)\".\n\
                    \tlatex:        LaTeX math mode code, like \"$\\left\\(1 + 2\\right\\)$\".\n\
                    \tdebug:        Opaque internal representation. Note: this format is not stable.\n\
                    ",
                )
                .hide_possible_values(true)
                .default_value("pretty")
                .takes_value(true)
                .possible_values(&["pretty", "s-expression", "latex", "debug"]),
        )
        .arg(
            // TODO: validate that -olatex is present.
            clap::Arg::with_name("emit-config")
                .long("--emit-config")
                .next_line_help(true)
                .help(
                    "Emit configuration options. Possible values:\n\
                    \tfrac          (latex):        Emit divisions as fractions.\n\
                    \ttimes         (latex):        Emit \"\\times\" for multiplications.\n\
                    \tdiv           (latex):        Emit \"\\div\" for divisions.\n\
                    \timplicit-mult (pretty|latex): Use implicit multiplication where possible.\n\
                    ",
                )
                .hide_possible_values(true)
                .takes_value(true)
                .possible_values(&["frac", "times", "div", "implicit-mult"])
                .multiple(true),
        )
        .arg(
            clap::Arg::with_name("lint")
                .long("--lint")
                .help("Emit lint warnings for the program, if any."),
        )
        .arg(
            clap::Arg::with_name("parse-only")
                .long("--parse-only")
                .help("Stop after parsing and dump the AST"),
        )
        .arg(
            clap::Arg::with_name("expr-pat")
                .long("--expr-pat")
                .help("Parse the program as an expression pattern. Implies --parse-only."),
        )
        .arg(
            clap::Arg::with_name("explain")
                .long("--explain")
                .value_name("diagnostic")
                .help("Provide a detailed explanation for a diagnostic code.")
                .takes_value(true)
        );
    let matches = parser(matches)?;

    let expr_pat = matches.is_present("expr-pat");
    Ok(Opts {
        program: matches.value_of("program").unwrap().into(),
        // TODO: we should consolidate emit_format and output-form before any stable release.
        emit_format: matches.value_of("output-form").unwrap().into(),
        emit_config: matches
            .values_of("emit-config")
            .map(|opts| opts.map(str::to_owned).collect())
            .unwrap_or_default(),
        lint: matches.is_present("lint"),
        parse_only: matches.is_present("parse-only") || expr_pat,
        explain_diagnostic: matches.value_of("explain").map(str::to_owned),
        expr_pat,
        color,
    })
}

/// Output of a slide execution.
#[cfg_attr(feature = "wasm", derive(Serialize, Deserialize))]
#[derive(Default)]
pub struct SlideResult {
    /// Exit code
    pub code: i32,
    /// Emit for stdout
    pub stdout: String,
    /// Emit for stderr
    pub stderr: String,
    /// Whether the stdout should be emit as paged
    pub page: bool,
}

/// Builds a [SlideResult](self::SlideResult).
struct SlideResultBuilder<'a> {
    /// File the program is defined in. [None](Option::None) if the program comes from a side
    /// channel like stdin.
    file: Option<&'a str>,
    /// Original slide program source code.
    org_program: &'a str,
    /// Program source code sanitized for diagnostic emission.
    sanitized_program: String,
    emit_format: EmitFormat,
    emit_config: EmitConfig,
    color: bool,
    stdout: String,
    stderr: String,
    page: bool,
}

impl<'a> SlideResultBuilder<'a> {
    fn new(
        file: Option<&'a str>,
        program: &'a str,
        emit_format: impl Into<EmitFormat>,
        emit_config: impl Into<EmitConfig>,
        color: bool,
    ) -> Self {
        Self {
            file,
            org_program: program,
            sanitized_program: sanitize_source_for_diagnostics(program),
            emit_format: emit_format.into(),
            emit_config: emit_config.into(),
            color,
            page: false,
            stdout: String::new(),
            stderr: String::new(),
        }
    }

    fn emit(&mut self, obj: &dyn Emit) {
        self.stdout
            .push_str(&obj.emit(self.emit_format, self.emit_config));
    }

    fn err(&mut self, diagnostics: &[Diagnostic]) {
        self.stderr.push_str(&emit_slide_diagnostics(
            self.file,
            &self.sanitized_program,
            diagnostics,
            self.color,
        ));
    }

    fn page(&mut self, page: bool) {
        self.page = page;
    }

    fn ok(self) -> SlideResult {
        SlideResult {
            code: 0,
            stdout: self.stdout,
            stderr: self.stderr,
            page: self.page,
        }
    }

    fn failed(self) -> SlideResult {
        SlideResult {
            code: 1,
            stdout: self.stdout,
            stderr: self.stderr,
            page: self.page,
        }
    }
}

/// Runs slide end-to-end.
pub fn run_slide(opts: Opts) -> SlideResult {
    let mut result = SlideResultBuilder::new(
        None, // file: currently programs can only be read from stdin
        &opts.program,
        opts.emit_format,
        opts.emit_config,
        opts.color,
    );

    if let Some(diag_code) = opts.explain_diagnostic {
        let codes = Diagnostic::all_codes_with_explanations();
        return match codes.get::<str>(&diag_code) {
            Some(explanation) => {
                result.stdout.push_str(&explanation);
                result.page(true);
                result.ok()
            }
            None => {
                result
                    .stderr
                    .push_str(&format!("{} is not a diagnostic code", diag_code));
                result.failed()
            }
        };
    }

    let ScanResult {
        tokens,
        diagnostics,
    } = scan(&*opts.program);
    result.err(&diagnostics);
    if !diagnostics.is_empty() {
        return result.failed();
    }

    let evaluator = ProgramEvaluator::new(result, tokens, opts.lint, opts.parse_only);

    if opts.expr_pat {
        evaluator.eval_expr_pat()
    } else {
        evaluator.eval_slide_program()
    }
}

/// Evaluates a slide program either as a regular program or an expression pattern.
struct ProgramEvaluator<'a> {
    result: SlideResultBuilder<'a>,
    tokens: Vec<Token>,
    lint: bool,
    parse_only: bool,
}

impl<'a> ProgramEvaluator<'a> {
    fn new(
        result: SlideResultBuilder<'a>,
        tokens: Vec<Token>,
        lint: bool,
        parse_only: bool,
    ) -> Self {
        Self {
            result,
            tokens,
            lint,
            parse_only,
        }
    }

    /// Handles evaluation of a regular slide program (statements, expressions).
    fn eval_slide_program(mut self) -> SlideResult {
        let ParseResult {
            program,
            diagnostics,
        } = parse_statements(self.tokens, &self.result.org_program);

        self.result.err(&diagnostics);
        if !diagnostics.is_empty() {
            return self.result.failed();
        }

        let program_context = ProgramContext::default().lint(self.lint);
        if self.lint {
            self.result
                .err(&lint_stmt(&program, self.result.org_program));
        }

        if self.parse_only {
            self.result.emit(&program);

            self.result.ok()
        } else {
            let EvaluationResult {
                simplified,
                diagnostics,
            } = evaluate(program, &program_context).unwrap();
            let fatal = diagnostics.iter().any(|d| d.kind == DiagnosticKind::Error);

            self.result.err(&diagnostics);
            if !fatal {
                self.result.emit(&simplified);
            }

            if diagnostics.is_empty() {
                self.result.ok()
            } else {
                self.result.failed()
            }
        }
    }

    /// Handles evaluation of a slide expression pattern.
    fn eval_expr_pat(mut self) -> SlideResult {
        let ParseResult {
            program,
            diagnostics,
        } = parse_expression_pattern(self.tokens);
        self.result.err(&diagnostics);
        if !diagnostics.is_empty() {
            return self.result.failed();
        }

        if self.lint {
            self.result
                .err(&lint_expr_pat(&program, self.result.org_program));
        }

        if self.parse_only {
            self.result.emit(&program);
        } else {
            panic!("Expression patterns can only be parsed.");
        }

        self.result.ok()
    }
}

/// Runs slide through a wasm entry point.
/// `opts` must be a JS object with the same fields as [Opts](self::Opts).
/// Returns a JS object with the same fields as [SlideResult](self::SlideResult).
#[cfg(feature = "wasm")]
#[wasm_bindgen]
pub fn run_slide_wasm(opts: JsValue) -> JsValue {
    let opts: Opts = opts.into_serde().unwrap();
    JsValue::from_serde(&run_slide(opts)).unwrap()
}