WMSLayer.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file terralib/wms/WMSLayer.h
22 
23  \brief A layer with reference to a WMS Layer.
24 */
25 
26 #ifndef __TERRALIB_WMS_INTERNAL_WMSLAYER_H
27 #define __TERRALIB_WMS_INTERNAL_WMSLAYER_H
28 
29 // TerraLib
30 #include "../maptools/AbstractLayer.h"
31 #include "Config.h"
32 
33 // STL
34 #include <memory>
35 
36 namespace te
37 {
38  namespace wms
39  {
40  /*!
41  \class WMSLayer
42 
43  \brief A layer with reference to a WMS Layer.
44  */
46  {
47  public:
48 
49  /*!
50  \brief It initializes a new layer.
51 
52  \param parent The parent layer (NULL if it has no parent).
53  */
54  WMSLayer(te::map::AbstractLayer* parent = 0);
55 
56  /*!
57  \brief It initializes a new layer.
58 
59  \param id The layer id.
60  \param parent The parent layer (NULL if it has no parent).
61  */
62  WMSLayer(const std::string& id, te::map::AbstractLayer* parent = 0);
63 
64  /*!
65  \brief It initializes a new Layer.
66 
67  \param id The layer id.
68  \param title The title is a brief description about the layer.
69  \param parent The parent layer (NULL if it has no parent).
70  */
71  WMSLayer(const std::string& id, const std::string& title, te::map::AbstractLayer* parent = 0);
72 
73  /*! \brief Destructor. */
74  ~WMSLayer();
75 
76  std::auto_ptr<te::map::LayerSchema> getSchema() const;
77 
78  std::auto_ptr<te::da::DataSet> getData(te::common::TraverseType travType = te::common::FORWARDONLY,
79  const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
80 
81  std::auto_ptr<te::da::DataSet> getData(const std::string& propertyName,
82  const te::gm::Envelope* e,
85  const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
86 
87  std::auto_ptr<te::da::DataSet> getData(const std::string& propertyName,
88  const te::gm::Geometry* g,
91  const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
92 
93  std::auto_ptr<te::da::DataSet> getData(te::da::Expression* restriction,
95  const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
96 
97  std::auto_ptr<te::da::DataSet> getData(const te::da::ObjectIdSet* oids,
99  const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
100 
101  bool isValid() const;
102 
103  void draw(te::map::Canvas* canvas, const te::gm::Envelope& bbox, int srid, const double& scale);
104 
105  const std::string& getType() const;
106 
107  const std::string& getDataSetName() const;
108 
109  void setDataSetName(const std::string& name);
110 
111  const std::string& getDataSourceId() const;
112 
113  void setDataSourceId(const std::string& id);
114 
115  const std::string& getRendererType() const;
116 
117  void setRendererType(const std::string& t);
118 
119  void setWidth(const std::size_t& width);
120 
121  void setHeight(const std::size_t& height);
122 
123  void setFormat(const std::string& format);
124 
125  private:
126 
127  std::string buildRequest() const;
128 
129  private:
130 
131  std::string m_datasetName; //!< The dataset name where we will retrieve the layer data.
132  std::string m_datasourceId; //!< The DataSource associated to this layer.
133  std::string m_rendererType; //!< A pointer to the internal renderer used to paint this layer.
134 
135  std::size_t m_width; //!< Width that will be requested.
136  std::size_t m_height; //!< Height that will be requested.
137  std::string m_format; //!< Format that will be requested.
138 
139  mutable std::auto_ptr<te::map::LayerSchema> m_schema; //!< The WMS layer schema.
140 
141  static const std::string sm_type; //!< A static data member used in the implementation of getType method.
142  };
143 
144  typedef boost::intrusive_ptr<WMSLayer> WMSLayerPtr;
145 
146  } // end namespace wms
147 } // end namespace te
148 
149 #endif // __TERRALIB_WMS_INTERNAL_WMSLAYER_H
boost::intrusive_ptr< WMSLayer > WMSLayerPtr
Definition: WMSLayer.h:144
#define TEWMSEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:132
This is the base class for layers.
Definition: AbstractLayer.h:76
std::string m_datasetName
The dataset name where we will retrieve the layer data.
Definition: WMSLayer.h:131
SpatialRelation
Spatial relations between geometric objects.
Definition: Enums.h:127
std::size_t m_width
Width that will be requested.
Definition: WMSLayer.h:135
std::string m_format
Format that will be requested.
Definition: WMSLayer.h:137
std::size_t m_height
Height that will be requested.
Definition: WMSLayer.h:136
static const std::string sm_type
A static data member used in the implementation of getType method.
Definition: WMSLayer.h:141
Configuration flags for the TerraLib WMS module.
This is an abstract class that models a query expression.
Definition: Expression.h:47
AccessPolicy
Supported data access policies (can be used as bitfield).
Definition: Enums.h:40
TraverseType
A dataset can be traversed in two ways:
Definition: Enums.h:53
A layer with reference to a WMS Layer.
Definition: WMSLayer.h:45
An Envelope defines a 2D rectangular region.
Definition: Envelope.h:51
This class represents a set of unique ids created in the same context. i.e. from the same data set...
Definition: ObjectIdSet.h:55
URI C++ Library.
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
Definition: Geometry.h:73
A canvas is an abstraction of a drawing area.
Definition: Canvas.h:92
std::auto_ptr< te::map::LayerSchema > m_schema
The WMS layer schema.
Definition: WMSLayer.h:139
std::string m_rendererType
A pointer to the internal renderer used to paint this layer.
Definition: WMSLayer.h:133
std::string m_datasourceId
The DataSource associated to this layer.
Definition: WMSLayer.h:132