image - fix copy/move implementation and update/improve tests

This commit is contained in:
artemp 2015-09-16 14:28:19 +01:00
parent 60c79d6614
commit d54eca9dca
3 changed files with 42 additions and 23 deletions

View file

@ -111,8 +111,7 @@ image<T>::image(image<T> const& rhs)
offset_(rhs.offset_), offset_(rhs.offset_),
scaling_(rhs.scaling_), scaling_(rhs.scaling_),
premultiplied_alpha_(rhs.premultiplied_alpha_), premultiplied_alpha_(rhs.premultiplied_alpha_),
painted_(rhs.painted_) painted_(rhs.painted_) {}
{}
template <typename T> template <typename T>
image<T>::image(image<T> && rhs) noexcept image<T>::image(image<T> && rhs) noexcept

View file

@ -46,20 +46,21 @@ buffer::buffer(unsigned char* data, std::size_t size)
owns_(false) owns_(false)
{} {}
// move
buffer::buffer(buffer && rhs) noexcept buffer::buffer(buffer && rhs) noexcept
: size_(std::move(rhs.size_)), : size_(rhs.size_),
data_(std::move(rhs.data_)), data_(rhs.data_),
owns_(std::move(rhs.owns_)) owns_(rhs.owns_)
{ {
rhs.size_ = 0; rhs.size_ = 0;
rhs.data_ = nullptr; rhs.data_ = nullptr;
rhs.owns_ = true; rhs.owns_ = false;
} }
// copy
buffer::buffer(buffer const& rhs) buffer::buffer(buffer const& rhs)
: size_(rhs.size_), : size_(rhs.size_),
data_(static_cast<unsigned char*>(size_ != 0 ? ::operator new(size_) : nullptr)), data_(static_cast<unsigned char*>(size_ != 0 ? ::operator new(size_) : nullptr)),
owns_(rhs.owns_) owns_(true)
{ {
if (data_) std::copy(rhs.data_, rhs.data_ + rhs.size_, data_); if (data_) std::copy(rhs.data_, rhs.data_ + rhs.size_, data_);
} }

View file

@ -294,9 +294,15 @@ SECTION("Image copy/move")
{ {
mapnik::detail::buffer buf(16 * 16 * 4); // large enough to hold 16*16 RGBA image mapnik::detail::buffer buf(16 * 16 * 4); // large enough to hold 16*16 RGBA image
CHECK(buf.size() == 16 * 16 * 4); CHECK(buf.size() == 16 * 16 * 4);
mapnik::image_rgba8 im(16, 16, buf.data()); // shallow copy
// fill buffer with 0xff // fill buffer with 0xff
std::fill(buf.data(), buf.data() + buf.size(), 0xff); std::fill(buf.data(), buf.data() + buf.size(), 0xff);
// move buffer
mapnik::detail::buffer buf2(std::move(buf));
CHECK (buf.size() == 0);
CHECK (buf.data() == nullptr);
mapnik::image_rgba8 im(16, 16, buf2.data()); // shallow copy
std::size_t count = 0; std::size_t count = 0;
for (auto const& pixel : im) for (auto const& pixel : im)
{ {
@ -306,18 +312,18 @@ SECTION("Image copy/move")
++count; ++count;
} }
CHECK( count == im.width() * im.height()); CHECK( count == im.width() * im.height());
CHECK( buf.size() == im.width() * im.height() * sizeof( mapnik::image_rgba8::pixel_type)); CHECK( buf2.size() == im.width() * im.height() * sizeof( mapnik::image_rgba8::pixel_type));
// mutate buffer // mutate buffer
// fill buffer with 0x7f - semi-transparent grey // fill buffer with 0x7f - semi-transparent grey
std::fill(buf.data(), buf.data() + buf.size(), 0x7f); std::fill(buf2.data(), buf2.data() + buf2.size(), 0x7f);
for (auto const& pixel : im) for (auto const& pixel : im)
{ {
// expect rgba(127,127,127,0.5) // expect rgba(127,127,127,0.5)
CHECK( pixel == 0x7f7f7f7f); CHECK( pixel == 0x7f7f7f7f);
} }
// mutate image directly (mutates buf) // mutate image directly (buf)
for (auto & pixel : im) for (auto & pixel : im)
{ {
pixel = mapnik::color(0,255,0).rgba(); // green pixel = mapnik::color(0,255,0).rgba(); // green
@ -325,6 +331,10 @@ SECTION("Image copy/move")
// move // move
mapnik::image_rgba8 im2(std::move(im)); mapnik::image_rgba8 im2(std::move(im));
CHECK (im.data() == nullptr);
CHECK (im.bytes() == nullptr);
CHECK (im.width() == 0);
CHECK (im.height() == 0);
for (auto const& pixel : im2) for (auto const& pixel : im2)
{ {
// expect `green` // expect `green`
@ -340,14 +350,23 @@ SECTION("Image copy/move")
// mutate // mutate
pixel = mapnik::color(255,0,0).rgba(); //red pixel = mapnik::color(255,0,0).rgba(); //red
} }
// original buffer (holds green pixels)
unsigned char* itr = buf.data(); // im2 (green)
unsigned char* end = itr + buf.size(); for (auto const& pixel : im2)
{
// expect `green`
CHECK( pixel == mapnik::color(0,255,0).rgba());
}
//buf2 still holds green pixels
CHECK(buf2.size() == 16 * 16 * 4);
unsigned char* itr = buf2.data();
unsigned char* end = itr + buf2.size();
count = 0; count = 0;
for ( ;itr!= end; ++itr) for ( ;itr!= end; ++itr)
{ {
CHECK( *itr == ((count % 2 == 0) ? 0 : 0xff)); // green CHECK( *itr == ((count++ % 2 == 0) ? 0 : 0xff)); // green
++count;
} }
} }