mapnik/src/image.cpp

105 lines
2.8 KiB
C++
Raw Normal View History

2015-03-13 16:52:03 +01:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
2021-01-05 15:39:07 +01:00
* Copyright (C) 2021 Artem Pavlenko
2015-03-13 16:52:03 +01:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
// mapnik
#include <mapnik/config.hpp>
#include <mapnik/image.hpp>
2015-03-16 18:18:07 +01:00
#include <mapnik/image_null.hpp>
2015-03-13 16:52:03 +01:00
#include <mapnik/image_impl.hpp>
#include <mapnik/pixel_types.hpp>
namespace mapnik {
2015-03-13 16:52:03 +01:00
namespace detail {
2015-03-13 22:34:49 +01:00
2015-05-05 14:12:29 +02:00
// BUFFER
2015-03-13 22:34:49 +01:00
buffer::buffer(std::size_t size)
: size_(size)
, data_(static_cast<unsigned char*>(size_ != 0 ? ::operator new(size_) : nullptr))
, owns_(true)
{}
buffer::buffer(unsigned char* data, std::size_t size)
: size_(size)
, data_(data)
, owns_(false)
2015-03-13 22:34:49 +01:00
{}
// move
buffer::buffer(buffer&& rhs) noexcept
: size_(rhs.size_)
, data_(rhs.data_)
, owns_(rhs.owns_)
2015-03-13 22:34:49 +01:00
{
rhs.size_ = 0;
rhs.data_ = nullptr;
rhs.owns_ = false;
2015-03-13 22:34:49 +01:00
}
// copy
2015-03-13 22:34:49 +01:00
buffer::buffer(buffer const& rhs)
: size_(rhs.size_)
, data_(static_cast<unsigned char*>((rhs.owns_ && size_ != 0) ? ::operator new(size_) : nullptr))
, owns_(rhs.owns_)
2015-03-13 22:34:49 +01:00
{
if (data_)
std::copy(rhs.data_, rhs.data_ + rhs.size_, data_);
else
data_ = rhs.data_;
2015-03-13 22:34:49 +01:00
}
buffer::~buffer()
{
if (owns_)
::operator delete(data_);
2015-03-13 22:34:49 +01:00
}
buffer& buffer::operator=(buffer rhs)
{
swap(rhs);
return *this;
}
void buffer::swap(buffer& rhs)
2015-03-13 22:34:49 +01:00
{
std::swap(size_, rhs.size_);
std::swap(data_, rhs.data_);
std::swap(owns_, rhs.owns_);
2015-03-13 22:34:49 +01:00
}
template struct MAPNIK_DECL image_dimensions<4294836225>;
2015-03-13 22:34:49 +01:00
} // namespace detail
2015-03-13 22:34:49 +01:00
2015-03-13 16:52:03 +01:00
template class MAPNIK_DECL image<rgba8_t>;
template class MAPNIK_DECL image<gray8_t>;
template class MAPNIK_DECL image<gray8s_t>;
template class MAPNIK_DECL image<gray16_t>;
template class MAPNIK_DECL image<gray16s_t>;
template class MAPNIK_DECL image<gray32_t>;
template class MAPNIK_DECL image<gray32s_t>;
template class MAPNIK_DECL image<gray32f_t>;
template class MAPNIK_DECL image<gray64_t>;
template class MAPNIK_DECL image<gray64s_t>;
template class MAPNIK_DECL image<gray64f_t>;
} // namespace mapnik