2012-03-24 10:34:30 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012, 2013.
|
2012-03-24 10:34:30 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2012-03-24 10:34:30 -04:00
|
|
|
|
2013-07-10 09:26:01 -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-03-24 10:34:30 -04:00
|
|
|
|
2013-07-10 09:26:01 -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-03-24 10:34:30 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
2012-03-24 10:34:30 -04:00
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
ioleast.h
|
2013-07-10 09:26:01 -04:00
|
|
|
Versions of {,p}{read,write} that don't return until it has returned as much
|
|
|
|
data as requested, end of file, or an error occurs. This is sometimes needed
|
|
|
|
as read(2) and write(2) is not always guaranteed to fill up the entire
|
|
|
|
buffer or write it all.
|
2012-03-24 10:34:30 -04:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
#ifndef SORTIX_COMPATIBILITY_INCLUDE_IOLEAST_H
|
|
|
|
#define SORTIX_COMPATIBILITY_INCLUDE_IOLEAST_H
|
|
|
|
|
|
|
|
#if defined(__sortix__) || defined(__sortix_libc__)
|
|
|
|
|
|
|
|
#include_next <ioleast.h>
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2012-03-24 10:34:30 -04:00
|
|
|
#include <sys/types.h>
|
2013-09-25 17:40:27 -04:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stddef.h>
|
2012-03-24 10:34:30 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
#if !defined(EEOF) && defined(EIO)
|
2012-03-24 10:34:30 -04:00
|
|
|
#define EEOF EIO
|
|
|
|
#endif
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t readleast(int fd, void* buf, size_t least, size_t max)
|
2012-03-24 10:34:30 -04:00
|
|
|
{
|
|
|
|
ssize_t amount = read(fd, buf, max);
|
2013-09-25 17:40:27 -04:00
|
|
|
if ( amount < 0 )
|
|
|
|
return 0;
|
|
|
|
if ( least && !amount )
|
|
|
|
return errno = EEOF, 0;
|
2012-03-24 10:34:30 -04:00
|
|
|
if ( (size_t) amount < least )
|
|
|
|
{
|
|
|
|
void* nextbuf = (uint8_t*) buf + amount;
|
|
|
|
size_t nextleast = least - amount;
|
|
|
|
size_t nextmax = max - amount;
|
2012-08-01 08:32:52 -04:00
|
|
|
amount += readleast(fd, nextbuf, nextleast, nextmax);
|
2012-03-24 10:34:30 -04:00
|
|
|
}
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t writeleast(int fd, const void* buf, size_t least, size_t max)
|
2012-03-24 10:34:30 -04:00
|
|
|
{
|
2013-09-25 17:40:27 -04:00
|
|
|
ssize_t amount = write(fd, buf, max);
|
|
|
|
if ( amount < 0 )
|
|
|
|
return 0;
|
|
|
|
if ( least && !amount )
|
|
|
|
return errno = EEOF, 0;
|
|
|
|
if ( (size_t) amount < least )
|
|
|
|
{
|
|
|
|
const void* nextbuf = (const uint8_t*) buf + amount;
|
|
|
|
size_t nextleast = least - amount;
|
|
|
|
size_t nextmax = max - amount;
|
|
|
|
amount += writeleast(fd, nextbuf, nextleast, nextmax);
|
|
|
|
}
|
|
|
|
return amount;
|
2012-03-24 10:34:30 -04:00
|
|
|
}
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t preadleast(int fd, void* buf, size_t least, size_t max, off_t off)
|
2012-03-24 10:34:30 -04:00
|
|
|
{
|
|
|
|
ssize_t amount = pread(fd, buf, max, off);
|
2013-09-25 17:40:27 -04:00
|
|
|
if ( amount < 0 )
|
|
|
|
return 0;
|
|
|
|
if ( least && !amount )
|
|
|
|
return errno = EEOF, 0;
|
2012-03-24 10:34:30 -04:00
|
|
|
if ( (size_t) amount < least )
|
|
|
|
{
|
|
|
|
void* nextbuf = (uint8_t*) buf + amount;
|
|
|
|
size_t nextleast = least - amount;
|
|
|
|
size_t nextmax = max - amount;
|
|
|
|
off_t nextoff = off + amount;
|
2012-08-01 08:32:52 -04:00
|
|
|
amount += preadleast(fd, nextbuf, nextleast, nextmax, nextoff);
|
2012-03-24 10:34:30 -04:00
|
|
|
}
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t pwriteleast(int fd, const void* buf, size_t least, size_t max, off_t off)
|
2012-03-24 10:34:30 -04:00
|
|
|
{
|
2013-09-25 17:40:27 -04:00
|
|
|
ssize_t amount = pwrite(fd, buf, max, off);
|
|
|
|
if ( amount < 0 )
|
|
|
|
return 0;
|
|
|
|
if ( least && !amount )
|
|
|
|
return errno = EEOF, 0;
|
2012-03-24 10:34:30 -04:00
|
|
|
if ( (size_t) amount < least )
|
|
|
|
{
|
|
|
|
const void* nextbuf = (const uint8_t*) buf + amount;
|
|
|
|
size_t nextleast = least - amount;
|
|
|
|
size_t nextmax = max - amount;
|
2013-09-25 17:40:27 -04:00
|
|
|
off_t nextoff = off + amount;
|
|
|
|
amount += pwriteleast(fd, nextbuf, nextleast, nextmax, nextoff);
|
2012-03-24 10:34:30 -04:00
|
|
|
}
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t readall(int fd, void* buf, size_t count)
|
|
|
|
{
|
|
|
|
return readleast(fd, buf, count, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t writeall(int fd, const void* buf, size_t count)
|
2012-03-24 10:34:30 -04:00
|
|
|
{
|
|
|
|
return writeleast(fd, buf, count, count);
|
|
|
|
}
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t preadall(int fd, void* buf, size_t count, off_t off)
|
2012-03-24 10:34:30 -04:00
|
|
|
{
|
2013-09-25 17:40:27 -04:00
|
|
|
return preadleast(fd, buf, count, count, off);
|
2012-03-24 10:34:30 -04:00
|
|
|
}
|
|
|
|
|
2013-09-25 17:40:27 -04:00
|
|
|
__attribute__((unused)) static inline
|
|
|
|
size_t pwriteall(int fd, const void* buf, size_t count, off_t off)
|
2012-03-24 10:34:30 -04:00
|
|
|
{
|
|
|
|
return pwriteleast(fd, buf, count, count, off);
|
|
|
|
}
|
2013-09-25 17:40:27 -04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|