Doxygen will only process files with a @file documentation comment. Up to now, none of our test code has such a comment, preventing the cross-links to unit tests from working. This is unfortunate, since unit tests, and even the code comments there, can be considered as the most useful form of technical documentation. Thus I'll start an initiative to fill in those missing comments automatically
165 lines
4.8 KiB
C++
165 lines
4.8 KiB
C++
/*
|
|
VectorTransfer(Test) - intercept object copying when a STL vector grows
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
/** @file vector-transfer-test.cpp
|
|
** unit test §§TODO§§
|
|
*/
|
|
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
|
|
#include "lib/scoped-holder-transfer.hpp"
|
|
#include "lib/test/testdummy.hpp"
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
|
|
namespace lib {
|
|
namespace test {
|
|
|
|
using ::Test;
|
|
using std::vector;
|
|
using std::cout;
|
|
|
|
namespace { // extending the Dummy for our special purpose....
|
|
|
|
class TransDummy
|
|
: public Dummy
|
|
{
|
|
public:
|
|
TransDummy()
|
|
{
|
|
TRACE (test, "CTOR TransDummy() --> this=%p", this);
|
|
setVal(0); // we use val_==0 to mark the "empty" state
|
|
}
|
|
|
|
~TransDummy()
|
|
{
|
|
TRACE (test, "DTOR ~TransDummy() this=%p", this);
|
|
}
|
|
|
|
/* to make Dummy usable within vector, we need to provide
|
|
* \em special copy operations, an operator bool() and
|
|
* a transfer_control friend function to be used by
|
|
* our special allocator.
|
|
*/
|
|
|
|
TransDummy (const TransDummy& o)
|
|
: Dummy()
|
|
{
|
|
TRACE (test, "COPY-ctor TransDummy( ref=%p ) --> this=%p", &o,this);
|
|
CHECK (!o, "protocol violation: real copy operations inhibited");
|
|
}
|
|
|
|
TransDummy&
|
|
operator= (TransDummy const& ref)
|
|
{
|
|
TRACE (test, "COPY target=%p <-- source=%p", this,&ref);
|
|
CHECK (!(*this));
|
|
CHECK (!ref, "protocol violation: real copy operations inhibited");
|
|
return *this;
|
|
}
|
|
|
|
void
|
|
setup (int x=0)
|
|
{
|
|
setVal (x? x : (rand() % 10000));
|
|
TRACE (test, "CREATE val=%d ---> this=%p", getVal(),this);
|
|
}
|
|
|
|
|
|
// define implicit conversion to "bool" the naive way...
|
|
operator bool() const
|
|
{
|
|
return 0!=getVal();
|
|
}
|
|
|
|
|
|
friend void transfer_control (TransDummy& from, TransDummy& to);
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
transfer_control (TransDummy& from, TransDummy& to)
|
|
{
|
|
TRACE (test, "TRANSFER target=%p <-- source=%p", &to,&from);
|
|
CHECK (!to, "protocol violation: target already manages another object");
|
|
to.setVal (from.getVal());
|
|
from.setVal(0);
|
|
}
|
|
|
|
typedef Allocator_TransferNoncopyable<TransDummy> Allo;
|
|
typedef vector<TransDummy, Allo> TransDummyVector;
|
|
}
|
|
|
|
|
|
|
|
|
|
/******************************************************************************//**
|
|
* @test growing (re-allocating) a vector with noncopyable objects, with the
|
|
* help of a special Allocator and a custom \c transfer_control operation
|
|
* provided by the contained objects. The idea is to allow some special
|
|
* copy-operations for the purpose of re-allocations within the vector,
|
|
* without requiring the object to be really copyable.
|
|
*/
|
|
class VectorTransfer_test : public Test
|
|
{
|
|
|
|
virtual void
|
|
run (Arg)
|
|
{
|
|
cout << "\n..setup table space for 2 elements\n";
|
|
TransDummyVector table;
|
|
table.reserve(2);
|
|
CHECK (0 == Dummy::checksum());
|
|
|
|
cout << "\n..install one element at index[0]\n";
|
|
table.push_back(TransDummy());
|
|
CHECK (0 == Dummy::checksum());
|
|
|
|
table[0].setup(); // switches into "managed" state
|
|
CHECK (0 < Dummy::checksum());
|
|
int theSum = Dummy::checksum();
|
|
|
|
cout << "\n..*** resize table to 5 elements\n";
|
|
table.resize(5);
|
|
CHECK (theSum==Dummy::checksum());
|
|
|
|
cout << "\n..install another element\n";
|
|
table[3].setup(375);
|
|
CHECK (theSum+375==Dummy::checksum());
|
|
|
|
cout << "\n..kill all elements....\n";
|
|
table.clear();
|
|
CHECK (0 == Dummy::checksum());
|
|
}
|
|
|
|
};
|
|
|
|
LAUNCHER (VectorTransfer_test, "unit common");
|
|
|
|
|
|
}} // namespace lib::test
|