2014-06-08 17:40:59 +01:00
|
|
|
/*
|
|
|
|
* libxlsxwriter
|
2015-04-13 17:17:01 +01:00
|
|
|
*
|
2016-01-03 19:47:16 +00:00
|
|
|
* Copyright 2014-2016, John McNamara, jmcnamara@cpan.org. See LICENSE.txt.
|
2016-05-06 00:08:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file common.h
|
|
|
|
*
|
|
|
|
* @brief Common functions and defines for the libxlsxwriter library.
|
2014-06-08 17:40:59 +01:00
|
|
|
*
|
2016-05-06 00:08:10 +01:00
|
|
|
* <!-- Copyright 2014-2016, John McNamara, jmcnamara@cpan.org -->
|
2014-06-08 17:40:59 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef __LXW_COMMON_H__
|
|
|
|
#define __LXW_COMMON_H__
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include "xlsxwriter/third_party/queue.h"
|
2015-11-30 11:54:08 -05:00
|
|
|
#include "xlsxwriter/third_party/tree.h"
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
#ifndef TESTING
|
2014-06-09 23:51:10 +01:00
|
|
|
#define STATIC static
|
2014-06-08 17:40:59 +01:00
|
|
|
#else
|
|
|
|
#define STATIC
|
|
|
|
#endif
|
|
|
|
|
2016-05-06 00:08:10 +01:00
|
|
|
/** Integer data type to represent a row value. Equivalent to `uint32_t`.
|
|
|
|
*
|
|
|
|
* The maximum row in Excel is 1,048,576.
|
|
|
|
*/
|
|
|
|
typedef uint32_t lxw_row_t;
|
|
|
|
|
|
|
|
/** Integer data type to represent a column value. Equivalent to `uint16_t`.
|
|
|
|
*
|
|
|
|
* The maximum column in Excel is 16,384.
|
|
|
|
*/
|
|
|
|
typedef uint16_t lxw_col_t;
|
|
|
|
|
|
|
|
/** Boolean values used in libxlsxwriter. */
|
2014-06-08 17:40:59 +01:00
|
|
|
enum lxw_boolean {
|
2016-05-06 00:08:10 +01:00
|
|
|
/** False value. */
|
2014-06-08 17:40:59 +01:00
|
|
|
LXW_FALSE,
|
2016-05-06 00:08:10 +01:00
|
|
|
/** True value. */
|
2014-06-08 17:40:59 +01:00
|
|
|
LXW_TRUE
|
|
|
|
};
|
|
|
|
|
2016-05-30 21:16:25 +01:00
|
|
|
/**
|
|
|
|
* @brief Error codes from libxlsxwriter functions.
|
|
|
|
*
|
|
|
|
* See the `lxw_strerror()` function for an example of how to convert the
|
|
|
|
* enum number to a descriptive error message string.
|
|
|
|
*/
|
2016-07-03 13:53:11 +01:00
|
|
|
typedef enum lxw_error {
|
2016-05-30 21:16:25 +01:00
|
|
|
|
|
|
|
/** No error. */
|
|
|
|
LXW_NO_ERROR = 0,
|
|
|
|
|
|
|
|
/** Memory error, failed to malloc() required memory. */
|
|
|
|
LXW_ERROR_MEMORY_MALLOC_FAILED,
|
|
|
|
|
|
|
|
/** Error creating output xlsx file. Usually a permissions error. */
|
|
|
|
LXW_ERROR_CREATING_XLSX_FILE,
|
|
|
|
|
|
|
|
/** Error encountered when creating a tmpfile during file assembly. */
|
|
|
|
LXW_ERROR_CREATING_TMPFILE,
|
|
|
|
|
|
|
|
/** Zlib error with a file operation while creating xlsx file. */
|
|
|
|
LXW_ERROR_ZIP_FILE_OPERATION,
|
|
|
|
|
|
|
|
/** Zlib error when adding sub file to xlsx file. */
|
|
|
|
LXW_ERROR_ZIP_FILE_ADD,
|
|
|
|
|
|
|
|
/** Zlib error when closing xlsx file. */
|
|
|
|
LXW_ERROR_ZIP_CLOSE,
|
|
|
|
|
2016-06-11 01:03:30 +01:00
|
|
|
/** NULL function parameter ignored. */
|
|
|
|
LXW_ERROR_NULL_PARAMETER_IGNORED,
|
2016-05-30 21:16:25 +01:00
|
|
|
|
2016-07-03 13:53:11 +01:00
|
|
|
/** Function parameter validation error. */
|
|
|
|
LXW_ERROR_PARAMETER_VALIDATION,
|
|
|
|
|
2016-05-30 21:16:25 +01:00
|
|
|
/** String exceeds Excel's limit of 32,767 characters. */
|
|
|
|
LXW_ERROR_MAX_STRING_LENGTH_EXCEEDED,
|
|
|
|
|
2016-07-03 13:53:11 +01:00
|
|
|
/** Parameter exceeds Excel's limit of 128 characters. */
|
|
|
|
LXW_ERROR_128_STRING_LENGTH_EXCEEDED,
|
|
|
|
|
2016-06-11 01:03:30 +01:00
|
|
|
/** Parameter exceeds Excel's limit of 255 characters. */
|
|
|
|
LXW_ERROR_255_STRING_LENGTH_EXCEEDED,
|
|
|
|
|
2016-05-30 21:16:25 +01:00
|
|
|
/** Error finding internal string index. */
|
|
|
|
LXW_ERROR_SHARED_STRING_INDEX_NOT_FOUND,
|
|
|
|
|
|
|
|
/** Worksheet row or column index out of range. */
|
|
|
|
LXW_ERROR_WORKSHEET_INDEX_OUT_OF_RANGE,
|
|
|
|
|
|
|
|
/** Maximum number of worksheet URLs (65530) exceeded. */
|
|
|
|
LXW_ERROR_WORKSHEET_MAX_NUMBER_URLS_EXCEEDED,
|
|
|
|
|
2016-07-03 13:53:11 +01:00
|
|
|
/** Couldn't read image dimensions or DPI. */
|
|
|
|
LXW_ERROR_IMAGE_DIMENSIONS,
|
|
|
|
|
2016-05-30 21:16:25 +01:00
|
|
|
LXW_MAX_ERRNO
|
2016-07-03 13:53:11 +01:00
|
|
|
} lxw_error;
|
2016-05-30 21:16:25 +01:00
|
|
|
|
2016-06-11 01:03:30 +01:00
|
|
|
/** @brief Struct to represent a date and time in Excel.
|
|
|
|
*
|
|
|
|
* Struct to represent a date and time in Excel. See @ref working_with_dates.
|
|
|
|
*/
|
|
|
|
typedef struct lxw_datetime {
|
|
|
|
|
|
|
|
/** Year : 1900 - 9999 */
|
|
|
|
int year;
|
|
|
|
/** Month : 1 - 12 */
|
|
|
|
int month;
|
|
|
|
/** Day : 1 - 31 */
|
|
|
|
int day;
|
|
|
|
/** Hour : 0 - 23 */
|
|
|
|
int hour;
|
|
|
|
/** Minute : 0 - 59 */
|
|
|
|
int min;
|
|
|
|
/** Seconds : 0 - 59.999 */
|
|
|
|
double sec;
|
|
|
|
|
|
|
|
} lxw_datetime;
|
|
|
|
|
|
|
|
enum lxw_custom_property_types {
|
|
|
|
LXW_CUSTOM_NONE,
|
|
|
|
LXW_CUSTOM_STRING,
|
|
|
|
LXW_CUSTOM_DOUBLE,
|
|
|
|
LXW_CUSTOM_INTEGER,
|
|
|
|
LXW_CUSTOM_BOOLEAN,
|
|
|
|
LXW_CUSTOM_DATETIME
|
|
|
|
};
|
|
|
|
|
2016-05-20 22:49:03 +01:00
|
|
|
/* Excel sheetname max of 31 chars + \0. */
|
2016-06-01 23:20:27 +01:00
|
|
|
#define LXW_SHEETNAME_MAX 32
|
2016-05-20 22:49:03 +01:00
|
|
|
|
|
|
|
/* Every worksheet char doubled + start and end quotes + \0. */
|
|
|
|
#define LXW_MAX_SHEETNAME_LENGTH 65
|
|
|
|
|
2016-06-01 23:20:27 +01:00
|
|
|
/* Max col string length. */
|
|
|
|
#define LXW_MAX_COL_NAME_LENGTH sizeof("$XFD")
|
2016-05-20 22:49:03 +01:00
|
|
|
|
2016-06-03 01:01:57 +01:00
|
|
|
/* Max cell string length. */
|
2016-06-01 23:20:27 +01:00
|
|
|
#define LXW_MAX_CELL_NAME_LENGTH sizeof("$XFWD$1048576")
|
2016-05-20 22:49:03 +01:00
|
|
|
|
|
|
|
/* Max range: $XFWD$1048576:$XFWD$1048576\0 */
|
|
|
|
#define LXW_MAX_CELL_RANGE_LENGTH (LXW_MAX_CELL_NAME_LENGTH * 2)
|
|
|
|
|
|
|
|
/* Max range formula Sheet1!$A$1:$C$5$ style. */
|
|
|
|
#define LXW_MAX_FORMULA_RANGE_LENGTH (LXW_MAX_SHEETNAME_LENGTH + LXW_MAX_CELL_RANGE_LENGTH)
|
|
|
|
|
2016-06-11 01:03:30 +01:00
|
|
|
/* Datetime string length. */
|
|
|
|
#define LXW_DATETIME_LENGTH sizeof("2016-12-12T23:00:00Z")
|
|
|
|
|
2016-05-20 22:49:03 +01:00
|
|
|
#define LXW_EPOCH_1900 0
|
|
|
|
#define LXW_EPOCH_1904 1
|
|
|
|
|
2016-06-01 23:20:27 +01:00
|
|
|
#define LXW_UINT32_T_LENGTH sizeof("4294967296")
|
|
|
|
#define LXW_FILENAME_LENGTH 128
|
|
|
|
#define LXW_IGNORE 1
|
2015-04-13 17:17:01 +01:00
|
|
|
|
2016-06-09 00:15:23 +01:00
|
|
|
#define LXW_SCHEMA_MS "http://schemas.microsoft.com/office/2006/relationships"
|
2016-05-02 21:43:37 +01:00
|
|
|
#define LXW_SCHEMA_ROOT "http://schemas.openxmlformats.org"
|
|
|
|
#define LXW_SCHEMA_DRAWING LXW_SCHEMA_ROOT "/drawingml/2006"
|
|
|
|
#define LXW_SCHEMA_OFFICEDOC LXW_SCHEMA_ROOT "/officeDocument/2006"
|
|
|
|
#define LXW_SCHEMA_PACKAGE LXW_SCHEMA_ROOT "/package/2006/relationships"
|
|
|
|
#define LXW_SCHEMA_DOCUMENT LXW_SCHEMA_ROOT "/officeDocument/2006/relationships"
|
|
|
|
#define LXW_SCHEMA_CONTENT LXW_SCHEMA_ROOT "/package/2006/content-types"
|
|
|
|
|
2015-11-07 23:59:13 +00:00
|
|
|
#define LXW_ERROR(message) \
|
2014-06-08 17:40:59 +01:00
|
|
|
fprintf(stderr, "[ERROR][%s:%d]: " message "\n", __FILE__, __LINE__)
|
|
|
|
|
2015-11-07 23:59:13 +00:00
|
|
|
#define LXW_MEM_ERROR() \
|
|
|
|
LXW_ERROR("Memory allocation failed.")
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
#define GOTO_LABEL_ON_MEM_ERROR(pointer, label) \
|
|
|
|
if (!pointer) { \
|
2015-11-07 23:59:13 +00:00
|
|
|
LXW_MEM_ERROR(); \
|
2014-06-08 17:40:59 +01:00
|
|
|
goto label; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RETURN_ON_MEM_ERROR(pointer, error) \
|
|
|
|
if (!pointer) { \
|
2015-11-07 23:59:13 +00:00
|
|
|
LXW_MEM_ERROR(); \
|
2014-06-08 17:40:59 +01:00
|
|
|
return error; \
|
|
|
|
}
|
|
|
|
|
2015-12-06 18:19:25 +00:00
|
|
|
#define RETURN_VOID_ON_MEM_ERROR(pointer) \
|
|
|
|
if (!pointer) { \
|
|
|
|
LXW_MEM_ERROR(); \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
|
2016-05-30 00:30:08 +01:00
|
|
|
#define RETURN_ON_ERROR(error) \
|
|
|
|
if (error) \
|
|
|
|
return error;
|
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
#define LXW_WARN(message) \
|
2016-05-06 23:45:03 +01:00
|
|
|
fprintf(stderr, "[WARNING]: " message "\n")
|
2015-12-26 16:54:59 +00:00
|
|
|
|
2016-06-24 00:44:39 +01:00
|
|
|
/* We can't use variadic macros here since we support ANSI C. */
|
|
|
|
#define LXW_WARN_FORMAT(message) \
|
|
|
|
fprintf(stderr, "[WARNING]: " message "\n")
|
|
|
|
|
|
|
|
#define LXW_WARN_FORMAT1(message, var) \
|
2016-05-06 23:45:03 +01:00
|
|
|
fprintf(stderr, "[WARNING]: " message "\n", var)
|
2015-12-28 11:22:17 +00:00
|
|
|
|
2016-05-07 15:16:24 +01:00
|
|
|
#define LXW_WARN_FORMAT2(message, var1, var2) \
|
|
|
|
fprintf(stderr, "[WARNING]: " message "\n", var1, var2)
|
|
|
|
|
2015-12-28 11:22:17 +00:00
|
|
|
#ifndef LXW_BIG_ENDIAN
|
|
|
|
#define LXW_UINT32_NETWORK(n) ((((n) & 0xFF) << 24) | \
|
|
|
|
(((n) & 0xFF00) << 8) | \
|
|
|
|
(((n) & 0xFF0000) >> 8) | \
|
|
|
|
(((n) & 0xFF000000) >> 24))
|
2015-12-31 08:28:23 +00:00
|
|
|
#define LXW_UINT16_NETWORK(n) ((((n) & 0x00FF) << 8) | (((n) & 0xFF00) >> 8))
|
2015-12-28 11:22:17 +00:00
|
|
|
#else
|
|
|
|
#define LXW_UINT32_NETWORK(n) (n)
|
2015-12-31 08:28:23 +00:00
|
|
|
#define LXW_UINT16_NETWORK(n) (n)
|
2015-12-28 11:22:17 +00:00
|
|
|
#endif
|
2014-06-08 17:40:59 +01:00
|
|
|
|
2015-11-08 00:19:34 +00:00
|
|
|
/* Compilers that have a native snprintf() can use it directly. */
|
|
|
|
#ifdef _MSC_VER
|
2016-05-05 23:40:06 +01:00
|
|
|
#define LXW_HAS_SNPRINTF
|
2015-11-08 00:19:34 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-05 23:40:06 +01:00
|
|
|
#ifdef LXW_HAS_SNPRINTF
|
2015-11-08 00:19:34 +00:00
|
|
|
#define lxw_snprintf snprintf
|
|
|
|
#else
|
|
|
|
#define lxw_snprintf __builtin_snprintf
|
|
|
|
#endif
|
|
|
|
|
2016-07-11 21:42:18 +01:00
|
|
|
/* Define a snprintf for MSVC 2010. */
|
2016-07-04 20:58:12 +01:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define snprintf msvc2010_snprintf
|
|
|
|
#define vsnprintf msvc2010_vsnprintf
|
|
|
|
|
|
|
|
__inline int
|
|
|
|
msvc2010_vsnprintf(char *str, size_t size, const char *format, va_list ap)
|
|
|
|
{
|
|
|
|
int count = -1;
|
|
|
|
|
|
|
|
if (size != 0)
|
|
|
|
count = _vsnprintf_s(str, size, _TRUNCATE, format, ap);
|
|
|
|
if (count == -1)
|
|
|
|
count = _vscprintf(format, ap);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
__inline int
|
|
|
|
msvc2010_snprintf(char *str, size_t size, const char *format, ...)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
count = msvc2010_vsnprintf(str, size, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
/* Define the queue.h structs for the formats list. */
|
|
|
|
STAILQ_HEAD(lxw_formats, lxw_format);
|
|
|
|
|
|
|
|
/* Define the queue.h structs for the generic data structs. */
|
|
|
|
STAILQ_HEAD(lxw_tuples, lxw_tuple);
|
2016-06-10 00:03:38 +01:00
|
|
|
STAILQ_HEAD(lxw_custom_properties, lxw_custom_property);
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
typedef struct lxw_tuple {
|
|
|
|
char *key;
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
STAILQ_ENTRY (lxw_tuple) list_pointers;
|
|
|
|
} lxw_tuple;
|
|
|
|
|
2016-06-10 00:03:38 +01:00
|
|
|
/* Define custom property used in workbook.c and custom.c. */
|
|
|
|
typedef struct lxw_custom_property {
|
|
|
|
|
2016-06-11 01:03:30 +01:00
|
|
|
enum lxw_custom_property_types type;
|
2016-06-10 00:03:38 +01:00
|
|
|
char *name;
|
2016-06-11 01:03:30 +01:00
|
|
|
|
|
|
|
union {
|
|
|
|
char *string;
|
|
|
|
double number;
|
|
|
|
int32_t integer;
|
|
|
|
uint8_t boolean;
|
|
|
|
lxw_datetime datetime;
|
|
|
|
} u;
|
2016-06-10 00:03:38 +01:00
|
|
|
|
|
|
|
STAILQ_ENTRY (lxw_custom_property) list_pointers;
|
|
|
|
|
|
|
|
} lxw_custom_property;
|
|
|
|
|
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
/* Declarations required for unit testing. */
|
|
|
|
#ifdef TESTING
|
|
|
|
|
|
|
|
#endif /* TESTING */
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
#endif /* __LXW_COMMON_H__ */
|