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
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>
29
class select_send :public select_result {
31
True if we have sent result set metadata to the client.
32
In this case the client always expects us to end the result
33
set with an eof or error packet
35
bool is_result_set_started;
37
select_send() :is_result_set_started(false) {}
41
We may be passing the control from mysqld to the client: release the
42
InnoDB adaptive hash S-latch to avoid thread deadlocks if it was reserved
45
plugin::StorageEngine::releaseTemporaryLatches(session);
47
/* Unlock tables before sending packet to gain some speed */
50
mysql_unlock_tables(session, session->lock);
54
is_result_set_started= 0;
58
bool send_fields(List<Item> &list)
61
if (! (res= session->client->sendFields(&list)))
62
is_result_set_started= 1;
73
Cleanup an instance of this class for re-use
74
at next execution of a prepared statement/
75
stored procedure statement.
78
virtual void cleanup()
80
is_result_set_started= false;
83
/* Send data to client. Returns 0 if ok */
85
bool send_data(List<Item> &items)
87
if (unit->offset_limit_cnt)
88
{ // using limit offset,count
89
unit->offset_limit_cnt--;
94
We may be passing the control from mysqld to the client: release the
95
InnoDB adaptive hash S-latch to avoid thread deadlocks if it was reserved
98
plugin::StorageEngine::releaseTemporaryLatches(session);
100
List_iterator_fast<Item> li(items);
101
char buff[MAX_FIELD_WIDTH];
102
String buffer(buff, sizeof(buff), &my_charset_bin);
107
if (item->send(session->client, &buffer))
109
my_message(ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES), MYF(0));
113
session->sent_row_count++;
114
if (session->is_error())
116
return session->client->flush();
120
} /* namespace drizzled */
122
#endif /* DRIZZLED_SELECT_SEND_H */