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
|
#include <orcus/spreadsheet/import_interface.hpp>
#include <orcus/orcus_ods.hpp>
#include <iostream>
#include <memory>
#include <unordered_map>
#include <deque>
#include <filesystem>
namespace ss = orcus::spreadsheet;
enum class cell_value_type { empty, numeric, string };
//!code-start: types
using ss_type = std::deque<std::string>;
using ss_hash_type = std::unordered_map<std::string_view, std::size_t>;
//!code-end: types
struct cell_value
{
cell_value_type type;
union
{
std::size_t index;
double f;
};
cell_value() : type(cell_value_type::empty) {}
};
class my_sheet : public ss::iface::import_sheet
{
cell_value m_cells[100][1000];
ss::range_size_t m_sheet_size;
ss::sheet_t m_sheet_index;
const ss_type& m_string_pool;
public:
my_sheet(ss::sheet_t sheet_index, const ss_type& string_pool) :
m_sheet_index(sheet_index),
m_string_pool(string_pool)
{
m_sheet_size.rows = 1000;
m_sheet_size.columns = 100;
}
virtual void set_string(ss::row_t row, ss::col_t col, ss::string_id_t sindex) override
{
std::cout << "(sheet: " << m_sheet_index << "; row: " << row << "; col: " << col
<< "): string index = " << sindex << " (" << m_string_pool[sindex] << ")" << std::endl;
m_cells[col][row].type = cell_value_type::string;
m_cells[col][row].index = sindex;
}
virtual void set_value(ss::row_t row, ss::col_t col, double value) override
{
std::cout << "(sheet: " << m_sheet_index << "; row: " << row << "; col: " << col
<< "): value = " << value << std::endl;
m_cells[col][row].type = cell_value_type::numeric;
m_cells[col][row].f = value;
}
virtual ss::range_size_t get_sheet_size() const override
{
return m_sheet_size;
}
// We don't implement these methods for now.
virtual void set_auto(ss::row_t, ss::col_t, std::string_view) override {}
virtual void set_bool(ss::row_t, ss::col_t, bool) override {}
virtual void set_date_time(ss::row_t, ss::col_t, int, int, int, int, int, double) override {}
virtual void set_format(ss::row_t, ss::col_t, std::size_t) override {}
virtual void set_format(ss::row_t, ss::col_t, ss::row_t, ss::col_t, std::size_t) override {}
virtual void set_column_format(ss::col_t, ss::col_t, std::size_t) override {}
virtual void set_row_format(ss::col_t, std::size_t) override {}
virtual void fill_down_cells(ss::row_t, ss::col_t, ss::row_t) override {}
};
//!code-start: my_shared_strings
class my_shared_strings : public ss::iface::import_shared_strings
{
ss_hash_type m_ss_hash;
ss_type& m_ss;
std::string m_current_string;
public:
my_shared_strings(ss_type& ss) : m_ss(ss) {}
virtual std::size_t add(std::string_view s) override
{
auto it = m_ss_hash.find(s);
if (it != m_ss_hash.end())
// This string already exists in the pool.
return it->second;
// This is a brand-new string.
return append(s);
}
virtual std::size_t append(std::string_view s) override
{
std::size_t string_index = m_ss.size();
m_ss.emplace_back(s);
m_ss_hash.emplace(s, string_index);
return string_index;
}
// The following methods are for formatted text segments, which we ignore for now.
virtual void set_segment_bold(bool) override {}
virtual void set_segment_font(std::size_t) override {}
virtual void set_segment_font_color(
ss::color_elem_t,
ss::color_elem_t,
ss::color_elem_t,
ss::color_elem_t) override {}
virtual void set_segment_font_name(std::string_view) override {}
virtual void set_segment_font_size(double) override {}
virtual void set_segment_italic(bool) override {}
virtual void set_segment_superscript(bool) override {}
virtual void set_segment_subscript(bool) override {}
virtual void append_segment(std::string_view s) override
{
m_current_string += s;
}
virtual std::size_t commit_segments() override
{
std::size_t string_index = m_ss.size();
m_ss.push_back(std::move(m_current_string));
const std::string& s = m_ss.back();
std::string_view sv(s.data(), s.size());
m_ss_hash.emplace(sv, string_index);
return string_index;
}
};
//!code-end: my_shared_strings
//!code-start: my_import_factory
class my_import_factory : public ss::iface::import_factory
{
ss_type m_string_pool; // string pool to be shared everywhere.
my_shared_strings m_shared_strings;
std::vector<std::unique_ptr<my_sheet>> m_sheets;
public:
my_import_factory() : m_shared_strings(m_string_pool) {}
virtual ss::iface::import_shared_strings* get_shared_strings() override
{
return &m_shared_strings;
}
virtual ss::iface::import_sheet* append_sheet(ss::sheet_t, std::string_view) override
{
// Pass the string pool to each sheet instance.
m_sheets.push_back(std::make_unique<my_sheet>(m_sheets.size(), m_string_pool));
return m_sheets.back().get();
}
virtual ss::iface::import_sheet* get_sheet(std::string_view) override
{
// TODO : implement this.
return nullptr;
}
virtual ss::iface::import_sheet* get_sheet(ss::sheet_t sheet_index) override
{
ss::sheet_t sheet_count = m_sheets.size();
return sheet_index < sheet_count ? m_sheets[sheet_index].get() : nullptr;
}
virtual void finalize() override {}
};
//!code-end: my_import_factory
int main()
{
std::filesystem::path input_dir = std::getenv("INPUTDIR");
auto filepath = input_dir / "multi-sheets.ods";
my_import_factory factory;
orcus::orcus_ods loader(&factory);
loader.read_file(filepath.native());
return EXIT_SUCCESS;
}
|