Clarify how to write multiple patterns to a file
[ocaml-bitstring.git] / bitmatch_objinfo.ml
1 (* Bitmatch syntax extension.
2  * Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library 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 GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  *
18  * $Id$
19  *)
20
21 open Printf
22
23 open Bitmatch
24 module P = Bitmatch_persistent
25
26 let () =
27   if Array.length Sys.argv <= 1 then
28     failwith "bitmatch_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