cnorxz/src/include/ranges/range_base.h

91 lines
1.6 KiB
C
Raw Normal View History

2017-02-16 11:20:40 +01:00
// -*- C++ -*-
#ifndef __range_base_h__
#define __range_base_h__
#include <cstdlib>
#include <vector>
#include <memory>
2017-02-16 11:20:40 +01:00
#include "base_def.h"
2017-12-17 17:40:55 +01:00
namespace MultiArrayTools
{
class RangeBase;
}
2017-02-16 11:20:40 +01:00
namespace MultiArrayTools
{
2017-12-18 11:19:04 +01:00
size_t indexId();
2017-02-16 11:20:40 +01:00
2017-12-17 14:23:23 +01:00
enum class SpaceType
2017-02-16 11:20:40 +01:00
{
2017-12-05 17:31:57 +01:00
NONE = 0,
ANY = 1,
2017-12-05 17:31:57 +01:00
#define include_range_type(x,n) x = n,
#include "range_types/header.h"
#undef include_range_type
2017-02-16 11:20:40 +01:00
};
class RangeFactoryBase
{
public:
RangeFactoryBase() = default;
virtual ~RangeFactoryBase() = default;
// should return mProd !!
virtual std::shared_ptr<RangeBase> create() = 0;
protected:
std::shared_ptr<RangeBase> mProd;
2017-08-04 11:27:47 +02:00
// call this function before returning product !!
void setSelf();
};
class RangeBase
2017-02-16 11:20:40 +01:00
{
public:
virtual ~RangeBase() = default;
2017-08-04 16:19:50 +02:00
virtual size_t size() const = 0;
virtual size_t dim() const = 0;
bool operator==(const RangeBase& in) const;
bool operator!=(const RangeBase& in) const;
//virtual bool regular() const = 0; // integer distance (e.g. 2,3,4,...)
//virtual bool linear() const = 0; // 1dim valuable (e.g. 2.45, 3.12, 3.56,...)
//virtual bool multi() const = 0; // mdim
//virtual bool maplike() const = 0; // meta type is ~ MultiArray<T,...>
2017-02-16 11:20:40 +01:00
friend RangeFactoryBase;
2017-06-01 13:19:27 +02:00
protected:
RangeBase() = default;
2017-08-04 16:19:50 +02:00
std::weak_ptr<RangeBase> mThis;
2017-05-24 19:01:02 +02:00
};
2017-02-16 11:20:40 +01:00
template <class Index>
class RangeInterface : public RangeBase
2017-02-16 11:20:40 +01:00
{
public:
2017-05-31 16:44:28 +02:00
typedef Index IndexType;
2017-06-01 13:19:27 +02:00
2017-08-04 14:57:19 +02:00
virtual Index begin() const = 0;
virtual Index end() const = 0;
protected:
RangeInterface() = default;
2017-02-16 11:20:40 +01:00
};
}
#endif