mapnik/plugins/input/raster/raster_featureset.hpp

119 lines
2.7 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
2005-06-14 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
2005-06-14 17:06:59 +02:00
#ifndef RASTER_FEATURESET_HH
#define RASTER_FEATURESET_HH
2005-09-21 22:27:37 +02:00
#include "raster_datasource.hpp"
#include "raster_info.hpp"
2005-06-14 17:06:59 +02:00
#include <vector>
using std::vector;
class single_file_policy
{
2005-09-21 22:27:37 +02:00
raster_info info_;
2005-06-14 17:06:59 +02:00
public:
class const_iterator
{
enum {start,end};
bool status_;
const single_file_policy* p_;
public:
explicit const_iterator(const single_file_policy* p)
:status_(start),
p_(p) {}
const_iterator()
:status_(end){}
const_iterator(const const_iterator& other)
:status_(other.status_),
p_(other.p_) {}
const_iterator& operator++()
{
status_=end;
return *this;
}
2005-09-21 22:27:37 +02:00
const raster_info& operator*() const
2005-06-14 17:06:59 +02:00
{
return p_->info_;
}
2005-09-21 22:27:37 +02:00
const raster_info* operator->() const
2005-06-14 17:06:59 +02:00
{
return &(p_->info_);
}
bool operator!=(const const_iterator& itr)
{
return status_!=itr.status_;
}
};
2005-09-21 22:27:37 +02:00
explicit single_file_policy(const raster_info& info)
2005-06-14 17:06:59 +02:00
:info_(info) {}
const_iterator begin()
{
return const_iterator(this);
}
const_iterator query(const Envelope<double>& box)
{
if (box.intersects(info_.envelope()))
{
return begin();
}
return end();
}
const_iterator end()
{
return const_iterator();
}
};
class os_name_policy
{
//TODO
};
template <typename LookupPolicy>
2005-09-21 22:27:37 +02:00
class raster_featureset : public Featureset
2005-06-14 17:06:59 +02:00
{
typedef typename LookupPolicy::const_iterator iterator_type;
LookupPolicy policy_;
size_t id_;
Envelope<double> extent_;
CoordTransform t_;
iterator_type curIter_;
iterator_type endIter_;
public:
2005-09-21 22:27:37 +02:00
raster_featureset(LookupPolicy const& policy,query const& q);
virtual ~raster_featureset();
feature_ptr next();
2005-06-14 17:06:59 +02:00
};
2005-09-21 22:27:37 +02:00
#endif //RASTER_FEATURESET_HH