2012-11-10 17:06:01 +01:00
|
|
|
/****************************************************************************
|
2020-03-09 01:20:59 +01:00
|
|
|
* libs/libc/stdio/lib_rawinstream.c
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2020-03-09 01:20:59 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2020-03-09 01:20:59 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2020-03-09 01:20:59 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-10-11 20:13:41 +02:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2012-11-10 17:06:01 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2017-10-11 20:13:41 +02:00
|
|
|
#include <nuttx/fs/fs.h>
|
|
|
|
|
2015-12-30 00:31:17 +01:00
|
|
|
#include "libc.h"
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2020-03-09 01:20:59 +01:00
|
|
|
* Name: rawinstream_getc
|
2012-11-10 17:06:01 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-03-09 01:20:59 +01:00
|
|
|
static int rawinstream_getc(FAR struct lib_instream_s *this)
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
2020-03-09 01:20:59 +01:00
|
|
|
FAR struct lib_rawinstream_s *rthis = (FAR struct lib_rawinstream_s *)this;
|
2020-03-09 21:28:20 +01:00
|
|
|
int nread;
|
2012-11-10 17:06:01 +01:00
|
|
|
char ch;
|
|
|
|
|
|
|
|
DEBUGASSERT(this && rthis->fd >= 0);
|
|
|
|
|
|
|
|
/* Attempt to read one character */
|
|
|
|
|
2020-03-09 21:28:20 +01:00
|
|
|
nread = _NX_READ(rthis->fd, &ch, 1);
|
|
|
|
if (nread == 1)
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
|
|
|
this->nget++;
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return EOF on any failure to read from the incoming byte stream. The
|
|
|
|
* only expected error is EINTR meaning that the read was interrupted
|
2020-03-09 21:28:20 +01:00
|
|
|
* by a signal. A Zero return value would indicate an end-of-file
|
|
|
|
* condition.
|
2012-11-10 17:06:01 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2020-03-09 01:20:59 +01:00
|
|
|
* Name: lib_rawinstream
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initializes a stream for use with a file descriptor.
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Input Parameters:
|
2014-06-14 23:46:59 +02:00
|
|
|
* instream - User allocated, uninitialized instance of struct
|
2020-03-09 01:20:59 +01:00
|
|
|
* lib_rawinstream_s to be initialized.
|
2014-06-14 23:46:59 +02:00
|
|
|
* fd - User provided file/socket descriptor (must have been opened
|
|
|
|
* for the correct access).
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None (User allocated instance initialized).
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-03-09 01:20:59 +01:00
|
|
|
void lib_rawinstream(FAR struct lib_rawinstream_s *instream, int fd)
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
2020-03-09 01:20:59 +01:00
|
|
|
instream->public.get = rawinstream_getc;
|
2014-06-14 23:46:59 +02:00
|
|
|
instream->public.nget = 0;
|
|
|
|
instream->fd = fd;
|
2012-11-10 17:06:01 +01:00
|
|
|
}
|