OSDN Git Service

6010e921fcb7ae47caadb1fa9d8409ad3967e336
[pf3gnuchains/gcc-fork.git] / libgfortran / io / close.c
1 /* Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
2    Contributed by Andy Vaught
3
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
5
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file.  (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
18 executable.)
19
20 Libgfortran is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with Libgfortran; see the file COPYING.  If not, write to
27 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
28 Boston, MA 02110-1301, USA.  */
29
30 #include "config.h"
31 #include "libgfortran.h"
32 #include "io.h"
33 #include <limits.h>
34
35 typedef enum
36 { CLOSE_DELETE, CLOSE_KEEP, CLOSE_UNSPECIFIED }
37 close_status;
38
39 static st_option status_opt[] = {
40   {"keep", CLOSE_KEEP},
41   {"delete", CLOSE_DELETE},
42   {NULL, 0}
43 };
44
45
46 extern void st_close (void);
47 export_proto(st_close);
48
49 void
50 st_close (void)
51 {
52   close_status status;
53   gfc_unit *u;
54 #if !HAVE_UNLINK_OPEN_FILE
55   char * path;
56
57   path = NULL;
58 #endif
59
60   library_start ();
61
62   status = (ioparm.status == NULL) ? CLOSE_UNSPECIFIED :
63     find_option (ioparm.status, ioparm.status_len, status_opt,
64                  "Bad STATUS parameter in CLOSE statement");
65
66   if (ioparm.library_return != LIBRARY_OK)
67     return;
68
69   u = find_unit (ioparm.unit);
70   if (u != NULL)
71     {
72       if (u->flags.status == STATUS_SCRATCH)
73         {
74           if (status == CLOSE_KEEP)
75             generate_error (ERROR_BAD_OPTION,
76                             "Can't KEEP a scratch file on CLOSE");
77 #if !HAVE_UNLINK_OPEN_FILE
78           path = (char *) gfc_alloca (u->file_len + 1);
79           unpack_filename (path, u->file, u->file_len);
80 #endif
81         }
82       else
83         {
84           if (status == CLOSE_DELETE)
85             {
86 #if HAVE_UNLINK_OPEN_FILE
87               delete_file (u);
88 #else
89               path = (char *) gfc_alloca (u->file_len + 1);
90               unpack_filename (path, u->file, u->file_len);
91 #endif
92             }
93         }
94
95       close_unit (u);
96
97 #if !HAVE_UNLINK_OPEN_FILE
98       if (path != NULL)
99         unlink (path);
100 #endif
101     }
102
103   library_end ();
104 }