1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef __ORCUS_SPREADSHEET_IMPORT_INTERFACE_HPP__
#define __ORCUS_SPREADSHEET_IMPORT_INTERFACE_HPP__
#include <cstdlib>
#include "types.hpp"
#include "../types.hpp"
#include "../env.hpp"
namespace orcus { namespace spreadsheet { namespace iface {
/**
* Interface class designed to be derived by the implementor.
*/
class import_shared_strings
{
public:
ORCUS_DLLPUBLIC virtual ~import_shared_strings() = 0;
/**
* Append new string to the string list. Order of insertion is important
* since that determines the numerical ID values of inserted strings.
* Note that this method assumes that the caller knows the string being
* appended is not yet in the pool.
*
* @param s pointer to the first character of the string array. The
* string array doesn't necessary have to be null-terminated.
* @param n length of the string.
*
* @return ID of the string just inserted.
*/
virtual size_t append(const char* s, size_t n) = 0;
/**
* Similar to the append method, it adds new string to the string pool;
* however, this method checks if the string being added is already in the
* pool before each insertion, to avoid duplicated strings.
*
* @param s pointer to the first character of the string array. The
* string array doesn't necessary have to be null-terminated.
* @param n length of the string.
*
* @return ID of the string just inserted.
*/
virtual size_t add(const char* s, size_t n) = 0;
virtual void set_segment_font(size_t font_index) = 0;
virtual void set_segment_bold(bool b) = 0;
virtual void set_segment_italic(bool b) = 0;
virtual void set_segment_font_name(const char* s, size_t n) = 0;
virtual void set_segment_font_size(double point) = 0;
virtual void set_segment_font_color(color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue) = 0;
virtual void append_segment(const char* s, size_t n) = 0;
virtual size_t commit_segments() = 0;
};
/**
* Interface for styles. Note that because the default style must have an
* index of 0 in each style category, the caller must set the default styles
* first before importing and setting real styles. ID's of styles are
* assigned sequentially starting with 0 and upward in each style category.
*/
class import_styles
{
public:
ORCUS_DLLPUBLIC virtual ~import_styles() = 0;
// font
virtual void set_font_count(size_t n) = 0;
virtual void set_font_bold(bool b) = 0;
virtual void set_font_italic(bool b) = 0;
virtual void set_font_name(const char* s, size_t n) = 0;
virtual void set_font_size(double point) = 0;
virtual void set_font_underline(orcus::spreadsheet::underline_t e) = 0;
virtual void set_font_color(color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue) = 0;
virtual size_t commit_font() = 0;
// fill
virtual void set_fill_count(size_t n) = 0;
virtual void set_fill_pattern_type(const char* s, size_t n) = 0;
virtual void set_fill_fg_color(color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue) = 0;
virtual void set_fill_bg_color(color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue) = 0;
virtual size_t commit_fill() = 0;
// border
virtual void set_border_count(size_t n) = 0;
virtual void set_border_style(orcus::spreadsheet::border_direction_t dir, const char* s, size_t n) = 0;
virtual void set_border_color(
orcus::spreadsheet::border_direction_t dir, color_elem_t alpha, color_elem_t red, color_elem_t green, color_elem_t blue) = 0;
virtual size_t commit_border() = 0;
// cell protection
virtual void set_cell_hidden(bool b) = 0;
virtual void set_cell_locked(bool b) = 0;
virtual size_t commit_cell_protection() = 0;
// number format
virtual void set_number_format_count(size_t n) = 0;
virtual void set_number_format_identifier(size_t id) = 0;
virtual void set_number_format_code(const char* s, size_t n) = 0;
virtual size_t commit_number_format() = 0;
// cell format and cell style format (xf == cell format)
virtual void set_cell_xf_count(size_t n) = 0;
virtual void set_cell_style_xf_count(size_t n) = 0;
virtual void set_xf_font(size_t index) = 0;
virtual void set_xf_fill(size_t index) = 0;
virtual void set_xf_border(size_t index) = 0;
virtual void set_xf_protection(size_t index) = 0;
virtual void set_xf_number_format(size_t index) = 0;
virtual void set_xf_style_xf(size_t index) = 0;
virtual void set_xf_apply_alignment(bool b) = 0;
virtual void set_xf_horizontal_alignment(orcus::spreadsheet::hor_alignment_t align) = 0;
virtual void set_xf_vertical_alignment(orcus::spreadsheet::ver_alignment_t align) = 0;
virtual size_t commit_cell_xf() = 0;
virtual size_t commit_cell_style_xf() = 0;
// cell style entry
virtual void set_cell_style_count(size_t n) = 0;
virtual void set_cell_style_name(const char* s, size_t n) = 0;
virtual void set_cell_style_xf(size_t index) = 0;
virtual void set_cell_style_builtin(size_t index) = 0;
virtual size_t commit_cell_style() = 0;
};
class import_sheet_properties
{
public:
ORCUS_DLLPUBLIC virtual ~import_sheet_properties() = 0;
virtual void set_column_width(orcus::spreadsheet::col_t col, double width, orcus::length_unit_t unit) = 0;
virtual void set_column_hidden(orcus::spreadsheet::col_t col, bool hidden) = 0;
virtual void set_row_height(orcus::spreadsheet::row_t row, double height, orcus::length_unit_t unit) = 0;
virtual void set_row_hidden(orcus::spreadsheet::row_t row, bool hidden) = 0;
/**
* Specify merged cell range. The range is given in a 2-dimensional
* A1-style reference.
*
* @param p_range pointer to the first character of reference string.
* @param n_range length of reference string.
*/
virtual void set_merge_cell_range(const char* p_range, size_t n_range) = 0;
};
/**
* Interface for importing data tables.
*/
class import_data_table
{
public:
ORCUS_DLLPUBLIC virtual ~import_data_table() = 0;
virtual void set_type(orcus::spreadsheet::data_table_type_t type) = 0;
virtual void set_range(const char* p_range, size_t n_range) = 0;
virtual void set_first_reference(const char* p_ref, size_t n_ref, bool deleted) = 0;
virtual void set_second_reference(const char* p_ref, size_t n_ref, bool deleted) = 0;
virtual void commit() = 0;
};
class import_auto_filter
{
public:
ORCUS_DLLPUBLIC virtual ~import_auto_filter() = 0;
/**
* Specify the range where the auto filter is applied. The range
* is given in a 2-dimensional A1-style reference.
*
* @param p_ref pointer to the first character of range string.
* @param n_ref length of range string.
*/
virtual void set_range(const char* p_ref, size_t n_ref) = 0;
/**
* Specify the column position of a filter. The position is relative to
* the first column in the auto filter range.
*
* @param col 0-based column position of a filter relative to the first
* column.
*/
virtual void set_column(orcus::spreadsheet::col_t col) = 0;
/**
* Add a match value to the current column filter.
*
* @param p pointer to the first character of match value.
* @param n length of match value.
*/
virtual void append_column_match_value(const char* p, size_t n) = 0;
/**
* Commit current column filter to the current auto filter.
*/
virtual void commit_column() = 0;
/**
* Commit current auto filter to the model.
*/
virtual void commit() = 0;
};
/**
* Interface for sheet.
*/
class ORCUS_DLLPUBLIC import_sheet
{
public:
virtual ~import_sheet() = 0;
virtual import_sheet_properties* get_sheet_properties();
/**
* Get an interface for importing data tables. Note that the implementor
* may decide not to support this feature in which case this method
* returns NULL. The implementor is responsible for managing the life
* cycle of the returned interface object.
*
* @return pointer to the data table interface object.
*/
virtual import_data_table* get_data_table();
/**
* Get an interface for importing auto filter ranges.
*
* @return pointer to the auto filter interface object.
*/
virtual import_auto_filter* get_auto_filter();
/**
* Set raw string value to a cell and have the implementation
* auto-recognize its data type.
*
* @param row row ID
* @param col column ID
* @param p pointer to the first character of the raw string value.
* @param n size of the raw string value.
*/
virtual void set_auto(orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, const char* p, size_t n) = 0;
/**
* Set string value to a cell.
*
* @param row row ID
* @param col column ID
* @param sindex 0-based string index in the shared string table.
*/
virtual void set_string(orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, size_t sindex) = 0;
/**
* Set numerical value to a cell.
*
* @param row row ID
* @param col column ID
* @param value value being assigned to the cell.
*/
virtual void set_value(orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, double value) = 0;
/**
* Set a boolean value to a cell.
*
* @param row row ID
* @param col col ID
* @param value boolean value being assigned to the cell
*/
virtual void set_bool(orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, bool value) = 0;
/**
* Set date and time value to a cell.
*
* @param row row ID
* @param col column ID
*/
virtual void set_date_time(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col,
int year, int month, int day, int hour, int minute, double second) = 0;
/**
* Set cell format to specified cell. The cell format is referred to by
* the xf (cell format) index in the styles table.
*
* @param row row ID
* @param col column ID
* @param index 0-based xf (cell format) index
*/
virtual void set_format(orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, size_t xf_index) = 0;
/**
* Set normal, non-shared formula expression to specified cell.
*
* @param row row ID
* @param col column ID
* @param grammar grammar used in the formula expression
* @param p pointer to the first character of the raw formula expression
* string.
* @param n size of the raw formula expression string.
*/
virtual void set_formula(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, orcus::spreadsheet::formula_grammar_t grammar,
const char* p, size_t n) = 0;
/**
* Set shared formula expression to specified cell. This call also
* registers the formula expression to a common formula expression pool to
* allow it to be looked up by the specified index later.
*
* @param row row ID
* @param col column ID
* @param grammar grammar used in the formula expression
* @param sindex shared formula index (0-based)
* @param p_formula pointer to the first character of the raw formula
* expression string.
* @param n_formula size of the raw formula expression string.
* @param p_range pointer to the first character of the range string
* @param n_range size of the raw range string
*/
virtual void set_shared_formula(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, orcus::spreadsheet::formula_grammar_t grammar,
size_t sindex, const char* p_formula, size_t n_formula, const char* p_range, size_t n_range) = 0;
/**
* Set shared formula expression to specified cell. This call also
* registers the formula expression to a common formula expression pool to
* allow it to be looked up by the specified index later.
*
* @param row row ID
* @param col column ID
* @param grammar grammar used in the formula expression
* @param sindex shared formula index (0-based)
* @param p_formula pointer to the first character of the raw formula
* expression string.
* @param n_formula size of the raw formula expression string.
*/
virtual void set_shared_formula(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, orcus::spreadsheet::formula_grammar_t grammar,
size_t sindex, const char* p_formula, size_t n_formula) = 0;
/**
* Set shared formula to specified cell by shared formula index. The
* formula expression itself associated with the index must be defined.
*
* @param row row ID
* @param col column ID
* @param grammar grammar used in the formula expression
* @param sindex shared formula index (0-based)
* @param p pointer to the first character of the raw formula expression
* string.
* @param n size of the raw formula expression string.
*/
virtual void set_shared_formula(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, size_t sindex) = 0;
virtual void set_formula_result(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, const char* p, size_t n) = 0;
/**
* Set a array formula to the specified cells. The formula covers an area
* specified by array_rows and array_cols beginning from the base cell.
*
* @param row row ID
* @param col column ID
* @param grammar grammar used in the formula expression
* @param p pointer to the first character of the raw formula expression string.
* @param n size of the raw formula expression string
* @param array_rows number of rows the array formula covers
* @param array_cols number of columns the array formula covers
*/
virtual void set_array_formula(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, orcus::spreadsheet::formula_grammar_t grammar,
const char* p, size_t n, orcus::spreadsheet::row_t array_rows, orcus::spreadsheet::col_t array_cols) = 0;
/**
* Set a array formula to the specified cells. The formula covers an area
* specified by the range string.
*
* @param row row ID
* @param col column ID
* @param grammar grammar used in the formula expression
* @param p pointer to the first character of the raw formula expression string.
* @param n size of the raw formula expression string
* @param p_range pointer to the first character of the range string
* @param n_range isze of the range string
*/
virtual void set_array_formula(
orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, orcus::spreadsheet::formula_grammar_t grammar,
const char* p, size_t n, const char* p_range, size_t n_range) = 0;
};
class import_global_settings
{
public:
ORCUS_DLLPUBLIC virtual ~import_global_settings() = 0;
virtual void set_origin_date(int year, int month, int day) = 0;
};
/**
* This interface provides the filters a means to instantiate concrete
* classes that implement the above interfaces. The client code never has
* to manually delete objects returned by its methods; the implementor of
* this interface must manage the life cycles of objects it returns.
*
* The implementor of this interface normally wraps the document instance
* inside it and have the document instance manage the life cycles of
* various objects it creates.
*/
class import_factory
{
public:
ORCUS_DLLPUBLIC virtual ~import_factory() = 0;
virtual import_global_settings* get_global_settings() = 0;
/**
* @return pointer to the shared strings instance. It may return NULL if
* the client app doesn't support shared strings.
*/
virtual import_shared_strings* get_shared_strings() = 0;
/**
* @return pointer to the styles instance. It may return NULL if the
* client app doesn't support styles.
*/
virtual import_styles* get_styles() = 0;
/**
* @return pointer to the sheet instance. It may return NULL if the client
* app fails to append new sheet.
*/
virtual import_sheet* append_sheet(const char* sheet_name, size_t sheet_name_length) = 0;
/**
* @return pointer to the sheet instance whose name matches the name
* passed to this method. It returns NULL if no sheet instance
* exists by the specified name.
*/
virtual import_sheet* get_sheet(const char* sheet_name, size_t sheet_name_length) = 0;
/**
* Retrieve sheet instance by specified numerical sheet index.
*
* @param sheet_index sheet index
*
* @return pointer to the sheet instance, or NULL if no sheet instance
* exists at specified sheet index position.
*/
virtual import_sheet* get_sheet(orcus::spreadsheet::sheet_t sheet_index) = 0;
/**
* This method is called at the end of import, to give the implementor a
* chance to perform post-processing if necessary.
*/
virtual void finalize() = 0;
};
}}}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|