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
use std::fs::{rename, write};
use std::process::{Command, Stdio};
use std::path::PathBuf;
use xassembler::Rust;

use crate::compile::Compile;

pub const MANIFEST: &str = r#"
[package]
name = "target"
version = "0.1.0"
authors = ["adam-mcdaniel <adam.mcdanie17@gmail.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
xmachine = "0.2.1"
"#;


impl Compile for Rust {
    fn compile_subcommand(compiled: &str, dependency_paths: Vec<&str>, output_path: &str) -> Result<(), String> {
        Self::build(compiled, dependency_paths)?;

        match (rename(Self::build_dir()? + "/target/release/target", output_path),
                rename(Self::build_dir()? + "/target/release/target.exe", output_path),
                rename(Self::build_dir()? + "/target/release/target.bin", output_path)) {
            (Err(_), Err(_), Err(_)) => {
                return Err(format!("Could not move compiled executable to `{}`. Your program most likely did not compile successfully. Check your foreign functions' names", output_path))
            },
            _ => {}
        };

        Ok(())
    }

    fn run_subcommand(compiled: &str, dependency_paths: Vec<&str>) -> Result<(), String> {
        Self::build(compiled, dependency_paths)?;

        if let Err(_) = Command::new("cargo")
            .args(&["run", "--release"])
            .current_dir(Self::build_dir()?)
            .stdout(Stdio::inherit())
            .output() {
			return Err(String::from("Could not run `cargo`, is rust properly installed?"))
		}

        Ok(())
    }

    fn build(compiled: &str, dependency_paths: Vec<&str>) -> Result<(), String> {
        let result = format!("{}\n{}", dependency_paths
                                        .iter()
                                        .map(|s|
                                            format!("extern crate {lib};\nuse {lib}::*;",
                                                lib=s.rsplit("/").collect::<Vec<&str>>()[0])
                                            ).collect::<Vec<String>>()
                                        .join("\n"), compiled);

        if let Err(_) = Command::new("cargo")
            .current_dir(Self::home_dir()?)
            .args(&["new", Self::BUILD_DIR_NAME])
            .output() {
			return Err(String::from("Could not run `cargo`, is rust properly installed?"))
        }

        if let Err(_) = write(Self::build_dir()? + "/src/main.rs", result) {
			return Err(String::from("Could not write compiled output to output crate"))
        }

        
        if let Err(_) = write(Self::build_dir()? + "/Cargo.toml", format!("{}\n{}", MANIFEST,
                                    dependency_paths
                                        .iter()
                                        .map(|s|
                                            format!("{package} = {{path=\"{path}\"}}",
                                                package=s.clone().rsplit("/").collect::<Vec<&str>>()[0],
                                                path=PathBuf::from(s).canonicalize().unwrap()
                                                                .as_os_str().to_str().unwrap())
                                            )
                                        .collect::<Vec<String>>()
                                        .join("\n"))) {
			return Err(String::from("Could not write to Cargo.toml in output crate"))
        }

        if let Err(_) = Command::new("cargo")
            .args(&["build", "--release"])
            .current_dir(Self::build_dir()?)
            .output() {
			return Err(String::from("Could not run `cargo`, is rust properly installed?"))
		}

        Ok(())
    }

    const TERMINATE: &'static str = "\n}";
    const BUILD_DIR_NAME: &'static str = "xasm_build";
    const PRELUDE: &'static str = r#"
extern crate xmachine;
use xmachine::{Machine, Value};


pub fn xasm_dict(xasm: &mut Machine) {
    xasm.push(Value::tree());
}


fn main() {
    let mut xasm = Machine::new();
    xasm.push(Value::function(xasm_dict, &xasm));
    xasm.push(Value::string("dict"));
    xasm.store();
"#;
}