(* parser.sml * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot-language.cs.uchicago.edu) * All rights reserved. * * Parser glue. *) structure Parser : sig (* parse a file; return NONE if there are syntax errors *) val parseFile : (Error.err_stream * TextIO.instream) -> ParseTree.program option end = struct (* glue together the lexer and parser *) structure DiderotParser = DiderotParseFn(DiderotLex) (* error function for lexers *) fun lexErr errStrm (pos, msg) = Error.errorAt(errStrm, (pos, pos), msg) (* map tokens to strings *) fun tokToString (DiderotTokens.ID x) = Atom.toString x | tokToString (DiderotTokens.STRING s) = concat["\"", String.toCString s, "\""] | tokToString (DiderotTokens.FLOAT f) = FloatLit.toString f | tokToString (DiderotTokens.INT i) = IntInf.toString i | tokToString tok = DiderotTokens.toString tok (* error function for parsers *) val parseErr = Error.parseError tokToString (* parse a file, returning a parse tree *) fun parseFile (errStrm, file) = let fun get () = TextIO.input file val lexer = DiderotLex.lex (Error.sourceMap errStrm) (lexErr errStrm) in case DiderotParser.parse lexer (DiderotLex.streamify get) of (SOME pt, _, []) => (TextIO.closeIn file; SOME pt) | (_, _, errs) => ( TextIO.closeIn file; List.app (parseErr errStrm) errs; NONE) (* end case *) end end