2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / ada / s-parint.adb
blob94b08326c25bc002786ee4863de591a229523d7a
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- S Y S T E M . P A R T I T I O N _ I N T E R F A C E --
6 -- --
7 -- B o d y --
8 -- (Dummy body for non-distributed case) --
9 -- --
10 -- Copyright (C) 1995-2007, Free Software Foundation, Inc. --
11 -- --
12 -- GNARL is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNARL; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
21 -- Boston, MA 02110-1301, USA. --
22 -- --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
29 -- --
30 -- GNAT was originally developed by the GNAT team at New York University. --
31 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 -- --
33 ------------------------------------------------------------------------------
35 package body System.Partition_Interface is
37 pragma Warnings (Off); -- suppress warnings for unreferenced formals
39 M : constant := 7;
41 type String_Access is access String;
43 -- To have a minimal implementation of U'Partition_ID
45 type Pkg_Node;
46 type Pkg_List is access Pkg_Node;
47 type Pkg_Node is record
48 Name : String_Access;
49 Subp_Info : System.Address;
50 Subp_Info_Len : Integer;
51 Next : Pkg_List;
52 end record;
54 Pkg_Head : Pkg_List;
55 Pkg_Tail : Pkg_List;
57 function getpid return Integer;
58 pragma Import (C, getpid);
60 PID : constant Integer := getpid;
62 function Lower (S : String) return String;
64 Passive_Prefix : constant String := "SP__";
65 -- String prepended in top of shared passive packages
67 procedure Check
68 (Name : Unit_Name;
69 Version : String;
70 RCI : Boolean := True)
72 begin
73 null;
74 end Check;
76 -----------------------------
77 -- Get_Active_Partition_Id --
78 -----------------------------
80 function Get_Active_Partition_ID
81 (Name : Unit_Name) return System.RPC.Partition_ID
83 P : Pkg_List := Pkg_Head;
84 N : String := Lower (Name);
86 begin
87 while P /= null loop
88 if P.Name.all = N then
89 return Get_Local_Partition_ID;
90 end if;
92 P := P.Next;
93 end loop;
95 return M;
96 end Get_Active_Partition_ID;
98 ------------------------
99 -- Get_Active_Version --
100 ------------------------
102 function Get_Active_Version (Name : Unit_Name) return String is
103 begin
104 return "";
105 end Get_Active_Version;
107 ----------------------------
108 -- Get_Local_Partition_Id --
109 ----------------------------
111 function Get_Local_Partition_ID return System.RPC.Partition_ID is
112 begin
113 return System.RPC.Partition_ID (PID mod M);
114 end Get_Local_Partition_ID;
116 ------------------------------
117 -- Get_Passive_Partition_ID --
118 ------------------------------
120 function Get_Passive_Partition_ID
121 (Name : Unit_Name) return System.RPC.Partition_ID
123 begin
124 return Get_Local_Partition_ID;
125 end Get_Passive_Partition_ID;
127 -------------------------
128 -- Get_Passive_Version --
129 -------------------------
131 function Get_Passive_Version (Name : Unit_Name) return String is
132 begin
133 return "";
134 end Get_Passive_Version;
136 ------------------
137 -- Get_RAS_Info --
138 ------------------
140 procedure Get_RAS_Info
141 (Name : Unit_Name;
142 Subp_Id : Subprogram_Id;
143 Proxy_Address : out Interfaces.Unsigned_64)
145 LName : constant String := Lower (Name);
146 N : Pkg_List;
147 begin
148 N := Pkg_Head;
149 while N /= null loop
150 if N.Name.all = LName then
151 declare
152 subtype Subprogram_Array is RCI_Subp_Info_Array
153 (First_RCI_Subprogram_Id ..
154 First_RCI_Subprogram_Id + N.Subp_Info_Len - 1);
155 Subprograms : Subprogram_Array;
156 for Subprograms'Address use N.Subp_Info;
157 pragma Import (Ada, Subprograms);
158 begin
159 Proxy_Address :=
160 Interfaces.Unsigned_64 (Subprograms (Integer (Subp_Id)).Addr);
161 return;
162 end;
163 end if;
164 N := N.Next;
165 end loop;
166 Proxy_Address := 0;
167 end Get_RAS_Info;
169 ------------------------------
170 -- Get_RCI_Package_Receiver --
171 ------------------------------
173 function Get_RCI_Package_Receiver
174 (Name : Unit_Name) return Interfaces.Unsigned_64
176 begin
177 return 0;
178 end Get_RCI_Package_Receiver;
180 -------------------------------
181 -- Get_Unique_Remote_Pointer --
182 -------------------------------
184 procedure Get_Unique_Remote_Pointer
185 (Handler : in out RACW_Stub_Type_Access)
187 begin
188 null;
189 end Get_Unique_Remote_Pointer;
191 -----------
192 -- Lower --
193 -----------
195 function Lower (S : String) return String is
196 T : String := S;
198 begin
199 for J in T'Range loop
200 if T (J) in 'A' .. 'Z' then
201 T (J) := Character'Val (Character'Pos (T (J)) -
202 Character'Pos ('A') +
203 Character'Pos ('a'));
204 end if;
205 end loop;
207 return T;
208 end Lower;
210 -------------------------------------
211 -- Raise_Program_Error_Unknown_Tag --
212 -------------------------------------
214 procedure Raise_Program_Error_Unknown_Tag
215 (E : Ada.Exceptions.Exception_Occurrence)
217 begin
218 raise Program_Error with Ada.Exceptions.Exception_Message (E);
219 end Raise_Program_Error_Unknown_Tag;
221 -----------------
222 -- RCI_Locator --
223 -----------------
225 package body RCI_Locator is
227 -----------------------------
228 -- Get_Active_Partition_ID --
229 -----------------------------
231 function Get_Active_Partition_ID return System.RPC.Partition_ID is
232 P : Pkg_List := Pkg_Head;
233 N : String := Lower (RCI_Name);
235 begin
236 while P /= null loop
237 if P.Name.all = N then
238 return Get_Local_Partition_ID;
239 end if;
241 P := P.Next;
242 end loop;
244 return M;
245 end Get_Active_Partition_ID;
247 ------------------------------
248 -- Get_RCI_Package_Receiver --
249 ------------------------------
251 function Get_RCI_Package_Receiver return Interfaces.Unsigned_64 is
252 begin
253 return 0;
254 end Get_RCI_Package_Receiver;
256 end RCI_Locator;
258 ------------------------------
259 -- Register_Passive_Package --
260 ------------------------------
262 procedure Register_Passive_Package
263 (Name : Unit_Name;
264 Version : String := "")
266 begin
267 Register_Receiving_Stub
268 (Passive_Prefix & Name, null, Version, System.Null_Address, 0);
269 end Register_Passive_Package;
271 -----------------------------
272 -- Register_Receiving_Stub --
273 -----------------------------
275 procedure Register_Receiving_Stub
276 (Name : Unit_Name;
277 Receiver : RPC_Receiver;
278 Version : String := "";
279 Subp_Info : System.Address;
280 Subp_Info_Len : Integer)
282 N : constant Pkg_List :=
283 new Pkg_Node'(new String'(Lower (Name)),
284 Subp_Info, Subp_Info_Len,
285 Next => null);
286 begin
287 if Pkg_Tail = null then
288 Pkg_Head := N;
289 else
290 Pkg_Tail.Next := N;
291 end if;
292 Pkg_Tail := N;
293 end Register_Receiving_Stub;
295 ---------
296 -- Run --
297 ---------
299 procedure Run
300 (Main : Main_Subprogram_Type := null)
302 begin
303 if Main /= null then
304 Main.all;
305 end if;
306 end Run;
308 --------------------
309 -- Same_Partition --
310 --------------------
312 function Same_Partition
313 (Left : not null access RACW_Stub_Type;
314 Right : not null access RACW_Stub_Type) return Boolean
316 pragma Unreferenced (Left);
317 pragma Unreferenced (Right);
318 begin
319 return True;
320 end Same_Partition;
322 end System.Partition_Interface;