2012-07-31 08:16:03 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
|
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2012-07-31 08:16:03 -04:00
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
2012-07-31 08:16:03 -04:00
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
The Sortix C Library 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 Lesser General Public
|
|
|
|
License for more details.
|
2012-07-31 08:16:03 -04:00
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2012-09-28 18:36:46 -04:00
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2012-07-31 08:16:03 -04:00
|
|
|
|
|
|
|
fwrote.cpp
|
|
|
|
Writes data to a FILE.
|
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2012-12-07 07:10:06 -05:00
|
|
|
#include <assert.h>
|
2012-07-31 08:16:03 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
extern "C" size_t fwrite(const void* ptr, size_t size, size_t nmemb, FILE* fp)
|
|
|
|
{
|
2012-12-07 07:10:06 -05:00
|
|
|
if ( !fp->write_func )
|
|
|
|
return errno = EBADF, 0;
|
2012-07-31 08:16:03 -04:00
|
|
|
fp->flags &= ~_FILE_LAST_READ; fp->flags |= _FILE_LAST_WRITE;
|
|
|
|
char* str = (char*) ptr;
|
|
|
|
size_t total = size * nmemb;
|
|
|
|
size_t sofar = 0;
|
|
|
|
while ( sofar < total )
|
|
|
|
{
|
|
|
|
size_t left = total - sofar;
|
2012-12-07 07:10:06 -05:00
|
|
|
if ( fp->flags & _FILE_NO_BUFFER || !fp->buffersize )
|
2012-07-31 08:16:03 -04:00
|
|
|
{
|
2012-12-07 07:10:06 -05:00
|
|
|
size_t ret = sofar + fp->write_func(str + sofar, 1, left, fp->user);
|
|
|
|
return ret;
|
2012-07-31 08:16:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t available = fp->buffersize - fp->bufferused;
|
2012-12-07 07:10:06 -05:00
|
|
|
if ( !available )
|
|
|
|
{
|
|
|
|
if ( fflush(fp) == 0 ) continue;
|
|
|
|
else return sofar;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t count = available < left ? available : left;
|
2012-07-31 08:16:03 -04:00
|
|
|
for ( size_t i = 0; i < count; i++ )
|
|
|
|
{
|
|
|
|
char c = str[sofar++];
|
|
|
|
fp->buffer[fp->bufferused++] = c;
|
2012-12-07 07:10:06 -05:00
|
|
|
assert(fp->bufferused <= fp->buffersize);
|
|
|
|
if ( c == '\n' || fp->buffersize == fp->bufferused )
|
2012-07-31 08:16:03 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sofar;
|
|
|
|
}
|