mapnik/include/datasource.hpp
Artem Pavlenko 955ff4c4f5 1. fixed shape datasource bug - attributes were ignored for point/pointz/pointm types
2. use boost::thread for mutex/lock 
3  use boost::noncopyable
4  build agg as a shared lib for now
5. corrected panning code in map.cpp
6. improved coord_transform
2005-12-23 12:31:54 +00:00

105 lines
2.8 KiB
C++

/* This file is part of Mapnik (c++ mapping toolkit)
* Copyright (C) 2005 Artem Pavlenko
*
* Mapnik 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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
//$Id: datasource.hpp 43 2005-04-22 18:52:47Z pavlenko $
#ifndef DATASOURCE_HPP
#define DATASOURCE_HPP
#include <map>
#include <string>
#include "ctrans.hpp"
#include "params.hpp"
#include "feature.hpp"
#include "query.hpp"
#include "feature_layer_desc.hpp"
#include <boost/shared_ptr.hpp>
namespace mapnik
{
typedef shared_ptr<Feature> feature_ptr;
struct Featureset
{
virtual feature_ptr next()=0;
virtual ~Featureset() {};
};
typedef shared_ptr<Featureset> featureset_ptr;
class datasource_exception : public std::exception
{
private:
const std::string message_;
public:
datasource_exception(const std::string& message=std::string())
:message_(message) {}
~datasource_exception() throw() {}
virtual const char* what() const throw()
{
return message_.c_str();
}
};
class datasource
{
public:
enum {
Vector,
Raster
};
virtual int type() const=0;
virtual featureset_ptr features(const query& q) const=0;
virtual Envelope<double> const& envelope() const=0;
virtual layer_descriptor const& get_descriptor() const=0;
virtual ~datasource() {};
};
typedef std::string datasource_name();
typedef datasource* create_ds(const parameters& params);
typedef void destroy_ds(datasource *ds);
class datasource_deleter
{
public:
void operator() (datasource* ds)
{
delete ds;
}
};
typedef boost::shared_ptr<datasource> datasource_p;
///////////////////////////////////////////
#define DATASOURCE_PLUGIN(classname) \
extern "C" std::string datasource_name() \
{ \
return classname::name();\
}\
extern "C" datasource* create(const parameters &params) \
{ \
return new classname(params); \
}\
extern "C" void destroy(datasource *ds) \
{ \
delete ds;\
}\
///////////////////////////////////////////
}
#endif //DATASOURCE_HPP