xlnt/include/xlnt/workbook/workbook.hpp

265 lines
8.4 KiB
C++
Raw Normal View History

// Copyright (c) 2015 Thomas Fussell
// Copyright (c) 2010-2015 openpyxl
2014-06-06 04:19:31 +08:00
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, WRISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE
//
// @license: http://www.opensource.org/licenses/mit-license.php
// @author: see AUTHORS file
2014-05-21 22:20:30 +08:00
#pragma once
2014-06-14 03:05:24 +08:00
#include <memory>
2014-05-21 22:20:30 +08:00
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#include <xlnt/packaging/relationship.hpp>
2014-07-20 02:43:48 +08:00
#include "xlnt_config.hpp"
2014-05-21 22:20:30 +08:00
namespace xlnt {
2015-10-15 06:05:13 +08:00
class alignment;
class border;
class color;
2014-07-20 04:59:05 +08:00
class document_properties;
2014-05-21 22:20:30 +08:00
class drawing;
2015-10-15 06:05:13 +08:00
class fill;
class font;
2015-10-30 01:46:56 +08:00
class manifest;
2015-10-15 06:05:13 +08:00
class named_range;
2015-10-19 03:30:46 +08:00
class number_format;
2015-10-15 06:05:13 +08:00
class pattern_fill;
class protection;
class range;
2014-05-21 22:20:30 +08:00
class range_reference;
class relationship;
2015-10-19 03:30:46 +08:00
class style;
2015-10-30 07:37:07 +08:00
class theme;
2014-05-21 22:20:30 +08:00
class worksheet;
2015-10-15 06:05:13 +08:00
class zip_file;
enum class encoding;
2014-05-31 06:42:25 +08:00
namespace detail { struct workbook_impl; } // namespace detail
2014-06-13 23:41:32 +08:00
/// <summary>
/// workbook is the container for all other parts of the document.
/// </summary>
class XLNT_CLASS workbook
2014-05-21 22:20:30 +08:00
{
public:
2015-11-11 09:47:07 +08:00
class XLNT_CLASS iterator
2014-07-25 05:31:46 +08:00
{
public:
2014-07-25 05:31:46 +08:00
iterator(workbook &wb, std::size_t index);
iterator(const iterator &);
iterator &operator=(const iterator &);
worksheet operator*();
bool operator==(const iterator &comparand) const;
bool operator!=(const iterator &comparand) const
{
return !(*this == comparand);
}
2014-07-25 05:31:46 +08:00
iterator operator++(int);
iterator &operator++();
private:
2014-07-25 05:31:46 +08:00
workbook &wb_;
std::size_t index_;
};
2015-11-11 09:47:07 +08:00
class XLNT_CLASS const_iterator
2014-07-25 05:31:46 +08:00
{
public:
2014-07-25 05:31:46 +08:00
const_iterator(const workbook &wb, std::size_t index);
const_iterator(const const_iterator &);
const_iterator &operator=(const const_iterator &);
const worksheet operator*();
bool operator==(const const_iterator &comparand) const;
bool operator!=(const const_iterator &comparand) const
{
return !(*this == comparand);
}
2014-07-25 05:31:46 +08:00
const_iterator operator++(int);
const_iterator &operator++();
private:
2014-07-25 05:31:46 +08:00
const workbook &wb_;
std::size_t index_;
};
static std::size_t index_from_ws_filename(const std::string &filename);
2014-07-25 05:31:46 +08:00
// constructors
workbook();
workbook(encoding e);
2014-07-24 08:51:28 +08:00
workbook &operator=(workbook other);
workbook(workbook &&other);
workbook(const workbook &other);
2014-07-24 08:51:28 +08:00
friend void swap(workbook &left, workbook &right);
2014-05-21 22:20:30 +08:00
worksheet get_active_sheet();
2014-07-25 05:31:46 +08:00
bool get_guess_types() const;
2014-07-25 05:31:46 +08:00
void set_guess_types(bool guess);
bool get_data_only() const;
2014-07-25 05:31:46 +08:00
void set_data_only(bool data_only);
// create
2014-05-21 22:20:30 +08:00
worksheet create_sheet();
worksheet create_sheet(std::size_t index);
worksheet create_sheet(const std::string &title);
worksheet create_sheet(std::size_t index, const std::string &title);
worksheet create_sheet(const std::string &title, const relationship &rel);
// add
2014-05-21 22:20:30 +08:00
void add_sheet(worksheet worksheet);
void add_sheet(worksheet worksheet, std::size_t index);
// remove
2014-05-21 22:20:30 +08:00
void remove_sheet(worksheet worksheet);
void clear();
// container operations
worksheet get_sheet_by_name(const std::string &sheet_name);
const worksheet get_sheet_by_name(const std::string &sheet_name) const;
worksheet get_sheet_by_index(std::size_t index);
const worksheet get_sheet_by_index(std::size_t index) const;
bool contains(const std::string &key) const;
2014-05-21 22:20:30 +08:00
int get_index(worksheet worksheet);
worksheet operator[](const std::string &name);
2014-06-11 05:12:15 +08:00
worksheet operator[](std::size_t index);
iterator begin();
iterator end();
const_iterator begin() const
{
return cbegin();
}
const_iterator end() const
{
return cend();
}
const_iterator cbegin() const;
const_iterator cend() const;
std::vector<std::string> get_sheet_names() const;
2014-07-20 04:59:05 +08:00
document_properties &get_properties();
const document_properties &get_properties() const;
// named ranges
2015-10-15 06:05:13 +08:00
std::vector<named_range> get_named_ranges() const;
void create_named_range(const std::string &name, worksheet worksheet, const range_reference &reference);
2015-11-11 08:47:31 +08:00
void create_named_range(const std::string &name, worksheet worksheet, const std::string &reference_string);
bool has_named_range(const std::string &name) const;
range get_named_range(const std::string &name);
void remove_named_range(const std::string &name);
// serialization
2014-06-05 06:42:17 +08:00
bool save(std::vector<unsigned char> &data);
bool save(const std::string &filename);
2014-06-05 06:42:17 +08:00
bool load(const std::vector<unsigned char> &data);
bool load(const std::string &filename);
2015-10-24 02:42:36 +08:00
bool load(std::istream &stream);
2015-10-15 06:05:13 +08:00
bool load(zip_file &archive);
2014-05-21 22:20:30 +08:00
bool operator==(const workbook &rhs) const;
2015-10-14 12:03:48 +08:00
bool operator!=(const workbook &rhs) const
{
return !(*this == rhs);
}
2014-07-20 04:59:05 +08:00
bool operator==(std::nullptr_t) const;
2015-10-14 12:03:48 +08:00
bool operator!=(std::nullptr_t) const
{
return !(*this == std::nullptr_t{});
}
void create_relationship(const std::string &id, const std::string &target, relationship::type type);
relationship get_relationship(const std::string &id) const;
2015-10-30 07:37:07 +08:00
const std::vector<relationship> &get_relationships() const;
2015-10-24 02:42:36 +08:00
void add_alignment(const alignment &a);
void add_border(const border &b);
void add_fill(const fill &f);
void add_font(const font &f);
void add_color(const color &c);
void add_number_format(const number_format &format);
void add_protection(const protection &p);
2015-11-03 06:25:10 +08:00
const std::vector<style> &get_styles() const;
2015-11-03 06:25:10 +08:00
const std::vector<color> &get_colors() const;
const std::vector<border> &get_borders() const;
const std::vector<fill> &get_fills() const;
const std::vector<font> &get_fonts() const;
const std::vector<number_format> &get_number_formats() const;
2015-11-03 06:25:10 +08:00
color add_indexed_color(const color &rgb_color);
color get_indexed_color(const color &indexed_color) const;
2015-10-19 03:30:46 +08:00
const number_format &get_number_format(std::size_t style_id) const;
std::size_t set_number_format(const number_format &format, std::size_t style_id);
const font &get_font(std::size_t style_id) const;
std::size_t set_font(const font &font_, std::size_t style_id);
const fill &get_fill(std::size_t style_id) const;
std::size_t set_fill(const fill &fill_, std::size_t style_id);
const border &get_border(std::size_t style_id) const;
std::size_t set_border(const border &border_, std::size_t style_id);
const alignment &get_alignment(std::size_t style_id) const;
std::size_t set_alignment(const alignment &alignment_, std::size_t style_id);
const protection &get_protection(std::size_t style_id) const;
std::size_t set_protection(const protection &protection_, std::size_t style_id);
bool get_pivot_button(std::size_t style_id) const;
bool get_quote_prefix(std::size_t style_id) const;
void set_code_name(const std::string &code_name);
2015-10-30 07:37:07 +08:00
bool has_loaded_theme() const;
const theme &get_loaded_theme() const;
2015-10-24 02:42:36 +08:00
const style &get_style(std::size_t style_id) const;
std::size_t add_style(const style &style_);
2015-10-30 01:46:56 +08:00
manifest &get_manifest();
const manifest &get_manifest() const;
2015-10-30 07:37:07 +08:00
const std::vector<relationship> &get_root_relationships() const;
void add_shared_string(const std::string &shared);
std::vector<std::string> &get_shared_strings();
const std::vector<std::string> &get_shared_strings() const;
private:
friend class worksheet;
2014-07-20 04:59:05 +08:00
std::shared_ptr<detail::workbook_impl> d_;
2014-05-21 22:20:30 +08:00
};
2014-05-21 22:20:30 +08:00
} // namespace xlnt