summaryrefslogtreecommitdiff
path: root/storage/ndb/src/old_files/client/odbc/codegen/Code_query_filter.cpp
blob: 934a24d182d8476b7532018dde94adf08313155b (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* Copyright (C) 2003 MySQL AB

   This program 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
   (at your option) 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 */

#include "Code_query_filter.hpp"
#include "Code_query_join.hpp"
#include "Code_query_scan.hpp"
#include "Code_root.hpp"

// Plan_query_filter

Plan_query_filter::~Plan_query_filter()
{
}

Plan_base*
Plan_query_filter::analyze(Ctx& ctx, Ctl& ctl)
{
    ctx_assert(m_query != 0);
    m_query->analyze(ctx, ctl);
    if (! ctx.ok())
	return 0;
    ctx_assert(m_pred != 0);
    m_pred->analyze(ctx, ctl);
    if (! ctx.ok())
	return 0;
    return this;
}

Exec_base*
Plan_query_filter::codegen(Ctx& ctx, Ctl& ctl)
{
    // generate code for the subquery
    ctx_assert(m_query != 0);
    Exec_query* execQuery = static_cast<Exec_query*>(m_query->codegen(ctx, ctl));
    if (! ctx.ok())
	return 0;
    ctx_assert(execQuery != 0);
    // create code for the predicate based on query code
    Exec_pred* execPred = 0;
    ctl.m_execQuery = execQuery;
    ctx_assert(m_topTable != 0);
    ctl.m_topTable = m_topTable;
    ctx_assert(m_pred != 0);
    execPred = static_cast<Exec_pred*>(m_pred->codegen(ctx, ctl));
    if (! ctx.ok())
	return 0;
    ctx_assert(execPred != 0);
    ctl.m_topTable = 0;
    // re-use SqlSpecs from subquery
    const Exec_query::Code& codeQuery = execQuery->getCode();
    const SqlSpecs& sqlSpecs = codeQuery.sqlSpecs();
    Exec_query_filter* exec = new Exec_query_filter(ctl.m_execRoot);
    ctl.m_execRoot->saveNode(exec);
    Exec_query_filter::Code& code = *new Exec_query_filter::Code(sqlSpecs);
    exec->setCode(code);
    exec->setQuery(execQuery);
    exec->setPred(execPred);
    return exec;
}

void
Plan_query_filter::print(Ctx& ctx)
{
    ctx.print(" [query_filter");
    Plan_base* a[] = { m_query, m_pred };
    printList(ctx, a, 2);
    ctx.print("]");
}

// Exec_query_filter

Exec_query_filter::Code::~Code()
{
}

Exec_query_filter::Data::~Data()
{
}

Exec_query_filter::~Exec_query_filter()
{
}

void
Exec_query_filter::alloc(Ctx& ctx, Ctl& ctl)
{
    // allocate the subquery
    ctx_assert(m_query != 0);
    m_query->alloc(ctx, ctl);
    if (! ctx.ok())
	return;
    // allocate the predicate
    ctl.m_query = m_query;
    ctx_assert(m_pred != 0);
    m_pred->alloc(ctx, ctl);
    if (! ctx.ok())
	return;
    // re-use SqlRow from subquery
    Exec_query::Data& dataQuery = m_query->getData();
    Data& data = *new Data(this, dataQuery.sqlRow());
    setData(data);
}

void
Exec_query_filter::execImpl(Ctx& ctx, Ctl& ctl)
{
    // execute subquery
    ctx_assert(m_query != 0);
    m_query->execute(ctx, ctl);
}

bool
Exec_query_filter::fetchImpl(Ctx& ctx, Ctl& ctl)
{
    // invoke fetch on subquery until predicate is true
    ctx_assert(m_query != 0);
    while (m_query->fetch(ctx, ctl)) {
	ctx_assert(m_pred != 0);
	m_pred->evaluate(ctx, ctl);
	if (! ctx.ok())
	    return false;
	if (m_pred->getData().getValue() == Pred_value_true) {
	    ctl.m_postEval = true;
	    m_pred->evaluate(ctx, ctl);
	    ctl.m_postEval = false;
	    return true;
	}
    }
    return false;
}

void
Exec_query_filter::close(Ctx& ctx)
{
    ctx_assert(m_query != 0);
    m_query->close(ctx);
    ctx_assert(m_pred != 0);
    m_pred->close(ctx);
}

void
Exec_query_filter::print(Ctx& ctx)
{
    ctx.print(" [query_filter");
    Exec_base* a[] = { m_query, m_pred };
    printList(ctx, a, 2);
    ctx.print("]");
}