Wed, 31 Dec 2025 16:40:12 +0100
update ucx to version 4.0
| 440 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
| 4 | * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved. | |
| 5 | * | |
| 6 | * Redistribution and use in source and binary forms, with or without | |
| 7 | * modification, are permitted provided that the following conditions are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer in the | |
| 14 | * documentation and/or other materials provided with the distribution. | |
| 15 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | ||
| 29 | /** | |
| 30 | * @file streams.h | |
| 31 | * | |
| 32 | * @brief Utility functions for data streams. | |
| 33 | * | |
| 34 | * @author Mike Becker | |
| 35 | * @author Olaf Wintermann | |
| 36 | * @copyright 2-Clause BSD License | |
| 37 | */ | |
| 38 | ||
|
1040
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
39 | #ifndef UCX_STREAMS_H |
|
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
40 | #define UCX_STREAMS_H |
| 440 | 41 | |
| 42 | #include "common.h" | |
| 43 | ||
| 44 | /** | |
| 45 | * Reads data from a stream and writes it to another stream. | |
| 46 | * | |
| 47 | * @param src the source stream | |
| 48 | * @param dest the destination stream | |
| 49 | * @param rfnc the read function | |
| 50 | * @param wfnc the write function | |
| 51 | * @param buf a pointer to the copy buffer or @c NULL if a buffer | |
| 52 | * shall be implicitly created on the heap | |
| 845 | 53 | * @param bufsize the size of the copy buffer - if @p buf is @c NULL, you can |
| 440 | 54 | * set this to zero to let the implementation decide |
| 55 | * @param n the maximum number of bytes that shall be copied. | |
| 56 | * If this is larger than @p bufsize, the content is copied over multiple | |
| 57 | * iterations. | |
| 58 | * @return the total number of bytes copied | |
| 59 | */ | |
|
1040
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
60 | CX_EXTERN CX_NONNULL_ARG(1, 2, 3, 4) |
|
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
61 | CX_ACCESS_R(1) CX_ACCESS_W(2) CX_ACCESS_W(5) |
|
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
62 | size_t cx_stream_bncopy(void *src, void *dest, |
| 870 | 63 | cx_read_func rfnc, cx_write_func wfnc, |
| 64 | char *buf, size_t bufsize, size_t n); | |
| 440 | 65 | |
| 66 | /** | |
| 67 | * Reads data from a stream and writes it to another stream. | |
| 68 | * | |
| 69 | * @param src (@c void*) the source stream | |
| 70 | * @param dest (@c void*) the destination stream | |
| 71 | * @param rfnc (@c cx_read_func) the read function | |
| 72 | * @param wfnc (@c cx_write_func) the write function | |
| 73 | * @param buf (@c char*) a pointer to the copy buffer or @c NULL if a buffer | |
| 74 | * shall be implicitly created on the heap | |
| 75 | * @param bufsize (@c size_t) the size of the copy buffer - if @p buf is | |
| 845 | 76 | * @c NULL, you can set this to zero to let the implementation decide |
| 440 | 77 | * @return total number of bytes copied |
| 78 | */ | |
| 79 | #define cx_stream_bcopy(src, dest, rfnc, wfnc, buf, bufsize) \ | |
| 80 | cx_stream_bncopy(src, dest, rfnc, wfnc, buf, bufsize, SIZE_MAX) | |
| 81 | ||
| 82 | /** | |
| 83 | * Reads data from a stream and writes it to another stream. | |
| 84 | * | |
| 845 | 85 | * The data is temporarily stored in a stack-allocated buffer. |
| 440 | 86 | * |
| 87 | * @param src the source stream | |
| 88 | * @param dest the destination stream | |
| 89 | * @param rfnc the read function | |
| 90 | * @param wfnc the write function | |
| 91 | * @param n the maximum number of bytes that shall be copied. | |
| 92 | * @return total number of bytes copied | |
| 93 | */ | |
|
1040
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
94 | CX_EXTERN CX_NONNULL CX_ACCESS_R(1) CX_ACCESS_W(2) |
|
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
95 | size_t cx_stream_ncopy(void *src, void *dest, |
| 870 | 96 | cx_read_func rfnc, cx_write_func wfnc, size_t n); |
| 440 | 97 | |
| 98 | /** | |
| 99 | * Reads data from a stream and writes it to another stream. | |
| 100 | * | |
| 845 | 101 | * The data is temporarily stored in a stack-allocated buffer. |
| 440 | 102 | * |
| 103 | * @param src (@c void*) the source stream | |
| 104 | * @param dest (@c void*) the destination stream | |
| 105 | * @param rfnc (@c cx_read_func) the read function | |
| 106 | * @param wfnc (@c cx_write_func) the write function | |
| 107 | * @return total number of bytes copied | |
| 108 | */ | |
| 109 | #define cx_stream_copy(src, dest, rfnc, wfnc) \ | |
| 110 | cx_stream_ncopy(src, dest, rfnc, wfnc, SIZE_MAX) | |
| 111 | ||
|
1040
473d8cb58a6c
update ucx to version 4.0
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1016
diff
changeset
|
112 | #endif // UCX_STREAMS_H |