Initial commit of parser.
[goals.git] / parsing / main.ml
1 (* Goalfile parser
2  * Copyright (C) 2019 Richard W.M. Jones
3  * Copyright (C) 2019 Red Hat Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  *)
19
20 open Lexer
21 open Lexing
22
23 open Printf
24
25 let parse lexbuf =
26   let print_position fp lexbuf =
27     let pos = lexbuf.lex_curr_p in
28     fprintf fp "%s:%d:%d"
29       pos.pos_fname pos.pos_lnum (pos.pos_cnum - pos.pos_bol)
30   in
31
32   try Parser.file Lexer.read lexbuf
33   with
34   | SyntaxError msg ->
35      eprintf "%a: %s\n" print_position lexbuf msg;
36      exit 1
37   | Parser.Error ->
38      eprintf "%a: parse error\n" print_position lexbuf;
39      exit 1
40
41 let () =
42   let filename = "Goalfile" in
43   let fp = open_in filename in
44   let lexbuf = Lexing.from_channel fp in
45   lexbuf.lex_curr_p <- { lexbuf.lex_curr_p with pos_fname = filename };
46   let file : Ast.file = parse lexbuf in
47   close_in fp;
48
49   Ast.print_file stdout file