1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/////////////////////////////////////////////////////////////
// //
// Copyright (c) 2003-2017 by The University of Queensland //
// Centre for Geoscience Computing //
// http://earth.uq.edu.au/centre-geoscience-computing //
// //
// Primary Business: Brisbane, Queensland, Australia //
// Licensed under the Open Software License version 3.0 //
// http://www.apache.org/licenses/LICENSE-2.0 //
// //
/////////////////////////////////////////////////////////////
#include <boost/mpl/placeholders.hpp>
#include "Python/BoostPythonUtil/Util.h"
#include "Python/BoostPythonUtil/PythonIterIterator.h"
#include <stdexcept>
using namespace boost::mpl::placeholders;
namespace esys
{
namespace lsm
{
template <class T>
struct Wrap
{
};
template <class WrappedT>
class PtrWrap
{
public:
PtrWrap(WrappedT &t) : m_p(&t)
{
}
template <typename T>
void operator()(Wrap<T> wrappedT)
{
(*m_p)(wrappedT);
}
private:
WrappedT *m_p;
};
class ExtractIndexer
{
public:
ExtractIndexer(boost::python::object pyOb)
: m_currIndex(-1),
m_extractIndex(-1),
m_pyOb(pyOb)
{
}
int getExtractIndex() const
{
return m_extractIndex;
}
template <class T>
void operator()(Wrap<T>)
{
++m_currIndex;
if (m_extractIndex < 0)
{
boost::python::extract<T &> extractor(m_pyOb);
if (extractor.check())
{
m_extractIndex = m_currIndex;
}
}
}
private:
int m_currIndex;
int m_extractIndex;
boost::python::object m_pyOb;
};
typedef bpu::PythonIterIterator<boost::python::object> PyObjectIterator;
typedef std::vector<boost::python::list> PyListVector;
template <class TmplLsmParticle>
class LmAdder
{
public:
LmAdder(CLatticeMaster &lm, PyListVector &pyListVector)
: m_currIndex(-1),
m_pLm(&lm),
m_pPyListVector(&pyListVector)
{
}
template <class T>
void operator()(Wrap<T>)
{
++(this->m_currIndex);
typedef bpu::PythonIterIterator<T &> TRefIterator;
TRefIterator it((*m_pPyListVector)[m_currIndex]);
this->m_pLm->template addParticles<TRefIterator,TmplLsmParticle>(it);
}
private:
int m_currIndex;
CLatticeMaster *m_pLm;
PyListVector *m_pPyListVector;
};
template <class TmplMplVector, class TmplLsmParticle>
void LmParticleAdder<TmplMplVector,TmplLsmParticle>::addParticles(
boost::python::object &iterable,
CLatticeMaster &lm
)
{
PyObjectIterator it(iterable);
const size_t numTypes = boost::mpl::size<MplVector>::type::value;
PyListVector pyListVector;
pyListVector.reserve(numTypes);
for (size_t i = 0; i < numTypes; i++)
{
pyListVector.push_back(boost::python::list());
}
while (it.hasNext())
{
boost::python::object pyOb = it.next();
ExtractIndexer extractIndex(pyOb);
boost::mpl::for_each<MplVector, Wrap<boost::mpl::placeholders::_1> >(
PtrWrap<ExtractIndexer>(extractIndex)
);
if (extractIndex.getExtractIndex() >= 0)
{
pyListVector[extractIndex.getExtractIndex()].append(pyOb);
}
else
{
throw std::runtime_error(
boost::python::extract<std::string>(
std::string("Could not extract C++ type from python object:")
+
boost::python::str(pyOb)
)
);
}
}
boost::mpl::for_each<MplVector, Wrap<boost::mpl::placeholders::_1> >(LmAdder<LsmParticle>(lm, pyListVector));
}
}
}
|