OSDN Git Service

2005-07-07 Thomas Koenig <Thomas.Koenig@online.de>
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / hostnm.c
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>
4
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
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.
11
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
19 executable.)
20
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.
25
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., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA.  */
30
31 #include "config.h"
32 #include "libgfortran.h"
33
34 #include <errno.h>
35 #include <string.h>
36
37 #ifdef HAVE_UNISTD_H
38 #include <unistd.h> 
39 #endif
40
41 #include "../io/io.h"
42
43 /* SUBROUTINE HOSTNM(NAME, STATUS)
44    CHARACTER(len=*), INTENT(OUT) :: NAME
45    INTEGER, INTENT(OUT), OPTIONAL :: STATUS  */
46
47 #ifdef HAVE_GETHOSTNAME
48 extern void hostnm_i4_sub (char *, GFC_INTEGER_4 *, gfc_charlen_type);
49 iexport_proto(hostnm_i4_sub);
50
51 void
52 hostnm_i4_sub (char *name, GFC_INTEGER_4 *status, gfc_charlen_type name_len)
53 {
54   int val, i;
55   char *p;
56
57   memset (name, ' ', name_len);
58   p = gfc_alloca (name_len + 1);
59
60   val = gethostname (p, name_len);
61
62   if (val == 0)
63   {
64     i = -1;
65     while (i < name_len && p[++i] != '\0')
66       name[i] = p[i];
67   }
68
69   if (status != NULL) 
70     *status = (val == 0) ? 0 : errno;
71 }
72 iexport(hostnm_i4_sub);
73
74 extern void hostnm_i8_sub (char *, GFC_INTEGER_8 *, gfc_charlen_type);
75 iexport_proto(hostnm_i8_sub);
76
77 void
78 hostnm_i8_sub (char *name, GFC_INTEGER_8 *status, gfc_charlen_type name_len)
79 {
80   int val, i;
81   char *p;
82
83   memset (name, ' ', name_len);
84   p = gfc_alloca (name_len + 1);
85
86   val = gethostname (p, name_len);
87
88   if (val == 0)
89   {
90     i = -1;
91     while (i < name_len && p[++i] != '\0')
92       name[i] = p[i];
93   }
94
95   if (status != NULL) 
96     *status = (val == 0) ? 0 : errno;
97 }
98 iexport(hostnm_i8_sub);
99
100 extern GFC_INTEGER_4 hostnm (char *, gfc_charlen_type);
101 export_proto(hostnm);
102
103 GFC_INTEGER_4
104 hostnm (char *name, gfc_charlen_type name_len)
105 {
106   GFC_INTEGER_4 val;
107   hostnm_i4_sub (name, &val, name_len);
108   return val;
109 }
110 #endif