xlnt/source/worksheet/range.cpp

206 lines
6.5 KiB
C++
Raw Normal View History

2015-12-25 06:10:02 +08:00
// Copyright (c) 2014-2016 Thomas Fussell
//
// 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-08-14 06:56:34 +08:00
#include <xlnt/worksheet/range.hpp>
#include <xlnt/cell/cell.hpp>
2016-01-25 00:15:49 +08:00
#include <xlnt/worksheet/const_range_iterator.hpp>
#include <xlnt/worksheet/range_iterator.hpp>
2014-08-14 06:56:34 +08:00
#include <xlnt/worksheet/range_reference.hpp>
#include <xlnt/worksheet/worksheet.hpp>
2014-05-22 05:48:51 +08:00
namespace xlnt {
range::range(worksheet ws, const range_reference &reference, major_order order, bool skip_null)
: ws_(ws), ref_(reference), order_(order), skip_null_(skip_null)
2014-05-22 05:48:51 +08:00
{
}
range::~range()
{
}
2014-07-20 04:59:05 +08:00
cell_vector range::operator[](std::size_t index)
2014-05-22 05:48:51 +08:00
{
return vector(index);
2014-05-22 05:48:51 +08:00
}
range_reference range::reference() const
2014-05-22 05:48:51 +08:00
{
return ref_;
}
2014-07-20 04:59:05 +08:00
std::size_t range::length() const
2014-05-22 05:48:51 +08:00
{
if (order_ == major_order::row)
{
return ref_.bottom_right().row() - ref_.top_left().row() + 1;
}
return (ref_.bottom_right().column() - ref_.top_left().column()).index + 1;
2014-05-22 05:48:51 +08:00
}
bool range::operator==(const range &comparand) const
{
return ref_ == comparand.ref_ && ws_ == comparand.ws_ && order_ == comparand.order_;
2014-05-22 05:48:51 +08:00
}
cell_vector range::vector(std::size_t vector_index)
2014-05-22 05:48:51 +08:00
{
if (order_ == major_order::row)
2014-07-24 04:00:09 +08:00
{
range_reference reference(
ref_.top_left().column_index(),
static_cast<row_t>(static_cast<std::size_t>(ref_.top_left().row()) + vector_index),
ref_.bottom_right().column_index(),
static_cast<row_t>(static_cast<std::size_t>(ref_.top_left().row()) + vector_index));
2015-10-15 06:05:13 +08:00
return cell_vector(ws_, reference, order_);
2014-07-24 04:00:09 +08:00
}
range_reference reference(
static_cast<column_t::index_t>(static_cast<std::size_t>(ref_.top_left().column().index) + vector_index),
ref_.top_left().row(),
static_cast<column_t::index_t>(static_cast<std::size_t>(ref_.top_left().column().index) + vector_index),
ref_.bottom_right().row());
2014-07-24 04:00:09 +08:00
return cell_vector(ws_, reference, order_);
2014-05-22 05:48:51 +08:00
}
bool range::contains(const cell_reference &ref)
{
return ref_.top_left().column_index() <= ref.column_index() &&
ref_.bottom_right().column_index() >= ref.column_index() &&
ref_.top_left().row() <= ref.row() && ref_.bottom_right().row() >= ref.row();
}
cell range::cell(const cell_reference &ref)
2014-05-22 05:48:51 +08:00
{
return (*this)[ref.row() - 1][ref.column().index - 1];
2016-07-17 03:57:50 +08:00
}
2014-05-22 05:48:51 +08:00
range::iterator range::begin()
{
if (order_ == major_order::row)
2014-07-24 04:00:09 +08:00
{
cell_reference top_right(ref_.bottom_right().column_index(), ref_.top_left().row());
range_reference row_range(ref_.top_left(), top_right);
return iterator(ws_, row_range, ref_, order_);
2014-07-24 04:00:09 +08:00
}
cell_reference bottom_left(ref_.top_left().column_index(), ref_.bottom_right().row());
range_reference row_range(ref_.top_left(), bottom_left);
return iterator(ws_, row_range, ref_, order_);
2014-05-22 05:48:51 +08:00
}
range::iterator range::end()
{
if (order_ == major_order::row)
2014-07-24 04:00:09 +08:00
{
auto past_end_row_index = ref_.bottom_right().row() + 1;
cell_reference bottom_left(ref_.top_left().column_index(), past_end_row_index);
cell_reference bottom_right(ref_.bottom_right().column_index(), past_end_row_index);
return iterator(ws_, range_reference(bottom_left, bottom_right), ref_, order_);
2014-07-24 04:00:09 +08:00
}
auto past_end_column_index = ref_.bottom_right().column_index() + 1;
cell_reference top_right(past_end_column_index, ref_.top_left().row());
cell_reference bottom_right(past_end_column_index, ref_.bottom_right().row());
return iterator(ws_, range_reference(top_right, bottom_right), ref_, order_);
2014-05-22 05:48:51 +08:00
}
range::const_iterator range::cbegin() const
{
if (order_ == major_order::row)
2014-07-24 04:00:09 +08:00
{
cell_reference top_right(ref_.bottom_right().column_index(), ref_.top_left().row());
range_reference row_range(ref_.top_left(), top_right);
return const_iterator(ws_, row_range, order_);
2014-07-24 04:00:09 +08:00
}
cell_reference bottom_left(ref_.top_left().column_index(), ref_.bottom_right().row());
range_reference row_range(ref_.top_left(), bottom_left);
return const_iterator(ws_, row_range, order_);
2014-05-22 05:48:51 +08:00
}
range::const_iterator range::cend() const
{
if (order_ == major_order::row)
2014-07-24 04:00:09 +08:00
{
auto past_end_row_index = ref_.bottom_right().row() + 1;
cell_reference bottom_left(ref_.top_left().column_index(), past_end_row_index);
cell_reference bottom_right(ref_.bottom_right().column_index(), past_end_row_index);
return const_iterator(ws_, range_reference(bottom_left, bottom_right), order_);
2014-07-24 04:00:09 +08:00
}
auto past_end_column_index = ref_.bottom_right().column_index() + 1;
cell_reference top_right(past_end_column_index, ref_.top_left().row());
cell_reference bottom_right(past_end_column_index, ref_.bottom_right().row());
2014-07-24 04:00:09 +08:00
return const_iterator(ws_, range_reference(top_right, bottom_right), order_);
2014-05-22 05:48:51 +08:00
}
bool range::operator!=(const range &comparand) const
{
return !(*this == comparand);
}
range::const_iterator range::begin() const
{
return cbegin();
}
range::const_iterator range::end() const
{
return cend();
}
range::reverse_iterator range::rbegin()
{
return reverse_iterator(end());
}
range::reverse_iterator range::rend()
{
return reverse_iterator(begin());
}
range::const_reverse_iterator range::crbegin() const
{
return const_reverse_iterator(cend());
}
range::const_reverse_iterator range::rbegin() const
{
return crbegin();
}
range::const_reverse_iterator range::crend() const
{
return const_reverse_iterator(cbegin());
}
range::const_reverse_iterator range::rend() const
{
return crend();
}
2014-05-22 05:48:51 +08:00
} // namespace xlnt