]> matita.cs.unibo.it Git - helm.git/commitdiff
Bug fixed: matitaclean and matitadep now ignores every parsing errors and
authorEnrico Tassi <enrico.tassi@inria.fr>
Tue, 19 Jul 2005 09:57:55 +0000 (09:57 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Tue, 19 Jul 2005 09:57:55 +0000 (09:57 +0000)
simply continues. Before it used to avoid cleaning things and --- much worst ---
generating an empty .depend.

helm/matita/matitacleanLib.ml
helm/matita/matitadep.ml

index 8b54e98d9e767c0064bfa1bf8b8bb337dce92e9f..51635a30a130426a9986b829c34f2fe00d0fcff4 100644 (file)
@@ -134,21 +134,27 @@ let baseuri_of_file file =
   let istream = Stream.of_channel ic in
   (try
     while true do
-      let stm = GrafiteParser.parse_statement istream in
-      match baseuri_of_baseuri_decl stm with
-      | Some buri -> 
-          let u = MatitaMisc.strip_trailing_slash buri in
-          if String.length u < 5 || String.sub u 0 5 <> "cic:/" then
-            MatitaLog.error (file ^ " sets an incorrect baseuri: " ^ buri);
-          (try 
-            ignore(HG.resolve u)
-          with
-          | HGT.Unresolvable_URI _ -> 
-              MatitaLog.error (file ^ " sets an unresolvable baseuri: "^buri)
-          | HGT.Key_not_found _ -> ());
-          uri := Some u;
-          raise End_of_file
-      | None -> ()
+      try 
+        let stm = GrafiteParser.parse_statement istream in
+        match baseuri_of_baseuri_decl stm with
+        | Some buri -> 
+            let u = MatitaMisc.strip_trailing_slash buri in
+            if String.length u < 5 || String.sub u 0 5 <> "cic:/" then
+              MatitaLog.error (file ^ " sets an incorrect baseuri: " ^ buri);
+            (try 
+              ignore(HG.resolve u)
+            with
+            | HGT.Unresolvable_URI _ -> 
+                MatitaLog.error (file ^ " sets an unresolvable baseuri: "^buri)
+            | HGT.Key_not_found _ -> ());
+            uri := Some u;
+            raise End_of_file
+        | None -> ()
+      with
+        CicNotationParser.Parse_error _ as exn ->
+          prerr_endline ("Unable to parse: " ^ file);
+          prerr_endline (MatitaExcPp.to_string exn);
+          ()
     done
   with End_of_file -> close_in ic);
   match !uri with
index 56c60aff8cc40f7885f28c07e9c11c9e3649d702..621b20ecff4cfc523ed13ae3af7dd86cb7276dd0 100644 (file)
@@ -87,22 +87,24 @@ let main () =
     let istream = Stream.of_channel ic in
     (try
       while true do
-        match GrafiteParser.parse_statement istream with
-        | TA.Executable (_, TA.Command (_, TA.Set (_, "baseuri", uri))) ->
-            let uri = MatitaMisc.strip_trailing_slash uri in
-            baseuri := (uri, file) :: !baseuri
-        | TA.Executable (_, TA.Command 
-            (_, TA.Alias (_, TA.Ident_alias(_, uri)))) -> 
-              Hashtbl.add aliases file uri
-        | TA.Executable (_, TA.Command (_, TA.Include (_, path))) ->
-              Hashtbl.add deps file (find path)
-        | _ -> ()
+        try 
+          match GrafiteParser.parse_statement istream with
+          | TA.Executable (_, TA.Command (_, TA.Set (_, "baseuri", uri))) ->
+              let uri = MatitaMisc.strip_trailing_slash uri in
+              baseuri := (uri, file) :: !baseuri
+          | TA.Executable (_, TA.Command 
+              (_, TA.Alias (_, TA.Ident_alias(_, uri)))) -> 
+                Hashtbl.add aliases file uri
+          | TA.Executable (_, TA.Command (_, TA.Include (_, path))) ->
+                Hashtbl.add deps file (find path)
+          | _ -> ()
+        with 
+          CicNotationParser.Parse_error _ as exn ->
+            prerr_endline ("Unable to parse: " ^ file);
+            prerr_endline (MatitaExcPp.to_string exn);
+            ()
       done
     with
-    | CicNotationParser.Parse_error _ as exn ->
-        prerr_endline ("Unable to parse: " ^ file);
-        prerr_endline (MatitaExcPp.to_string exn);
-        exit 1
     | End_of_file -> close_in ic);
     Hashtbl.iter 
       (fun file alias ->