elm/elm/src/Gen/CompileToJS.hs

195 lines
8.4 KiB
Haskell
Raw Normal View History

2012-04-19 06:32:10 +00:00
module CompileToJS (showErr, jsModule) where
2012-04-19 06:32:10 +00:00
import Ast
import Control.Arrow (first)
2012-04-19 06:32:10 +00:00
import Control.Monad (liftM,(<=<),join)
import Data.Char (isAlpha,isDigit)
import Data.List (intercalate,sortBy,inits)
2012-04-19 06:32:10 +00:00
import Data.Map (toList)
import Data.Maybe (mapMaybe)
2012-04-19 06:32:10 +00:00
import Initialize
import Rename (derename)
2012-04-19 06:32:10 +00:00
2012-06-09 16:13:10 +00:00
showErr :: String -> String
showErr err = mainEquals $ "text(monospace(" ++ msg ++ "))"
2012-06-09 16:13:10 +00:00
where msg = show . concatMap (++"<br>") . lines $ err
2012-04-19 06:32:10 +00:00
parens s = "(" ++ s ++ ")"
braces s = "{" ++ s ++ "}"
jsList ss = "["++ intercalate "," ss ++"]"
2012-04-19 06:32:10 +00:00
jsFunc args body = "function(" ++ args ++ "){" ++ body ++ "}"
assign x e = "\nvar " ++ x ++ "=" ++ e ++ ";"
ret e = "\nreturn "++ e ++";"
2012-04-19 06:32:10 +00:00
iff a b c = a ++ "?" ++ b ++ ":" ++ c
mainEquals s = globalAssign "ElmCode.main" (jsFunc "" (ret s))
globalAssign m s = "\n" ++ m ++ "=" ++ s ++ ";"
tryBlock escapees names e =
concat [ "\ntry{\n" ++ e ++ "\n\n} catch (e) {"
, "ElmCode.main=function() {"
, "var msg = ('<br/><h2>Your browser may not be supported. " ++
"Are you using a modern browser?</h2>' +" ++
" '<br/><span style=\"color:grey\">Runtime Error in " ++
intercalate "." names ++ " module:<br/>' + e + '" ++ msg ++ "</span>');"
, "document.body.innerHTML = Text.monospace(msg);"
, "throw e;"
, "};}"
]
where msg | escapees /= [] = concat [ "<br/><br/>The problem may stem from an improper usage of:<br/>"
, intercalate ", " escapees ]
| otherwise = ""
jsModule (escapees, Module names exports imports stmts) =
tryBlock escapees (tail modNames) $ concat
[ concatMap (\n -> globalAssign n $ n ++ " || {}") .
map (intercalate ".") . drop 2 . inits $
take (length modNames - 1) modNames
, "\nif (" ++ modName ++ ") throw \"Module name collision, '" ++
intercalate "." (tail modNames) ++ "' is already defined.\"; "
, globalAssign modName $ jsFunc "" (includes ++body++ export) ++ "()"
, mainEquals $ modName ++ ".main" ]
where modNames = if null names then ["ElmCode", "Main"]
else "ElmCode" : names
modName = intercalate "." modNames
includes = concatMap jsImport $ map (first ("ElmCode."++)) imports
body = stmtsToJS stmts
export = getExports exps stmts
exps = if null exports then ["main"] else exports
getExports names stmts = ret . braces $ intercalate "," pairs
where pairs = mapMaybe pair $ concatMap get stmts
pair x = if y `elem` names then Just $ y ++ ":" ++ x else Nothing
where y = derename x
get s = case s of Def x _ _ -> [x]
Datatype _ _ tcs -> map fst tcs
ImportEvent _ _ x _ -> [x]
ExportEvent _ _ _ -> []
jsImport (modul, how) =
concat [ "\ntry{" ++ modul ++ " instanceof Object} catch(e) {throw \"Module '"
, drop 1 (dropWhile (/='.') modul)
, "' is missing. Compile with --make flag or load missing "
, "module in a separate JavaScript file.\";}" ] ++
jsImport' (modul, how)
jsImport' (modul, As name) = assign name modul
jsImport' (modul, Importing []) = jsImport' (modul, Hiding [])
jsImport' (modul, Importing vs) =
concatMap (\v -> assign v $ modul ++ "." ++ v) vs
jsImport' (modul, Hiding vs) =
concat [ "\nfor(var i in " ++ modul ++ "){"
, assign "hiddenVars" . jsList $ map (\v -> "'" ++ v ++ "'") vs
, "\nif (hiddenVars.indexOf(i) >= 0) continue;"
, globalAssign "this[i]" $ modul ++ "[i]"
, "}" ]
stmtsToJS :: [Statement] -> String
stmtsToJS stmts = concatMap stmtToJS (sortBy cmpStmt stmts)
where cmpStmt s1 s2 = compare (valueOf s1) (valueOf s2)
valueOf s = case s of Datatype _ _ _ -> 1
ImportEvent _ _ _ _ -> 3
Def _ [] _ -> 3
Def _ _ _ -> 4
ExportEvent _ _ _ -> 5
stmtToJS :: Statement -> String
stmtToJS (Def name [] e) = assign name (toJS e)
stmtToJS (Def name (a:as) e) = "\nfunction " ++ name ++ parens a ++
braces (ret . toJS $ foldr Lambda e as) ++ ";"
stmtToJS (Datatype _ _ tcs) = concatMap (stmtToJS . toDef) tcs
where toDef (name,args) = Def name vars $ Data (derename name) (map Var vars)
where vars = map (('a':) . show) [1..length args]
stmtToJS (ImportEvent js base elm _) =
concat [ "\nvar " ++ elm ++ " = Elm.Input(" ++ toJS base ++ ");"
, "\nSignal.addListener(document, '" ++ js
, "', function(e) { Dispatcher.notify(" ++ elm
, ".id, e.value); });" ]
stmtToJS (ExportEvent js elm _) =
concat [ "\nlift(function(v) { var e = document.createEvent('Event');"
, "e.initEvent('" ++ js ++ "', true, true);"
, "e.value = v;"
, "document.dispatchEvent(e); return v; })(" ++ elm ++ ");"
]
toJS :: Expr -> String
2012-04-19 06:32:10 +00:00
toJS expr =
case expr of
IntNum n -> show n
FloatNum n -> show n
2012-04-19 06:32:10 +00:00
Var x -> x
Chr c -> show c
Str s -> "Value.str" ++ parens (show s)
2012-04-19 06:32:10 +00:00
Boolean b -> if b then "true" else "false"
Range lo hi -> jsRange (toJS lo) (toJS hi)
Access e lbl -> toJS e ++ "." ++ lbl
Binop op e1 e2 -> binop op (toJS e1) (toJS e2)
If eb et ef -> parens $ iff (toJS eb) (toJS et) (toJS ef)
Lambda v e -> jsFunc v $ ret (toJS e)
2012-08-14 18:50:03 +00:00
App (Var "toText") (Str s) -> "toText" ++ parens (show s)
App (Var "link") (Str s) -> "link(" ++ show s ++ ")"
App (Var "plainText") (Str s) -> "plainText(" ++ show s ++ ")"
2012-04-19 06:32:10 +00:00
App e1 e2 -> toJS e1 ++ parens (toJS e2)
Let defs e -> jsLet defs e
Case e cases -> jsCase e cases
Data name es -> jsList $ show name : map toJS es
jsLet defs e' = jsFunc "" (jsDefs defs ++ ret (toJS e')) ++ "()"
jsDefs defs = concatMap toDef $ sortBy f defs
where f a b = compare (valueOf a) (valueOf b)
valueOf (Definition _ args _) = min 1 (length args)
toDef (Definition x [] e) = assign x (toJS e)
toDef (Definition f (a:as) e) =
"\nfunction " ++ f ++ parens a ++ braces (ret . toJS $ foldr Lambda e as) ++ ";"
2012-04-19 06:32:10 +00:00
jsCase e [c] = jsMatch c ++ parens (toJS e)
jsCase e cases = "(function(){" ++
assign "v" (toJS e) ++
assign "c" jsCases ++
"for(var i=c.length;i--;){" ++
assign "r" "c[i](v)" ++
"if(r!==undefined){return r;}}}())"
where jsCases = jsList $ map jsMatch (reverse cases)
jsMatch (p,e) = jsFunc "v" . match p "v" . ret $ toJS e
match p v hole =
case p of
PAnything -> hole
PVar x -> assign x v ++ hole
PData name ps ->
"if(" ++ show name ++ "!==" ++ v ++
"[0]){return undefined;}else{"++body++"}"
where matches = zipWith match ps vs
vs = map (\i -> v++"["++show (i+1)++"]") [0..length ps-1]
body = foldr ($) hole matches
jsNil = "[\"Nil\"]"
jsCons e1 e2 = jsList [ show "Cons", e1, e2 ]
jsRange e1 e2 = (++"()") . jsFunc "" $
assign "lo" e1 ++ assign "hi" e2 ++ assign "lst" jsNil ++
"if(lo<=hi){do{" ++ assign "lst" (jsCons "hi" "lst") ++ "}while(hi-->lo)}" ++
2012-04-19 06:32:10 +00:00
ret "lst"
binop (o:p) e1 e2
| isAlpha o || '_' == o = (o:p) ++ parens e1 ++ parens e2
| otherwise = case o:p of
":" -> jsCons e1 e2
2012-04-19 06:32:10 +00:00
"++" -> append e1 e2
"$" -> e1 ++ parens e2
"." -> jsFunc "x" . ret $ e1 ++ parens (e2 ++ parens "x")
"^" -> "Math.pow(" ++ e1 ++ "," ++ e2 ++ ")"
"==" -> "eq(" ++ e1 ++ "," ++ e2 ++ ")"
"/=" -> "not(eq(" ++ e1 ++ "," ++ e2 ++ "))"
"<" -> "(compare(" ++ e1 ++ ")(" ++ e2 ++ ")[0] === 'LT')"
">" -> "(compare(" ++ e1 ++ ")(" ++ e2 ++ ")[0] === 'GT')"
"<=" -> "function() { var ord = compare(" ++ e1 ++ ")(" ++ e2 ++ ")[0]; return ord === 'LT' || ord === 'EQ'; }()"
">=" -> "function() { var ord = compare(" ++ e1 ++ ")(" ++ e2 ++ ")[0]; return ord === 'GT' || ord === 'EQ'; }()"
_ -> parens (e1 ++ (o:p) ++ e2)
2012-04-19 06:32:10 +00:00
append e1 e2 = "Value.append" ++ parens (e1 ++ "," ++ e2)