OSDN Git Service

* gcc-interface/ada-tree.def: Fix formatting nits.
[pf3gnuchains/gcc-fork.git] / gcc / ada / g-socthi-vms.ads
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-2008, 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 ------------------------------------------------------------------------------
33
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.
37
38 --  This is the Alpha/VMS version
39
40 with Interfaces.C.Strings;
41
42 with GNAT.OS_Lib;
43 with GNAT.Sockets.Thin_Common;
44
45 with System;
46
47 package GNAT.Sockets.Thin is
48
49    --  ??? more comments needed ???
50
51    use Thin_Common;
52
53    package C renames Interfaces.C;
54
55    function Socket_Errno return Integer renames GNAT.OS_Lib.Errno;
56    --  Returns last socket error number
57
58    procedure Set_Socket_Errno (Errno : Integer) renames GNAT.OS_Lib.Set_Errno;
59    --  Set last socket error number
60
61    function Socket_Error_Message (Errno : Integer) return C.Strings.chars_ptr;
62    --  Returns the error message string for the error number Errno. If Errno is
63    --  not known, returns "Unknown system error".
64
65    function Host_Errno return Integer;
66    pragma Import (C, Host_Errno, "__gnat_get_h_errno");
67    --  Returns last host error number
68
69    package Host_Error_Messages is
70
71       function Host_Error_Message
72         (H_Errno : Integer) return C.Strings.chars_ptr;
73       --  Returns the error message string for the host error number H_Errno.
74       --  If H_Errno is not known, returns "Unknown system error".
75
76    end Host_Error_Messages;
77
78    --------------------------------
79    -- Standard library functions --
80    --------------------------------
81
82    function C_Accept
83      (S       : C.int;
84       Addr    : System.Address;
85       Addrlen : not null access C.int) return C.int;
86
87    function C_Bind
88      (S       : C.int;
89       Name    : System.Address;
90       Namelen : C.int) return C.int;
91
92    function C_Close
93      (Fd : C.int) return C.int;
94
95    function C_Connect
96      (S       : C.int;
97       Name    : System.Address;
98       Namelen : C.int) return C.int;
99
100    function C_Gethostname
101      (Name    : System.Address;
102       Namelen : C.int) return C.int;
103
104    function C_Getpeername
105      (S       : C.int;
106       Name    : System.Address;
107       Namelen : not null access C.int) return C.int;
108
109    function C_Getsockname
110      (S       : C.int;
111       Name    : System.Address;
112       Namelen : not null access C.int) return C.int;
113
114    function C_Getsockopt
115      (S       : C.int;
116       Level   : C.int;
117       Optname : C.int;
118       Optval  : System.Address;
119       Optlen  : not null access C.int) return C.int;
120
121    function C_Ioctl
122      (S    : C.int;
123       Req  : C.int;
124       Arg  : access C.int) return C.int;
125
126    function C_Listen
127      (S       : C.int;
128       Backlog : C.int) return C.int;
129
130    function C_Readv
131      (Fd     : C.int;
132       Iov    : System.Address;
133       Iovcnt : C.int) return C.int;
134
135    function C_Recv
136      (S     : C.int;
137       Msg   : System.Address;
138       Len   : C.int;
139       Flags : C.int) return C.int;
140
141    function C_Recvfrom
142      (S       : C.int;
143       Msg     : System.Address;
144       Len     : C.int;
145       Flags   : C.int;
146       From    : Sockaddr_In_Access;
147       Fromlen : not null access C.int) return C.int;
148
149    function C_Select
150      (Nfds      : C.int;
151       Readfds   : access Fd_Set;
152       Writefds  : access Fd_Set;
153       Exceptfds : access Fd_Set;
154       Timeout   : Timeval_Access) return C.int;
155
156    function C_Sendto
157      (S     : C.int;
158       Msg   : System.Address;
159       Len   : C.int;
160       Flags : C.int;
161       To    : Sockaddr_In_Access;
162       Tolen : C.int) return C.int;
163
164    function C_Setsockopt
165      (S       : C.int;
166       Level   : C.int;
167       Optname : C.int;
168       Optval  : System.Address;
169       Optlen  : C.int) return C.int;
170
171    function C_Shutdown
172      (S   : C.int;
173       How : C.int) return C.int;
174
175    function C_Socket
176      (Domain   : C.int;
177       Typ      : C.int;
178       Protocol : C.int) return C.int;
179
180    function C_Strerror
181      (Errnum : C.int) return C.Strings.chars_ptr;
182
183    function C_System
184      (Command : System.Address) return C.int;
185
186    function C_Writev
187      (Fd     : C.int;
188       Iov    : System.Address;
189       Iovcnt : C.int) return C.int;
190
191    -------------------------------------------------------
192    -- Signalling file descriptors for selector abortion --
193    -------------------------------------------------------
194
195    package Signalling_Fds is
196
197       function Create (Fds : not null access Fd_Pair) return C.int;
198       pragma Convention (C, Create);
199       --  Create a pair of connected descriptors suitable for use with C_Select
200       --  (used for signalling in Selector objects).
201
202       function Read (Rsig : C.int) return C.int;
203       pragma Convention (C, Read);
204       --  Read one byte of data from rsig, the read end of a pair of signalling
205       --  fds created by Create_Signalling_Fds.
206
207       function Write (Wsig : C.int) return C.int;
208       pragma Convention (C, Write);
209       --  Write one byte of data to wsig, the write end of a pair of signalling
210       --  fds created by Create_Signalling_Fds.
211
212       procedure Close (Sig : C.int);
213       pragma Convention (C, Close);
214       --  Close one end of a pair of signalling fds (ignoring any error)
215
216    end Signalling_Fds;
217
218    -------------------------------------------
219    -- Nonreentrant network databases access --
220    -------------------------------------------
221
222    function Nonreentrant_Gethostbyname
223      (Name : C.char_array) return Hostent_Access;
224
225    function Nonreentrant_Gethostbyaddr
226      (Addr      : System.Address;
227       Addr_Len  : C.int;
228       Addr_Type : C.int) return Hostent_Access;
229
230    function Nonreentrant_Getservbyname
231      (Name  : C.char_array;
232       Proto : C.char_array) return Servent_Access;
233
234    function Nonreentrant_Getservbyport
235      (Port  : C.int;
236       Proto : C.char_array) return Servent_Access;
237
238    procedure Initialize;
239    procedure Finalize;
240
241 private
242
243    pragma Import (C, C_Bind,          "DECC$BIND");
244    pragma Import (C, C_Close,         "DECC$CLOSE");
245    pragma Import (C, C_Gethostname,   "DECC$GETHOSTNAME");
246    pragma Import (C, C_Getpeername,   "DECC$GETPEERNAME");
247    pragma Import (C, C_Getsockname,   "DECC$GETSOCKNAME");
248    pragma Import (C, C_Getsockopt,    "DECC$GETSOCKOPT");
249    pragma Import (C, C_Listen,        "DECC$LISTEN");
250    pragma Import (C, C_Select,        "DECC$SELECT");
251    pragma Import (C, C_Setsockopt,    "DECC$SETSOCKOPT");
252    pragma Import (C, C_Shutdown,      "DECC$SHUTDOWN");
253    pragma Import (C, C_Strerror,      "DECC$STRERROR");
254    pragma Import (C, C_System,        "DECC$SYSTEM");
255
256    pragma Import (C, Nonreentrant_Gethostbyname, "DECC$GETHOSTBYNAME");
257    pragma Import (C, Nonreentrant_Gethostbyaddr, "DECC$GETHOSTBYADDR");
258    pragma Import (C, Nonreentrant_Getservbyname, "DECC$GETSERVBYNAME");
259    pragma Import (C, Nonreentrant_Getservbyport, "DECC$GETSERVBYPORT");
260
261 end GNAT.Sockets.Thin;