107 lines
2.5 KiB
C
Raw Normal View History

2014-06-08 17:40:59 +01:00
/*
* libxlsxwriter
*
2024-02-26 18:47:32 +00:00
* SPDX-License-Identifier: BSD-2-Clause
2025-02-11 00:03:36 +00:00
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org.
2014-06-08 17:40:59 +01:00
*
* packager - A libxlsxwriter library for creating Excel XLSX packager files.
*
*/
#ifndef __LXW_PACKAGER_H__
#define __LXW_PACKAGER_H__
#include <stdint.h>
#ifdef USE_SYSTEM_MINIZIP
2023-09-21 12:23:16 +01:00
#ifdef __GNUC__
#pragma GCC system_header
2023-09-21 12:23:16 +01:00
#endif
#include "minizip/zip.h"
#else
2017-01-11 00:03:56 +00:00
#include "third_party/zip.h"
#endif
2014-06-08 17:40:59 +01:00
#include "common.h"
#include "workbook.h"
#include "worksheet.h"
#include "shared_strings.h"
#include "app.h"
#include "core.h"
2016-06-10 00:03:38 +01:00
#include "custom.h"
#include "table.h"
2014-06-08 17:40:59 +01:00
#include "theme.h"
#include "styles.h"
#include "format.h"
#include "content_types.h"
#include "relationships.h"
#include "vml.h"
#include "comment.h"
#include "metadata.h"
#include "rich_value.h"
#include "rich_value_rel.h"
#include "rich_value_types.h"
#include "rich_value_structure.h"
2014-06-08 17:40:59 +01:00
#define LXW_ZIP_BUFFER_SIZE (16384)
/* If zip returns a ZIP_XXX error then errno is set and we can trap that in
* workbook.c. Otherwise return a default libxlsxwriter error. */
#define RETURN_ON_ZIP_ERROR(err, default_err) \
do { \
if (err == ZIP_ERRNO) \
return LXW_ERROR_ZIP_FILE_OPERATION; \
else if (err == ZIP_PARAMERROR) \
return LXW_ERROR_ZIP_PARAMETER_ERROR; \
else if (err == ZIP_BADZIPFILE) \
return LXW_ERROR_ZIP_BAD_ZIP_FILE; \
else if (err == ZIP_INTERNALERROR) \
return LXW_ERROR_ZIP_INTERNAL_ERROR; \
else \
return default_err; \
} while (0)
2014-06-08 17:40:59 +01:00
/*
* Struct to represent a packager.
*/
typedef struct lxw_packager {
FILE *file;
lxw_workbook *workbook;
size_t buffer_size;
size_t output_buffer_size;
2014-06-08 17:40:59 +01:00
zipFile zipfile;
zip_fileinfo zipfile_info;
const char *filename;
const char *buffer;
char *output_buffer;
const char *tmpdir;
uint8_t use_zip64;
2014-06-08 17:40:59 +01:00
} lxw_packager;
/* *INDENT-OFF* */
#ifdef __cplusplus
extern "C" {
#endif
/* *INDENT-ON* */
lxw_packager *lxw_packager_new(const char *filename, const char *tmpdir,
uint8_t use_zip64);
void lxw_packager_free(lxw_packager *packager);
2017-01-09 20:26:32 +00:00
lxw_error lxw_create_package(lxw_packager *self);
2014-06-08 17:40:59 +01:00
/* Declarations required for unit testing. */
#ifdef TESTING
#endif /* TESTING */
/* *INDENT-OFF* */
#ifdef __cplusplus
}
#endif
/* *INDENT-ON* */
#endif /* __LXW_PACKAGER_H__ */