1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
/* $Id: $ */
/* Copyright (C) 1997 Sverre Hvammen Johansen,
* Department of Informatics, University of Oslo.
*
* This program 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; version 2.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "file.h"
#include "simfile.h"
/******************************************************************************
BOOLEAN PROCEDURE DELETEIMAGE */
char
__rddeleteimage (p)
__bs5FILE *p;
{
long c1,
i,
l,
last;
FILE *f;
if (!((__bs1FILE *) p)->open)
__rerror ("Deleteimage: File not open");
if (((__bs2FILE *) p)->IMAGE.obj == __NULL)
__rerror ("Deleteimage: IMAGE equals notext");
if (p->loc > ((__bs5FILE *) p)->maxloc)
__rerror ("Deleteimage: File overflow");
if (p->loc < p->minwriteloc)
__rerror ("Deleteimage: Append underflow or read-only file");
if (((__bs5FILE *) p)->imagelength != ((__bs2FILE *) p)->IMAGE.length)
__rerror ("Deleteimage: Illegal length of image");
if (p->loc > (last = __rdlastloc (p)))
return (__FALSE);
if (p->lastop == __READ && fseek (((__bs1FILE *) p)->file, 0L, 1) == __EOF)
__rerror ("Deleteimage: Not possible to seek");
p->lastop = __WRITE;
l = ((__bs5FILE *) p)->imagelength;
f = ((__bs1FILE *) p)->file;
for (i = 1; i <= l; i++)
{
if (putc ('\0', f) == __EOF)
{
__rerror ("Deleteimage: Write error");
break;
}
}
if (putc ('\0', f) == __EOF)
__rerror ("Deleteimage: Write error");
((__bs2FILE *) p)->IMAGE.pos = 1;
if (p->loc == last)
{
for (i = p->loc - 1; i > 0; i--)
{
if (fseek (((__bs1FILE *) p)->file,
(((__bs5FILE *) p)->imagelength + 1) * i - 1, 0) == __EOF)
__rerror ("Deleteimage: Not possible to seek");
if ((c1 = getc (f)) == __EOF)
__rerror ("Deleteimage: Read error");
if (c1 != '\0')
break;
}
(void) fflush (f);
#if F_TRUNCATE
#ifdef mips /* Just to satisfy lint */
(void) ftruncate ((int) fileno (f), (int) ((i) * (l + 1)));
#else
(void) ftruncate ((int) fileno (f), ((i) * (l + 1)));
#endif
#endif
if (i != p->loc - 1)
{
if (fseek (((__bs1FILE *) p)->file,
(((__bs5FILE *) p)->imagelength + 1) * p->loc,
0) == __EOF)
__rerror ("Deleteimage: Not possible to seek");
p->lastop = __SEEK;
}
}
p->loc++;
return (__TRUE);
}
|