1
/* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2010 Pawel Blokus
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; either version 2 of the License, or
9
* (at your option) any later version.
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#ifndef UNITTESTS_STUB_PLUGIN_STUBS_H
23
#define UNITTESTS_STUB_PLUGIN_STUBS_H
28
#include <drizzled/plugin/authentication.h>
29
#include <drizzled/plugin/client.h>
30
#include <drizzled/plugin/error_message.h>
33
class ClientStub : public drizzled::plugin::Client
37
char *last_call_char_ptr;
43
last_call_char_ptr(NULL)
46
inline void set_store_ret_val(bool value)
51
inline void set_last_call_char_ptr(char *ptr)
53
last_call_char_ptr= ptr;
56
virtual ~ClientStub() {}
59
* Get attached session from the client object.
60
* @retval Session object that is attached, NULL if none.
62
virtual drizzled::Session *getSession(void)
64
return Client::getSession();
68
* Attach session to the client object.
69
* @param[in] session_arg Session object to attach, or NULL to clear.
71
virtual void setSession(drizzled::Session *session_arg)
73
Client::setSession(session_arg);
77
* Get file descriptor associated with client object.
78
* @retval File descriptor that is attached, -1 if none.
80
virtual int getFileDescriptor(void) { return 0; };
83
* Check to see if the client is currently connected.
84
* @retval Boolean value representing connected state.
86
virtual bool isConnected(void) { return false; };
89
* Check to see if the client is actively reading.
90
* @retval Boolean value representing reading state.
92
virtual bool isReading(void) { return false; };
95
* Check to see if the client is actively writing.
96
* @retval Boolean value representing writing state.
98
virtual bool isWriting(void) { return false; };
101
* Flush all data that has been buffered with store() methods.
102
* @retval Boolean indicating success or failure.
104
virtual bool flush(void) { return false; };
107
* Close the client object.
109
virtual void close(void) {};
112
* Perform handshake and authorize client if needed.
114
virtual bool authenticate(void) { return false; };
117
* Read command from client.
119
virtual bool readCommand(char **packet, uint32_t *packet_length)
126
/* Send responses. */
127
virtual void sendOK(void) {};
128
virtual void sendEOF(void) {};
129
virtual void sendError(uint32_t sql_errno, const char *err)
136
* Send field list for result set.
138
virtual bool sendFields(drizzled::List<drizzled::Item> *list)
144
/* Send result fields in various forms. */
145
virtual bool store(drizzled::Field *from)
148
return store_ret_val;
150
virtual bool store(void) { return store_ret_val; };
151
virtual bool store(int32_t from)
154
return store_ret_val;
156
virtual bool store(uint32_t from)
159
return store_ret_val;
161
virtual bool store(int64_t from)
164
return store_ret_val;
166
virtual bool store(uint64_t from)
169
return store_ret_val;
171
virtual bool store(double from, uint32_t decimals, drizzled::String *buffer)
176
return store_ret_val;
178
virtual bool store(const drizzled::type::Time *from)
180
return Client::store(from);
182
virtual bool store(const char *from)
184
return Client::store(from);
186
virtual bool store(const char *from, size_t length)
188
strncpy(last_call_char_ptr, from, length);
189
return store_ret_val;
191
virtual bool store(const std::string &from)
193
return Client::store(from);
196
/* Try to remove these. */
197
virtual bool haveMoreData(void) { return false; };
198
virtual bool haveError(void) { return false; };
199
virtual bool wasAborted(void) { return false;};
202
class ErrorMessageStub : public drizzled::plugin::ErrorMessage
206
ErrorMessageStub() : ErrorMessage("ErrorMessageStub") {}
208
virtual bool errmsg(drizzled::Session *session, int priority, const char *format, va_list ap)
218
class AuthenticationStub : public drizzled::plugin::Authentication
221
bool authenticate_return;
224
AuthenticationStub(std::string name_arg)
225
: Authentication(name_arg),
226
authenticate_return(false)
229
void set_authenticate_return(bool value)
231
authenticate_return = value;
234
virtual bool authenticate(const drizzled::identifier::User &sctx, const std::string &passwd)
238
return authenticate_return;
242
#endif /* UNITTESTS_STUB_PLUGIN_STUBS_H */