OSDN Git Service

2006-07-15 Steven G. Kargl <kargls@comcast.net>
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / rename.c
1 /* Implementation of the RENAME 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., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA.  */
30
31 #include "config.h"
32 #include "libgfortran.h"
33
34 #include <errno.h>
35 #include <stdio.h>
36 #include <string.h>
37
38 /* SUBROUTINE RENAME(PATH1, PATH2, STATUS)
39    CHARACTER(len=*), INTENT(IN) :: PATH1, PATH2
40    INTEGER, INTENT(OUT), OPTIONAL :: STATUS  */
41
42 extern void rename_i4_sub (char *, char *, GFC_INTEGER_4 *, gfc_charlen_type,
43                            gfc_charlen_type);
44 iexport_proto(rename_i4_sub);
45
46 void
47 rename_i4_sub (char *path1, char *path2, GFC_INTEGER_4 *status,
48                gfc_charlen_type path1_len, gfc_charlen_type path2_len)
49 {
50   int val;
51   char *str1, *str2;
52
53   /* Trim trailing spaces from paths.  */
54   while (path1_len > 0 && path1[path1_len - 1] == ' ')
55     path1_len--;
56   while (path2_len > 0 && path2[path2_len - 1] == ' ')
57     path2_len--;
58
59   /* Make a null terminated copy of the strings.  */
60   str1 = gfc_alloca (path1_len + 1);
61   memcpy (str1, path1, path1_len);
62   str1[path1_len] = '\0'; 
63
64   str2 = gfc_alloca (path2_len + 1);
65   memcpy (str2, path2, path2_len);
66   str2[path2_len] = '\0'; 
67
68   val = rename (str1, str2);
69
70   if (status != NULL) 
71     *status = (val == 0) ? 0 : errno;
72 }
73 iexport(rename_i4_sub);
74
75 extern void rename_i8_sub (char *, char *, GFC_INTEGER_8 *, gfc_charlen_type,
76                            gfc_charlen_type);
77 iexport_proto(rename_i8_sub);
78
79 void
80 rename_i8_sub (char *path1, char *path2, GFC_INTEGER_8 *status,
81                gfc_charlen_type path1_len, gfc_charlen_type path2_len)
82 {
83   int val;
84   char *str1, *str2;
85
86   /* Trim trailing spaces from paths.  */
87   while (path1_len > 0 && path1[path1_len - 1] == ' ')
88     path1_len--;
89   while (path2_len > 0 && path2[path2_len - 1] == ' ')
90     path2_len--;
91
92   /* Make a null terminated copy of the strings.  */
93   str1 = gfc_alloca (path1_len + 1);
94   memcpy (str1, path1, path1_len);
95   str1[path1_len] = '\0'; 
96
97   str2 = gfc_alloca (path2_len + 1);
98   memcpy (str2, path2, path2_len);
99   str2[path2_len] = '\0'; 
100
101   val = rename (str1, str2);
102
103   if (status != NULL) 
104     *status = (val == 0) ? 0 : errno;
105 }
106 iexport(rename_i8_sub);
107
108 extern GFC_INTEGER_4 rename_i4 (char *, char *, gfc_charlen_type,
109                                 gfc_charlen_type);
110 export_proto(rename_i4);
111
112 GFC_INTEGER_4
113 rename_i4 (char *path1, char *path2, gfc_charlen_type path1_len,
114            gfc_charlen_type path2_len)
115 {
116   GFC_INTEGER_4 val;
117   rename_i4_sub (path1, path2, &val, path1_len, path2_len);
118   return val;
119 }
120
121 extern GFC_INTEGER_8 rename_i8 (char *, char *, gfc_charlen_type,
122                                 gfc_charlen_type);
123 export_proto(rename_i8);
124
125 GFC_INTEGER_8
126 rename_i8 (char *path1, char *path2, gfc_charlen_type path1_len,
127            gfc_charlen_type path2_len)
128 {
129   GFC_INTEGER_8 val;
130   rename_i8_sub (path1, path2, &val, path1_len, path2_len);
131   return val;
132 }