diff options
Diffstat (limited to 'src/transpile_js.rs')
-rw-r--r-- | src/transpile_js.rs | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/transpile_js.rs b/src/transpile_js.rs new file mode 100644 index 0000000..1ec9a10 --- /dev/null +++ b/src/transpile_js.rs @@ -0,0 +1,58 @@ + +use modelica_ast::*; + +pub trait TranspileJS { + fn repr_js(&self) -> Result<String, String>; +} + + +impl TranspileJS for ModelicaModel { + fn repr_js(&self) -> Result<String, String> { + let mut constants = vec![]; + for (c, e) in self.get_constant_vars() { + constants.push(format!("var {} = {};", + c, try!(e.repr_js()))); + } + let mut binds = vec![]; + let mut outputs = vec![]; + for eq in self.equations.iter() { + if let Expr::Ident(ref symb) = eq.lhs { + binds.push(format!("var {} = {};", + symb, + try!(eq.rhs.repr_js()))); + outputs.push(symb.to_string()); + } else { + return Err("Expected an identifier on LHS (in this partial implementation)".to_string()) + } + } + Ok(format!( + r#"function {slug}({args}) {{ + {constants} + {binds} + return [{outputs}]; + }}"#, + slug = "f", + args = self.get_free_vars().join(", "), + constants = constants.join("\n "), + binds = binds.join("\n "), + outputs = outputs.join(", "))) + } +} + +impl TranspileJS for Expr { + fn repr_js(&self) -> Result<String, String> { + use modelica_ast::Expr::*; + match *self { + Integer(e) => Ok(format!("{}", e)), + Float(e) => Ok(format!("{}", e)), + Ident(ref e) => Ok(format!("{}", e)), + Der(ref e) => Ok(format!("der({})", try!(e.repr_js()))), + Abs(ref e) => Ok(format!("abs({})", try!(e.repr_js()))), + BinExpr(op, ref l, ref r) => + Ok(format!("({} {:?} {})", + try!(l.repr_js()), + op, + try!(r.repr_js()))), + } + } +} |