summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf/engine/QueryImpl.cpp
blob: 6f2beeee87c7577df16145517cfceb051e3c4fbc (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 * 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"
#include "qmf/engine/ObjectIdImpl.h"
#include "qpid/framing/Buffer.h"
#include "qpid/framing/FieldTable.h"

using namespace std;
using namespace qmf::engine;
using namespace qpid::framing;

bool QueryElementImpl::evaluate(const Object* /*object*/) const
{
    // TODO: Implement this
    return false;
}

bool QueryExpressionImpl::evaluate(const Object* /*object*/) const
{
    // TODO: Implement this
    return false;
}

QueryImpl::QueryImpl(Buffer& buffer)
{
    FieldTable ft;
    ft.decode(buffer);
    // TODO
}

Query* QueryImpl::factory(Buffer& buffer)
{
    QueryImpl* impl(new QueryImpl(buffer));
    return new Query(impl);
}

void QueryImpl::encode(Buffer& buffer) const
{
    FieldTable ft;

    if (oid.get() != 0) {
        ft.setString("_objectid", oid->impl->asString());
    } else {
        if (!packageName.empty())
            ft.setString("_package", packageName);
        ft.setString("_class", className);
    }

    ft.encode(buffer);
}


//==================================================================
// Wrappers
//==================================================================

QueryElement::QueryElement(const char* attrName, const Value* value, ValueOper oper) : impl(new QueryElementImpl(attrName, value, oper)) {}
QueryElement::QueryElement(QueryElementImpl* i) : impl(i) {}
QueryElement::~QueryElement() { delete impl; }
bool QueryElement::evaluate(const Object* object) const { return impl->evaluate(object); }

QueryExpression::QueryExpression(ExprOper oper, const QueryOperand* operand1, const QueryOperand* operand2) : impl(new QueryExpressionImpl(oper, operand1, operand2)) {}
QueryExpression::QueryExpression(QueryExpressionImpl* i) : impl(i) {}
QueryExpression::~QueryExpression() { delete impl; }
bool QueryExpression::evaluate(const Object* object) const { return impl->evaluate(object); }

Query::Query(const char* className, const char* packageName) : impl(new QueryImpl(className, packageName)) {}
Query::Query(const SchemaClassKey* key) : impl(new QueryImpl(key)) {}
Query::Query(const ObjectId* oid) : impl(new QueryImpl(oid)) {}
Query::Query(QueryImpl* i) : impl(i) {}
Query::Query(const Query& from) : impl(new QueryImpl(*(from.impl))) {}
Query::~Query() { delete impl; }
void Query::setSelect(const QueryOperand* criterion) { impl->setSelect(criterion); }
void Query::setLimit(uint32_t maxResults) { impl->setLimit(maxResults); }
void Query::setOrderBy(const char* attrName, bool decreasing) { impl->setOrderBy(attrName, decreasing); }
const char* Query::getPackage() const { return impl->getPackage().c_str(); }
const char* Query::getClass() const { return impl->getClass().c_str(); }
const ObjectId* Query::getObjectId() const { return impl->getObjectId(); }
bool Query::haveSelect() const { return impl->haveSelect(); }
bool Query::haveLimit() const { return impl->haveLimit(); }
bool Query::haveOrderBy() const { return impl->haveOrderBy(); }
const QueryOperand* Query::getSelect() const { return impl->getSelect(); }
uint32_t Query::getLimit() const { return impl->getLimit(); }
const char* Query::getOrderBy() const { return impl->getOrderBy().c_str(); }
bool Query::getDecreasing() const { return impl->getDecreasing(); }