2005-12-29 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / ada / g-socthi-vms.ads
blob1b05e4719bc19ca78f1dd87ca2c2bd08348ed9b8
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- G N A T . S O C K E T S . T H I N --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2002-2005, AdaCore --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 -- This package provides a target dependent thin interface to the sockets
35 -- layer for use by the GNAT.Sockets package (g-socket.ads). This package
36 -- should not be directly with'ed by an applications program.
38 -- This is the Alpha/VMS version
40 with Interfaces.C.Pointers;
42 with Interfaces.C.Strings;
43 with GNAT.Sockets.Constants;
44 with GNAT.OS_Lib;
46 with System;
48 package GNAT.Sockets.Thin is
50 -- ??? more comments needed ???
52 package C renames Interfaces.C;
54 use type C.int;
55 -- This is so we can declare the Failure constant below
57 Success : constant C.int := 0;
58 Failure : constant C.int := -1;
60 function Socket_Errno return Integer renames GNAT.OS_Lib.Errno;
61 -- Returns last socket error number
63 function Socket_Error_Message (Errno : Integer) return C.Strings.chars_ptr;
64 -- Returns the error message string for the error number Errno. If
65 -- Errno is not known it returns "Unknown system error".
67 function Host_Errno return Integer;
68 pragma Import (C, Host_Errno, "__gnat_get_h_errno");
69 -- Returns last host error number
71 subtype Fd_Set_Access is System.Address;
72 No_Fd_Set : constant Fd_Set_Access := System.Null_Address;
74 type time_t is
75 range -2 ** (8 * Constants.SIZEOF_tv_sec - 1)
76 .. 2 ** (8 * Constants.SIZEOF_tv_sec - 1) - 1;
77 for time_t'Size use 8 * Constants.SIZEOF_tv_sec;
78 pragma Convention (C, time_t);
80 type suseconds_t is
81 range -2 ** (8 * Constants.SIZEOF_tv_usec - 1)
82 .. 2 ** (8 * Constants.SIZEOF_tv_usec - 1) - 1;
83 for suseconds_t'Size use 8 * Constants.SIZEOF_tv_usec;
84 pragma Convention (C, suseconds_t);
86 type Timeval is record
87 Tv_Sec : time_t;
88 Tv_Usec : suseconds_t;
89 end record;
90 pragma Convention (C, Timeval);
92 type Timeval_Access is access all Timeval;
93 pragma Convention (C, Timeval_Access);
95 Immediat : constant Timeval := (0, 0);
97 type Int_Access is access all C.int;
98 pragma Convention (C, Int_Access);
99 -- Access to C integers
101 type Chars_Ptr_Array is array (C.size_t range <>) of
102 aliased C.Strings.chars_ptr;
104 package Chars_Ptr_Pointers is
105 new C.Pointers (C.size_t, C.Strings.chars_ptr, Chars_Ptr_Array,
106 C.Strings.Null_Ptr);
107 -- Arrays of C (char *)
109 type In_Addr is record
110 S_B1, S_B2, S_B3, S_B4 : C.unsigned_char;
111 end record;
112 pragma Convention (C, In_Addr);
113 -- Internet address
115 type In_Addr_Access is access all In_Addr;
116 pragma Convention (C, In_Addr_Access);
117 -- Access to internet address
119 Inaddr_Any : aliased constant In_Addr := (others => 0);
120 -- Any internet address (all the interfaces)
122 type In_Addr_Access_Array is array (C.size_t range <>)
123 of aliased In_Addr_Access;
124 pragma Convention (C, In_Addr_Access_Array);
126 package In_Addr_Access_Pointers is
127 new C.Pointers (C.size_t, In_Addr_Access, In_Addr_Access_Array, null);
128 -- Array of internet addresses
130 type Sockaddr is record
131 Sa_Family : C.unsigned_short;
132 Sa_Data : C.char_array (1 .. 14);
133 end record;
134 pragma Convention (C, Sockaddr);
135 -- Socket address
137 type Sockaddr_Access is access all Sockaddr;
138 pragma Convention (C, Sockaddr_Access);
139 -- Access to socket address
141 type Sockaddr_In is record
142 Sin_Family : C.unsigned_short := Constants.AF_INET;
143 Sin_Port : C.unsigned_short := 0;
144 Sin_Addr : In_Addr := Inaddr_Any;
145 Sin_Zero : C.char_array (1 .. 8) := (others => C.char'Val (0));
146 end record;
147 pragma Convention (C, Sockaddr_In);
148 -- Internet socket address
150 type Sockaddr_In_Access is access all Sockaddr_In;
151 pragma Convention (C, Sockaddr_In_Access);
152 -- Access to internet socket address
154 procedure Set_Length
155 (Sin : Sockaddr_In_Access;
156 Len : C.int);
157 pragma Inline (Set_Length);
158 -- Set Sin.Sin_Length to Len.
159 -- On this platform, nothing is done as there is no such field.
161 procedure Set_Family
162 (Sin : Sockaddr_In_Access;
163 Family : C.int);
164 pragma Inline (Set_Family);
165 -- Set Sin.Sin_Family to Family
167 procedure Set_Port
168 (Sin : Sockaddr_In_Access;
169 Port : C.unsigned_short);
170 pragma Inline (Set_Port);
171 -- Set Sin.Sin_Port to Port
173 procedure Set_Address
174 (Sin : Sockaddr_In_Access;
175 Address : In_Addr);
176 pragma Inline (Set_Address);
177 -- Set Sin.Sin_Addr to Address
179 type Hostent is record
180 H_Name : C.Strings.chars_ptr;
181 H_Aliases : Chars_Ptr_Pointers.Pointer;
182 H_Addrtype : C.int;
183 H_Length : C.int;
184 H_Addr_List : In_Addr_Access_Pointers.Pointer;
185 end record;
186 pragma Convention (C, Hostent);
187 -- Host entry
189 type Hostent_Access is access all Hostent;
190 pragma Convention (C, Hostent_Access);
191 -- Access to host entry
193 type Servent is record
194 S_Name : C.Strings.chars_ptr;
195 S_Aliases : Chars_Ptr_Pointers.Pointer;
196 S_Port : C.int;
197 S_Proto : C.Strings.chars_ptr;
198 end record;
199 pragma Convention (C, Servent);
200 -- Service entry
202 type Servent_Access is access all Servent;
203 pragma Convention (C, Servent_Access);
204 -- Access to service entry
206 type Two_Int is array (0 .. 1) of C.int;
207 pragma Convention (C, Two_Int);
208 -- Used with pipe()
210 function C_Accept
211 (S : C.int;
212 Addr : System.Address;
213 Addrlen : access C.int) return C.int;
215 function C_Bind
216 (S : C.int;
217 Name : System.Address;
218 Namelen : C.int) return C.int;
220 function C_Close
221 (Fd : C.int) return C.int;
223 function C_Connect
224 (S : C.int;
225 Name : System.Address;
226 Namelen : C.int) return C.int;
228 function C_Gethostbyaddr
229 (Addr : System.Address;
230 Len : C.int;
231 Typ : C.int) return Hostent_Access;
233 function C_Gethostbyname
234 (Name : C.char_array) return Hostent_Access;
236 function C_Gethostname
237 (Name : System.Address;
238 Namelen : C.int) return C.int;
240 function C_Getpeername
241 (S : C.int;
242 Name : System.Address;
243 Namelen : access C.int) return C.int;
245 function C_Getservbyname
246 (Name : C.char_array;
247 Proto : C.char_array) return Servent_Access;
249 function C_Getservbyport
250 (Port : C.int;
251 Proto : C.char_array) return Servent_Access;
253 function C_Getsockname
254 (S : C.int;
255 Name : System.Address;
256 Namelen : access C.int) return C.int;
258 function C_Getsockopt
259 (S : C.int;
260 Level : C.int;
261 Optname : C.int;
262 Optval : System.Address;
263 Optlen : access C.int) return C.int;
265 function C_Inet_Addr
266 (Cp : C.Strings.chars_ptr) return C.int;
268 function C_Ioctl
269 (S : C.int;
270 Req : C.int;
271 Arg : Int_Access) return C.int;
273 function C_Listen (S, Backlog : C.int) return C.int;
275 function C_Readv
276 (Fd : C.int;
277 Iov : System.Address;
278 Iovcnt : C.int) return C.int;
280 function C_Recv
281 (S : C.int;
282 Msg : System.Address;
283 Len : C.int;
284 Flags : C.int) return C.int;
286 function C_Recvfrom
287 (S : C.int;
288 Msg : System.Address;
289 Len : C.int;
290 Flags : C.int;
291 From : Sockaddr_In_Access;
292 Fromlen : access C.int) return C.int;
294 function C_Select
295 (Nfds : C.int;
296 Readfds : Fd_Set_Access;
297 Writefds : Fd_Set_Access;
298 Exceptfds : Fd_Set_Access;
299 Timeout : Timeval_Access) return C.int;
301 function C_Send
302 (S : C.int;
303 Msg : System.Address;
304 Len : C.int;
305 Flags : C.int) return C.int;
307 function C_Sendto
308 (S : C.int;
309 Msg : System.Address;
310 Len : C.int;
311 Flags : C.int;
312 To : Sockaddr_In_Access;
313 Tolen : C.int) return C.int;
315 function C_Setsockopt
316 (S : C.int;
317 Level : C.int;
318 Optname : C.int;
319 Optval : System.Address;
320 Optlen : C.int) return C.int;
322 function C_Shutdown
323 (S : C.int;
324 How : C.int) return C.int;
326 function C_Socket
327 (Domain : C.int;
328 Typ : C.int;
329 Protocol : C.int) return C.int;
331 function C_Strerror
332 (Errnum : C.int) return C.Strings.chars_ptr;
334 function C_System
335 (Command : System.Address) return C.int;
337 function C_Writev
338 (Fd : C.int;
339 Iov : System.Address;
340 Iovcnt : C.int) return C.int;
342 procedure Free_Socket_Set
343 (Set : Fd_Set_Access);
344 -- Free system-dependent socket set
346 procedure Get_Socket_From_Set
347 (Set : Fd_Set_Access;
348 Socket : Int_Access;
349 Last : Int_Access);
350 -- Get last socket in Socket and remove it from the socket
351 -- set. The parameter Last is a maximum value of the largest
352 -- socket. This hint is used to avoid scanning very large socket
353 -- sets. After a call to Get_Socket_From_Set, Last is set back to
354 -- the real largest socket in the socket set.
356 procedure Insert_Socket_In_Set
357 (Set : Fd_Set_Access;
358 Socket : C.int);
359 -- Insert socket in the socket set
361 function Is_Socket_In_Set
362 (Set : Fd_Set_Access;
363 Socket : C.int) return C.int;
364 -- Check whether Socket is in the socket set, return a non-zero
365 -- value if it is, zero if it is not.
367 procedure Last_Socket_In_Set
368 (Set : Fd_Set_Access;
369 Last : Int_Access);
370 -- Find the largest socket in the socket set. This is needed for
371 -- select(). When Last_Socket_In_Set is called, parameter Last is
372 -- a maximum value of the largest socket. This hint is used to
373 -- avoid scanning very large socket sets. After the call, Last is
374 -- set back to the real largest socket in the socket set.
376 function New_Socket_Set
377 (Set : Fd_Set_Access) return Fd_Set_Access;
378 -- Allocate a new socket set which is a system-dependent structure
379 -- and initialize by copying Set if it is non-null, by making it
380 -- empty otherwise.
382 procedure Remove_Socket_From_Set
383 (Set : Fd_Set_Access;
384 Socket : C.int);
385 -- Remove socket from the socket set
387 procedure Finalize;
388 procedure Initialize (Process_Blocking_IO : Boolean);
390 private
392 pragma Import (C, C_Bind, "DECC$BIND");
393 pragma Import (C, C_Close, "DECC$CLOSE");
394 pragma Import (C, C_Gethostbyaddr, "DECC$GETHOSTBYADDR");
395 pragma Import (C, C_Gethostbyname, "DECC$GETHOSTBYNAME");
396 pragma Import (C, C_Gethostname, "DECC$GETHOSTNAME");
397 pragma Import (C, C_Getpeername, "DECC$GETPEERNAME");
398 pragma Import (C, C_Getservbyname, "DECC$GETSERVBYNAME");
399 pragma Import (C, C_Getservbyport, "DECC$GETSERVBYPORT");
400 pragma Import (C, C_Getsockname, "DECC$GETSOCKNAME");
401 pragma Import (C, C_Getsockopt, "DECC$GETSOCKOPT");
402 pragma Import (C, C_Inet_Addr, "DECC$INET_ADDR");
403 pragma Import (C, C_Listen, "DECC$LISTEN");
404 pragma Import (C, C_Select, "DECC$SELECT");
405 pragma Import (C, C_Setsockopt, "DECC$SETSOCKOPT");
406 pragma Import (C, C_Shutdown, "DECC$SHUTDOWN");
407 pragma Import (C, C_Strerror, "DECC$STRERROR");
408 pragma Import (C, C_System, "DECC$SYSTEM");
410 pragma Import (C, Free_Socket_Set, "__gnat_free_socket_set");
411 pragma Import (C, Get_Socket_From_Set, "__gnat_get_socket_from_set");
412 pragma Import (C, Is_Socket_In_Set, "__gnat_is_socket_in_set");
413 pragma Import (C, Last_Socket_In_Set, "__gnat_last_socket_in_set");
414 pragma Import (C, New_Socket_Set, "__gnat_new_socket_set");
415 pragma Import (C, Insert_Socket_In_Set, "__gnat_insert_socket_in_set");
416 pragma Import (C, Remove_Socket_From_Set, "__gnat_remove_socket_from_set");
417 end GNAT.Sockets.Thin;