2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* libc/misc/lib_stream.c
|
2012-11-10 17:06:01 +01:00
|
|
|
*
|
2014-09-11 16:37:06 +02:00
|
|
|
* Copyright (C) 2007, 2011, 2013-2014 Gregory Nutt. All rights reserved.
|
2012-11-10 17:06:01 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2014-09-11 16:37:06 +02:00
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
2012-11-10 17:06:01 +01:00
|
|
|
* Included Files
|
2014-09-11 16:37:06 +02:00
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <nuttx/kmalloc.h>
|
2014-09-11 16:37:06 +02:00
|
|
|
#include <nuttx/sched.h>
|
2012-11-10 17:06:01 +01:00
|
|
|
#include <nuttx/fs/fs.h>
|
|
|
|
#include <nuttx/lib.h>
|
|
|
|
|
|
|
|
#include "lib_internal.h"
|
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
#if (!defined(CONFIG_BUILD_PROTECTED) && !defined(CONFIG_BUILD_KERNEL)) || \
|
|
|
|
defined(__KERNEL__)
|
2013-03-10 16:32:33 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
2013-03-11 21:26:55 +01:00
|
|
|
* Pre-processor Definitions
|
2014-09-11 16:37:06 +02:00
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
2012-11-10 17:06:01 +01:00
|
|
|
* Private Variables
|
2014-09-11 16:37:06 +02:00
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
2012-11-10 17:06:01 +01:00
|
|
|
* Private Functions
|
2014-09-11 16:37:06 +02:00
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
2012-11-10 17:06:01 +01:00
|
|
|
* Public Functions
|
2014-09-11 16:37:06 +02:00
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
2013-03-11 21:26:55 +01:00
|
|
|
* Name: lib_initialize
|
2014-09-11 16:37:06 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* General library initialization hook
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
void weak_const_function lib_initialize(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: lib_stream_initialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is called when a new task is allocated. It initializes
|
|
|
|
* the streamlist instance that is stored in the task group.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2013-03-11 21:26:55 +01:00
|
|
|
|
2012-11-10 17:06:01 +01:00
|
|
|
#if CONFIG_NFILE_STREAMS > 0
|
2014-09-11 16:37:06 +02:00
|
|
|
void lib_stream_initialize(FAR struct task_group_s *group)
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
2014-09-11 16:37:06 +02:00
|
|
|
FAR struct streamlist *list;
|
2013-01-26 23:25:21 +01:00
|
|
|
int i;
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
#if (defined(CONFIG_BUILD_PROTECTED) || defined(CONFIG_BUILD_KERNEL)) && \
|
|
|
|
defined(CONFIG_MM_KERNEL_HEAP)
|
|
|
|
DEBUGASSERT(group && group->tg_streamlist);
|
|
|
|
list = group->tg_streamlist;
|
|
|
|
#else
|
|
|
|
DEBUGASSERT(group);
|
|
|
|
list = &group->tg_streamlist;
|
|
|
|
#endif
|
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
/* Initialize the list access mutex */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
(void)sem_init(&list->sl_sem, 0, 1);
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
/* Initialize each FILE structure */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
for (i = 0; i < CONFIG_NFILE_STREAMS; i++)
|
|
|
|
{
|
|
|
|
/* Clear the IOB */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
memset(&list->sl_streams[i], 0, sizeof(FILE));
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
/* Indicate not opened */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-09-29 00:50:07 +02:00
|
|
|
list->sl_streams[i].fs_fd = -1;
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
/* Initialize the stream semaphore to one to support one-at-
|
|
|
|
* a-time access to private data sets.
|
|
|
|
*/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
lib_sem_initialize(&list->sl_streams[i]);
|
2012-11-10 17:06:01 +01:00
|
|
|
}
|
|
|
|
}
|
2014-09-11 16:37:06 +02:00
|
|
|
#endif /* CONFIG_NFILE_STREAMS > 0 */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: lib_stream_init
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is called when a TCB is destroyed. Note that it does not
|
|
|
|
* close the files by releasing the inode. That happens separately when
|
|
|
|
* the file descriptor list is freed.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
#if CONFIG_NFILE_STREAMS > 0
|
|
|
|
void lib_stream_release(FAR struct task_group_s *group)
|
2012-11-10 17:06:01 +01:00
|
|
|
{
|
2014-09-11 16:37:06 +02:00
|
|
|
FAR struct streamlist *list;
|
2012-11-10 17:06:01 +01:00
|
|
|
#if CONFIG_STDIO_BUFFER_SIZE > 0
|
2013-01-26 23:25:21 +01:00
|
|
|
int i;
|
2012-11-10 17:06:01 +01:00
|
|
|
#endif
|
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
#if (defined(CONFIG_BUILD_PROTECTED) || defined(CONFIG_BUILD_KERNEL)) && \
|
|
|
|
defined(CONFIG_MM_KERNEL_HEAP)
|
|
|
|
DEBUGASSERT(group && group->tg_streamlist);
|
|
|
|
list = group->tg_streamlist;
|
|
|
|
#else
|
|
|
|
DEBUGASSERT(group);
|
|
|
|
list = &group->tg_streamlist;
|
|
|
|
#endif
|
2013-01-26 23:25:21 +01:00
|
|
|
|
|
|
|
/* Destroy the semaphore and release the filelist */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
(void)sem_destroy(&list->sl_sem);
|
|
|
|
|
|
|
|
/* Release each stream in the list */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
|
|
|
#if CONFIG_STDIO_BUFFER_SIZE > 0
|
2013-01-26 23:25:21 +01:00
|
|
|
for (i = 0; i < CONFIG_NFILE_STREAMS; i++)
|
|
|
|
{
|
|
|
|
/* Destroy the semaphore that protects the IO buffer */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2013-01-26 23:25:21 +01:00
|
|
|
(void)sem_destroy(&list->sl_streams[i].fs_sem);
|
|
|
|
|
|
|
|
/* Release the IO buffer */
|
|
|
|
|
|
|
|
if (list->sl_streams[i].fs_bufstart)
|
|
|
|
{
|
2013-03-10 16:32:33 +01:00
|
|
|
sched_ufree(list->sl_streams[i].fs_bufstart);
|
2013-01-26 23:25:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2012-11-10 17:06:01 +01:00
|
|
|
}
|
2014-09-11 16:37:06 +02:00
|
|
|
#endif /* CONFIG_NFILE_STREAMS > 0 */
|
2012-11-10 17:06:01 +01:00
|
|
|
|
2014-09-11 16:37:06 +02:00
|
|
|
#endif /* (!CONFIG_BUILD_PROTECTED &&7 !CONFIG_BUILD_KERNEL) || __KERNEL__ */
|