Updated test coverage report.
[ocaml-bitstring.git] / bitstring_objinfo.ml
1 (* Bitstring syntax extension.
2  * Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  *
18  * $Id$
19  *)
20
21 open Printf
22
23 open Bitstring
24 module P = Bitstring_persistent
25
26 let () =
27   if Array.length Sys.argv <= 1 then
28     failwith "bitstring-objinfo filename.bmpp";
29   let filename = Sys.argv.(1) in
30   let chan = open_in filename in
31   let names = ref [] in
32   (try
33      let rec loop () =
34        let name = P.named_from_channel chan in
35        names := name :: !names
36      in
37      loop ()
38    with End_of_file -> ()
39   );
40   close_in chan;
41   let names = List.rev !names in
42   List.iter (
43     function
44     | name, P.Pattern patt ->
45         printf "let bitmatch %s =\n%s\n"
46           name (P.string_of_pattern patt)
47     | name, P.Constructor cons ->
48         printf "let BITSTRING %s =\n%s\n"
49           name (P.string_of_constructor cons)
50   ) names