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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
------------------------------------------------------------------------------
-- --
-- ASIS Tester And iNTerpreter (ASIStant) COMPONENTS --
-- --
-- A S I S T A N T . C O M M O N --
-- --
-- S p e c --
-- --
-- Copyright (c) 1997-2005, Free Software Foundation, Inc. --
-- --
-- ASIStant 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 2, or (at your option) any later --
-- version. ASIStant is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MER- --
-- CHANTABILITY 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 GNAT; see file COPYING. If --
-- not, write to the Free Software Foundation, 59 Temple Place Suite 330, --
-- Boston, MA 02111-1307, USA. --
-- --
-- ASIStant is an evolution of ASIStint tool that was created by --
-- Vasiliy Fofanov as part of a collaboration between Software Engineering --
-- Laboratory of the Swiss Federal Institute of Technology in Lausanne, --
-- Switzerland, and the Scientific Research Computer Center of the Moscow --
-- University, Russia, supported by the Swiss National Science Foundation --
-- grant #7SUPJ048247, "Development of ASIS for GNAT with industry quality" --
-- --
-- ASIStant is distributed as a part of the ASIS implementation for GNAT --
-- (ASIS-for-GNAT) and is maintained by Ada Core Technologies Inc --
-- (http://www.gnat.com). --
------------------------------------------------------------------------------
with Asis;
with Asis.Compilation_Units.Relations;
with Asis.Text;
with Asis.Data_Decomposition;
package ASIStant.Common is
------------------------------------------------------------------------------
-- This package contains definitions common to ASIStant packages. By changing
-- some of the constants here, ASIStant flexibility can be adjusted.
------------------------------------------------------------------------------
MAX_ID_LENGTH : constant Positive := 32;
-- The length of ASIStant identifier (may not be less than the longest
-- name of ASIS query).
MAX_VARIABLES : constant Positive := 100;
-- Size of initial ASIStant variable table; see ASIStant.Table
MAX_TREENODES : constant Positive := 500;
-- Size of ASIStant statement trees; see ASIStant.S_Parser
MAX_SCRIPTDEPTH : constant Positive := 5;
-- Depth of script enclosing; see ASIStant.Text_IO
MAX_ATIELEMENTS : Natural := 200;
MAX_ATIELEMLISTS : Natural := 100;
MAX_ATICUNITS : Natural := 100;
MAX_ATICUNITLISTS : Natural := 10;
MAX_ATICONTEXTS : Natural := 10;
MAX_ATISPANS : Natural := 100;
MAX_ATILINES : Natural := 100;
MAX_ATILINELISTS : Natural := 30;
MAX_ATIRELATIONSHIPS : Natural := 10;
MAX_DDA_ARRCOMPS : Natural := 100;
MAX_DDA_ARRCOMPLISTS : Natural := 10;
MAX_DDA_RECCOMPS : Natural := 100;
MAX_DDA_RECCOMPLISTS : Natural := 10;
-- These constants define the size of ASIS support arrays declared
-- in ASIStant.XTable
ASIStant_ERROR : exception;
-- This exception is raised any time ASIStant encounters a non-ASIS error;
-- diagnosis of the type Error_Type is stored in LastErr
ASIStant_ASIS_ERROR : exception;
-- This exception is raised any time ASIStant encounters an ASIS error
subtype Name_String is Wide_String (1 .. MAX_ID_LENGTH);
-- Type to represent ASIStant IDs
package DDA renames Asis.Data_Decomposition;
type ElemList_Ptr is access all Asis.Element_List;
type CUnitList_Ptr is access all Asis.Compilation_Unit_List;
type Relship_Ptr is access all
Asis.Compilation_Units.Relations.Relationship;
type LineList_Ptr is access all Asis.Text.Line_List;
type String_Ptr is access all Wide_String;
type DDA_ArrCList_Ptr is access all DDA.Array_Component_List;
type DDA_RecCList_Ptr is access all DDA.Record_Component_List;
type ElemArray is array (Natural range <>) of Asis.Element;
type ElemListArray is array (Natural range <>) of ElemList_Ptr;
type CUnitArray is array (Natural range <>) of Asis.Compilation_Unit;
type CUnitListArray is array (Natural range <>) of CUnitList_Ptr;
type RelshipArray is array (Natural range <>) of Relship_Ptr;
type LineArray is array (Natural range <>) of Asis.Text.Line;
type LineListArray is array (Natural range <>) of LineList_Ptr;
type DDA_ArrCArray is array (Natural range <>) of DDA.Array_Component;
type DDA_ArrCListArray is array (Natural range <>) of DDA_ArrCList_Ptr;
type DDA_RecCArray is array (Natural range <>) of DDA.Record_Component;
type DDA_RecCListArray is array (Natural range <>) of DDA_RecCList_Ptr;
type ElemArray_Ptr is access all ElemArray;
type ElemListArray_Ptr is access all ElemListArray;
type CUnitArray_Ptr is access all CUnitArray;
type CUnitListArray_Ptr is access all CUnitListArray;
type RelshipArray_Ptr is access all RelshipArray;
type LineArray_Ptr is access all LineArray;
type LineListArray_Ptr is access all LineListArray;
type DDA_ArrCArray_Ptr is access all DDA_ArrCArray;
type DDA_ArrCListArray_Ptr is access all DDA_ArrCListArray;
type DDA_RecCArray_Ptr is access all DDA_RecCArray;
type DDA_RecCListArray_Ptr is access all DDA_RecCListArray;
type Error_Type is
(
ERR_INTERNAL,
ERR_NOTIMPLEMENTED,
ERR_NOTSUPPORTED,
ERR_NOSCRIPT,
ERR_NEEDFILENAME,
ERR_BADBOOLEAN,
ERR_BADEXPR,
ERR_BADID,
ERR_BADINTEGER,
ERR_BADLISTELEM,
ERR_BADPARAM,
ERR_BADPARAMLIST,
ERR_BADSTRING,
ERR_BADVARTYPE,
ERR_BADVARNAME,
ERR_NEEDCHAR,
ERR_NEEDFUNCTION,
ERR_NEEDPARAM,
ERR_NOTINRANGE,
ERR_TOOMANYPARAMS,
ERR_UNKNOWNVAR,
ERR_TABLEFULL,
ERR_UNKNOWNSYNTAX,
ERR_UNKNOWNQUERY
);
-- All possible errors
LastErr : Error_Type;
DebugPrint : Boolean := True;
procedure Print_ASIStant_Header;
-- Prints the ASIStant copyright header
procedure Error (ErrNo : Error_Type;
ErrStr : Wide_String := "";
Level : Natural := 5);
-- Debug output function
pragma No_Return (Error);
end ASIStant.Common;
|