Project

General

Profile

Download (3.34 KB) Statistics
| Branch: | Tag: | Revision:
1

    
2
(********************************************************************)
3
(*                                                                  *)
4
(*  The LustreC compiler toolset   /  The LustreC Development Team  *)
5
(*  Copyright 2012 -    --   ONERA - CNRS - INPT                    *)
6
(*                                                                  *)
7
(*  LustreC is free software, distributed WITHOUT ANY WARRANTY      *)
8
(*  under the terms of the GNU Lesser General Public License        *)
9
(*  version 2.1.                                                    *)
10
(*                                                                  *)
11
(********************************************************************)
12

    
13
open Format 
14
open LustreSpec
15
open Corelang
16

    
17
(********************************************************************************************)
18
(*                      Lusic to/from Header Printing functions                             *)
19
(********************************************************************************************)
20

    
21
type lusic =
22
{
23
  obsolete  : bool;
24
  from_lusi : bool;
25
  contents  : top_decl list;
26
}
27

    
28
module HeaderMod = C_backend_header.EmptyMod
29
module Header = C_backend_header.Main (HeaderMod)
30

    
31
(* extracts a header from a program representing module owner = dirname/basename *)
32
let extract_header dirname basename prog =
33
  let owner = dirname ^ "/" ^ basename in
34
 List.fold_right
35
   (fun decl header ->
36
(*Format.eprintf "Lusic.extract_header: owner = %s decl_owner = %s@." owner decl.top_decl_owner;*)
37
     if decl.top_decl_itf || decl.top_decl_owner <> owner then header else
38
    match decl.top_decl_desc with
39
    | Node nd        -> { decl with top_decl_desc = ImportedNode (Corelang.get_node_interface nd) } :: header 
40
    | ImportedNode _ -> header
41
    | Const _
42
    | TypeDef _
43
    | Open _         -> decl :: header)
44
   prog []
45

    
46
let check_obsolete lusic basename =
47
  if lusic.obsolete then raise (Error (Location.dummy_loc, Wrong_number basename))
48

    
49
(* encode and write a header in a file *)
50
let write_lusic lusi (header : top_decl list) basename extension =
51
  let target_name = basename ^ extension in
52
  let outchan = open_out_bin target_name in
53
  begin
54
    Marshal.to_channel outchan (Version.number, lusi : string * bool) [];
55
    Marshal.to_channel outchan (header : top_decl list) [];
56
    close_out outchan
57
  end
58

    
59
(* read and decode a header from a file *)
60
let read_lusic basename extension =
61
  let source_name = basename ^ extension in
62
  let inchan = open_in_bin source_name in
63
  let number, from_lusi = (Marshal.from_channel inchan : string * bool) in
64
  if number <> Version.number
65
  then
66
    begin
67
      close_in inchan;
68
      {
69
	obsolete  = true;
70
	from_lusi = from_lusi;
71
	contents  = [];
72
      }
73
    end
74
  else    
75
    begin
76
      let lusic = (Marshal.from_channel inchan : top_decl list) in
77
      close_in inchan;
78
      {
79
	obsolete  = false;
80
	from_lusi = from_lusi;
81
	contents  = lusic;
82
      }
83
    end
84

    
85
let print_lusic_to_h basename extension =
86
  let lusic = read_lusic basename extension in
87
  let header_name = basename ^ ".h" in
88
  let h_out = open_out header_name in
89
  let h_fmt = formatter_of_out_channel h_out in
90
  begin
91
    assert (not lusic.obsolete);
92
    Typing.uneval_prog_generics lusic.contents;
93
    Clock_calculus.uneval_prog_generics lusic.contents;
94
    Header.print_header_from_header h_fmt (Filename.basename basename) lusic.contents;
95
    close_out h_out
96
  end
97

    
98

    
(28-28/50)