13
13
along with this program; if not, write to the Free Software
14
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
16
#include <drizzled/server_includes.h>
17
17
#include <drizzled/gettext.h>
18
18
#include <drizzled/plugin/listen_tcp.h>
19
19
#include <drizzled/plugin/client.h>
20
#include <drizzled/session.h>
21
#include <drizzled/module/option_map.h>
23
#include <drizzled/plugin/catalog.h>
25
21
#include <iostream>
27
#include <boost/program_options.hpp>
29
23
using namespace std;
30
24
using namespace drizzled;
32
namespace po= boost::program_options;
34
static bool enabled= false;
35
static bool debug_enabled= false;
26
static bool enable= false;
27
static bool debug= false;
38
29
class ClientConsole: public plugin::Client
42
33
uint32_t max_column;
43
const std::string &username;
44
const std::string &password;
45
const std::string &schema;
46
const std::string &_catalog;
49
ClientConsole(const std::string &username_arg,
50
const std::string &password_arg,
51
const std::string &schema_arg,
52
const std::string &catalog_arg) :
56
username(username_arg),
57
password(password_arg),
62
42
virtual void printDebug(const char *message)
65
45
cout << "CONSOLE: " << message << endl;
68
catalog::Instance::shared_ptr catalog()
70
identifier::Catalog identifier(_catalog);
71
catalog::Instance::shared_ptr tmp= plugin::Catalog::getInstance(identifier);
74
std::cerr << "Invalid catalog '" << identifier << "', resorting to 'local' catalog" << std::endl;
79
48
virtual int getFileDescriptor(void)
81
50
printDebug("getFileDescriptor");
115
84
virtual bool authenticate(void)
117
86
printDebug("authenticate");
118
identifier::User::shared_ptr user= identifier::User::make_shared();
119
user->setUser(username);
120
session->setUser(user);
122
return session->checkUser(password, schema);
125
90
virtual bool readCommand(char **packet, uint32_t *packet_length)
132
cout << "drizzled> ";
137
/* Start with 1 byte offset so we can set command. */
142
*packet= (char *)realloc(*packet, length);
147
cin.getline(*packet + *packet_length, length - *packet_length, ';');
148
*packet_length+= cin.gcount();
151
while (cin.eof() == false && cin.fail() == true);
153
if ((*packet_length == 1 && cin.eof() == true) or
154
not strncasecmp(*packet + 1, "quit", 4) or
155
not strncasecmp(*packet + 1, "exit", 4) or
156
not strncasecmp(*packet + 1, "shutdown", sizeof("shutdown") -1))
99
if (fgets(buffer, 8192, stdin) == NULL ||!strcasecmp(buffer, "quit\n") ||
100
!strcasecmp(buffer, "exit\n"))
159
103
*packet_length= 1;
104
*packet= (char *)malloc(*packet_length);
160
105
(*packet)[0]= COM_SHUTDOWN;
165
/* Skip \r and \n for next time. */
109
*packet_length= strlen(buffer);
110
*packet= (char *)malloc(*packet_length);
168
111
(*packet)[0]= COM_QUERY;
112
memcpy(*packet + 1, buffer, *packet_length - 1);
180
124
printDebug("sendEOF");
183
virtual void sendError(const drizzled::error_t sql_errno, const char *err)
127
virtual void sendError(uint32_t sql_errno, const char *err)
185
cout << "Error: " << static_cast<long>(sql_errno) << " " << err << endl;
129
cout << "Error: " << sql_errno << " " << err << endl;
188
132
virtual bool sendFields(List<Item> *list)
190
List<Item>::iterator it(list->begin());
134
List_iterator_fast<Item> it(*list);
266
210
return store(buffer->ptr(), buffer->length());
213
virtual bool store(const DRIZZLE_TIME *tm)
219
switch (tm->time_type)
221
case DRIZZLE_TIMESTAMP_DATETIME:
222
length= sprintf(buff, "%04d-%02d-%02d %02d:%02d:%02d",
230
length+= sprintf(buff+length, ".%06d", (int)tm->second_part);
233
case DRIZZLE_TIMESTAMP_DATE:
234
length= sprintf(buff, "%04d-%02d-%02d",
240
case DRIZZLE_TIMESTAMP_TIME:
241
day= (tm->year || tm->month) ? 0 : tm->day;
242
length= sprintf(buff, "%s%02ld:%02d:%02d", tm->neg ? "-" : "",
243
(long) day*24L+(long) tm->hour, (int) tm->minute,
246
length+= sprintf(buff+length, ".%06d", (int)tm->second_part);
249
case DRIZZLE_TIMESTAMP_NONE:
250
case DRIZZLE_TIMESTAMP_ERROR:
269
259
virtual bool store(const char *from, size_t length)
271
cout.write(from, length);
261
printf("%.*s\t", (uint32_t)length, from);
291
280
printDebug("wasAborted");
301
285
class ListenConsole: public plugin::Listen
304
const std::string username;
305
const std::string password;
306
const std::string schema;
307
const std::string _catalog;
310
ListenConsole(const std::string &name_arg,
311
const std::string &username_arg,
312
const std::string &password_arg,
313
const std::string &schema_arg,
314
const std::string &catalog_arg) :
315
plugin::Listen(name_arg),
316
username(username_arg),
317
password(password_arg),
319
_catalog(catalog_arg)
355
326
assert(read(fd, buffer, 1) == 1);
357
return new ClientConsole(username, password, schema, _catalog);
327
return new ClientConsole;
361
static int init(drizzled::module::Context &context)
363
const module::option_map &vm= context.getOptions();
364
const string username(vm.count("username") ? vm["username"].as<string>() : "");
365
const string password(vm.count("password") ? vm["password"].as<string>() : "");
366
const string schema(vm.count("schema") ? vm["schema"].as<string>() : "");
368
const std::string catalog(vm.count("catalog") ? vm["catalog"].as<string>() : "LOCAL");
370
context.add(new ListenConsole("console", username, password, schema, catalog));
375
static void init_options(drizzled::module::option_context &context)
378
po::value<bool>(&enabled)->default_value(false)->zero_tokens(),
379
N_("Enable the console."));
381
po::value<bool>(&debug_enabled)->default_value(false)->zero_tokens(),
382
N_("Turn on extra debugging."));
385
N_("User to use for auth."));
388
N_("Password to use for auth."));
391
N_("Default catalog to use."));
394
N_("Default schema to use."));
397
DRIZZLE_DECLARE_PLUGIN
331
static ListenConsole listen_obj;
333
static int init(drizzled::plugin::Registry ®istry)
335
registry.add(listen_obj);
339
static int deinit(drizzled::plugin::Registry ®istry)
341
registry.remove(listen_obj);
345
static DRIZZLE_SYSVAR_BOOL(enable, enable, PLUGIN_VAR_NOCMDARG,
346
N_("Enable the console."), NULL, NULL, false);
348
static DRIZZLE_SYSVAR_BOOL(debug, debug, PLUGIN_VAR_NOCMDARG,
349
N_("Turn on extra debugging."), NULL, NULL, false);
351
static struct st_mysql_sys_var* vars[]= {
352
DRIZZLE_SYSVAR(enable),
353
DRIZZLE_SYSVAR(debug),
357
drizzle_declare_plugin(console)
403
362
"Console Client",
404
363
PLUGIN_LICENSE_BSD,
405
364
init, /* Plugin Init */
407
init_options /* config options */
365
deinit, /* Plugin Deinit */
366
NULL, /* status variables */
367
vars, /* system variables */
368
NULL /* config options */
409
DRIZZLE_DECLARE_PLUGIN_END;
370
drizzle_declare_plugin_end;