filemem.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* filemem.h - write to file/memory abstraction */
  2. /*
  3. libzint - the open source barcode library
  4. Copyright (C) 2023-2024 Robin Stuart <rstuart114@gmail.com>
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions
  7. are met:
  8. 1. Redistributions of source code must retain the above copyright
  9. notice, this list of conditions and the following disclaimer.
  10. 2. Redistributions in binary form must reproduce the above copyright
  11. notice, this list of conditions and the following disclaimer in the
  12. documentation and/or other materials provided with the distribution.
  13. 3. Neither the name of the project nor the names of its contributors
  14. may be used to endorse or promote products derived from this software
  15. without specific prior written permission.
  16. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  17. 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 OWNER OR CONTRIBUTORS BE LIABLE
  20. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. SUCH DAMAGE.
  27. */
  28. /* SPDX-License-Identifier: BSD-3-Clause */
  29. #ifndef Z_FILEMEM_H
  30. #define Z_FILEMEM_H
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif /* __cplusplus */
  34. #include <stdio.h>
  35. #include "common.h"
  36. /* Whether `vsnprintf()` available */
  37. #if (defined(_MSC_VER) && _MSC_VER < 1900) || defined(ZINT_IS_C89) /* Pre-MSVC 2015 (C++ 14.0) or C89 */
  38. #define FM_NO_VSNPRINTF
  39. #endif
  40. struct filemem {
  41. FILE *fp;
  42. unsigned char *mem;
  43. size_t memsize; /* Size of `mem` buffer (capacity) */
  44. size_t mempos; /* Current position */
  45. size_t memend; /* For use by `fm_seek()`, points to highest `mempos` reached */
  46. int flags; /* BARCODE_MEMORY_FILE or BARCODE_STDOUT */
  47. int err; /* `errno` values, reset only on `fm_open()` */
  48. #ifdef FM_NO_VSNPRINTF
  49. FILE *fp_null; /* Only used for BARCODE_MEMORY_FILE */
  50. #endif
  51. };
  52. /* `fopen()` if file, setup memory buffer if BARCODE_MEMORY_FILE, returning 1 on success, 0 on failure */
  53. INTERNAL int fm_open(struct filemem *restrict const fmp, struct zint_symbol *symbol, const char *mode);
  54. /* `fwrite()` to file or memory, returning 1 on success, 0 on failure */
  55. INTERNAL int fm_write(const void *restrict ptr, const size_t size, const size_t nitems,
  56. struct filemem *restrict const fmp);
  57. /* `fputc()` to file or memory, returning 1 on success, 0 on failure */
  58. INTERNAL int fm_putc(const int ch, struct filemem *restrict const fmp);
  59. /* `fputs()` to file or memory, returning 1 on success, 0 on failure */
  60. INTERNAL int fm_puts(const char *str, struct filemem *restrict const fmp);
  61. /* `fprintf()` to file or memory, returning 1 on success, 0 on failure */
  62. INTERNAL int fm_printf(struct filemem *restrict const fmp, const char *format, ...) ZINT_FORMAT_PRINTF(2, 3);
  63. /* Output float without trailing zeroes to `fmp` with decimal pts `dp` (precision), returning 1 on success, 0 on
  64. failure */
  65. INTERNAL int fm_putsf(const char *prefix, const int dp, const float arg, struct filemem *restrict const fmp);
  66. /* `fclose()` if file, set `symbol->memfile` & `symbol->memfile_size` if memory, returning 1 on success, 0 on
  67. failure */
  68. INTERNAL int fm_close(struct filemem *restrict const fmp, struct zint_symbol *symbol);
  69. /* `fseek()` to file/memory offset, returning 1 on success, 0 on failure */
  70. INTERNAL int fm_seek(struct filemem *restrict const fmp, const long offset, const int whence);
  71. /* `ftell()` returns current file/memory offset if successful, -1 on failure */
  72. INTERNAL long fm_tell(struct filemem *restrict const fmp);
  73. /* Return `err`, which uses `errno` values; if file and `err` not set, test `ferror()` also */
  74. INTERNAL int fm_error(struct filemem *restrict const fmp);
  75. /* `fflush()` if file, no-op if memory, returning 1 on success, 0 on failure
  76. NOTE: don't use, included only for libpng compatibility */
  77. INTERNAL int fm_flush(struct filemem *restrict const fmp);
  78. #ifdef __cplusplus
  79. }
  80. #endif /* __cplusplus */
  81. /* vim: set ts=4 sw=4 et : */
  82. #endif /* Z_FILEMEM_H */