2004-05-13 08:41:07 +02:00
|
|
|
/* Copyright (C) 2002-2003 Free Software Foundation, Inc.
|
|
|
|
Contributed by Andy Vaught
|
|
|
|
|
|
|
|
This file is part of the GNU Fortran 95 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.
|
|
|
|
|
2005-01-12 22:27:33 +01:00
|
|
|
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.)
|
|
|
|
|
2004-05-13 08:41:07 +02:00
|
|
|
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, 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#include "config.h"
|
2005-04-08 21:07:54 +02:00
|
|
|
#include <string.h>
|
2004-05-13 08:41:07 +02:00
|
|
|
#include "libgfortran.h"
|
|
|
|
#include "io.h"
|
|
|
|
|
|
|
|
/* backspace.c -- Implement the BACKSPACE statement */
|
|
|
|
|
|
|
|
/* formatted_backspace(void)-- 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. */
|
|
|
|
|
|
|
|
#define READ_CHUNK 4096
|
|
|
|
|
|
|
|
static void
|
|
|
|
formatted_backspace (void)
|
|
|
|
{
|
re PR libfortran/15235 (libgfortran doesn't build on Solaris 10)
PR fortran/15235
* gfortran.h (offset_t): Rename to ...
(gfc_offset): ... this.
* io/backspace.c (formatted_backspace, unformatted_backspace),
io/io.h (stream, gfc_unit, global_t, file_length, file_position),
transfer.c (us_read, us_write, next_record_r, next_record_w),
io/unit.c (init_units), unix.c (unix_stream, fd_alloc,
fd_alloc_r_at, fd_alloc_w_at, fd_seek, mmap_alloc,
mmap_alloc_r_at, mmap_alloc_w_at, mmap_seek, mem_alloc_r_at,
mem_alloc_w_at, mem_seek, file_length, file_position): Replace all
occurences of offset_t by gfc_offset.
From-SVN: r81994
2004-05-18 18:06:09 +02:00
|
|
|
gfc_offset base;
|
2004-05-13 08:41:07 +02:00
|
|
|
char *p;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
base = file_position (current_unit->s) - 1;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
n = (base < READ_CHUNK) ? base : READ_CHUNK;
|
|
|
|
base -= n;
|
|
|
|
|
|
|
|
p = salloc_r_at (current_unit->s, &n, base);
|
|
|
|
if (p == NULL)
|
|
|
|
goto io_error;
|
|
|
|
|
|
|
|
/* Because we've moved backwords from the current position, it
|
|
|
|
* should not be possible to get a short read. Because it isn't
|
|
|
|
* 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. */
|
|
|
|
|
|
|
|
n--;
|
|
|
|
while (n >= 0)
|
|
|
|
{
|
|
|
|
if (p[n] == '\n')
|
|
|
|
{
|
|
|
|
base += n + 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
while (base != 0);
|
|
|
|
|
c99_functions.c, [...]: Whitespace fixes.
* intrinsics/c99_functions.c, intrinsics/eoshift0.c,
intrinsics/eoshift2.c, intrinsics/exit.c, intrinsics/flush.c,
intrinsics/ishftc.c, intrinsics/mvbits.c, intrinsics/pack_generic.c,
intrinsics/random.c, intrinsics/reshape_generic.c, intrinsics/size.c,
intrinsics/spread_generic.c, intrinsics/stat.c,
intrinsics/string_intrinsics.c, intrinsics/system_clock.c,
intrinsics/transpose_generic.c, intrinsics/unlink.c,
intrinsics/unpack_generic.c, io/backspace.c, io/format.c,
io/list_read.c, io/lock.c, io/open.c, io/transfer.c, io/unix.c,
io/write.c, runtime/environ.c, runtime/error.c,
runtime/in_pack_generic.c, runtime/in_unpack_generic.c, runtime/main.c,
runtime/memory.c, runtime/pause.c, runtime/stop.c,
runtime/string.c: Whitespace fixes.
From-SVN: r91794
2004-12-07 01:01:01 +01:00
|
|
|
/* base is the new pointer. Seek to it exactly */
|
|
|
|
done:
|
2004-05-13 08:41:07 +02:00
|
|
|
if (sseek (current_unit->s, base) == FAILURE)
|
|
|
|
goto io_error;
|
|
|
|
current_unit->last_record--;
|
2004-12-02 05:29:00 +01:00
|
|
|
current_unit->endfile = NO_ENDFILE;
|
2004-05-13 08:41:07 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
c99_functions.c, [...]: Whitespace fixes.
* intrinsics/c99_functions.c, intrinsics/eoshift0.c,
intrinsics/eoshift2.c, intrinsics/exit.c, intrinsics/flush.c,
intrinsics/ishftc.c, intrinsics/mvbits.c, intrinsics/pack_generic.c,
intrinsics/random.c, intrinsics/reshape_generic.c, intrinsics/size.c,
intrinsics/spread_generic.c, intrinsics/stat.c,
intrinsics/string_intrinsics.c, intrinsics/system_clock.c,
intrinsics/transpose_generic.c, intrinsics/unlink.c,
intrinsics/unpack_generic.c, io/backspace.c, io/format.c,
io/list_read.c, io/lock.c, io/open.c, io/transfer.c, io/unix.c,
io/write.c, runtime/environ.c, runtime/error.c,
runtime/in_pack_generic.c, runtime/in_unpack_generic.c, runtime/main.c,
runtime/memory.c, runtime/pause.c, runtime/stop.c,
runtime/string.c: Whitespace fixes.
From-SVN: r91794
2004-12-07 01:01:01 +01:00
|
|
|
io_error:
|
2004-05-13 08:41:07 +02:00
|
|
|
generate_error (ERROR_OS, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* unformatted_backspace()-- 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. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
unformatted_backspace (void)
|
|
|
|
{
|
2005-04-08 21:07:54 +02:00
|
|
|
gfc_offset m, new;
|
2004-05-13 08:41:07 +02:00
|
|
|
int length;
|
2005-04-08 21:07:54 +02:00
|
|
|
char *p;
|
2004-05-13 08:41:07 +02:00
|
|
|
|
re PR libfortran/15235 (libgfortran doesn't build on Solaris 10)
PR fortran/15235
* gfortran.h (offset_t): Rename to ...
(gfc_offset): ... this.
* io/backspace.c (formatted_backspace, unformatted_backspace),
io/io.h (stream, gfc_unit, global_t, file_length, file_position),
transfer.c (us_read, us_write, next_record_r, next_record_w),
io/unit.c (init_units), unix.c (unix_stream, fd_alloc,
fd_alloc_r_at, fd_alloc_w_at, fd_seek, mmap_alloc,
mmap_alloc_r_at, mmap_alloc_w_at, mmap_seek, mem_alloc_r_at,
mem_alloc_w_at, mem_seek, file_length, file_position): Replace all
occurences of offset_t by gfc_offset.
From-SVN: r81994
2004-05-18 18:06:09 +02:00
|
|
|
length = sizeof (gfc_offset);
|
2004-05-13 08:41:07 +02:00
|
|
|
|
2005-04-08 21:07:54 +02:00
|
|
|
p = salloc_r_at (current_unit->s, &length,
|
|
|
|
file_position (current_unit->s) - length);
|
2004-05-13 08:41:07 +02:00
|
|
|
if (p == NULL)
|
|
|
|
goto io_error;
|
|
|
|
|
2005-04-08 21:07:54 +02:00
|
|
|
memcpy (&m, p, sizeof (gfc_offset));
|
|
|
|
new = file_position (current_unit->s) - m - 2*length;
|
2004-05-13 08:41:07 +02:00
|
|
|
if (sseek (current_unit->s, new) == FAILURE)
|
|
|
|
goto io_error;
|
|
|
|
|
|
|
|
current_unit->last_record--;
|
|
|
|
return;
|
|
|
|
|
c99_functions.c, [...]: Whitespace fixes.
* intrinsics/c99_functions.c, intrinsics/eoshift0.c,
intrinsics/eoshift2.c, intrinsics/exit.c, intrinsics/flush.c,
intrinsics/ishftc.c, intrinsics/mvbits.c, intrinsics/pack_generic.c,
intrinsics/random.c, intrinsics/reshape_generic.c, intrinsics/size.c,
intrinsics/spread_generic.c, intrinsics/stat.c,
intrinsics/string_intrinsics.c, intrinsics/system_clock.c,
intrinsics/transpose_generic.c, intrinsics/unlink.c,
intrinsics/unpack_generic.c, io/backspace.c, io/format.c,
io/list_read.c, io/lock.c, io/open.c, io/transfer.c, io/unix.c,
io/write.c, runtime/environ.c, runtime/error.c,
runtime/in_pack_generic.c, runtime/in_unpack_generic.c, runtime/main.c,
runtime/memory.c, runtime/pause.c, runtime/stop.c,
runtime/string.c: Whitespace fixes.
From-SVN: r91794
2004-12-07 01:01:01 +01:00
|
|
|
io_error:
|
2004-05-13 08:41:07 +02:00
|
|
|
generate_error (ERROR_OS, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
acinclude.m4 (LIBGFOR_CHECK_ATTRIBUTE_VISIBILITY): New.
* acinclude.m4 (LIBGFOR_CHECK_ATTRIBUTE_VISIBILITY): New.
(LIBGFOR_CHECK_ATTRIBUTE_DLLEXPORT): New.
(LIBGFOR_CHECK_ATTRIBUTE_ALIAS): New.
* configure.ac: Use them.
* configure, config.h.in, aclocal.m4: Rebuild.
* libgfortran.h (prefix): Remove.
(PREFIX, IPREFIX): New.
(sym_rename, sym_rename1, sym_rename2): New.
(internal_proto, export_proto, export_proto_np): New.
(iexport_proto, iexport): New.
(iexport_data_proto, iexport_data): New.
* intrinsics/abort.c, intrinsics/args.c, intrinsics/associated.c,
intrinsics/cpu_time.c, intrinsics/cshift0.c,
intrinsics/date_and_time.c, intrinsics/env.c, intrinsics/eoshift0.c,
intrinsics/eoshift2.c, intrinsics/etime.c, intrinsics/exit.c,
intrinsics/flush.c, intrinsics/fnum.c, intrinsics/getXid.c,
intrinsics/getcwd.c, intrinsics/ishftc.c, intrinsics/mvbits.c,
intrinsics/pack_generic.c, intrinsics/rand.c, intrinsics/random.c,
intrinsics/reshape_generic.c, intrinsics/size.c,
intrinsics/spread_generic.c, intrinsics/stat.c,
intrinsics/string_intrinsics.c, intrinsics/system.c,
intrinsics/system_clock.c, intrinsics/transpose_generic.c,
intrinsics/umask.c, intrinsics/unlink.c, intrinsics/unpack_generic.c,
io/backspace.c, io/close.c, io/endfile.c, io/inquire.c, io/io.h,
io/open.c, io/rewind.c, io/transfer.c, libgfortran.h, m4/cshift1.m4,
m4/dotprod.m4, m4/dotprodc.m4, m4/dotprodl.m4, m4/eoshift1.m4,
m4/eoshift3.m4, m4/exponent.m4, m4/fraction.m4, m4/iforeach.m4,
m4/ifunction.m4, m4/matmul.m4, m4/matmull.m4, m4/nearest.m4,
m4/pow.m4, m4/reshape.m4, m4/set_exponent.m4, m4/shape.m4,
m4/transpose.m4, runtime/environ.c, runtime/error.c,
runtime/in_pack_generic.c, runtime/in_unpack_generic.c,
runtime/main.c, runtime/memory.c, runtime/pause.c, runtime/select.c,
runtime/stop.c: Use them to mark symbols internal or external.
* generated/*: Rebuild.
From-SVN: r92045
2004-12-12 09:59:05 +01:00
|
|
|
extern void st_backspace (void);
|
|
|
|
export_proto(st_backspace);
|
|
|
|
|
2004-05-13 08:41:07 +02:00
|
|
|
void
|
|
|
|
st_backspace (void)
|
|
|
|
{
|
re PR libfortran/15234 (libgfortran doesn't compile on Tru64 UNIX V4.0F)
PR fortran/15234
* io/io.h (unit_t): Rename to ...
(gfc_unit) ... this.
(unit_root, current_unit, find_file, find_unit, get_unit): Now
of type gfc_unit.
(delete_file, insert_unit, close_unit): Argument now of type
gfc_unit.
* backspace.c (st_backspace), close.c (st_close), endfile.c
(st_endfile), inquire.c (inquire_via_unit, st_inquire), open.c
(test_endfile, edit_modes, new_unit, already_open, st_open),
rewind.c (st_rewind), transfer.c (current_unit), unit.c
(internal_unit, unit_cache, rotate_left, rotate_right, insert,
insert_unit, delete_root, delete_treap, delete_unit, find_unit,
get_unit, init_units, close_unit), unix.c (find_file0,
find_file, delete_file): Replace all occurences of unit_t by
gfc_unit.
From-SVN: r81903
2004-05-15 22:44:38 +02:00
|
|
|
gfc_unit *u;
|
2004-05-13 08:41:07 +02:00
|
|
|
|
|
|
|
library_start ();
|
|
|
|
|
|
|
|
u = find_unit (ioparm.unit);
|
|
|
|
if (u == NULL)
|
|
|
|
{
|
|
|
|
generate_error (ERROR_BAD_UNIT, NULL);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_unit = u;
|
|
|
|
|
|
|
|
/* Ignore direct access. Non-advancing I/O is only allowed for
|
|
|
|
* formatted sequential I/O and the next direct access transfer
|
|
|
|
* repositions the file anyway. */
|
|
|
|
|
|
|
|
if (u->flags.access == ACCESS_DIRECT)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/* Check for special cases involving the ENDFILE record first */
|
|
|
|
|
|
|
|
if (u->endfile == AFTER_ENDFILE)
|
|
|
|
u->endfile = AT_ENDFILE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (file_position (u->s) == 0)
|
|
|
|
goto done; /* Common special case */
|
|
|
|
|
2005-04-03 10:07:43 +02:00
|
|
|
if (u->mode == WRITING)
|
|
|
|
{
|
|
|
|
flush (u->s);
|
|
|
|
struncate (u->s);
|
|
|
|
u->mode = READING;
|
|
|
|
}
|
|
|
|
|
2004-06-09 02:55:04 +02:00
|
|
|
if (u->flags.form == FORM_FORMATTED)
|
2004-05-13 08:41:07 +02:00
|
|
|
formatted_backspace ();
|
|
|
|
else
|
|
|
|
unformatted_backspace ();
|
2005-04-03 10:07:43 +02:00
|
|
|
|
|
|
|
u->endfile = NO_ENDFILE;
|
|
|
|
u->current_record = 0;
|
2004-05-13 08:41:07 +02:00
|
|
|
}
|
|
|
|
|
c99_functions.c, [...]: Whitespace fixes.
* intrinsics/c99_functions.c, intrinsics/eoshift0.c,
intrinsics/eoshift2.c, intrinsics/exit.c, intrinsics/flush.c,
intrinsics/ishftc.c, intrinsics/mvbits.c, intrinsics/pack_generic.c,
intrinsics/random.c, intrinsics/reshape_generic.c, intrinsics/size.c,
intrinsics/spread_generic.c, intrinsics/stat.c,
intrinsics/string_intrinsics.c, intrinsics/system_clock.c,
intrinsics/transpose_generic.c, intrinsics/unlink.c,
intrinsics/unpack_generic.c, io/backspace.c, io/format.c,
io/list_read.c, io/lock.c, io/open.c, io/transfer.c, io/unix.c,
io/write.c, runtime/environ.c, runtime/error.c,
runtime/in_pack_generic.c, runtime/in_unpack_generic.c, runtime/main.c,
runtime/memory.c, runtime/pause.c, runtime/stop.c,
runtime/string.c: Whitespace fixes.
From-SVN: r91794
2004-12-07 01:01:01 +01:00
|
|
|
done:
|
2004-05-13 08:41:07 +02:00
|
|
|
library_end ();
|
|
|
|
}
|