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.
|
2014-06-08 17:40:59 +01:00
|
|
|
*
|
|
|
|
* common - Common functions and defines for the libxlsxwriter library.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#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
|
|
|
|
|
|
|
|
enum lxw_boolean {
|
|
|
|
LXW_FALSE,
|
|
|
|
LXW_TRUE
|
|
|
|
};
|
|
|
|
|
2015-12-28 11:22:17 +00:00
|
|
|
#define LXW_SHEETNAME_MAX 32
|
|
|
|
#define LXW_SHEETNAME_LEN 65
|
|
|
|
#define LXW_UINT32_T_LEN 11 /* Length of 4294967296\0. */
|
|
|
|
#define LXW_IGNORE 1
|
2015-12-30 00:35:03 +00:00
|
|
|
#define FILENAME_LEN 128
|
2016-01-02 00:52:46 +00:00
|
|
|
#define LXW_NO_ERROR 0
|
2015-04-13 17:17:01 +01:00
|
|
|
|
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"
|
|
|
|
#define LXW_SCHEMA_MS "http://schemas.microsoft.com/office/2006/relationships"
|
|
|
|
|
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; \
|
|
|
|
}
|
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
#define LXW_WARN(message) \
|
2015-12-28 11:22:17 +00:00
|
|
|
fprintf(stderr, "[WARN]: " message "\n")
|
2015-12-26 16:54:59 +00:00
|
|
|
|
|
|
|
#define LXW_WARN_FORMAT(message, var) \
|
2015-12-28 11:22:17 +00:00
|
|
|
fprintf(stderr, "[WARN]: " message "\n", var)
|
|
|
|
|
|
|
|
#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
|
|
|
|
#define HAS_SNPRINTF
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAS_SNPRINTF
|
|
|
|
#define lxw_snprintf snprintf
|
|
|
|
#else
|
|
|
|
#define lxw_snprintf __builtin_snprintf
|
|
|
|
#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);
|
|
|
|
|
|
|
|
typedef struct lxw_tuple {
|
|
|
|
char *key;
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
STAILQ_ENTRY (lxw_tuple) list_pointers;
|
|
|
|
} lxw_tuple;
|
|
|
|
|
|
|
|
|
|
|
|
/* *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__ */
|