1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifndef DRIZZLED_SELECT_SEND_H
22
#define DRIZZLED_SELECT_SEND_H
24
#include <drizzled/plugin/client.h>
25
#include <drizzled/plugin/query_cache.h>
26
#include <drizzled/plugin/transactional_storage_engine.h>
27
#include <drizzled/select_result.h>
32
class select_send :public select_result {
34
True if we have sent result set metadata to the client.
35
In this case the client always expects us to end the result
36
set with an eof or error packet
38
bool is_result_set_started;
40
select_send() :is_result_set_started(false) {}
44
We may be passing the control from mysqld to the client: release the
45
InnoDB adaptive hash S-latch to avoid thread deadlocks if it was reserved
48
plugin::TransactionalStorageEngine::releaseTemporaryLatches(session);
50
/* Unlock tables before sending packet to gain some speed */
53
session->unlockTables(session->lock);
57
is_result_set_started= 0;
61
bool send_fields(List<Item> &list)
64
if (! (res= session->getClient()->sendFields(&list)))
65
is_result_set_started= 1;
76
Cleanup an instance of this class for re-use
77
at next execution of a prepared statement/
78
stored procedure statement.
81
virtual void cleanup()
83
is_result_set_started= false;
86
/* Send data to client. Returns 0 if ok */
88
bool send_data(List<Item> &items)
90
if (unit->offset_limit_cnt)
91
{ // using limit offset,count
92
unit->offset_limit_cnt--;
97
We may be passing the control from mysqld to the client: release the
98
InnoDB adaptive hash S-latch to avoid thread deadlocks if it was reserved
101
plugin::TransactionalStorageEngine::releaseTemporaryLatches(session);
103
List<Item>::iterator li(items.begin());
104
char buff[MAX_FIELD_WIDTH];
105
String buffer(buff, sizeof(buff), &my_charset_bin);
110
if (item->send(session->getClient(), &buffer))
112
my_message(ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES), MYF(0));
116
/* Insert this record to the Resultset into the cache */
117
if (session->query_cache_key != "" && session->getResultsetMessage() != NULL)
118
plugin::QueryCache::insertRecord(session, items);
120
session->sent_row_count++;
121
if (session->is_error())
123
return session->getClient()->flush();
127
} /* namespace drizzled */
129
#endif /* DRIZZLED_SELECT_SEND_H */