106 lines
2.4 KiB
C
Raw Normal View History

2014-06-08 17:40:59 +01:00
/*
* libxlsxwriter
2015-04-13 17:17:01 +01:00
*
2015-03-07 16:42:13 +00:00
* Copyright 2014-2015, 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"
#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
2014-06-10 01:05:25 +01:00
#define LXW_SHEETNAME_MAX 32
2014-06-08 17:40:59 +01:00
#define LXW_SHEETNAME_LEN 65
2015-12-24 07:55:20 +00:00
#define LXW_UINT32_T_LEN 11 /* Length of 4294967296. */
2014-06-08 17:40:59 +01:00
enum lxw_boolean {
LXW_FALSE,
LXW_TRUE
};
2015-04-13 17:17:01 +01:00
#define LXW_IGNORE 1
#define LXW_ERROR(message) \
2014-06-08 17:40:59 +01:00
fprintf(stderr, "[ERROR][%s:%d]: " message "\n", __FILE__, __LINE__)
#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) { \
LXW_MEM_ERROR(); \
2014-06-08 17:40:59 +01:00
goto label; \
}
#define RETURN_ON_MEM_ERROR(pointer, error) \
if (!pointer) { \
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-26 16:54:59 +00:00
fprintf(stderr, "[WARN] %s(): " message "\n", __func__)
#define LXW_WARN_FORMAT(message, var) \
fprintf(stderr, "[WARN] %s(): " message "\n", __func__, var)
2014-06-08 17:40:59 +01: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__ */