1
/* Copyright (C) 2009 Sun Microsystems
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
17
#include <drizzled/gettext.h>
18
#include <drizzled/plugin/listen_tcp.h>
19
#include <drizzled/plugin/client.h>
20
#include <drizzled/session.h>
21
#include <drizzled/module/option_map.h>
25
#include <boost/program_options.hpp>
28
using namespace drizzled;
30
namespace po= boost::program_options;
32
static bool enabled= false;
33
static bool debug_enabled= false;
34
static char* username= NULL;
35
static char* password= NULL;
36
static char* db= NULL;
39
class ClientConsole: public plugin::Client
52
virtual void printDebug(const char *message)
55
cout << "CONSOLE: " << message << endl;
58
virtual int getFileDescriptor(void)
60
printDebug("getFileDescriptor");
64
virtual bool isConnected(void)
66
printDebug("isConnected");
70
virtual bool isReading(void)
72
printDebug("isReading");
76
virtual bool isWriting(void)
78
printDebug("isWriting");
82
virtual bool flush(void)
88
virtual void close(void)
94
virtual bool authenticate(void)
96
printDebug("authenticate");
97
session->getSecurityContext().setUser(username);
98
return session->checkUser(password, strlen(password), db);
101
virtual bool readCommand(char **packet, uint32_t *packet_length)
108
cout << "drizzled> ";
113
/* Start with 1 byte offset so we can set command. */
118
*packet= (char *)realloc(*packet, length);
123
cin.getline(*packet + *packet_length, length - *packet_length, ';');
124
*packet_length+= cin.gcount();
127
while (cin.eof() == false && cin.fail() == true);
129
if ((*packet_length == 1 && cin.eof() == true) ||
130
!strncasecmp(*packet + 1, "quit", 4) ||
131
!strncasecmp(*packet + 1, "exit", 4))
135
(*packet)[0]= COM_SHUTDOWN;
139
/* Skip \r and \n for next time. */
142
(*packet)[0]= COM_QUERY;
146
virtual void sendOK(void)
148
cout << "OK" << endl;
151
virtual void sendEOF(void)
153
printDebug("sendEOF");
156
virtual void sendError(uint32_t sql_errno, const char *err)
158
cout << "Error: " << sql_errno << " " << err << endl;
161
virtual bool sendFields(List<Item> *list)
163
List_iterator_fast<Item> it(*list);
172
item->make_field(&field);
173
cout << field.col_name << "\t";
182
virtual void checkRowEnd(void)
184
if (++column % max_column == 0)
190
virtual bool store(Field *from)
195
char buff[MAX_FIELD_WIDTH];
196
String str(buff, sizeof(buff), &my_charset_bin);
198
return store(str.ptr(), str.length());
201
virtual bool store(void)
203
cout << "NULL" << "\t";
208
virtual bool store(int32_t from)
210
cout << from << "\t";
215
virtual bool store(uint32_t from)
217
cout << from << "\t";
222
virtual bool store(int64_t from)
224
cout << from << "\t";
229
virtual bool store(uint64_t from)
231
cout << from << "\t";
236
virtual bool store(double from, uint32_t decimals, String *buffer)
238
buffer->set_real(from, decimals, &my_charset_bin);
239
return store(buffer->ptr(), buffer->length());
242
virtual bool store(const char *from, size_t length)
244
cout.write(from, length);
250
virtual bool haveMoreData(void)
252
printDebug("haveMoreData");
256
virtual bool haveError(void)
258
printDebug("haveError");
262
virtual bool wasAborted(void)
264
printDebug("wasAborted");
269
class ListenConsole: public plugin::Listen
274
ListenConsole(const std::string &name_arg) :
275
plugin::Listen(name_arg)
280
virtual ~ListenConsole()
282
if (pipe_fds[0] != -1)
288
/* Cleanup from the module strdup'ing these below */
294
virtual bool getFileDescriptors(std::vector<int> &fds)
299
if (enabled == false)
302
if (pipe(pipe_fds) == -1)
304
errmsg_printf(ERRMSG_LVL_ERROR, _("pipe() failed with errno %d"), errno);
308
fds.push_back(pipe_fds[0]);
309
assert(write(pipe_fds[1], "\0", 1) == 1);
313
virtual drizzled::plugin::Client *getClient(int fd)
316
assert(read(fd, buffer, 1) == 1);
317
return new ClientConsole;
321
static int init(drizzled::module::Context &context)
323
const module::option_map &vm= context.getOptions();
324
/* duplicating these here means they need to be freed. They're global, so
325
we'll just have the ListenConsole object do it in its destructor */
326
if (vm.count("username"))
327
username= strdup(vm["username"].as<string>().c_str());
329
username= strdup("");
331
if (vm.count("password"))
332
password= strdup(vm["password"].as<string>().c_str());
334
password= strdup("");
337
db= strdup(vm["db"].as<string>().c_str());
341
context.add(new ListenConsole("console"));
345
static DRIZZLE_SYSVAR_BOOL(enable, enabled, PLUGIN_VAR_NOCMDARG,
346
N_("Enable the console."), NULL, NULL, false);
347
static DRIZZLE_SYSVAR_BOOL(debug, debug_enabled, PLUGIN_VAR_NOCMDARG,
348
N_("Turn on extra debugging."), NULL, NULL, false);
350
static DRIZZLE_SYSVAR_STR(username, username, PLUGIN_VAR_READONLY,
351
N_("User to use for auth."), NULL, NULL, NULL);
352
static DRIZZLE_SYSVAR_STR(password, password, PLUGIN_VAR_READONLY,
353
N_("Password to use for auth."), NULL, NULL, NULL);
354
static DRIZZLE_SYSVAR_STR(db, db, PLUGIN_VAR_READONLY,
355
N_("Default database to use."), NULL, NULL, NULL);
357
static void init_options(drizzled::module::option_context &context)
360
po::value<bool>(&enabled)->default_value(false)->zero_tokens(),
361
N_("Enable the console."));
363
po::value<bool>(&debug_enabled)->default_value(false)->zero_tokens(),
364
N_("Turn on extra debugging."));
367
N_("User to use for auth."));
370
N_("Password to use for auth."));
373
N_("Default database to use."));
376
static drizzle_sys_var* vars[]= {
377
DRIZZLE_SYSVAR(enable),
378
DRIZZLE_SYSVAR(debug),
379
DRIZZLE_SYSVAR(username),
380
DRIZZLE_SYSVAR(password),
385
DRIZZLE_DECLARE_PLUGIN
393
init, /* Plugin Init */
394
vars, /* system variables */
395
init_options /* config options */
397
DRIZZLE_DECLARE_PLUGIN_END;