nuttx/libs/libc/stdio/lib_rawsostream.c

105 lines
3.4 KiB
C
Raw Normal View History

2014-06-14 23:46:59 +02:00
/****************************************************************************
* libs/libc/stdio/lib_rawsostream.c
2014-06-14 23:46:59 +02: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
2014-06-14 23:46:59 +02:00
*
* http://www.apache.org/licenses/LICENSE-2.0
2014-06-14 23:46:59 +02: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.
2014-06-14 23:46:59 +02:00
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
2014-06-14 23:46:59 +02:00
#include <unistd.h>
#include <assert.h>
#include <errno.h>
#include <nuttx/fs/fs.h>
#include "libc.h"
2014-06-14 23:46:59 +02:00
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Name: rawoutstream_putc
****************************************************************************/
static void rawoutstream_putc(FAR struct lib_outstream_s *this, int ch)
{
FAR struct lib_rawoutstream_s *rthis =
(FAR struct lib_rawoutstream_s *)this;
2014-06-14 23:46:59 +02:00
char buffer = ch;
2014-09-04 18:28:38 +02:00
int nwritten;
int errcode;
2014-06-14 23:46:59 +02:00
DEBUGASSERT(this && rthis->fd >= 0);
/* Loop until the character is successfully transferred or until an
* irrecoverable error occurs.
*/
do
{
nwritten = _NX_WRITE(rthis->fd, &buffer, 1);
2014-06-14 23:46:59 +02:00
if (nwritten == 1)
{
this->nput++;
return;
}
/* The only expected error is EINTR, meaning that the write operation
* was awakened by a signal. Zero or values > 1 would not be valid
* return values from _NX_WRITE().
2014-06-14 23:46:59 +02:00
*/
errcode = _NX_GETERRNO(nwritten);
2014-06-14 23:46:59 +02:00
DEBUGASSERT(nwritten < 0);
}
2014-09-04 18:28:38 +02:00
while (errcode == EINTR);
2014-06-14 23:46:59 +02:00
}
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: lib_rawoutstream
*
* Description:
* Initializes a stream for use with a file descriptor.
*
* Input Parameters:
2014-06-14 23:46:59 +02:00
* outstream - User allocated, uninitialized instance of struct
* lib_rawoutstream_s to be initialized.
* fd - User provided file/socket descriptor (must have been opened
* for write access).
*
* Returned Value:
* None (User allocated instance initialized).
*
****************************************************************************/
void lib_rawoutstream(FAR struct lib_rawoutstream_s *outstream, int fd)
{
outstream->public.put = rawoutstream_putc;
outstream->public.flush = lib_noflush;
outstream->public.nput = 0;
outstream->fd = fd;
}