Re-order functions to match documentation categorization.

This commit is contained in:
Nathan Moinvaziri 2020-02-08 21:28:23 -08:00
parent 9c5849f3fc
commit 163352fb5b
2 changed files with 77 additions and 77 deletions

114
mz_zip.c
View File

@ -1724,6 +1724,42 @@ int32_t mz_zip_get_cd_mem_stream(void *handle, void **cd_mem_stream)
return MZ_OK; return MZ_OK;
} }
int32_t mz_zip_set_number_entry(void *handle, uint64_t number_entry)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL)
return MZ_PARAM_ERROR;
zip->number_entry = number_entry;
return MZ_OK;
}
int32_t mz_zip_get_number_entry(void *handle, uint64_t *number_entry)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL || number_entry == NULL)
return MZ_PARAM_ERROR;
*number_entry = zip->number_entry;
return MZ_OK;
}
int32_t mz_zip_set_disk_number_with_cd(void *handle, uint32_t disk_number_with_cd)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL)
return MZ_PARAM_ERROR;
zip->disk_number_with_cd = disk_number_with_cd;
return MZ_OK;
}
int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL || disk_number_with_cd == NULL)
return MZ_PARAM_ERROR;
*disk_number_with_cd = zip->disk_number_with_cd;
return MZ_OK;
}
static int32_t mz_zip_entry_close_int(void *handle) static int32_t mz_zip_entry_close_int(void *handle)
{ {
mz_zip *zip = (mz_zip *)handle; mz_zip *zip = (mz_zip *)handle;
@ -2318,6 +2354,27 @@ int32_t mz_zip_entry_write_close(void *handle, uint32_t crc32, int64_t compresse
return err; return err;
} }
int32_t mz_zip_entry_close(void *handle)
{
return mz_zip_entry_close_raw(handle, UINT64_MAX, 0);
}
int32_t mz_zip_entry_close_raw(void *handle, int64_t uncompressed_size, uint32_t crc32)
{
mz_zip *zip = (mz_zip *)handle;
int32_t err = MZ_OK;
if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK)
return MZ_PARAM_ERROR;
if (zip->open_mode & MZ_OPEN_MODE_WRITE)
err = mz_zip_entry_write_close(handle, crc32, UINT64_MAX, uncompressed_size);
else
err = mz_zip_entry_read_close(handle, NULL, NULL, NULL);
return err;
}
int32_t mz_zip_entry_is_dir(void *handle) int32_t mz_zip_entry_is_dir(void *handle)
{ {
mz_zip *zip = (mz_zip *)handle; mz_zip *zip = (mz_zip *)handle;
@ -2394,27 +2451,6 @@ int32_t mz_zip_entry_set_extrafield(void *handle, const uint8_t *extrafield, uin
return MZ_OK; return MZ_OK;
} }
int32_t mz_zip_entry_close(void *handle)
{
return mz_zip_entry_close_raw(handle, UINT64_MAX, 0);
}
int32_t mz_zip_entry_close_raw(void *handle, int64_t uncompressed_size, uint32_t crc32)
{
mz_zip *zip = (mz_zip *)handle;
int32_t err = MZ_OK;
if (zip == NULL || mz_zip_entry_is_open(handle) != MZ_OK)
return MZ_PARAM_ERROR;
if (zip->open_mode & MZ_OPEN_MODE_WRITE)
err = mz_zip_entry_write_close(handle, crc32, UINT64_MAX, uncompressed_size);
else
err = mz_zip_entry_read_close(handle, NULL, NULL, NULL);
return err;
}
static int32_t mz_zip_goto_next_entry_int(void *handle) static int32_t mz_zip_goto_next_entry_int(void *handle)
{ {
mz_zip *zip = (mz_zip *)handle; mz_zip *zip = (mz_zip *)handle;
@ -2435,42 +2471,6 @@ static int32_t mz_zip_goto_next_entry_int(void *handle)
return err; return err;
} }
int32_t mz_zip_set_number_entry(void *handle, uint64_t number_entry)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL)
return MZ_PARAM_ERROR;
zip->number_entry = number_entry;
return MZ_OK;
}
int32_t mz_zip_get_number_entry(void *handle, uint64_t *number_entry)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL || number_entry == NULL)
return MZ_PARAM_ERROR;
*number_entry = zip->number_entry;
return MZ_OK;
}
int32_t mz_zip_set_disk_number_with_cd(void *handle, uint32_t disk_number_with_cd)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL)
return MZ_PARAM_ERROR;
zip->disk_number_with_cd = disk_number_with_cd;
return MZ_OK;
}
int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd)
{
mz_zip *zip = (mz_zip *)handle;
if (zip == NULL || disk_number_with_cd == NULL)
return MZ_PARAM_ERROR;
*disk_number_with_cd = zip->disk_number_with_cd;
return MZ_OK;
}
int64_t mz_zip_get_entry(void *handle) int64_t mz_zip_get_entry(void *handle)
{ {
mz_zip *zip = (mz_zip *)handle; mz_zip *zip = (mz_zip *)handle;

View File

@ -99,6 +99,18 @@ int32_t mz_zip_set_cd_stream(void *handle, int64_t cd_start_pos, void *cd_stream
int32_t mz_zip_get_cd_mem_stream(void *handle, void **cd_mem_stream); int32_t mz_zip_get_cd_mem_stream(void *handle, void **cd_mem_stream);
/* Get a pointer to the stream used to store the central dir in memory */ /* Get a pointer to the stream used to store the central dir in memory */
int32_t mz_zip_set_number_entry(void *handle, uint64_t number_entry);
/* Sets the total number of entries */
int32_t mz_zip_get_number_entry(void *handle, uint64_t *number_entry);
/* Get the total number of entries */
int32_t mz_zip_set_disk_number_with_cd(void *handle, uint32_t disk_number_with_cd);
/* Sets the disk number containing the central directory record */
int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd);
/* Get the disk number containing the central directory record */
/***************************************************************************/ /***************************************************************************/
int32_t mz_zip_entry_is_open(void *handle); int32_t mz_zip_entry_is_open(void *handle);
@ -125,6 +137,14 @@ int32_t mz_zip_entry_write_close(void *handle, uint32_t crc32, int64_t compresse
int64_t uncompressed_size); int64_t uncompressed_size);
/* Close the current file for writing and set data descriptor values */ /* Close the current file for writing and set data descriptor values */
int32_t mz_zip_entry_close_raw(void *handle, int64_t uncompressed_size, uint32_t crc32);
/* Close the current file in the zip file where raw is compressed data */
int32_t mz_zip_entry_close(void *handle);
/* Close the current file in the zip file */
/***************************************************************************/
int32_t mz_zip_entry_is_dir(void *handle); int32_t mz_zip_entry_is_dir(void *handle);
/* Checks to see if the entry is a directory */ /* Checks to see if the entry is a directory */
@ -140,26 +160,6 @@ int32_t mz_zip_entry_get_local_info(void *handle, mz_zip_file **local_file_info)
int32_t mz_zip_entry_set_extrafield(void *handle, const uint8_t *extrafield, uint16_t extrafield_size); int32_t mz_zip_entry_set_extrafield(void *handle, const uint8_t *extrafield, uint16_t extrafield_size);
/* Sets or updates the extra field for the entry to be used before writing cd */ /* Sets or updates the extra field for the entry to be used before writing cd */
int32_t mz_zip_entry_close_raw(void *handle, int64_t uncompressed_size, uint32_t crc32);
/* Close the current file in the zip file where raw is compressed data */
int32_t mz_zip_entry_close(void *handle);
/* Close the current file in the zip file */
/***************************************************************************/
int32_t mz_zip_set_number_entry(void *handle, uint64_t number_entry);
/* Sets the total number of entries */
int32_t mz_zip_get_number_entry(void *handle, uint64_t *number_entry);
/* Get the total number of entries */
int32_t mz_zip_set_disk_number_with_cd(void *handle, uint32_t disk_number_with_cd);
/* Sets the disk number containing the central directory record */
int32_t mz_zip_get_disk_number_with_cd(void *handle, uint32_t *disk_number_with_cd);
/* Get the disk number containing the central directory record */
int64_t mz_zip_get_entry(void *handle); int64_t mz_zip_get_entry(void *handle);
/* Return offset of the current entry in the zip file */ /* Return offset of the current entry in the zip file */