cake
/
libcasio
Archived
1
1
Fork 0
This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
libcasio/lib/stream/read.c

62 lines
1.9 KiB
C

/* ****************************************************************************
* stream/read.c -- read from a stream.
* Copyright (C) 2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
*
* This file is part of libcasio.
* libcasio 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.0 of the License,
* or (at your option) any later version.
*
* libcasio 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.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libcasio; if not, see <http://www.gnu.org/licenses/>.
* ************************************************************************* */
#include "stream.h"
/**
* casio_read:
* Read from a libcasio stream.
*
* @arg stream the stream to read from.
* @arg dest the destination buffer.
* @arg size the amount of bytes to read.
* @arg timeout the timeout for the entire read.
* @return the error code (0 if ok).
*/
int CASIO_EXPORT casio_read(casio_stream_t *stream, void *dest, size_t size,
unsigned int timeout)
{
int err;
casio_stream_read_t *rd;
/* Check if we can read. */
if (~stream->casio_stream_mode & CASIO_OPENMODE_READ
|| !(rd = stream->casio_stream_callbacks.casio_streamfuncs_read)) {
err = casio_error_read;
goto fail;
}
/* Read. */
if (!size)
return (0);
if ((err = (*rd)(stream->casio_stream_cookie, dest, size, timeout))) {
msg((ll_error, "Stream reading failure: %s", casio_strerror(err)));
goto fail;
}
/* move the cursor and return */
stream->casio_stream_offset += size;
err = 0;
fail:
stream->casio_stream_lasterr = err;
return (err);
}