campo-sirio/cb5/f4write.c
alex a0f5e0898b This commit was generated by cvs2svn to compensate for changes in r975,
which included commits to RCS files with non-trunk default branches.

git-svn-id: svn://10.65.10.50/trunk@976 c028cbd2-c16b-5b4b-a496-9718f37d4682
1995-02-06 15:33:45 +00:00

141 lines
3.0 KiB
C
Executable File

/* f4write.c (c)Copyright Sequiter Software Inc., 1990-1994. All rights reserved. */
#include "d4all.h"
#ifndef S4UNIX
#ifdef __TURBOC__
#pragma hdrstop
#endif
#endif
#ifdef S4TEMP
#include "t4test.h"
#endif
#include <time.h>
#ifndef S4UNIX
#ifndef __IBMC__
#ifndef __TURBOC__
#include <sys\locking.h>
#define S4LOCKING
#endif
#ifdef __ZTC__
extern int errno ;
#endif
#ifdef _MSC_VER
#include <sys\types.h>
#include <sys\locking.h>
#endif
#ifdef __TURBOC__
/* extern int cdecl errno ; */
#endif
#endif
#include <sys\stat.h>
#include <share.h>
#endif
#include <fcntl.h>
#include <errno.h>
#ifdef S4ERRNO
extern int errno ;
#endif
int S4FUNCTION file4write( FILE4 *file, long pos, void *ptr, unsigned ptr_len )
{
unsigned urc ;
#ifdef S4MACINTOSH
long long_ptr_len ;
#endif
if ( file->code_base->error_code < 0 )
return -1 ;
if ( file->is_read_only )
return e4( file->code_base, e4parm, E4_PARM_WRT ) ;
#ifdef S4DEBUG
if( file == 0 || pos < 0 || ( ptr == 0 && ptr_len ) )
e4severe( e4parm, E4_F4WRITE ) ;
if ( file->hand < 0 )
e4severe( e4parm, E4_F4WRITE ) ;
#endif
#ifndef S4OPTIMIZE_OFF
if ( file->do_buffer )
{
urc = opt4file_write( file, pos, ptr_len, ptr, file->buffer_writes ) ;
if ( urc != ptr_len )
return e4( file->code_base, e4write, file->name ) ;
}
if ( file->do_buffer == 0 || file->write_buffer == 0 || file->buffer_writes == 0 )
{
if ( file->file_created == 0 )
{
file->code_base->opt.force_current = 1 ;
file4temp( file, file->code_base, file->name, 1 ) ;
file->code_base->opt.force_current = 0 ;
}
#endif
#ifdef S4WINDOWS
if ( _llseek( file->hand, pos, 0 ) != pos )
#else
#ifdef S4MACINTOSH
if ( MAClseek( file->hand, pos, 0, 1 ) != pos )
#else
#ifdef S4WIN32
if ( SetFilePointer( (HANDLE)file->hand, pos, NULL, FILE_BEGIN ) == (DWORD)-1 )
#else
#ifdef S4LSEEK
if ( f4lseek( file->hand, pos, 0, 1 ) != pos )
#else
if ( lseek( file->hand, pos, 0 ) != pos )
#endif
#endif
#endif
#endif
return e4( file->code_base, e4write, file->name ) ;
#ifdef S4WINDOWS
urc = (unsigned) _lwrite( file->hand, (char *) ptr, ptr_len ) ;
#else
#ifdef S4MACINTOSH
long_ptr_len = (long ) ptr_len ;
urc = FSWrite( file->hand, &long_ptr_len, ptr ) ;
if ( urc == 0 ) urc = ptr_len ;
#else
#ifdef S4WIN32
WriteFile( (HANDLE)file->hand, ptr, ptr_len, (unsigned long *)&urc, NULL ) ;
#else
urc = (unsigned) write( file->hand, ptr, ptr_len ) ;
#endif
#endif
#endif
if ( urc != ptr_len )
return e4( file->code_base, e4write, file->name ) ;
if ( file->code_base->file_flush != 0 ) /* comment out for VAX */
file4flush( file ) ;
#ifndef S4OPTIMIZE_OFF
}
#endif
#ifndef S4OPTIMIZE_OFF
#ifdef S4DEBUG_DEV
if ( file->has_dup == 1 )
if ( file->do_buffer == 1 || file->link.n == 0 )
if ( file4write_part( ptr, file, pos, urc ) != 0 )
e4severe( e4opt, "file4write() - file corruption" ) ;
#endif
#endif
return 0 ;
}