platform/build_jael/lib/build_jael.dart
2018-04-03 11:29:35 -04:00

63 lines
1.5 KiB
Dart

import 'dart:async';
import 'package:build/build.dart';
import 'package:code_buffer/code_buffer.dart';
import 'package:file/file.dart';
import 'package:jael/jael.dart' as jael;
import 'package:jael_preprocessor/jael_preprocessor.dart' as jael;
import 'package:symbol_table/symbol_table.dart';
Builder jaelBuilder(BuilderOptions options) => new JaelBuilder(options);
class JaelBuilder implements Builder {
final BuilderOptions options;
final List<jael.Patcher> patch;
const JaelBuilder(this.options, {this.patch: const []});
@override
Map<String, List<String>> get buildExtensions {
return {
'.jl': ['.html'],
};
}
@override
Future build(BuildStep buildStep) async {
CodeBuffer buf;
if (options.config['minify'] == true)
buf = new CodeBuffer(space: '', newline: '', trailingNewline: false);
else
buf = new CodeBuffer();
Directory dir;
var errors = <jael.JaelError>[];
var doc = await jael.parseDocument(
await buildStep.readAsString(buildStep.inputId),
sourceUrl: buildStep.inputId.uri,
onError: errors.add,
);
doc = await jael.resolve(
doc,
dir,
onError: errors.add,
patch: this.patch,
);
if (errors.isNotEmpty) {
jael.Renderer.errorDocument(errors, buf);
return;
}
var scope = new SymbolTable(values: new Map.from(options.config));
const jael.Renderer().render(doc, buf, scope);
buildStep.writeAsString(
buildStep.inputId.changeExtension('.html'),
buf.toString(),
);
}
}