2014-06-08 17:40:59 +01:00
|
|
|
/*
|
|
|
|
* libxlsxwriter
|
2015-12-04 22:47:49 +00:00
|
|
|
*
|
2018-02-03 17:15:35 +00:00
|
|
|
* Copyright 2014-2018, John McNamara, jmcnamara@cpan.org. See LICENSE.txt.
|
2014-06-08 17:40:59 +01:00
|
|
|
*
|
|
|
|
* shared_strings - A libxlsxwriter library for creating Excel XLSX
|
|
|
|
* sst files.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef __LXW_SST_H__
|
|
|
|
#define __LXW_SST_H__
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
2015-12-08 12:23:05 -05:00
|
|
|
/* Define a tree.h RB structure for storing shared strings. */
|
|
|
|
RB_HEAD(sst_rb_tree, sst_element);
|
|
|
|
|
2016-05-20 00:14:07 +01:00
|
|
|
/* Define a queue.h structure for storing shared strings in insertion order. */
|
|
|
|
STAILQ_HEAD(sst_order_list, sst_element);
|
|
|
|
|
2015-12-08 12:23:05 -05:00
|
|
|
/* Wrapper around RB_GENERATE_STATIC from tree.h to avoid unused function
|
|
|
|
* warnings and to avoid portability issues with the _unused attribute. */
|
2015-12-11 21:23:06 +00:00
|
|
|
#define LXW_RB_GENERATE_ELEMENT(name, type, field, cmp) \
|
2015-12-08 12:23:05 -05:00
|
|
|
RB_GENERATE_INSERT_COLOR(name, type, field, static) \
|
|
|
|
RB_GENERATE_INSERT(name, type, field, cmp, static) \
|
|
|
|
/* Add unused struct to allow adding a semicolon */ \
|
|
|
|
struct lxw_rb_generate_element{int unused;}
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Elements of the SST table. They contain pointers to allow them to
|
2015-12-08 12:23:05 -05:00
|
|
|
* be stored in a RB tree and also pointers to track the insertion order
|
|
|
|
* in a separate list.
|
2014-06-08 17:40:59 +01:00
|
|
|
*/
|
|
|
|
struct sst_element {
|
2015-09-27 21:01:50 +01:00
|
|
|
uint32_t index;
|
2014-06-08 17:40:59 +01:00
|
|
|
char *string;
|
2018-09-28 00:25:27 +01:00
|
|
|
uint8_t is_rich_string;
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
STAILQ_ENTRY (sst_element) sst_order_pointers;
|
2015-12-08 12:23:05 -05:00
|
|
|
RB_ENTRY (sst_element) sst_tree_pointers;
|
2014-06-08 17:40:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Struct to represent a sst.
|
|
|
|
*/
|
|
|
|
typedef struct lxw_sst {
|
|
|
|
FILE *file;
|
|
|
|
|
2015-09-27 21:01:50 +01:00
|
|
|
uint32_t string_count;
|
|
|
|
uint32_t unique_count;
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
struct sst_order_list *order_list;
|
2015-12-08 12:23:05 -05:00
|
|
|
struct sst_rb_tree *rb_tree;
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
} lxw_sst;
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
2016-01-04 20:49:54 +00:00
|
|
|
lxw_sst *lxw_sst_new();
|
|
|
|
void lxw_sst_free(lxw_sst *sst);
|
2018-09-28 00:25:27 +01:00
|
|
|
struct sst_element *lxw_get_sst_index(lxw_sst *sst, const char *string,
|
|
|
|
uint8_t is_rich_string);
|
2016-01-04 20:49:54 +00:00
|
|
|
void lxw_sst_assemble_xml_file(lxw_sst *self);
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
/* Declarations required for unit testing. */
|
|
|
|
#ifdef TESTING
|
|
|
|
|
|
|
|
STATIC void _sst_xml_declaration(lxw_sst *self);
|
|
|
|
|
|
|
|
#endif /* TESTING */
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
#endif /* __LXW_SST_H__ */
|