You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.9 KiB

/**
* Copyright 2020 Garrit Franke
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
extern crate rust_embed;
3 years ago
extern crate structopt;
use crate::generator::Generator;
3 years ago
use crate::Opt::Build;
3 years ago
use std::fs::File;
use std::io::Read;
use std::io::Write;
3 years ago
use std::path::PathBuf;
use structopt::StructOpt;
3 years ago
mod builtin;
mod generator;
3 years ago
mod lexer;
mod parser;
mod util;
3 years ago
3 years ago
#[derive(StructOpt, Debug)]
enum Opt {
#[structopt()]
Build {
#[structopt(default_value = "./examples/playground.sb")]
in_file: PathBuf,
#[structopt(short, long, default_value = "./examples_out/playground.js")]
out_file: PathBuf,
},
}
fn main() -> Result<(), String> {
3 years ago
let opts = Opt::from_args();
let (in_file, out_file) = match opts {
Build { in_file, out_file } => (in_file, out_file),
};
let mut file = File::open(in_file).expect("Could not open file");
3 years ago
let mut contents = String::new();
file.read_to_string(&mut contents)
.expect("Could not read file");
3 years ago
let tokens = lexer::tokenize(&contents);
3 years ago
// let ast = parser::parse(tokens.into_iter());
let program = parser::parse(tokens, Some(contents))?;
dbg!(":#?", &program);
3 years ago
let output = generator::js::JsGenerator::generate(program);
3 years ago
let mut file = std::fs::File::create(out_file).expect("create failed");
file.write_all(output.as_bytes()).expect("write failed");
file.flush().expect("Could not flush file");
3 years ago
Ok(())
3 years ago
}