/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* I/O interface for command lists */ #ifndef gxclio_INCLUDED # define gxclio_INCLUDED #include "gp.h" /* for gp_file_name_sizeof */ /* * There are two implementations of the I/O interface for command lists -- * one suitable for embedded systems, which stores the "files" in RAM, and * one suitable for other systems, which uses an external file system -- * with the choice made at compile/link time. This header file defines the * API between the command list code proper and its I/O interface. */ typedef void *clist_file_ptr; /* We can't do any better than this. */ struct clist_io_procs_s { /* ---------------- Open/close/unlink ---------------- */ /* * If *fname = 0, generate and store a new scratch file name; otherwise, * open an existing file. Only modes "r" and "w+" are supported, * and only binary data (but the caller must append the "b" if needed). * Mode "r" with *fname = 0 is an error. */ int (*fopen)(char fname[gp_file_name_sizeof], const char *fmode, clist_file_ptr * pcf, gs_memory_t * mem, gs_memory_t *data_mem, bool ok_to_compress); /* * Close a file, optionally deleting it. */ int (*fclose)(clist_file_ptr cf, const char *fname, bool delete); /* * Delete a file. */ int (*unlink)(const char *fname); /* ---------------- Writing ---------------- */ int (*fwrite_chars)(const void *data, uint len, clist_file_ptr cf); /* ---------------- Reading ---------------- */ int (*fread_chars)(void *data, uint len, clist_file_ptr cf); /* ---------------- Position/status ---------------- */ /* * Set the low-memory warning threshold. clist_ferror_code will return 1 * if fewer than this many bytes of memory are left for storing band data. */ int (*set_memory_warning)(clist_file_ptr cf, int bytes_left); /* * clist_ferror_code returns a negative error code per gserrors.h, not a * Boolean; 0 means no error, 1 means low-memory warning. */ int (*ferror_code)(clist_file_ptr cf); int64_t (*ftell)(clist_file_ptr cf); /* * We pass the file name to clist_rewind and clist_fseek in case the * implementation has to close and reopen the file. (clist_fseek with * offset = 0 and mode = SEEK_END indicates we are about to append.) */ int (*rewind)(clist_file_ptr cf, bool discard_data, const char *fname); int (*fseek)(clist_file_ptr cf, int64_t offset, int mode, const char *fname); }; typedef struct clist_io_procs_s clist_io_procs_t; #endif /* gxclio_INCLUDED */