Exec_query_scan.cpp 4.05 KB
Newer Older
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
/* 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 <NdbApi.hpp>
#include <NdbScanFilter.hpp>
#include <common/StmtArea.hpp>
#include <common/ResultArea.hpp>
#include <codegen/Code_query_scan.hpp>
#include <codegen/Code_table.hpp>

#define startBuddyTransaction(x)	hupp(x)

void
Exec_query_scan::execImpl(Ctx& ctx, Ctl& ctl)
{
    const Code& code = getCode();
    Data& data = getData();
    Ndb* const ndb = ndbObject();
    NdbConnection* const tcon = ndbConnection();
    if (data.m_con != 0) {
	data.m_con->stopScan();
	ndb->closeTransaction(data.m_con);
	data.m_con = 0;
	data.m_op = 0;
	ctx_log2(("scan closed at re-execute"));
    }
    data.m_con = ndb->startBuddyTransaction(tcon);
    if (data.m_con == 0) {
	ctx.pushStatus(ndb, tcon, 0, "startBuddyTransaction");
	return;
    }
    data.m_op = data.m_con->getNdbOperation(code.m_tableName);
    if (data.m_op == 0) {
	ctx.pushStatus(ndb, data.m_con, 0, "getNdbOperation");
	return;
    }
    if (! code.m_exclusive) {
	if (data.m_op->openScanReadCommitted(data.m_parallel) == -1) {
	    ctx.pushStatus(ndb, data.m_con, data.m_op, "openScanReadCommitted");
	    return;
	}
    } else {
	if (data.m_op->openScanExclusive(data.m_parallel) == -1) {
	    ctx.pushStatus(ndb, data.m_con, data.m_op, "openScanExclusive");
	    return;
	}
    }
    if (m_interp == 0) {
	// XXX unnecessary
	if (data.m_op->interpret_exit_ok() == -1) {
	    ctx.pushStatus(ndb, data.m_con, data.m_op, "interpret_exit_ok");
	    return;
	}
    } else {
	NdbScanFilter scanFilter(data.m_op);
	scanFilter.begin(NdbScanFilter::AND);
	ctl.m_scanFilter = &scanFilter;
	m_interp->execInterp(ctx, ctl);
	if (! ctx.ok())
	    return;
	scanFilter.end();
    }
    const SqlRow& sqlRow = data.sqlRow();
    ctx_assert(sqlRow.count() == code.m_attrCount);
    for (unsigned i = 1; i <= code.m_attrCount; i++) {
	const NdbAttrId attrId = code.m_attrId[i];
	SqlField& sqlField = sqlRow.getEntry(i);
	char* addr = static_cast<char*>(sqlField.addr());
	NdbRecAttr* recAttr = data.m_op->getValue(attrId, addr);
	if (recAttr == 0) {
	    ctx.pushStatus(ndb, data.m_con, data.m_op, "getValue attrId=%u", (unsigned)attrId);
	    return;
	}
	data.m_recAttr[i] = recAttr;
    }
    if (code.m_attrCount == 0) {		// NDB requires one
	(void)data.m_op->getValue((NdbAttrId)0);
    }
    if (data.m_con->executeScan() == -1) {
	ctx.pushStatus(ndb, data.m_con, data.m_op, "executeScan");
	return;
    }
    ctx_log2(("scan %s [%08x] started", ! code.m_exclusive ? "read" : "exclusive", (unsigned)this));
    ctl.m_scanOp = data.m_op;
}

bool
Exec_query_scan::fetchImpl(Ctx &ctx, Ctl& ctl)
{
    const Code& code = getCode();
    Data& data = getData();
    Ndb* const ndb = ndbObject();
    int ret = data.m_con->nextScanResult();
    if (ret != 0) {
	if (ret == -1) {
	    ctx.pushStatus(ndb, data.m_con, data.m_op, "nextScanResult");
	}
	data.m_con->stopScan();
	ndb->closeTransaction(data.m_con);
	data.m_con = 0;
	data.m_op = 0;
	ctx_log2(("scan [%08x] closed at last row", (unsigned)this));
	return false;
    }
    // set null bits
    const SqlRow& sqlRow = data.sqlRow();
    ctx_assert(sqlRow.count() == code.m_attrCount);
    for (unsigned i = 1; i <= code.m_attrCount; i++) {
	NdbRecAttr* recAttr = data.m_recAttr[i];
	int isNULL = recAttr->isNULL();
	SqlField& sqlField = sqlRow.getEntry(i);
	ctx_assert(isNULL == 0 || isNULL == 1);
	sqlField.sqlNull(isNULL == 1);
    }
    stmtArea().incTuplesFetched();
    return true;
}