OSDN Git Service

2007-09-07 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libgfortran / io / file_pos.c
1 /* Copyright (C) 2002-2003, 2005, 2006, 2007 Free Software Foundation, Inc.
2    Contributed by Andy Vaught and Janne Blomqvist
3
4 This file is part of the GNU Fortran 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 "io.h"
31 #include <string.h>
32
33 /* file_pos.c-- Implement the file positioning statements, i.e. BACKSPACE,
34    ENDFILE, and REWIND as well as the FLUSH statement.  */
35
36
37 /* formatted_backspace(fpp, u)-- Move the file back one line.  The
38    current position is after the newline that terminates the previous
39    record, and we have to sift backwards to find the newline before
40    that or the start of the file, whichever comes first.  */
41
42 #define READ_CHUNK 4096
43
44 static void
45 formatted_backspace (st_parameter_filepos *fpp, gfc_unit *u)
46 {
47   gfc_offset base;
48   char *p;
49   int n;
50
51   base = file_position (u->s) - 1;
52
53   do
54     {
55       n = (base < READ_CHUNK) ? base : READ_CHUNK;
56       base -= n;
57
58       p = salloc_r_at (u->s, &n, base);
59       if (p == NULL)
60         goto io_error;
61
62       /* We have moved backwards from the current position, it should
63          not be possible to get a short read.  Because it is not
64          clear what to do about such thing, we ignore the possibility.  */
65
66       /* There is no memrchr() in the C library, so we have to do it
67          ourselves.  */
68
69       n--;
70       while (n >= 0)
71         {
72           if (p[n] == '\n')
73             {
74               base += n + 1;
75               goto done;
76             }
77           n--;
78         }
79
80     }
81   while (base != 0);
82
83   /* base is the new pointer.  Seek to it exactly.  */
84  done:
85   if (sseek (u->s, base) == FAILURE)
86     goto io_error;
87   u->last_record--;
88   u->endfile = NO_ENDFILE;
89
90   return;
91
92  io_error:
93   generate_error (&fpp->common, LIBERROR_OS, NULL);
94 }
95
96
97 /* unformatted_backspace(fpp) -- Move the file backwards for an unformatted
98    sequential file.  We are guaranteed to be between records on entry and 
99    we have to shift to the previous record.  Loop over subrecords.  */
100
101 static void
102 unformatted_backspace (st_parameter_filepos *fpp, gfc_unit *u)
103 {
104   gfc_offset m, new;
105   GFC_INTEGER_4 m4;
106   GFC_INTEGER_8 m8;
107   int length, length_read;
108   int continued;
109   char *p;
110
111   if (compile_options.record_marker == 0)
112     length = sizeof (GFC_INTEGER_4);
113   else
114     length = compile_options.record_marker;
115
116   do
117     {
118       length_read = length;
119
120       p = salloc_r_at (u->s, &length_read,
121                        file_position (u->s) - length);
122       if (p == NULL || length_read != length)
123         goto io_error;
124
125       /* Only GFC_CONVERT_NATIVE and GFC_CONVERT_SWAP are valid here.  */
126       if (u->flags.convert == GFC_CONVERT_NATIVE)
127         {
128           switch (length)
129             {
130             case sizeof(GFC_INTEGER_4):
131               memcpy (&m4, p, sizeof (m4));
132               m = m4;
133               break;
134
135             case sizeof(GFC_INTEGER_8):
136               memcpy (&m8, p, sizeof (m8));
137               m = m8;
138               break;
139
140             default:
141               runtime_error ("Illegal value for record marker");
142               break;
143             }
144         }
145       else
146         {
147           switch (length)
148             {
149             case sizeof(GFC_INTEGER_4):
150               reverse_memcpy (&m4, p, sizeof (m4));
151               m = m4;
152               break;
153
154             case sizeof(GFC_INTEGER_8):
155               reverse_memcpy (&m8, p, sizeof (m8));
156               m = m8;
157               break;
158
159             default:
160               runtime_error ("Illegal value for record marker");
161               break;
162             }
163
164         }
165
166       continued = m < 0;
167       if (continued)
168         m = -m;
169
170       if ((new = file_position (u->s) - m - 2*length) < 0)
171         new = 0;
172
173       if (sseek (u->s, new) == FAILURE)
174         goto io_error;
175     } while (continued);
176
177   u->last_record--;
178   return;
179
180  io_error:
181   generate_error (&fpp->common, LIBERROR_OS, NULL);
182 }
183
184
185 extern void st_backspace (st_parameter_filepos *);
186 export_proto(st_backspace);
187
188 void
189 st_backspace (st_parameter_filepos *fpp)
190 {
191   gfc_unit *u;
192
193   library_start (&fpp->common);
194
195   u = find_unit (fpp->common.unit);
196   if (u == NULL)
197     {
198       generate_error (&fpp->common, LIBERROR_BAD_UNIT, NULL);
199       goto done;
200     }
201
202   /* Ignore direct access.  Non-advancing I/O is only allowed for formatted
203      sequential I/O and the next direct access transfer repositions the file 
204      anyway.  */
205
206   if (u->flags.access == ACCESS_DIRECT || u->flags.access == ACCESS_STREAM)
207     goto done;
208
209   /* Check for special cases involving the ENDFILE record first.  */
210
211   if (u->endfile == AFTER_ENDFILE)
212     {
213       u->endfile = AT_ENDFILE;
214       u->flags.position = POSITION_APPEND;
215       flush (u->s);
216     }
217   else
218     {
219       if (file_position (u->s) == 0)
220         {
221           u->flags.position = POSITION_REWIND;
222           goto done;            /* Common special case */
223         }
224
225       if (u->mode == WRITING)
226         {
227           flush (u->s);
228           struncate (u->s);
229           u->mode = READING;
230         }
231
232       if (u->flags.form == FORM_FORMATTED)
233         formatted_backspace (fpp, u);
234       else
235         unformatted_backspace (fpp, u);
236
237       update_position (u);
238       u->endfile = NO_ENDFILE;
239       u->current_record = 0;
240       u->bytes_left = 0;
241     }
242
243  done:
244   if (u != NULL)
245     unlock_unit (u);
246
247   library_end ();
248 }
249
250
251 extern void st_endfile (st_parameter_filepos *);
252 export_proto(st_endfile);
253
254 void
255 st_endfile (st_parameter_filepos *fpp)
256 {
257   gfc_unit *u;
258
259   library_start (&fpp->common);
260
261   u = find_unit (fpp->common.unit);
262   if (u != NULL)
263     {
264       if (u->current_record)
265         {
266           st_parameter_dt dtp;
267           dtp.common = fpp->common;
268           memset (&dtp.u.p, 0, sizeof (dtp.u.p));
269           dtp.u.p.current_unit = u;
270           next_record (&dtp, 1);
271         }
272
273       flush (u->s);
274       struncate (u->s);
275       u->endfile = AFTER_ENDFILE;
276       update_position (u);
277       unlock_unit (u);
278     }
279
280   library_end ();
281 }
282
283
284 extern void st_rewind (st_parameter_filepos *);
285 export_proto(st_rewind);
286
287 void
288 st_rewind (st_parameter_filepos *fpp)
289 {
290   gfc_unit *u;
291
292   library_start (&fpp->common);
293
294   u = find_unit (fpp->common.unit);
295   if (u != NULL)
296     {
297       if (u->flags.access == ACCESS_DIRECT)
298         generate_error (&fpp->common, LIBERROR_BAD_OPTION,
299                         "Cannot REWIND a file opened for DIRECT access");
300       else
301         {
302           /* Flush the buffers.  If we have been writing to the file, the last
303                written record is the last record in the file, so truncate the
304                file now.  Reset to read mode so two consecutive rewind
305                statements do not delete the file contents.  */
306           flush (u->s);
307           if (u->mode == WRITING && u->flags.access != ACCESS_STREAM)
308             struncate (u->s);
309
310           u->mode = READING;
311           u->last_record = 0;
312
313           if (file_position (u->s) != 0 && sseek (u->s, 0) == FAILURE)
314             generate_error (&fpp->common, LIBERROR_OS, NULL);
315
316           /* Handle special files like /dev/null differently.  */
317           if (!is_special (u->s))
318             {
319               /* We are rewinding so we are not at the end.  */
320               u->endfile = NO_ENDFILE;
321             }
322           else
323             {
324               /* Set this for compatibilty with g77 for /dev/null.  */
325               if (file_length (u->s) == 0  && file_position (u->s) == 0)
326                 u->endfile = AT_ENDFILE;
327               /* Future refinements on special files can go here.  */
328             }
329
330           u->current_record = 0;
331           u->strm_pos = 1;
332           u->read_bad = 0;
333         }
334       /* Update position for INQUIRE.  */
335       u->flags.position = POSITION_REWIND;
336       unlock_unit (u);
337     }
338
339   library_end ();
340 }
341
342
343 extern void st_flush (st_parameter_filepos *);
344 export_proto(st_flush);
345
346 void
347 st_flush (st_parameter_filepos *fpp)
348 {
349   gfc_unit *u;
350
351   library_start (&fpp->common);
352
353   u = find_unit (fpp->common.unit);
354   if (u != NULL)
355     {
356       flush (u->s);
357       unlock_unit (u);
358     }
359   else
360     /* FLUSH on unconnected unit is illegal: F95 std., 9.3.5. */ 
361     generate_error (&fpp->common, LIBERROR_BAD_OPTION,
362                         "Specified UNIT in FLUSH is not connected");
363
364   library_end ();
365 }