/usr/include/gnunet/gnunet_bio_lib.h is in gnunet-dev 0.10.1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | /*
This file is part of GNUnet.
(C) 2009 Christian Grothoff (and other contributing authors)
GNUnet is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 3, or (at your
option) any later version.
GNUnet is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNUnet; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
/**
* @file include/gnunet_bio_lib.h
* @brief buffered IO API
* @author Christian Grothoff
* @defgroup bio Buffered binary disk IO (with endianess conversion)
* @{
*/
#ifndef GNUNET_BIO_LIB_H
#define GNUNET_BIO_LIB_H
#include "gnunet_container_lib.h"
#ifdef __cplusplus
extern "C"
{
#if 0 /* keep Emacsens' auto-indent happy */
}
#endif
#endif
/**
* @ingroup bio
* Handle for buffered reading.
*/
struct GNUNET_BIO_ReadHandle;
/**
* Open a file for reading.
*
* @param fn file name to be opened
* @return IO handle on success, NULL on error
*/
struct GNUNET_BIO_ReadHandle *
GNUNET_BIO_read_open (const char *fn);
/**
* Close an open file. Reports if any errors reading
* from the file were encountered.
*
* @param h file handle
* @param emsg set to the error message
* @return #GNUNET_OK on success, #GNUNET_SYSERR otherwise
*/
int
GNUNET_BIO_read_close (struct GNUNET_BIO_ReadHandle *h, char **emsg);
/**
* Read the contents of a binary file into a buffer.
*
* @param h handle to an open file
* @param what describes what is being read (for error message creation)
* @param result the buffer to write the result to
* @param len the number of bytes to read
* @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
*/
int
GNUNET_BIO_read (struct GNUNET_BIO_ReadHandle *h, const char *what,
void *result, size_t len);
/**
* Read the contents of a binary file into a buffer.
*
* @param h handle to an open file
* @param file name of the source file
* @param line line number in the source file
* @param result the buffer to write the result to
* @param len the number of bytes to read
* @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
*/
int
GNUNET_BIO_read_fn (struct GNUNET_BIO_ReadHandle *h,
const char *file, int line,
void *result, size_t len);
/**
* Read 0-terminated string from a file.
*
* @param h handle to an open file
* @param what describes what is being read (for error message creation)
* @param result the buffer to store a pointer to the (allocated) string to
* (note that *result could be set to NULL as well)
* @param max_length maximum allowed length for the string
* @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
*/
int
GNUNET_BIO_read_string (struct GNUNET_BIO_ReadHandle *h, const char *what,
char **result, size_t max_length);
/**
* Read metadata container from a file.
*
* @param h handle to an open file
* @param what describes what is being read (for error message creation)
* @param result the buffer to store a pointer to the (allocated) metadata
* @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
*/
int
GNUNET_BIO_read_meta_data (struct GNUNET_BIO_ReadHandle *h, const char *what,
struct GNUNET_CONTAINER_MetaData **result);
/**
* Read a float.
*
* @param h hande to open file
* @param f address of float to read
*/
#define GNUNET_BIO_read_float(h, f) (GNUNET_BIO_read_fn (h, __FILE__, __LINE__, f, sizeof(float)))
/**
* Read a double.
*
* @param h hande to open file
* @param f address of double to read
*/
#define GNUNET_BIO_read_double(h, f) (GNUNET_BIO_read_fn (h, __FILE__, __LINE__, f, sizeof(double)))
/**
* Read an (u)int32_t.
*
* @param h hande to open file
* @param file name of the source file
* @param line line number in the code
* @param i address of 32-bit integer to read
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
GNUNET_BIO_read_int32__ (struct GNUNET_BIO_ReadHandle *h, const char *file,
int line, int32_t * i);
/**
* Read an (u)int32_t.
*
* @param h hande to open file
* @param i address of 32-bit integer to read
*/
#define GNUNET_BIO_read_int32(h, i) GNUNET_BIO_read_int32__ (h, __FILE__, __LINE__, (int32_t*) i)
/**
* Read an (u)int64_t.
*
* @param h hande to open file
* @param file name of the source file
* @param line line number in the code
* @param i address of 64-bit integer to read
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
GNUNET_BIO_read_int64__ (struct GNUNET_BIO_ReadHandle *h, const char *file,
int line, int64_t * i);
/**
* Read an (u)int64_t.
*
* @param h hande to open file
* @param i address of 64-bit integer to read
*/
#define GNUNET_BIO_read_int64(h, i) GNUNET_BIO_read_int64__ (h, __FILE__, __LINE__, (int64_t*) i)
/**
* Handle for buffered writing.
*/
struct GNUNET_BIO_WriteHandle;
/**
* Open a file for writing.
*
* @param fn file name to be opened
* @return IO handle on success, NULL on error
*/
struct GNUNET_BIO_WriteHandle *
GNUNET_BIO_write_open (const char *fn);
/**
* Close an open file for writing.
*
* @param h file handle
* @return GNUNET_OK on success, GNUNET_SYSERR otherwise
*/
int
GNUNET_BIO_write_close (struct GNUNET_BIO_WriteHandle *h);
/**
* Write a buffer to a file.
*
* @param h handle to open file
* @param buffer the data to write
* @param n number of bytes to write
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
GNUNET_BIO_write (struct GNUNET_BIO_WriteHandle *h, const void *buffer,
size_t n);
/**
* Force a buffered writer to flush its buffer
*
* @param h the writer handle
* @return #GNUNET_OK upon success. Upon failure #GNUNET_SYSERR is returned and
* the file is closed
*/
int
GNUNET_BIO_flush (struct GNUNET_BIO_WriteHandle *h);
/**
* Write a string to a file.
*
* @param h handle to open file
* @param s string to write (can be NULL)
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
GNUNET_BIO_write_string (struct GNUNET_BIO_WriteHandle *h, const char *s);
/**
* Write metadata container to a file.
*
* @param h handle to open file
* @param m metadata to write
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
GNUNET_BIO_write_meta_data (struct GNUNET_BIO_WriteHandle *h,
const struct GNUNET_CONTAINER_MetaData *m);
/**
* Write a float.
*
* @param h hande to open file
* @param f float to write (must be a variable)
*/
#define GNUNET_BIO_write_float(h, f) GNUNET_BIO_write (h, &f, sizeof(float))
/**
* Write a double.
*
* @param h hande to open file
* @param f double to write (must be a variable)
*/
#define GNUNET_BIO_write_double(h, f) GNUNET_BIO_write (h, &f, sizeof(double))
/**
* Write an (u)int32_t.
*
* @param h hande to open file
* @param i 32-bit integer to write
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
GNUNET_BIO_write_int32 (struct GNUNET_BIO_WriteHandle *h, int32_t i);
/**
* Write an (u)int64_t.
*
* @param h hande to open file
* @param i 64-bit integer to write
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
GNUNET_BIO_write_int64 (struct GNUNET_BIO_WriteHandle *h, int64_t i);
#if 0 /* keep Emacsens' auto-indent happy */
{
#endif
#ifdef __cplusplus
}
#endif
/** @} */ /* end of group bio */
/* ifndef GNUNET_BIO_LIB_H */
#endif
/* end of gnunet_bio_lib.h */
|