slint/tools/compiler/main.rs
2022-06-14 11:32:03 +02:00

79 lines
2.7 KiB
Rust

// Copyright © SixtyFPS GmbH <info@slint-ui.com>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
use clap::Parser;
use i_slint_compiler::diagnostics::BuildDiagnostics;
use i_slint_compiler::*;
use std::io::Write;
#[derive(Parser)]
#[clap(author, version, about, long_about = None)]
struct Cli {
/// Set output format
#[clap(short = 'f', long = "format", default_value = "cpp", action)]
format: generator::OutputFormat,
/// Include path for other .slint files
#[clap(short = 'I', name = "include path", number_of_values = 1, action)]
include_paths: Vec<std::path::PathBuf>,
/// Path to .slint file ('-' for stdin)
#[clap(name = "file", action)]
path: std::path::PathBuf,
/// The style name ('native' or 'fluent')
#[clap(long, name = "style name", action)]
style: Option<String>,
/// Generate a dependency file
#[clap(name = "dependency file", long = "depfile", number_of_values = 1, action)]
depfile: Option<std::path::PathBuf>,
/// Sets the output file ('-' for stdout)
#[clap(name = "file to generate", short = 'o', default_value = "-", action)]
output: std::path::PathBuf,
}
fn main() -> std::io::Result<()> {
proc_macro2::fallback::force(); // avoid a abort if panic=abort is set
let args = Cli::parse();
let mut diag = BuildDiagnostics::default();
let syntax_node = parser::parse_file(&args.path, &mut diag);
//println!("{:#?}", syntax_node);
if diag.has_error() {
diag.print();
std::process::exit(-1);
}
let mut compiler_config = CompilerConfiguration::new(args.format);
compiler_config.include_paths = args.include_paths;
if let Some(style) = args.style {
compiler_config.style = Some(style);
}
let syntax_node = syntax_node.expect("diags contained no compilation errors");
let (doc, diag) = spin_on::spin_on(compile_syntax_node(syntax_node, diag, compiler_config));
let diag = diag.check_and_exit_on_error();
if args.output == std::path::Path::new("-") {
generator::generate(args.format, &mut std::io::stdout(), &doc)?;
} else {
generator::generate(args.format, &mut std::fs::File::create(&args.output)?, &doc)?;
}
if let Some(depfile) = args.depfile {
let mut f = std::fs::File::create(depfile)?;
write!(f, "{}:", args.output.display())?;
for x in &diag.all_loaded_files {
if x.is_absolute() {
write!(f, " {}", x.display())?;
}
}
for resource in doc.root_component.embedded_file_resources.borrow().keys() {
write!(f, " {}", resource)?;
}
writeln!(f)?;
}
diag.print_warnings_and_exit_on_error();
Ok(())
}