]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_textual_parser/cicTextualLexer.mll
613645bc489ed28b2fa9ff82b27af0ad76454f99
[helm.git] / helm / ocaml / cic_textual_parser / cicTextualLexer.mll
1 (* Copyright (C) 2000, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 {
27  open CicTextualParser;;
28  module L = Lexing;;
29  module U = UriManager;;
30
31  let indtyuri_of_uri uri =
32   let index_sharp =  String.index uri '#' in
33   let index_num = index_sharp + 3 in
34    try
35     (UriManager.uri_of_string (String.sub uri 0 index_sharp),
36      int_of_string(String.sub uri index_num (String.length uri - index_num)) - 1
37     )
38    with
39     Failure msg ->
40      raise (CicTextualParser0.LexerFailure "Not an inductive URI")
41  ;;
42
43  let indconuri_of_uri uri =
44   let index_sharp =  String.index uri '#' in
45   let index_div = String.rindex uri '/' in
46   let index_con = index_div + 1 in
47    try
48     (UriManager.uri_of_string (String.sub uri 0 index_sharp),
49      int_of_string
50       (String.sub uri (index_sharp + 3) (index_div - index_sharp - 3)) - 1,
51      int_of_string
52       (String.sub uri index_con (String.length uri - index_con))
53     )
54    with
55     Failure msg ->
56      raise (CicTextualParser0.LexerFailure "Not a constructor URI")
57  ;;
58 }
59 let num = ['1'-'9']['0'-'9']* | '0'
60 let alfa = ['A'-'Z' 'a'-'z' '_' ''' '-']
61 let ident = alfa (alfa | num)*
62 let baseuri = '/'(ident '/')* ident '.'
63 let conuri = baseuri "con"
64 let varuri = baseuri "var"
65 let indtyuri = baseuri "ind#1/" num
66 let indconuri = baseuri "ind#1/" num "/" num
67 let blanks = [' ' '\t' '\n']
68 rule token =
69  parse
70     blanks      { token lexbuf } (* skip blanks *)
71   | "Case"      { CASE }
72   | "Fix"       { FIX }
73   | "CoFix"     { COFIX }
74   | "Set"       { SET }
75   | "Prop"      { PROP }
76   | "Type"      { TYPE }
77   | "CProp"     { CPROP }
78   | ident       { ID (L.lexeme lexbuf) }
79   | conuri      { CONURI (U.uri_of_string ("cic:" ^ L.lexeme lexbuf)) }
80   | varuri      { VARURI (U.uri_of_string ("cic:" ^ L.lexeme lexbuf)) }
81   | indtyuri    { INDTYURI (indtyuri_of_uri ("cic:" ^ L.lexeme lexbuf)) }
82   | indconuri   { INDCONURI (indconuri_of_uri("cic:" ^ L.lexeme lexbuf)) }
83   | num         { NUM (int_of_string (L.lexeme lexbuf)) }
84   | '?' num     { let lexeme = L.lexeme lexbuf in
85                    META
86                     (int_of_string
87                      (String.sub lexeme 1 (String.length lexeme - 1))) }
88   | ":>"        { CAST }
89   | ":="        { LETIN }
90   | '?'         { IMPLICIT }
91   | '('         { LPAREN }
92   | ')'         { RPAREN }
93   | '['         { LBRACKET }
94   | ']'         { RBRACKET }
95   | '{'         { LCURLY }
96   | '}'         { RCURLY }
97   | ';'         { SEMICOLON }
98   | '\\'        { LAMBDA }
99   | '!'         { PROD }
100   | ':'         { COLON }
101   | '.'         { DOT }
102   | "->"        { ARROW }
103   | "_"         { NONE }
104   | eof         { EOF }
105 {}