1 /* Implementation of the HOSTNM intrinsic.
2 Copyright (C) 2005 Free Software Foundation, Inc.
3 Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
21 Libgfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING. If not,
28 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA. */
32 #include "libgfortran.h"
42 /* Windows32 version */
43 #if defined __MINGW32__ && !defined HAVE_GETHOSTNAME
44 #define WIN32_LEAN_AND_MEAN
49 w32_gethostname (char *name
, size_t len
)
51 /* We could try the WinSock API gethostname, but that will
52 fail if WSAStartup function has has not been called. We don't
53 really need a name that will be understood by socket API, so avoid
54 unnecessary dependence on WinSock libraries by using
55 GetComputerName instead. */
57 /* On Win9x GetComputerName fails if the input size is less
58 than MAX_COMPUTERNAME_LENGTH + 1. */
59 char buffer
[MAX_COMPUTERNAME_LENGTH
+ 1];
60 DWORD size
= sizeof (buffer
);
62 if (!GetComputerName (buffer
, &size
))
65 if ((size
= strlen (buffer
) + 1) > len
)
68 /* Truncate as per POSIX spec. We do not NUL-terminate. */
71 memcpy (name
, buffer
, (size_t) size
);
77 #define gethostname w32_gethostname
78 #define HAVE_GETHOSTNAME 1
83 /* SUBROUTINE HOSTNM(NAME, STATUS)
84 CHARACTER(len=*), INTENT(OUT) :: NAME
85 INTEGER, INTENT(OUT), OPTIONAL :: STATUS */
87 #ifdef HAVE_GETHOSTNAME
88 extern void hostnm_i4_sub (char *, GFC_INTEGER_4
*, gfc_charlen_type
);
89 iexport_proto(hostnm_i4_sub
);
92 hostnm_i4_sub (char *name
, GFC_INTEGER_4
*status
, gfc_charlen_type name_len
)
97 memset (name
, ' ', name_len
);
98 p
= gfc_alloca (name_len
+ 1);
100 val
= gethostname (p
, name_len
);
105 while (i
< name_len
&& p
[++i
] != '\0')
110 *status
= (val
== 0) ? 0 : errno
;
112 iexport(hostnm_i4_sub
);
114 extern void hostnm_i8_sub (char *, GFC_INTEGER_8
*, gfc_charlen_type
);
115 iexport_proto(hostnm_i8_sub
);
118 hostnm_i8_sub (char *name
, GFC_INTEGER_8
*status
, gfc_charlen_type name_len
)
123 memset (name
, ' ', name_len
);
124 p
= gfc_alloca (name_len
+ 1);
126 val
= gethostname (p
, name_len
);
131 while (i
< name_len
&& p
[++i
] != '\0')
136 *status
= (val
== 0) ? 0 : errno
;
138 iexport(hostnm_i8_sub
);
140 extern GFC_INTEGER_4
hostnm (char *, gfc_charlen_type
);
141 export_proto(hostnm
);
144 hostnm (char *name
, gfc_charlen_type name_len
)
147 hostnm_i4_sub (name
, &val
, name_len
);