-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libc: add support for custom streams with fopencookie()
This commit adds support for custom stream via fopencookie function. The function allows the programmer the create his own custom stream for IO operations and hook his custom functions to it. This is a non POSIX interface defined in Standard C library and implemented according to it. The only difference is in usage of off_t instead of off64_t. Programmer can use 64 bits offset if CONFIG_FS_LARGEFILE is enabled. In that case off_t is defined as int64_t (int32_t otherwise). The interface will be useful for future fmemopen implementation. Signed-off-by: Michal Lenc <[email protected]>
- Loading branch information
1 parent
573317c
commit 87526a1
Showing
4 changed files
with
256 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
/**************************************************************************** | ||
* libs/libc/stdio/lib_fopencookie.c | ||
* | ||
* 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 | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* 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. | ||
* | ||
****************************************************************************/ | ||
|
||
/**************************************************************************** | ||
* Included Files | ||
****************************************************************************/ | ||
|
||
#include <nuttx/config.h> | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <unistd.h> | ||
#include <fcntl.h> | ||
#include <string.h> | ||
#include <assert.h> | ||
#include <errno.h> | ||
|
||
#include "libc.h" | ||
|
||
/**************************************************************************** | ||
* Private Types | ||
****************************************************************************/ | ||
|
||
struct cookie_s | ||
{ | ||
FAR void *cookie; /* Pointer to the caller's cookie struct */ | ||
cookie_io_functions_t cookie_io; /* Programmer-defined hook functions */ | ||
int cookie_fd; /* File descriptor */ | ||
}; | ||
|
||
static ssize_t freadcookie(FAR struct file *filep, FAR char *buf, | ||
size_t nbytes); | ||
static ssize_t fwritecookie(FAR struct file *filep, FAR const char *buf, | ||
size_t nbytes); | ||
static off_t fseekcookie(FAR struct file *filep, off_t offset, int whence); | ||
static int fclosecookie(FAR struct file *filep); | ||
|
||
/**************************************************************************** | ||
* Private Data | ||
****************************************************************************/ | ||
|
||
static const struct file_operations cookie_fops = | ||
{ | ||
NULL, /* open */ | ||
fclosecookie, /* close */ | ||
freadcookie, /* read */ | ||
fwritecookie, /* write */ | ||
fseekcookie, /* seek */ | ||
NULL, /* ioctl */ | ||
NULL, /* mmap */ | ||
NULL, /* truncate */ | ||
NULL, /* poll */ | ||
}; | ||
|
||
/**************************************************************************** | ||
* Private Functions | ||
****************************************************************************/ | ||
|
||
static ssize_t freadcookie(FAR struct file *filep, FAR char *buf, | ||
size_t nbytes) | ||
{ | ||
FAR struct cookie_s *cookie = (FAR struct cookie_s *)filep->f_priv; | ||
int ret; | ||
|
||
DEBUGASSERT(cookie->cookie != NULL && cookie->cookie_io.read != NULL); | ||
|
||
ret = cookie->cookie_io.read(cookie->cookie, buf, nbytes); | ||
return ret; | ||
} | ||
|
||
static ssize_t fwritecookie(FAR struct file *filep, FAR const char *buf, | ||
size_t nbytes) | ||
{ | ||
FAR struct cookie_s *cookie = (FAR struct cookie_s *)filep->f_priv; | ||
int ret; | ||
|
||
DEBUGASSERT(cookie->cookie != NULL && cookie->cookie_io.write != NULL); | ||
|
||
ret = cookie->cookie_io.write(cookie->cookie, (FAR const char *)buf, | ||
nbytes); | ||
return ret; | ||
} | ||
|
||
static off_t fseekcookie(FAR struct file *filep, off_t offset, int whence) | ||
{ | ||
FAR struct cookie_s *cookie = (FAR struct cookie_s *)filep->f_priv; | ||
int ret; | ||
|
||
DEBUGASSERT(cookie->cookie != NULL && cookie->cookie_io.seek != NULL); | ||
|
||
ret = cookie->cookie_io.seek(cookie->cookie, &offset, whence); | ||
return ret; | ||
} | ||
|
||
static int fclosecookie(FAR struct file *filep) | ||
{ | ||
FAR struct cookie_s *cookie = (FAR struct cookie_s *)filep->f_priv; | ||
int ret; | ||
|
||
DEBUGASSERT(cookie->cookie != NULL && cookie->cookie_io.close != NULL); | ||
|
||
ret = cookie->cookie_io.close(cookie->cookie); | ||
|
||
free(filep->f_priv); | ||
free(filep->f_inode); | ||
close(cookie->cookie_fd); | ||
|
||
return ret; | ||
} | ||
|
||
/**************************************************************************** | ||
* Public Functions | ||
****************************************************************************/ | ||
|
||
/**************************************************************************** | ||
* Name: fopencookie | ||
****************************************************************************/ | ||
|
||
FAR FILE *fopencookie(FAR void *cookie, FAR const char *mode, | ||
cookie_io_functions_t io_funcs) | ||
{ | ||
FAR FILE *filestructp = NULL; | ||
FAR struct file filep; | ||
FAR struct inode *inode; | ||
FAR struct cookie_s *cookie_priv; | ||
int oflags; | ||
int ret; | ||
int fd; | ||
|
||
/* Map the open mode string to open flags */ | ||
|
||
oflags = lib_mode2oflags(mode); | ||
if (oflags < 0) | ||
{ | ||
return NULL; | ||
} | ||
|
||
/* Allocate necessary structures. */ | ||
|
||
inode = lib_zalloc(sizeof(struct inode)); | ||
if (inode == NULL) | ||
{ | ||
set_errno(-ENOMEM); | ||
goto fopencookie_return; | ||
} | ||
|
||
cookie_priv = lib_zalloc(sizeof(struct cookie_s)); | ||
if (cookie_priv == NULL) | ||
{ | ||
free(inode); | ||
set_errno(-ENOMEM); | ||
goto fopencookie_return; | ||
} | ||
|
||
memset(&filep, 0, sizeof(filep)); | ||
|
||
/* Fill cookie_priv structure. We need to add cookie provided by user | ||
* and functions providd by user. | ||
*/ | ||
|
||
cookie_priv->cookie = cookie; | ||
cookie_priv->cookie_io.read = io_funcs.read; | ||
cookie_priv->cookie_io.write = io_funcs.write; | ||
cookie_priv->cookie_io.seek = io_funcs.seek; | ||
cookie_priv->cookie_io.close = io_funcs.close; | ||
|
||
/* Add file operations */ | ||
|
||
inode->u.i_ops = &cookie_fops; | ||
|
||
filep.f_oflags = oflags; | ||
filep.f_inode = inode; | ||
filep.f_priv = cookie_priv; | ||
|
||
/* And get file descriptor. */ | ||
|
||
fd = file_allocate_from_tcb(nxsched_self(), filep.f_inode, filep.f_oflags, | ||
0, filep.f_priv, 0, false); | ||
if (fd < 0) | ||
{ | ||
set_errno(fd); | ||
filestructp = NULL; | ||
goto fopencookie_return_err; | ||
} | ||
|
||
cookie_priv->cookie_fd = fd; | ||
|
||
/* Call fs_fdopen to ensure initialization of file structure. */ | ||
|
||
ret = fs_fdopen(fd, oflags, NULL, &filestructp); | ||
if (ret < 0) | ||
{ | ||
/* Don't forget to close the file descriptor if any other | ||
* failures are reported by fdopen(). | ||
*/ | ||
|
||
close(fd); | ||
|
||
set_errno(-ret); | ||
filestructp = NULL; | ||
goto fopencookie_return_err; | ||
} | ||
|
||
goto fopencookie_return; | ||
|
||
fopencookie_return_err: | ||
free(inode); | ||
free(cookie_priv); | ||
|
||
fopencookie_return: | ||
return filestructp; | ||
} |