zip_source_function - Man Page
create data source from function
Library
libzip (-lzip)
Synopsis
#include <zip.h
>
zip_source_t *
zip_source_function
(zip_t *archive, zip_source_callback fn, void *userdata);
zip_source_t *
zip_source_function_create
(zip_source_callback fn, void *userdata, zip_error_t *error);
Description
The functions zip_source_function
() and zip_source_function_create
() create a zip source from the user-provided function fn, which must be of the following type:
typedef zip_int64_t (*zip_source_callback)
(void *userdata, void *data, zip_uint64_t len, zip_source_cmd_t cmd);
archive or error are used for reporting errors and can be NULL
.
When called by the library, the first argument is the userdata argument supplied to the function. The next two arguments are a buffer data of size len when data is passed in or expected to be returned, or else NULL
and 0. The last argument, cmd, specifies which action the function should perform.
Depending on the uses, there are three useful sets of commands to be supported by a zip_source_callback
():
- read source
Providing streamed data (for file data added to archives). Must support
Zip_source_open
,Zip_source_read
,Zip_source_close
,Zip_source_stat
, andZip_source_error
.If your source uses any allocated memory (including userdata) it should also implement
Zip_source_free
to avoid memory leaks.- seekable read source
Same as previous, but from a source allowing reading from arbitrary offsets (also for read-only zip archive). Must additionally support
Zip_source_seek
,Zip_source_tell
, andZip_source_supports
.- read/write source
Same as previous, but additionally allowing writing (also for writable zip archives). Must additionally support
Zip_source_begin_write
,Zip_source_commit_write
,Zip_source_rollback_write
,Zip_source_seek_write
,Zip_source_tell_write
, andZip_source_remove
.On top of the above, supporting the pseudo-command
Zip_source_supports_reopen
allows callingzip_source_open
() again after callingzip_source_close
().
Zip_source_accept_empty
Return 1 if an empty source should be accepted as a valid zip archive. This is the default if this command is not supported by a source. File system backed sources should return 0.
Zip_source_begin_write
Prepare the source for writing. Use this to create any temporary file(s).
Zip_source_begin_write_cloning
Prepare the source for writing, keeping the first len bytes of the original file. Only implement this command if it is more efficient than copying the data, and if it does not destructively overwrite the original file (you still have to be able to execute Zip_source_rollback_write
).
The next write should happen at byte offset.
Zip_source_close
Reading is done.
Zip_source_commit_write
Finish writing to the source. Replace the original data with the newly written data. Clean up temporary files or internal buffers. Subsequently opening and reading from the source should return the newly written data.
Zip_source_error
Get error information. data points to an array of two ints, which should be filled with the libzip error code and the corresponding system error code for the error that occurred. See zip_errors(3) for details on the error codes. If the source stores error information in a zip_error_t, use zip_error_to_data(3) and return its return value. Otherwise, return 2 * sizeof(int).
Zip_source_free
Clean up and free all resources, including userdata. The callback function will not be called again.
Zip_source_get_file_attributes
Provide information about various data. Then the data should be put in the appropriate entry in the passed zip_file_attributes_t argument, and the appropriate ZIP_FILE_ATTRIBUTES_*
value must be or'ed into the valid member to denote that the corresponding data has been provided. A zip_file_attributes_t structure can be initialized using zip_file_attributes_init(3).
- ASCII mode
If a file is a plaintext file in ASCII. Can be used by extraction tools to automatically convert line endings (part of the internal file attributes). Member ascii, flag
ZIP_FILE_ATTRIBUTES_ASCII
.- General Purpose Bit Flags (limited to Compression Flags)
The general purpose bit flag in the zip in the local and central directory headers contain information about the compression method. Member general_purpose_bit_flags and general_purpose_bit_mask to denote which members have been set; flag
ZIP_FILE_ATTRIBUTES_GENERAL_PURPOSE_BIT_FLAGS
.- External File Attributes
The external file attributes (usually operating system-specific). Member external_file_attributes, flag
ZIP_FILE_ATTRIBUTES_EXTERNAL_FILE_ATTRIBUTES
.- Version Needed
A minimum version needed required to unpack this entry (in the usual "major * 10 + minor" format). Member version_needed, flag
ZIP_FILE_ATTRIBUTES_VERSION_NEEDED
.- Operating System
One of the operating systems as defined by the
ZIP_OPSYS_*
variables (seezip.h
). This value affects the interpretation of the external file attributes. Member host_system, flagZIP_FILE_ATTRIBUTES_HOST_SYSTEM
.
Zip_source_open
Prepare for reading.
Zip_source_read
Read data into the buffer data of size len. Return the number of bytes placed into data on success, and zero for end-of-file.
Zip_source_remove
Remove the underlying file. This is called if a zip archive is empty when closed.
Zip_source_rollback_write
Abort writing to the source. Discard written data. Clean up temporary files or internal buffers. Subsequently opening and reading from the source should return the original data.
Zip_source_seek
Specify position to read next byte from, like fseek(3). Use ZIP_SOURCE_GET_ARGS(3) to decode the arguments into the following struct:
struct zip_source_args_seek { zip_int64_t offset; int whence; };
If the size of the source's data is known, use zip_source_seek_compute_offset(3) to validate the arguments and compute the new offset.
Zip_source_seek_write
Specify position to write next byte to, like fseek(3). See Zip_source_seek
for details.
Zip_source_stat
Get meta information for the input data. data points to an allocated struct zip_stat, which should be initialized using zip_stat_init(3) and then filled in.
For uncompressed, unencrypted data, all information is optional. However, fill in as much information as is readily available.
If the data is compressed, ZIP_STAT_COMP_METHOD
, ZIP_STAT_SIZE
, and ZIP_STAT_CRC
must be filled in.
If the data is encrypted, ZIP_STAT_ENCRYPTION_METHOD
, ZIP_STAT_COMP_METHOD
, ZIP_STAT_SIZE
, and ZIP_STAT_CRC
must be filled in.
Information only available after the source has been read (e.g., size) can be omitted in an earlier call. NOTE: zip_source_function
() may be called with this argument even after being called with Zip_source_close
.
Return sizeof(struct zip_stat) on success.
Zip_source_supports
Return bitmap specifying which commands are supported. Use zip_source_make_command_bitmap(3). If this command is not implemented, the source is assumed to be a read source without seek support.
Zip_source_tell
Return the current read offset in the source, like ftell(3).
Zip_source_tell_write
Return the current write offset in the source, like ftell(3).
Zip_source_write
Write data to the source. Return number of bytes written.
Zip_source_supports_reopen
This command is never actually invoked, support for it signals the ability to handle multiple open/read/close cycles.
Return Values
Commands should return -1 on error. Zip_source_error
will be called to retrieve the error code. On success, commands return 0, unless specified otherwise in the description above.
Calling Conventions
The library will always issue Zip_source_open
before issuing Zip_source_read
, Zip_source_seek
, or Zip_source_tell
. When it no longer wishes to read from this source, it will issue Zip_source_close
. If the library wishes to read the data again, it will issue Zip_source_open
a second time. If the function is unable to provide the data again, it should return -1.
Zip_source_begin_write
or Zip_source_begin_write_cloning
will be called before Zip_source_write
, Zip_source_seek_write
, or Zip_source_tell_write
. When writing is complete, either Zip_source_commit_write
or Zip_source_rollback_write
will be called.
Zip_source_accept_empty
, Zip_source_get_file_attributes
, and Zip_source_stat
can be issued at any time.
Zip_source_error
will only be issued in response to the function returning -1.
Zip_source_free
will be the last command issued; if Zip_source_open
was called and succeeded, Zip_source_close
will be called before Zip_source_free
, and similarly for Zip_source_begin_write
or Zip_source_begin_write_cloning
and Zip_source_commit_write
or Zip_source_rollback_write
.
Return Values
Upon successful completion, the created source is returned. Otherwise, NULL
is returned and the error code in archive or error is set to indicate the error (unless it is NULL
).
Errors
zip_source_function
() fails if:
- [ZIP_ER_MEMORY]
Required memory could not be allocated.
See Also
libzip(3), zip_file_add(3), zip_file_attributes_init(3), zip_file_replace(3), zip_source(3), zip_stat_init(3)
History
zip_source_function
() and zip_source_function_create
() were added in libzip 1.0.
Authors
Dieter Baron <dillo@nih.at> and Thomas Klausner <wiz@gatalith.at>
Referenced By
libzip(3), zip_error_to_data(3), zip_file_attributes_init(3), zip_source(3), ZIP_SOURCE_GET_ARGS(3), zip_source_layered(3), zip_source_make_command_bitmap(3), zip_source_seek_compute_offset(3), zip_stat_init(3).
The man page zip_source_function_create(3) is an alias of zip_source_function(3).