File: unitmanager.ads

package info (click to toggle)
spark 2012.0.deb-9
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 29,260 kB
  • ctags: 3,098
  • sloc: ada: 186,243; cpp: 13,497; makefile: 685; yacc: 440; lex: 176; ansic: 119; sh: 16
file content (121 lines) | stat: -rw-r--r-- 4,358 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
-------------------------------------------------------------------------------
-- (C) Altran Praxis Limited
-------------------------------------------------------------------------------
--
-- The SPARK toolset is free software; you can redistribute it and/or modify it
-- under terms of the GNU General Public License as published by the Free
-- Software Foundation; either version 3, or (at your option) any later
-- version. The SPARK toolset is distributed in the hope that it will be
-- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
-- Public License for more details. You should have received a copy of the GNU
-- General Public License distributed with the SPARK toolset; see file
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy of
-- the license.
--
--=============================================================================

with E_Strings;
with StringList;
with Unit;
with Units;

use type Unit.Object;
use type Unit.Id;
use type Unit.Kind;

--# inherit CommandLineData,
--#         Dictionary,
--#         Directory_Operations,
--#         ErrorHandler,
--#         E_Strings,
--#         LexTokenManager,
--#         RegularExpression,
--#         SparkLex,
--#         SparkMakeErrors,
--#         SPARK_IO,
--#         StringList,
--#         Unit,
--#         Units;

package UnitManager
--# own State;
--# initializes State;
is

   procedure Initialise
     (The_Directories : in     StringList.Object;
      Include         : in     StringList.Object;
      Exclude         : in     StringList.Object;
      Root_File       : in     E_Strings.T;
      Duplicates      : in     Boolean;
      Success         :    out Boolean);
   --# global in     CommandLineData.Content;
   --#        in     Dictionary.Dict;
   --#        in out ErrorHandler.Error_Context;
   --#        in out LexTokenManager.State;
   --#        in out SPARK_IO.File_Sys;
   --#        in out State;
   --#           out SparkLex.Curr_Line;
   --# derives ErrorHandler.Error_Context,
   --#         LexTokenManager.State,
   --#         SparkLex.Curr_Line,
   --#         SPARK_IO.File_Sys,
   --#         State,
   --#         Success                    from CommandLineData.Content,
   --#                                         Dictionary.Dict,
   --#                                         Duplicates,
   --#                                         ErrorHandler.Error_Context,
   --#                                         Exclude,
   --#                                         Include,
   --#                                         LexTokenManager.State,
   --#                                         Root_File,
   --#                                         SPARK_IO.File_Sys,
   --#                                         State,
   --#                                         The_Directories;

   -------------------------------------------------------------

   function Get_All_Units return  Units.Stack;
   --# global in State;

   procedure Get_Unit (In_File  : in     E_Strings.T;
                       The_Unit :    out Unit.Id;
                       Found    :    out Boolean);
   --# global in State;
   --# derives Found,
   --#         The_Unit from In_File,
   --#                       State;

   procedure Get_File (For_Unit : in     Unit.Id;
                       The_File :    out E_Strings.T;
                       Found    :    out Boolean);
   --# global in State;
   --# derives Found,
   --#         The_File from For_Unit,
   --#                       State;

   function Get (The_Unit : Unit.Id) return Unit.Object;
   --# global in State;

   function Package_Body (For_Unit : Unit.Id) return Unit.Id;
   --# global in State;

   function Parent (Of_Unit : Unit.Id) return Unit.Id;
   --# global in State;

   function Separate_Units (For_Unit : Unit.Id) return Units.Stack;
   --# global in State;

   function Required_Units (For_Unit : Unit.Id) return Units.Stack;
   --# global in State;

   function Components (For_Unit : Unit.Id) return Units.Stack;
   --# global in State;

   -- Search all units in UnitManager and return a stack of root
   -- units, ie units that are not required by other units.
   function Find_Roots return  Units.Stack;
   --# global in State;

end UnitManager;