]>
git.saurik.com Git - apple/libc.git/blob - stdio/FreeBSD/fmemopen.c
2 * Copyright (C) 2013 Pietro Cerutti <gahr@FreeBSD.org>
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD$");
37 struct fmemopen_cookie
39 char *buf
; /* pointer to the memory region */
40 bool own
; /* did we allocate the buffer ourselves? */
41 char bin
; /* is this a binary buffer? */
42 size_t size
; /* buffer length in bytes */
43 size_t len
; /* data length in bytes */
44 size_t off
; /* current offset into the buffer */
47 static int fmemopen_read(void *cookie
, char *buf
, int nbytes
);
48 static int fmemopen_write(void *cookie
, const char *buf
, int nbytes
);
49 static fpos_t fmemopen_seek(void *cookie
, fpos_t offset
, int whence
);
50 static int fmemopen_close(void *cookie
);
53 fmemopen(void * __restrict buf
, size_t size
, const char * __restrict mode
)
55 struct fmemopen_cookie
*ck
;
60 * POSIX says we shall return EINVAL if size is 0.
68 * Retrieve the flags as used by open(2) from the mode argument, and
71 rc
= __sflags(mode
, &flags
);
78 * There's no point in requiring an automatically allocated buffer
81 if (!(flags
& O_RDWR
) && buf
== NULL
) {
86 ck
= malloc(sizeof(struct fmemopen_cookie
));
94 /* Check whether we have to allocate the buffer ourselves. */
95 ck
->own
= ((ck
->buf
= buf
) == NULL
);
97 ck
->buf
= malloc(size
);
98 if (ck
->buf
== NULL
) {
105 * POSIX distinguishes between w+ and r+, in that w+ is supposed to
106 * truncate the buffer.
108 if (ck
->own
|| mode
[0] == 'w') {
112 /* Check for binary mode. */
113 ck
->bin
= strchr(mode
, 'b') != NULL
;
116 * The size of the current buffer contents is set depending on the
119 * for append (text-mode), the position of the first NULL byte, or the
120 * size of the buffer if none is found
122 * for append (binary-mode), the size of the buffer
124 * for read, the size of the buffer
130 ck
->off
= ck
->len
= strnlen(ck
->buf
, ck
->size
);
141 flags
& O_WRONLY
? NULL
: fmemopen_read
,
142 flags
& O_RDONLY
? NULL
: fmemopen_write
,
143 fmemopen_seek
, fmemopen_close
);
156 * Turn off buffering, so a write past the end of the buffer
157 * correctly returns a short object count.
159 setvbuf(f
, NULL
, _IONBF
, 0);
165 fmemopen_read(void *cookie
, char *buf
, int nbytes
)
167 struct fmemopen_cookie
*ck
= cookie
;
169 if (nbytes
> ck
->len
- ck
->off
)
170 nbytes
= ck
->len
- ck
->off
;
175 memcpy(buf
, ck
->buf
+ ck
->off
, nbytes
);
183 fmemopen_write(void *cookie
, const char *buf
, int nbytes
)
185 struct fmemopen_cookie
*ck
= cookie
;
187 if (nbytes
> ck
->size
- ck
->off
)
188 nbytes
= ck
->size
- ck
->off
;
193 memcpy(ck
->buf
+ ck
->off
, buf
, nbytes
);
197 if (ck
->off
> ck
->len
)
201 * We append a NULL byte if all these conditions are met:
202 * - the buffer is not binary
203 * - the buffer is not full
204 * - the data just written doesn't already end with a NULL byte
206 if (!ck
->bin
&& ck
->off
< ck
->size
&& ck
->buf
[ck
->off
- 1] != '\0')
207 ck
->buf
[ck
->off
] = '\0';
213 fmemopen_seek(void *cookie
, fpos_t offset
, int whence
)
215 struct fmemopen_cookie
*ck
= cookie
;
220 if (offset
> ck
->size
) {
228 if (ck
->off
+ offset
> ck
->size
) {
236 if (offset
> 0 || -offset
> ck
->len
) {
240 ck
->off
= ck
->len
+ offset
;
252 fmemopen_close(void *cookie
)
254 struct fmemopen_cookie
*ck
= cookie
;