15877a88eb
2008-05-15 Janne Blomqvist <jb@gcc.gnu.org> PR libfortran/25561 * Makefile.am: Add fbuf.c to gfor_io_src. * Makefile.in: Regenerate. * io/io.h (read_block): Remove. (struct stream): Remove alloc_r_at function pointer. (salloc_r): Remove. (salloc_r_at): Remove. (salloc_w_at): Remove. (salloc_w): Remove offset argument. (struct fbuf): New struct for format buffer. (struct gfc_unit): Add fbuf. (read_block_form): New prototype. (fbuf_init): Likewise. (fbuf_destroy): Likewise. (fbuf_reset): Likewise. (fbuf_alloc): Likewise. (fbuf_flush): Likewise. (fbuf_seek): Likewise. * io/file_pos.c (formatted_backspace): Change to use sread. (unformatted_backspace): Likewise. (st_backspace): Flush format buffer. (st_rewind): Likewise. * io/list_read.c (next_char): Likewise. (nml_query): Tidying, flush format buffer. * io/open.c (new_unit): Init format buffer. * io/read.c (read_l): Change to use read_block_form. (read_a): Likewise. (read_decimal): Likewise. (read_radix): Likewise. (read_f): Likewise. (read_x): Empty reads also for stream I/O. * io/transfer.c (read_sf): Change to use sread. (read_block): Rename to read_block_form, change prototype, use sread. (read_block_direct): Don't seek stream files. (write_block): Change to use fbuf if external file, don't seek stream files. (write_buf): Don't seek stream files. (formatted_transfer_scalar): Use fbuf for external files. (us_read): Change to use sread. (pre_position): Do nothing for stream I/O. (data_transfer_init): Flush fbuf when switching from write to read, if POS is specified, seek stream file to correct offset. (skip_record): Change to use sread. (min_off): New function. (next_record_r): Change to use sread. (next_record_w): Change to use sset/sseek, flush fbuf. (finalize_transfer): Flush fbuf. * io/unit.c (init_units): Init fbuf for stdout, stderr. (close_unit_1): Destroy fbuf. (finish_last_advance_record): Flush fbuf, no need to seek. * io/unix.c (fd_alloc_r_at): Remove unused where argument. (fd_alloc_w_at): Likewise. (fd_read): Remove third argument to fd_alloc_r_at. (fd_write): Remove third argument to fd_alloc_w_at. (fd_sset): Likewise. (fd_open): Don't set alloc_r_at. (mem_alloc_r_at): Remove unused where argument. (mem_alloc_w_at): Likewise. (mem_read): Don't incorrectly return previous errno, remove unused third argument to alloc function. (mem_write): Likewise. (mem_set): Likewise. (open_internal): Don't set alloc_r_at pointer. * io/fbuf.c: New file. From-SVN: r135373
410 lines
9.7 KiB
C
410 lines
9.7 KiB
C
/* Copyright (C) 2002-2003, 2005, 2006, 2007 Free Software Foundation, Inc.
|
|
Contributed by Andy Vaught and Janne Blomqvist
|
|
|
|
This file is part of the GNU Fortran runtime library (libgfortran).
|
|
|
|
Libgfortran is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
In addition to the permissions in the GNU General Public License, the
|
|
Free Software Foundation gives you unlimited permission to link the
|
|
compiled version of this file into combinations with other programs,
|
|
and to distribute those combinations without any restriction coming
|
|
from the use of this file. (The General Public License restrictions
|
|
do apply in other respects; for example, they cover modification of
|
|
the file, and distribution when not linked into a combine
|
|
executable.)
|
|
|
|
Libgfortran is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Libgfortran; see the file COPYING. If not, write to
|
|
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA. */
|
|
|
|
#include "io.h"
|
|
#include <string.h>
|
|
|
|
/* file_pos.c-- Implement the file positioning statements, i.e. BACKSPACE,
|
|
ENDFILE, and REWIND as well as the FLUSH statement. */
|
|
|
|
|
|
/* formatted_backspace(fpp, u)-- Move the file back one line. The
|
|
current position is after the newline that terminates the previous
|
|
record, and we have to sift backwards to find the newline before
|
|
that or the start of the file, whichever comes first. */
|
|
|
|
static const unsigned int READ_CHUNK = 4096;
|
|
|
|
static void
|
|
formatted_backspace (st_parameter_filepos *fpp, gfc_unit *u)
|
|
{
|
|
gfc_offset base;
|
|
char p[READ_CHUNK];
|
|
size_t n;
|
|
|
|
base = file_position (u->s) - 1;
|
|
|
|
do
|
|
{
|
|
n = (base < READ_CHUNK) ? base : READ_CHUNK;
|
|
base -= n;
|
|
if (sseek (u->s, base) == FAILURE)
|
|
goto io_error;
|
|
if (sread (u->s, p, &n) != 0)
|
|
goto io_error;
|
|
|
|
/* We have moved backwards from the current position, it should
|
|
not be possible to get a short read. Because it is not
|
|
clear what to do about such thing, we ignore the possibility. */
|
|
|
|
/* There is no memrchr() in the C library, so we have to do it
|
|
ourselves. */
|
|
|
|
while (n > 0)
|
|
{
|
|
n--;
|
|
if (p[n] == '\n')
|
|
{
|
|
base += n + 1;
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
}
|
|
while (base != 0);
|
|
|
|
/* base is the new pointer. Seek to it exactly. */
|
|
done:
|
|
if (sseek (u->s, base) == FAILURE)
|
|
goto io_error;
|
|
u->last_record--;
|
|
u->endfile = NO_ENDFILE;
|
|
|
|
return;
|
|
|
|
io_error:
|
|
generate_error (&fpp->common, LIBERROR_OS, NULL);
|
|
}
|
|
|
|
|
|
/* unformatted_backspace(fpp) -- Move the file backwards for an unformatted
|
|
sequential file. We are guaranteed to be between records on entry and
|
|
we have to shift to the previous record. Loop over subrecords. */
|
|
|
|
static void
|
|
unformatted_backspace (st_parameter_filepos *fpp, gfc_unit *u)
|
|
{
|
|
gfc_offset m, new;
|
|
GFC_INTEGER_4 m4;
|
|
GFC_INTEGER_8 m8;
|
|
size_t length;
|
|
int continued;
|
|
char p[sizeof (GFC_INTEGER_8)];
|
|
|
|
if (compile_options.record_marker == 0)
|
|
length = sizeof (GFC_INTEGER_4);
|
|
else
|
|
length = compile_options.record_marker;
|
|
|
|
do
|
|
{
|
|
if (sseek (u->s, file_position (u->s) - length) == FAILURE)
|
|
goto io_error;
|
|
if (sread (u->s, p, &length) != 0)
|
|
goto io_error;
|
|
|
|
/* Only GFC_CONVERT_NATIVE and GFC_CONVERT_SWAP are valid here. */
|
|
if (u->flags.convert == GFC_CONVERT_NATIVE)
|
|
{
|
|
switch (length)
|
|
{
|
|
case sizeof(GFC_INTEGER_4):
|
|
memcpy (&m4, p, sizeof (m4));
|
|
m = m4;
|
|
break;
|
|
|
|
case sizeof(GFC_INTEGER_8):
|
|
memcpy (&m8, p, sizeof (m8));
|
|
m = m8;
|
|
break;
|
|
|
|
default:
|
|
runtime_error ("Illegal value for record marker");
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
switch (length)
|
|
{
|
|
case sizeof(GFC_INTEGER_4):
|
|
reverse_memcpy (&m4, p, sizeof (m4));
|
|
m = m4;
|
|
break;
|
|
|
|
case sizeof(GFC_INTEGER_8):
|
|
reverse_memcpy (&m8, p, sizeof (m8));
|
|
m = m8;
|
|
break;
|
|
|
|
default:
|
|
runtime_error ("Illegal value for record marker");
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
continued = m < 0;
|
|
if (continued)
|
|
m = -m;
|
|
|
|
if ((new = file_position (u->s) - m - 2*length) < 0)
|
|
new = 0;
|
|
|
|
if (sseek (u->s, new) == FAILURE)
|
|
goto io_error;
|
|
} while (continued);
|
|
|
|
u->last_record--;
|
|
return;
|
|
|
|
io_error:
|
|
generate_error (&fpp->common, LIBERROR_OS, NULL);
|
|
}
|
|
|
|
|
|
extern void st_backspace (st_parameter_filepos *);
|
|
export_proto(st_backspace);
|
|
|
|
void
|
|
st_backspace (st_parameter_filepos *fpp)
|
|
{
|
|
gfc_unit *u;
|
|
|
|
library_start (&fpp->common);
|
|
|
|
u = find_unit (fpp->common.unit);
|
|
if (u == NULL)
|
|
{
|
|
generate_error (&fpp->common, LIBERROR_BAD_UNIT, NULL);
|
|
goto done;
|
|
}
|
|
|
|
/* Direct access is prohibited, and so is unformatted stream access. */
|
|
|
|
|
|
if (u->flags.access == ACCESS_DIRECT)
|
|
{
|
|
generate_error (&fpp->common, LIBERROR_OPTION_CONFLICT,
|
|
"Cannot BACKSPACE a file opened for DIRECT access");
|
|
goto done;
|
|
}
|
|
|
|
if (u->flags.access == ACCESS_STREAM && u->flags.form == FORM_UNFORMATTED)
|
|
{
|
|
generate_error (&fpp->common, LIBERROR_OPTION_CONFLICT,
|
|
"Cannot BACKSPACE an unformatted stream file");
|
|
goto done;
|
|
}
|
|
|
|
/* Make sure format buffer is flushed. */
|
|
fbuf_flush (u, 1);
|
|
|
|
/* Check for special cases involving the ENDFILE record first. */
|
|
|
|
if (u->endfile == AFTER_ENDFILE)
|
|
{
|
|
u->endfile = AT_ENDFILE;
|
|
u->flags.position = POSITION_APPEND;
|
|
flush (u->s);
|
|
}
|
|
else
|
|
{
|
|
if (file_position (u->s) == 0)
|
|
{
|
|
u->flags.position = POSITION_REWIND;
|
|
goto done; /* Common special case */
|
|
}
|
|
|
|
if (u->mode == WRITING)
|
|
{
|
|
/* If there are previously written bytes from a write with
|
|
ADVANCE="no", add a record marker before performing the
|
|
BACKSPACE. */
|
|
|
|
if (u->previous_nonadvancing_write)
|
|
finish_last_advance_record (u);
|
|
|
|
u->previous_nonadvancing_write = 0;
|
|
|
|
flush (u->s);
|
|
struncate (u->s);
|
|
u->mode = READING;
|
|
}
|
|
|
|
if (u->flags.form == FORM_FORMATTED)
|
|
formatted_backspace (fpp, u);
|
|
else
|
|
unformatted_backspace (fpp, u);
|
|
|
|
update_position (u);
|
|
u->endfile = NO_ENDFILE;
|
|
u->current_record = 0;
|
|
u->bytes_left = 0;
|
|
}
|
|
|
|
done:
|
|
if (u != NULL)
|
|
unlock_unit (u);
|
|
|
|
library_end ();
|
|
}
|
|
|
|
|
|
extern void st_endfile (st_parameter_filepos *);
|
|
export_proto(st_endfile);
|
|
|
|
void
|
|
st_endfile (st_parameter_filepos *fpp)
|
|
{
|
|
gfc_unit *u;
|
|
|
|
library_start (&fpp->common);
|
|
|
|
u = find_unit (fpp->common.unit);
|
|
if (u != NULL)
|
|
{
|
|
if (u->flags.access == ACCESS_DIRECT)
|
|
{
|
|
generate_error (&fpp->common, LIBERROR_OPTION_CONFLICT,
|
|
"Cannot perform ENDFILE on a file opened"
|
|
" for DIRECT access");
|
|
goto done;
|
|
}
|
|
|
|
/* If there are previously written bytes from a write with ADVANCE="no",
|
|
add a record marker before performing the ENDFILE. */
|
|
|
|
if (u->previous_nonadvancing_write)
|
|
finish_last_advance_record (u);
|
|
|
|
u->previous_nonadvancing_write = 0;
|
|
|
|
if (u->current_record)
|
|
{
|
|
st_parameter_dt dtp;
|
|
dtp.common = fpp->common;
|
|
memset (&dtp.u.p, 0, sizeof (dtp.u.p));
|
|
dtp.u.p.current_unit = u;
|
|
next_record (&dtp, 1);
|
|
}
|
|
|
|
flush (u->s);
|
|
struncate (u->s);
|
|
u->endfile = AFTER_ENDFILE;
|
|
update_position (u);
|
|
done:
|
|
unlock_unit (u);
|
|
}
|
|
|
|
library_end ();
|
|
}
|
|
|
|
|
|
extern void st_rewind (st_parameter_filepos *);
|
|
export_proto(st_rewind);
|
|
|
|
void
|
|
st_rewind (st_parameter_filepos *fpp)
|
|
{
|
|
gfc_unit *u;
|
|
|
|
library_start (&fpp->common);
|
|
|
|
u = find_unit (fpp->common.unit);
|
|
if (u != NULL)
|
|
{
|
|
if (u->flags.access == ACCESS_DIRECT)
|
|
generate_error (&fpp->common, LIBERROR_BAD_OPTION,
|
|
"Cannot REWIND a file opened for DIRECT access");
|
|
else
|
|
{
|
|
/* If there are previously written bytes from a write with ADVANCE="no",
|
|
add a record marker before performing the ENDFILE. */
|
|
|
|
if (u->previous_nonadvancing_write)
|
|
finish_last_advance_record (u);
|
|
|
|
u->previous_nonadvancing_write = 0;
|
|
|
|
/* Flush the buffers. If we have been writing to the file, the last
|
|
written record is the last record in the file, so truncate the
|
|
file now. Reset to read mode so two consecutive rewind
|
|
statements do not delete the file contents. */
|
|
flush (u->s);
|
|
if (u->mode == WRITING && u->flags.access != ACCESS_STREAM)
|
|
struncate (u->s);
|
|
|
|
u->mode = READING;
|
|
u->last_record = 0;
|
|
|
|
if (file_position (u->s) != 0 && sseek (u->s, 0) == FAILURE)
|
|
generate_error (&fpp->common, LIBERROR_OS, NULL);
|
|
|
|
/* Handle special files like /dev/null differently. */
|
|
if (!is_special (u->s))
|
|
{
|
|
/* We are rewinding so we are not at the end. */
|
|
u->endfile = NO_ENDFILE;
|
|
}
|
|
else
|
|
{
|
|
/* Set this for compatibilty with g77 for /dev/null. */
|
|
if (file_length (u->s) == 0 && file_position (u->s) == 0)
|
|
u->endfile = AT_ENDFILE;
|
|
/* Future refinements on special files can go here. */
|
|
}
|
|
|
|
u->current_record = 0;
|
|
u->strm_pos = 1;
|
|
u->read_bad = 0;
|
|
}
|
|
/* Update position for INQUIRE. */
|
|
u->flags.position = POSITION_REWIND;
|
|
unlock_unit (u);
|
|
}
|
|
|
|
library_end ();
|
|
}
|
|
|
|
|
|
extern void st_flush (st_parameter_filepos *);
|
|
export_proto(st_flush);
|
|
|
|
void
|
|
st_flush (st_parameter_filepos *fpp)
|
|
{
|
|
gfc_unit *u;
|
|
|
|
library_start (&fpp->common);
|
|
|
|
u = find_unit (fpp->common.unit);
|
|
if (u != NULL)
|
|
{
|
|
flush (u->s);
|
|
unlock_unit (u);
|
|
}
|
|
else
|
|
/* FLUSH on unconnected unit is illegal: F95 std., 9.3.5. */
|
|
generate_error (&fpp->common, LIBERROR_BAD_OPTION,
|
|
"Specified UNIT in FLUSH is not connected");
|
|
|
|
library_end ();
|
|
}
|