X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=src%2Fmain.ml;h=88cd08426d798171d730cdf640e67a7454b0b121;hb=f36210fd16a8e4e4d6ecdd8825bf8b8307943472;hp=30ba31fb7a22dda249f3b2040b719701544bef43;hpb=5a6a8b2b8e515941f9a2b3cc051da646ae696251;p=goals.git diff --git a/src/main.ml b/src/main.ml index 30ba31f..88cd084 100644 --- a/src/main.ml +++ b/src/main.ml @@ -19,37 +19,44 @@ open Printf -let usage = - "\ -goals: Build software. - - goals [-f Goalfile] ['var = value' ...] [target ...] - -For detailed help see goals(1). - -Options:" - let main () = - (* Command line arguments. *) - let filename = ref "Goalfile" in - - let argspec = [ - "-f", Arg.Set_string filename, - "filename Set name of Goalfile"; - "--file", Arg.Set_string filename, - "filename Set name of Goalfile"; - ] in - let argspec = Arg.align argspec in - let args = ref [] in - let anon_fun s = args := s :: !args in - Arg.parse argspec anon_fun usage; - - (*let args = List.rev !args in*) - let filename = !filename in + (* Change directory (-C option). *) + Sys.chdir Cmdline.directory; - (* Parse the input file. *) - let file = Parse.parse_from_file filename in - - Ast.print_file stdout file + (* Parse the prelude. *) + let env = + if Cmdline.use_prelude then + Parse.parse_goalfile Ast.Env.empty Cmdline.prelude_file + else + Ast.Env.empty in -let () = main () + (* Parse the input file. *) + let env = Parse.parse_goalfile env Cmdline.input_file in + + (* Parse the command line assignments. *) + let env = + List.fold_left ( + fun env (name, expr) -> + let expr = Parse.parse_cli_expr expr in + Ast.Env.add name expr env + ) env Cmdline.anon_vars in + + (* Parse the target expressions. *) + let targets = List.map Parse.parse_cli_expr Cmdline.targets in + + (* If no target was set on the command line, use "all ()". *) + let targets = + if targets <> [] then targets + else [Ast.ECallGoal (Ast.noloc, "all", [])] in + + if Cmdline.debug_flag then + Ast.print_env stderr env; + + (* Run the target expressions. *) + Run.run_targets env targets + +let () = + try main () + with + Failure msg | Sys_error msg -> + prerr_endline ("error: " ^ msg); exit 1