Cyclone ISO C++ API Reference Guide
Query.hpp
Go to the documentation of this file.
1 #ifndef DDS_CORE_TQUERY_HPP_
2 #define DDS_CORE_TQUERY_HPP_
3 
4 /* Copyright 2010, Object Management Group, Inc.
5  * Copyright 2010, PrismTech, Corp.
6  * Copyright 2010, Real-Time Innovations, Inc.
7  * All rights reserved.
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #include <dds/core/types.hpp>
23 #include <dds/core/Reference.hpp>
25 
26 namespace dds
27 {
28 namespace sub
29 {
30 
31 class Query;
32 }
33 }
34 
61 class dds::sub::Query: public virtual dds::core::Reference {
62 public:
65 
66 public:
70  typedef typename DELEGATE::iterator iterator;
71 
75  typedef typename DELEGATE::const_iterator const_iterator;
76 
77 public:
85  Query(const dds::sub::AnyDataReader& dr, const std::string& expression);
86 
96  template<typename FWIterator>
97  Query(const dds::sub::AnyDataReader& dr, const std::string& expression,
98  const FWIterator& params_begin, const FWIterator& params_end);
99 
108  Query(const dds::sub::AnyDataReader& dr, const std::string& expression,
109  const std::vector<std::string>& params);
110 
117  const std::string& expression() const;
118 
125  void expression(const std::string& expr);
126 
136  const_iterator begin() const;
137 
147  const_iterator end() const;
148 
158  iterator begin();
159 
169  iterator end();
170 
180  template<typename FWIterator>
181  void parameters(const FWIterator& begin, const FWIterator end);
182 
191  void add_parameter(const std::string& param);
192 
201  uint32_t parameters_length() const;
202 
211  const AnyDataReader& data_reader() const;
212 };
213 
214 #endif /* DDS_CORE_TQUERY_HPP_ */
dds::sub::Query
Query objects contain expressions that allow the application to specify a filter on the locally avail...
Definition: Query.hpp:61
dds::sub::Query::expression
const std::string & expression() const
dds::sub::Query::iterator
DELEGATE::iterator iterator
Definition: Query.hpp:70
AnyDataReader.hpp
dds::sub::Query::parameters
void parameters(const FWIterator &begin, const FWIterator end)
dds::sub::Query::const_iterator
DELEGATE::const_iterator const_iterator
Definition: Query.hpp:75
types.hpp
OMG_DDS_IMPLICIT_REF_BASE
#define OMG_DDS_IMPLICIT_REF_BASE(TYPE)
Definition: refmacros.hpp:75
OMG_DDS_REF_TYPE_PROTECTED_DC
#define OMG_DDS_REF_TYPE_PROTECTED_DC(TYPE, BASE, DELEGATE)
Definition: refmacros.hpp:164
dds::sub::Query::data_reader
const AnyDataReader & data_reader() const
dds::core::Reference
Base class for reference-counted objects.
Definition: Reference.hpp:94
dds
Definition: array.hpp:30
dds::sub::AnyDataReader
Typeless base class for the typed DataReader.
Definition: AnyDataReader.hpp:50
dds::sub::Query::add_parameter
void add_parameter(const std::string &param)
dds::sub::Query::Query
Query(const dds::sub::AnyDataReader &dr, const std::string &expression)
dds::sub::Query::begin
const_iterator begin() const
Reference.hpp
dds::sub::Query::parameters_length
uint32_t parameters_length() const
dds::sub::Query::end
const_iterator end() const