blob: 371f400f7bb2c06355d8a3cdbfe54ec3d8a93a2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "qmf/engine/QueryImpl.h"
using namespace std;
using namespace qmf::engine;
using namespace qpid::messaging;
QueryImpl::QueryImpl(const qpid::messaging::MapView&)
{
// TODO
}
QueryImpl::QueryImpl(const qpid::messaging::ListView&)
{
//TODO
}
bool QueryImpl::matches(const Variant::Map&) const
{
return true;
}
void QueryImpl::parsePredicate(const std::string&)
{
predicate.clear();
}
Query* QueryImpl::factory(const qpid::messaging::MapView& map)
{
QueryImpl* impl(new QueryImpl(map));
return new Query(impl);
}
Query* QueryImpl::factory(const qpid::messaging::ListView& pred)
{
QueryImpl* impl(new QueryImpl(pred));
return new Query(impl);
}
//==================================================================
// Wrappers
//==================================================================
Query::Query(const char* target) : impl(new QueryImpl(target)) {}
Query::Query(const char* target, const Variant::List& predicate) : impl(new QueryImpl(target, predicate)) {}
Query::Query(const char* target, const char* expression) : impl(new QueryImpl(target, expression)) {}
Query::Query(const Query& from) : impl(new QueryImpl(*(from.impl))) {}
Query::Query(QueryImpl* i) : impl(i) {}
Query::~Query() { delete impl; }
void Query::where(const Variant::List& predicate) { impl->where(predicate); }
void Query::where(const char* expression) { impl->where(expression); }
void Query::limit(uint32_t maxResults) { impl->limit(maxResults); }
void Query::orderBy(const char* attrName, bool decreasing) { impl->orderBy(attrName, decreasing); }
bool Query::havePredicate() const { return impl->havePredicate(); }
bool Query::haveLimit() const { return impl->haveLimit(); }
bool Query::haveOrderBy() const { return impl->haveOrderBy(); }
const Variant::List& Query::getPredicate() const { return impl->getPredicate(); }
uint32_t Query::getLimit() const { return impl->getLimit(); }
const char* Query::getOrderBy() const { return impl->getOrderBy(); }
bool Query::getDecreasing() const { return impl->getDecreasing(); }
bool Query::matches(const Variant::Map& data) const { return impl->matches(data); }
|