vtk-m/vtkm/cont/testing/UnitTestArrayPortalToIterators.cxx
Kenneth Moreland 9bbbaecab6 Add ArrayPortalToIterators functionality.
This moves the ability to get an iterator from an array portal out of
the portal itself. The next step is to move the GetIteratorBegin/End out
of ArrayPortal. This should make the implemenation a bit cleaner.
2014-09-08 13:39:58 -06:00

185 lines
5.2 KiB
C++

//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//
// Copyright 2014 Sandia Corporation.
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014. Los Alamos National Security
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
// Laboratory (LANL), the U.S. Government retains certain rights in
// this software.
//============================================================================
#include <vtkm/cont/ArrayPortalToIterators.h>
#include <vtkm/VectorTraits.h>
#include <vtkm/cont/testing/Testing.h>
namespace {
template<typename T>
struct TemplatedTests
{
static const vtkm::Id ARRAY_SIZE = 10;
typedef T ValueType;
typedef typename vtkm::VectorTraits<ValueType>::ComponentType ComponentType;
static ValueType ExpectedValue(vtkm::Id index, ComponentType value)
{
return ValueType(index + value);
}
class ReadOnlyArrayPortal
{
public:
typedef T ValueType;
VTKM_CONT_EXPORT
ReadOnlyArrayPortal(ComponentType value) : Value(value) { }
VTKM_CONT_EXPORT
vtkm::Id GetNumberOfValues() const { return ARRAY_SIZE; }
VTKM_CONT_EXPORT
ValueType Get(vtkm::Id index) const { return ExpectedValue(index, this->Value); }
private:
ComponentType Value;
};
class WriteOnlyArrayPortal
{
public:
typedef T ValueType;
VTKM_CONT_EXPORT
WriteOnlyArrayPortal(ComponentType value) : Value(value) { }
VTKM_CONT_EXPORT
vtkm::Id GetNumberOfValues() const { return ARRAY_SIZE; }
VTKM_CONT_EXPORT
void Set(vtkm::Id index, const ValueType &value) const {
VTKM_TEST_ASSERT(value == ExpectedValue(index, this->Value),
"Set unexpected value in array portal.");
}
private:
ComponentType Value;
};
template<class IteratorType>
void FillIterator(IteratorType begin, IteratorType end, ComponentType value)
{
std::cout << " Check distance" << std::endl;
VTKM_TEST_ASSERT(std::distance(begin, end) == ARRAY_SIZE,
"Distance between begin and end incorrect.");
std::cout << " Write expected value in iterator." << std::endl;
vtkm::Id index = 0;
for (IteratorType iter = begin; iter != end; iter++)
{
*iter = ExpectedValue(index, value);
index++;
}
}
template<class IteratorType>
bool CheckIterator(IteratorType begin,
IteratorType end,
ComponentType value)
{
std::cout << " Check distance" << std::endl;
VTKM_TEST_ASSERT(std::distance(begin, end) == ARRAY_SIZE,
"Distance between begin and end incorrect.");
std::cout << " Read expected value from iterator." << std::endl;
vtkm::Id index = 0;
for (IteratorType iter = begin; iter != end; iter++)
{
VTKM_TEST_ASSERT(ValueType(*iter) == ExpectedValue(index, value),
"Got bad value from iterator.");
index++;
}
return true;
}
void TestIteratorRead()
{
typedef ReadOnlyArrayPortal ArrayPortalType;
typedef vtkm::cont::ArrayPortalToIterators<ArrayPortalType> GetIteratorsType;
static const ComponentType READ_VALUE = 23900;
ArrayPortalType portal(READ_VALUE);
std::cout << " Testing read-only iterators with ArrayPortalToIterators."
<< std::endl;
GetIteratorsType iterators(portal);
CheckIterator(iterators.GetBegin(), iterators.GetEnd(), READ_VALUE);
std::cout << " Testing read-only iterators with convenience functions."
<< std::endl;
CheckIterator(vtkm::cont::ArrayPortalToIteratorBegin(portal),
vtkm::cont::ArrayPortalToIteratorEnd(portal),
READ_VALUE);
}
void TestIteratorWrite()
{
typedef WriteOnlyArrayPortal ArrayPortalType;
typedef vtkm::cont::ArrayPortalToIterators<ArrayPortalType> GetIteratorsType;
static const ComponentType WRITE_VALUE = 63400;
ArrayPortalType portal(WRITE_VALUE);
std::cout << " Testing write-only iterators with ArrayPortalToIterators."
<< std::endl;
GetIteratorsType iterators(portal);
FillIterator(iterators.GetBegin(), iterators.GetEnd(), WRITE_VALUE);
std::cout << " Testing write-only iterators with convenience functions."
<< std::endl;
FillIterator(vtkm::cont::ArrayPortalToIteratorBegin(portal),
vtkm::cont::ArrayPortalToIteratorEnd(portal),
WRITE_VALUE);
}
void operator()()
{
TestIteratorRead();
TestIteratorWrite();
}
};
struct TestFunctor
{
template<typename T>
void operator()(T)
{
TemplatedTests<T> tests;
tests();
}
};
void TestArrayPortalToIterators()
{
vtkm::testing::Testing::TryAllTypes(TestFunctor());
}
} // Anonymous namespace
int UnitTestArrayPortalToIterators(int, char *[])
{
return vtkm::cont::testing::Testing::Run(TestArrayPortalToIterators);
}