~drizzle-trunk/drizzle/development

77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 MySQL
5
 *
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.
10
 *
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.
15
 *
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
19
 */
1 by brian
clean slate
20
206.3.1 by Patrick Galbraith
Most everything working with client rename
21
/* drizzle command tool
1 by brian
clean slate
22
 * Commands compatible with mSQL by David J. Hughes
23
 *
24
 * Written by:
25
 *   Michael 'Monty' Widenius
26
 *   Andi Gutmans  <andi@zend.com>
27
 *   Zeev Suraski  <zeev@zend.com>
202.1.25 by Monty Taylor
Fixed change of mysql.com -> drizzle.com.
28
 *   Jani Tolonen  <jani@mysql.com>
29
 *   Matt Wagner   <matt@mysql.com>
30
 *   Jeremy Cole   <jcole@mysql.com>
31
 *   Tonu Samuel   <tonu@mysql.com>
32
 *   Harrison Fisk <harrison@mysql.com>
1 by brian
clean slate
33
 *
34
 **/
35
36
#include "client_priv.h"
212.5.18 by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype.
37
#include <mystrings/m_ctype.h>
1 by brian
clean slate
38
#include <stdarg.h>
39
#ifndef __GNU_LIBRARY__
206.3.1 by Patrick Galbraith
Most everything working with client rename
40
#define __GNU_LIBRARY__          // Skip warnings in getopt.h
1 by brian
clean slate
41
#endif
77.6.3 by Monty Taylor
Moved drizzlebinlog back to client.
42
#include <readline/history.h>
1 by brian
clean slate
43
#include "my_readline.h"
44
#include <signal.h>
212.5.12 by Monty Taylor
Moved violite.h to vio.
45
#include <vio/violite.h>
212.5.30 by Monty Taylor
Removed my_net.h. Pointless.
46
#include <sys/ioctl.h>
47
1 by brian
clean slate
48
236.1.49 by Monty Taylor
Changed ifdef's so that places without locale.h will still work ok.
49
#if defined(HAVE_LOCALE_H)
1 by brian
clean slate
50
#include <locale.h>
51
#endif
52
202.3.5 by Monty Taylor
Giant merge.
53
#include <libdrizzle/gettext.h>
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
54
1 by brian
clean slate
55
const char *VER= "14.14";
56
57
/* Don't try to make a nice table if the data is too big */
206.3.1 by Patrick Galbraith
Most everything working with client rename
58
#define MAX_COLUMN_LENGTH       1024
1 by brian
clean slate
59
60
/* Buffer to hold 'version' and 'version_comment' */
61
#define MAX_SERVER_VERSION_LENGTH     128
62
206.3.1 by Patrick Galbraith
Most everything working with client rename
63
/* Array of options to pass to libdrizzled */
1 by brian
clean slate
64
#define MAX_SERVER_ARGS               64
65
206.3.1 by Patrick Galbraith
Most everything working with client rename
66
void* sql_alloc(unsigned size);       // Don't use drizzled alloc for these
1 by brian
clean slate
67
void sql_element_free(void *ptr);
68
69
#if defined(HAVE_CURSES_H) && defined(HAVE_TERM_H)
70
#include <curses.h>
71
#include <term.h>
72
#else
73
#if defined(HAVE_TERMIOS_H)
74
#include <termios.h>
75
#include <unistd.h>
76
#elif defined(HAVE_TERMBITS_H)
77
#include <termbits.h>
78
#elif defined(HAVE_ASM_TERMBITS_H) && (!defined __GLIBC__ || !(__GLIBC__ > 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ > 0))
206.3.1 by Patrick Galbraith
Most everything working with client rename
79
#include <asm/termbits.h>    // Standard linux
1 by brian
clean slate
80
#endif
81
#undef VOID
82
#if defined(HAVE_TERMCAP_H)
83
#include <termcap.h>
84
#else
85
#ifdef HAVE_CURSES_H
86
#include <curses.h>
87
#endif
206.3.1 by Patrick Galbraith
Most everything working with client rename
88
#undef SYSV        // hack to avoid syntax error
1 by brian
clean slate
89
#ifdef HAVE_TERM_H
90
#include <term.h>
91
#endif
92
#endif
93
#endif
94
95
#undef bcmp				// Fix problem with new readline
96
134.2.1 by Antony Curtis
Changes for proper detection of libraries
97
#ifdef HAVE_READLINE_HISTORY_H
98
#include <readline/history.h>
99
#endif
1 by brian
clean slate
100
#include <readline/readline.h>
101
182.1.5 by Jim Winstead
Detect and make the Mac OS X libedit readline interface look like the
102
/**
103
 Make the old readline interface look like the new one.
104
*/
105
#ifndef USE_NEW_READLINE_INTERFACE
106
typedef CPPFunction rl_completion_func_t;
107
typedef Function rl_compentry_func_t;
108
#define rl_completion_matches(str, func) \
109
  completion_matches((char *)str, (CPFunction *)func)
110
#endif
111
1 by brian
clean slate
112
113
#if !defined(HAVE_VIDATTR)
114
#undef vidattr
206.3.1 by Patrick Galbraith
Most everything working with client rename
115
#define vidattr(A) {}      // Can't get this to work
1 by brian
clean slate
116
#endif
117
118
#ifdef FN_NO_CASE_SENCE
119
#define cmp_database(cs,A,B) my_strcasecmp((cs), (A), (B))
120
#else
121
#define cmp_database(cs,A,B) strcmp((A),(B))
122
#endif
123
124
#include "completion_hash.h"
125
126
#define PROMPT_CHAR '\\'
127
#define DEFAULT_DELIMITER ";"
128
129
typedef struct st_status
130
{
131
  int exit_status;
77.1.107 by Monty Taylor
Fixed build warnings.
132
  uint32_t query_start_line;
1 by brian
clean slate
133
  char *file_name;
134
  LINE_BUFFER *line_buff;
135
  bool batch,add_to_history;
136
} STATUS;
137
138
139
static HashTable ht;
140
static char **defaults_argv;
141
142
enum enum_info_type { INFO_INFO,INFO_ERROR,INFO_RESULT};
143
typedef enum enum_info_type INFO_TYPE;
144
206.3.1 by Patrick Galbraith
Most everything working with client rename
145
static DRIZZLE drizzle;      /* The connection */
146
static bool ignore_errors=0,quick=0,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
147
  connected=0,opt_raw_data=0,unbuffered=0,output_tables=0,
148
  opt_rehash=1,skip_updates=0,safe_updates=0,one_database=0,
149
  opt_compress=0, using_opt_local_infile=0,
150
  vertical=0, line_numbers=1, column_names=1,opt_html=0,
151
  opt_xml=0,opt_nopager=1, opt_outfile=0, named_cmds= 0,
152
  tty_password= 0, opt_nobeep=0, opt_reconnect=1,
153
  default_charset_used= 0, opt_secure_auth= 0,
154
  default_pager_set= 0, opt_sigint_ignore= 0,
155
  auto_vertical_output= 0,
156
  show_warnings= 0, executing_query= 0, interrupted_query= 0;
143 by Brian Aker
Bool cleanup.
157
static bool debug_info_flag, debug_check_flag;
158
static bool column_types_flag;
159
static bool preserve_comments= 0;
1 by brian
clean slate
160
static ulong opt_max_allowed_packet, opt_net_buffer_length;
206.3.1 by Patrick Galbraith
Most everything working with client rename
161
static int verbose=0,opt_silent=0,opt_drizzle_port=0, opt_local_infile=0;
1 by brian
clean slate
162
static uint my_end_arg;
206.3.1 by Patrick Galbraith
Most everything working with client rename
163
static char * opt_drizzle_unix_port=0;
1 by brian
clean slate
164
static int connect_flag=CLIENT_INTERACTIVE;
165
static char *current_host,*current_db,*current_user=0,*opt_password=0,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
166
  *delimiter_str= 0,*current_prompt=0,
167
  *default_charset= (char*) MYSQL_DEFAULT_CHARSET_NAME;
1 by brian
clean slate
168
static char *histfile;
169
static char *histfile_tmp;
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
170
static DYNAMIC_STRING *glob_buffer;
171
static DYNAMIC_STRING *processed_prompt= NULL;
172
static char *default_prompt= NULL;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
173
static char *full_username=0,*part_username=0;
1 by brian
clean slate
174
static STATUS status;
164 by Brian Aker
Commit cleanup of export types.
175
static uint32_t select_limit;
77.1.107 by Monty Taylor
Fixed build warnings.
176
static uint32_t max_join_size;
164 by Brian Aker
Commit cleanup of export types.
177
static ulong opt_connect_timeout= 0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
178
static char drizzle_charsets_dir[FN_REFLEN+1];
1 by brian
clean slate
179
static const char *xmlmeta[] = {
180
  "&", "&amp;",
181
  "<", "&lt;",
182
  ">", "&gt;",
183
  "\"", "&quot;",
184
  0, 0
185
};
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
186
// TODO: Need to i18n these
1 by brian
clean slate
187
static const char *day_names[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
188
static const char *month_names[]={"Jan","Feb","Mar","Apr","May","Jun","Jul",
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
189
                                  "Aug","Sep","Oct","Nov","Dec"};
1 by brian
clean slate
190
static char default_pager[FN_REFLEN];
191
static char pager[FN_REFLEN], outfile[FN_REFLEN];
192
static FILE *PAGER, *OUTFILE;
193
static MEM_ROOT hash_mem_root;
194
static uint prompt_counter;
195
static char delimiter[16]= DEFAULT_DELIMITER;
196
static uint delimiter_length= 1;
197
unsigned short terminal_width= 80;
198
206.3.1 by Patrick Galbraith
Most everything working with client rename
199
static uint opt_protocol= DRIZZLE_PROTOCOL_TCP;
264.2.6 by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code.
200
static const CHARSET_INFO *charset_info= &my_charset_latin1;
1 by brian
clean slate
201
206.3.1 by Patrick Galbraith
Most everything working with client rename
202
const char *default_dbug_option="d:t:o,/tmp/drizzle.trace";
203
int drizzle_real_query_for_lazy(const char *buf, int length);
204
int drizzle_store_result_for_lazy(DRIZZLE_RES **result);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
205
1 by brian
clean slate
206
207
void tee_fprintf(FILE *file, const char *fmt, ...);
208
void tee_fputs(const char *s, FILE *file);
209
void tee_puts(const char *s, FILE *file);
210
void tee_putc(int c, FILE *file);
211
static void tee_print_sized_data(const char *, unsigned int, unsigned int, bool);
212
/* The names of functions that actually do the manipulation. */
213
static int get_options(int argc,char **argv);
77.4.1 by Monty Taylor
Merged from trunk.
214
bool get_one_option(int optid, const struct my_option *opt,
215
                    char *argument);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
216
static int com_quit(DYNAMIC_STRING *str,char*),
217
  com_go(DYNAMIC_STRING *str,char*), com_ego(DYNAMIC_STRING *str,char*),
218
  com_print(DYNAMIC_STRING *str,char*),
219
  com_help(DYNAMIC_STRING *str,char*), com_clear(DYNAMIC_STRING *str,char*),
220
  com_connect(DYNAMIC_STRING *str,char*), com_status(DYNAMIC_STRING *str,char*),
221
  com_use(DYNAMIC_STRING *str,char*), com_source(DYNAMIC_STRING *str, char*),
222
  com_rehash(DYNAMIC_STRING *str, char*), com_tee(DYNAMIC_STRING *str, char*),
223
  com_notee(DYNAMIC_STRING *str, char*), com_charset(DYNAMIC_STRING *str,char*),
224
  com_prompt(DYNAMIC_STRING *str, char*), com_delimiter(DYNAMIC_STRING *str, char*),
225
  com_warnings(DYNAMIC_STRING *str, char*), com_nowarnings(DYNAMIC_STRING *str, char*),
226
  com_nopager(DYNAMIC_STRING *str, char*), com_pager(DYNAMIC_STRING *str, char*);
1 by brian
clean slate
227
228
static int read_and_execute(bool interactive);
229
static int sql_connect(char *host,char *database,char *user,char *password,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
230
                       uint silent);
206.3.1 by Patrick Galbraith
Most everything working with client rename
231
static const char *server_version_string(DRIZZLE *drizzle);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
232
static int put_info(const char *str,INFO_TYPE info,uint error,
233
                    const char *sql_state);
206.3.1 by Patrick Galbraith
Most everything working with client rename
234
static int put_error(DRIZZLE *drizzle);
1 by brian
clean slate
235
static void safe_put_field(const char *pos,ulong length);
236
static void xmlencode_print(const char *src, uint length);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
237
static void init_pager(void);
238
static void end_pager(void);
1 by brian
clean slate
239
static void init_tee(const char *);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
240
static void end_tee(void);
241
static const char* construct_prompt(void);
143 by Brian Aker
Bool cleanup.
242
static char *get_arg(char *line, bool get_next_arg);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
243
static void init_username(void);
1 by brian
clean slate
244
static void add_int_to_prompt(int toadd);
206.3.1 by Patrick Galbraith
Most everything working with client rename
245
static int get_result_width(DRIZZLE_RES *res);
246
static int get_field_disp_length(DRIZZLE_FIELD * field);
1 by brian
clean slate
247
248
/* A structure which contains information on the commands this program
249
   can understand. */
250
typedef struct {
202.1.25 by Monty Taylor
Fixed change of mysql.com -> drizzle.com.
251
  const char *name;        /* User printable name of the function. */
252
  char cmd_char;        /* msql command character */
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
253
  int (*func)(DYNAMIC_STRING *str,char *); /* Function to call to do the job. */
202.1.25 by Monty Taylor
Fixed change of mysql.com -> drizzle.com.
254
  bool takes_params;        /* Max parameters for command */
255
  const char *doc;        /* Documentation for this function.  */
1 by brian
clean slate
256
} COMMANDS;
257
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
258
1 by brian
clean slate
259
static COMMANDS commands[] = {
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
260
  { "?",      '?', com_help,   1, N_("Synonym for `help'.") },
261
  { "clear",  'c', com_clear,  0, N_("Clear command.")},
1 by brian
clean slate
262
  { "connect",'r', com_connect,1,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
263
    N_("Reconnect to the server. Optional arguments are db and host." }),
1 by brian
clean slate
264
  { "delimiter", 'd', com_delimiter,    1,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
265
    N_("Set statement delimiter. NOTE: Takes the rest of the line as new delimiter.") },
1 by brian
clean slate
266
  { "ego",    'G', com_ego,    0,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
267
    N_("Send command to drizzle server, display result vertically.")},
268
  { "exit",   'q', com_quit,   0, N_("Exit drizzle. Same as quit.")},
269
  { "go",     'g', com_go,     0, N_("Send command to drizzle server.") },
270
  { "help",   'h', com_help,   1, N_("Display this help.") },
271
  { "nopager",'n', com_nopager,0, N_("Disable pager, print to stdout.") },
272
  { "notee",  't', com_notee,  0, N_("Don't write into outfile.") },
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
273
  { "pager",  'P', com_pager,  1,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
274
    N_("Set PAGER [to_pager]. Print the query results via PAGER.") },
275
  { "print",  'p', com_print,  0, N_("Print current command.") },
276
  { "prompt", 'R', com_prompt, 1, N_("Change your drizzle prompt.")},
277
  { "quit",   'q', com_quit,   0, N_("Quit drizzle.") },
278
  { "rehash", '#', com_rehash, 0, N_("Rebuild completion hash.") },
1 by brian
clean slate
279
  { "source", '.', com_source, 1,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
280
    N_("Execute an SQL script file. Takes a file name as an argument.")},
281
  { "status", 's', com_status, 0, N_("Get status information from the server.")},
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
282
  { "tee",    'T', com_tee,    1,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
283
    N_("Set outfile [to_outfile]. Append everything into given outfile.") },
1 by brian
clean slate
284
  { "use",    'u', com_use,    1,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
285
    N_("Use another database. Takes database name as argument.") },
1 by brian
clean slate
286
  { "charset",    'C', com_charset,    1,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
287
    N_("Switch to another charset. Might be needed for processing binlog with multi-byte charsets.") },
1 by brian
clean slate
288
  { "warnings", 'W', com_warnings,  0,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
289
    N_("Show warnings after every statement.") },
1 by brian
clean slate
290
  { "nowarning", 'w', com_nowarnings, 0,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
291
    N_("Don't show warnings after every statement.") },
1 by brian
clean slate
292
  /* Get bash-like expansion for some commands */
293
  { "create table",     0, 0, 0, ""},
294
  { "create database",  0, 0, 0, ""},
295
  { "show databases",   0, 0, 0, ""},
296
  { "show fields from", 0, 0, 0, ""},
297
  { "show keys from",   0, 0, 0, ""},
298
  { "show tables",      0, 0, 0, ""},
299
  { "load data from",   0, 0, 0, ""},
300
  { "alter table",      0, 0, 0, ""},
301
  { "set option",       0, 0, 0, ""},
302
  { "lock tables",      0, 0, 0, ""},
303
  { "unlock tables",    0, 0, 0, ""},
304
  /* generated 2006-12-28.  Refresh occasionally from lexer. */
305
  { "ACTION", 0, 0, 0, ""},
306
  { "ADD", 0, 0, 0, ""},
307
  { "AFTER", 0, 0, 0, ""},
308
  { "AGAINST", 0, 0, 0, ""},
309
  { "AGGREGATE", 0, 0, 0, ""},
310
  { "ALL", 0, 0, 0, ""},
311
  { "ALGORITHM", 0, 0, 0, ""},
312
  { "ALTER", 0, 0, 0, ""},
313
  { "ANALYZE", 0, 0, 0, ""},
314
  { "AND", 0, 0, 0, ""},
315
  { "ANY", 0, 0, 0, ""},
316
  { "AS", 0, 0, 0, ""},
317
  { "ASC", 0, 0, 0, ""},
318
  { "ASCII", 0, 0, 0, ""},
319
  { "ASENSITIVE", 0, 0, 0, ""},
320
  { "AUTO_INCREMENT", 0, 0, 0, ""},
321
  { "AVG", 0, 0, 0, ""},
322
  { "AVG_ROW_LENGTH", 0, 0, 0, ""},
323
  { "BACKUP", 0, 0, 0, ""},
324
  { "BDB", 0, 0, 0, ""},
325
  { "BEFORE", 0, 0, 0, ""},
326
  { "BEGIN", 0, 0, 0, ""},
327
  { "BERKELEYDB", 0, 0, 0, ""},
328
  { "BETWEEN", 0, 0, 0, ""},
329
  { "BIGINT", 0, 0, 0, ""},
330
  { "BINARY", 0, 0, 0, ""},
331
  { "BINLOG", 0, 0, 0, ""},
332
  { "BIT", 0, 0, 0, ""},
333
  { "BLOB", 0, 0, 0, ""},
334
  { "BOOL", 0, 0, 0, ""},
335
  { "BOOLEAN", 0, 0, 0, ""},
336
  { "BOTH", 0, 0, 0, ""},
337
  { "BTREE", 0, 0, 0, ""},
338
  { "BY", 0, 0, 0, ""},
339
  { "BYTE", 0, 0, 0, ""},
340
  { "CACHE", 0, 0, 0, ""},
341
  { "CALL", 0, 0, 0, ""},
342
  { "CASCADE", 0, 0, 0, ""},
343
  { "CASCADED", 0, 0, 0, ""},
344
  { "CASE", 0, 0, 0, ""},
345
  { "CHAIN", 0, 0, 0, ""},
346
  { "CHANGE", 0, 0, 0, ""},
347
  { "CHANGED", 0, 0, 0, ""},
348
  { "CHAR", 0, 0, 0, ""},
349
  { "CHARACTER", 0, 0, 0, ""},
350
  { "CHARSET", 0, 0, 0, ""},
351
  { "CHECK", 0, 0, 0, ""},
352
  { "CHECKSUM", 0, 0, 0, ""},
353
  { "CIPHER", 0, 0, 0, ""},
354
  { "CLIENT", 0, 0, 0, ""},
355
  { "CLOSE", 0, 0, 0, ""},
356
  { "CODE", 0, 0, 0, ""},
357
  { "COLLATE", 0, 0, 0, ""},
358
  { "COLLATION", 0, 0, 0, ""},
359
  { "COLUMN", 0, 0, 0, ""},
360
  { "COLUMNS", 0, 0, 0, ""},
361
  { "COMMENT", 0, 0, 0, ""},
362
  { "COMMIT", 0, 0, 0, ""},
363
  { "COMMITTED", 0, 0, 0, ""},
364
  { "COMPACT", 0, 0, 0, ""},
365
  { "COMPRESSED", 0, 0, 0, ""},
366
  { "CONCURRENT", 0, 0, 0, ""},
367
  { "CONDITION", 0, 0, 0, ""},
368
  { "CONNECTION", 0, 0, 0, ""},
369
  { "CONSISTENT", 0, 0, 0, ""},
370
  { "CONSTRAINT", 0, 0, 0, ""},
371
  { "CONTAINS", 0, 0, 0, ""},
372
  { "CONTINUE", 0, 0, 0, ""},
373
  { "CONVERT", 0, 0, 0, ""},
374
  { "CREATE", 0, 0, 0, ""},
375
  { "CROSS", 0, 0, 0, ""},
376
  { "CUBE", 0, 0, 0, ""},
377
  { "CURRENT_DATE", 0, 0, 0, ""},
378
  { "CURRENT_TIME", 0, 0, 0, ""},
379
  { "CURRENT_TIMESTAMP", 0, 0, 0, ""},
380
  { "CURRENT_USER", 0, 0, 0, ""},
381
  { "CURSOR", 0, 0, 0, ""},
382
  { "DATA", 0, 0, 0, ""},
383
  { "DATABASE", 0, 0, 0, ""},
384
  { "DATABASES", 0, 0, 0, ""},
385
  { "DATE", 0, 0, 0, ""},
386
  { "DATETIME", 0, 0, 0, ""},
387
  { "DAY", 0, 0, 0, ""},
388
  { "DAY_HOUR", 0, 0, 0, ""},
389
  { "DAY_MICROSECOND", 0, 0, 0, ""},
390
  { "DAY_MINUTE", 0, 0, 0, ""},
391
  { "DAY_SECOND", 0, 0, 0, ""},
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
392
  { "DEALLOCATE", 0, 0, 0, ""},
1 by brian
clean slate
393
  { "DEC", 0, 0, 0, ""},
394
  { "DECIMAL", 0, 0, 0, ""},
395
  { "DECLARE", 0, 0, 0, ""},
396
  { "DEFAULT", 0, 0, 0, ""},
397
  { "DEFINER", 0, 0, 0, ""},
398
  { "DELAYED", 0, 0, 0, ""},
399
  { "DELAY_KEY_WRITE", 0, 0, 0, ""},
400
  { "DELETE", 0, 0, 0, ""},
401
  { "DESC", 0, 0, 0, ""},
402
  { "DESCRIBE", 0, 0, 0, ""},
403
  { "DES_KEY_FILE", 0, 0, 0, ""},
404
  { "DETERMINISTIC", 0, 0, 0, ""},
405
  { "DIRECTORY", 0, 0, 0, ""},
406
  { "DISABLE", 0, 0, 0, ""},
407
  { "DISCARD", 0, 0, 0, ""},
408
  { "DISTINCT", 0, 0, 0, ""},
409
  { "DISTINCTROW", 0, 0, 0, ""},
410
  { "DIV", 0, 0, 0, ""},
411
  { "DO", 0, 0, 0, ""},
412
  { "DOUBLE", 0, 0, 0, ""},
413
  { "DROP", 0, 0, 0, ""},
414
  { "DUAL", 0, 0, 0, ""},
415
  { "DUMPFILE", 0, 0, 0, ""},
416
  { "DUPLICATE", 0, 0, 0, ""},
417
  { "DYNAMIC", 0, 0, 0, ""},
418
  { "EACH", 0, 0, 0, ""},
419
  { "ELSE", 0, 0, 0, ""},
420
  { "ELSEIF", 0, 0, 0, ""},
421
  { "ENABLE", 0, 0, 0, ""},
422
  { "ENCLOSED", 0, 0, 0, ""},
423
  { "END", 0, 0, 0, ""},
424
  { "ENGINE", 0, 0, 0, ""},
425
  { "ENGINES", 0, 0, 0, ""},
426
  { "ENUM", 0, 0, 0, ""},
427
  { "ERRORS", 0, 0, 0, ""},
428
  { "ESCAPE", 0, 0, 0, ""},
429
  { "ESCAPED", 0, 0, 0, ""},
430
  { "EVENTS", 0, 0, 0, ""},
431
  { "EXECUTE", 0, 0, 0, ""},
432
  { "EXISTS", 0, 0, 0, ""},
433
  { "EXIT", 0, 0, 0, ""},
434
  { "EXPANSION", 0, 0, 0, ""},
435
  { "EXPLAIN", 0, 0, 0, ""},
436
  { "EXTENDED", 0, 0, 0, ""},
437
  { "FALSE", 0, 0, 0, ""},
438
  { "FAST", 0, 0, 0, ""},
439
  { "FETCH", 0, 0, 0, ""},
440
  { "FIELDS", 0, 0, 0, ""},
441
  { "FILE", 0, 0, 0, ""},
442
  { "FIRST", 0, 0, 0, ""},
443
  { "FIXED", 0, 0, 0, ""},
444
  { "FLOAT", 0, 0, 0, ""},
445
  { "FLOAT4", 0, 0, 0, ""},
446
  { "FLOAT8", 0, 0, 0, ""},
447
  { "FLUSH", 0, 0, 0, ""},
448
  { "FOR", 0, 0, 0, ""},
449
  { "FORCE", 0, 0, 0, ""},
450
  { "FOREIGN", 0, 0, 0, ""},
451
  { "FOUND", 0, 0, 0, ""},
452
  { "FRAC_SECOND", 0, 0, 0, ""},
453
  { "FROM", 0, 0, 0, ""},
454
  { "FULL", 0, 0, 0, ""},
455
  { "FULLTEXT", 0, 0, 0, ""},
456
  { "FUNCTION", 0, 0, 0, ""},
457
  { "GET_FORMAT", 0, 0, 0, ""},
458
  { "GLOBAL", 0, 0, 0, ""},
459
  { "GRANT", 0, 0, 0, ""},
460
  { "GRANTS", 0, 0, 0, ""},
461
  { "GROUP", 0, 0, 0, ""},
462
  { "HANDLER", 0, 0, 0, ""},
463
  { "HASH", 0, 0, 0, ""},
464
  { "HAVING", 0, 0, 0, ""},
465
  { "HELP", 0, 0, 0, ""},
466
  { "HIGH_PRIORITY", 0, 0, 0, ""},
467
  { "HOSTS", 0, 0, 0, ""},
468
  { "HOUR", 0, 0, 0, ""},
469
  { "HOUR_MICROSECOND", 0, 0, 0, ""},
470
  { "HOUR_MINUTE", 0, 0, 0, ""},
471
  { "HOUR_SECOND", 0, 0, 0, ""},
472
  { "IDENTIFIED", 0, 0, 0, ""},
473
  { "IF", 0, 0, 0, ""},
474
  { "IGNORE", 0, 0, 0, ""},
475
  { "IMPORT", 0, 0, 0, ""},
476
  { "IN", 0, 0, 0, ""},
477
  { "INDEX", 0, 0, 0, ""},
478
  { "INDEXES", 0, 0, 0, ""},
479
  { "INFILE", 0, 0, 0, ""},
480
  { "INNER", 0, 0, 0, ""},
481
  { "INNOBASE", 0, 0, 0, ""},
482
  { "INNODB", 0, 0, 0, ""},
483
  { "INOUT", 0, 0, 0, ""},
484
  { "INSENSITIVE", 0, 0, 0, ""},
485
  { "INSERT", 0, 0, 0, ""},
486
  { "INSERT_METHOD", 0, 0, 0, ""},
487
  { "INT", 0, 0, 0, ""},
488
  { "INT1", 0, 0, 0, ""},
489
  { "INT2", 0, 0, 0, ""},
490
  { "INT3", 0, 0, 0, ""},
491
  { "INT4", 0, 0, 0, ""},
492
  { "INT8", 0, 0, 0, ""},
493
  { "INTEGER", 0, 0, 0, ""},
494
  { "INTERVAL", 0, 0, 0, ""},
495
  { "INTO", 0, 0, 0, ""},
496
  { "IO_THREAD", 0, 0, 0, ""},
497
  { "IS", 0, 0, 0, ""},
498
  { "ISOLATION", 0, 0, 0, ""},
499
  { "ISSUER", 0, 0, 0, ""},
500
  { "ITERATE", 0, 0, 0, ""},
501
  { "INVOKER", 0, 0, 0, ""},
502
  { "JOIN", 0, 0, 0, ""},
503
  { "KEY", 0, 0, 0, ""},
504
  { "KEYS", 0, 0, 0, ""},
505
  { "KILL", 0, 0, 0, ""},
506
  { "LANGUAGE", 0, 0, 0, ""},
507
  { "LAST", 0, 0, 0, ""},
508
  { "LEADING", 0, 0, 0, ""},
509
  { "LEAVE", 0, 0, 0, ""},
510
  { "LEAVES", 0, 0, 0, ""},
511
  { "LEFT", 0, 0, 0, ""},
512
  { "LEVEL", 0, 0, 0, ""},
513
  { "LIKE", 0, 0, 0, ""},
514
  { "LIMIT", 0, 0, 0, ""},
515
  { "LINES", 0, 0, 0, ""},
516
  { "LINESTRING", 0, 0, 0, ""},
517
  { "LOAD", 0, 0, 0, ""},
518
  { "LOCAL", 0, 0, 0, ""},
519
  { "LOCALTIME", 0, 0, 0, ""},
520
  { "LOCALTIMESTAMP", 0, 0, 0, ""},
521
  { "LOCK", 0, 0, 0, ""},
522
  { "LOCKS", 0, 0, 0, ""},
523
  { "LOGS", 0, 0, 0, ""},
524
  { "LONG", 0, 0, 0, ""},
525
  { "LONGTEXT", 0, 0, 0, ""},
526
  { "LOOP", 0, 0, 0, ""},
527
  { "LOW_PRIORITY", 0, 0, 0, ""},
528
  { "MASTER", 0, 0, 0, ""},
529
  { "MASTER_CONNECT_RETRY", 0, 0, 0, ""},
530
  { "MASTER_HOST", 0, 0, 0, ""},
531
  { "MASTER_LOG_FILE", 0, 0, 0, ""},
532
  { "MASTER_LOG_POS", 0, 0, 0, ""},
533
  { "MASTER_PASSWORD", 0, 0, 0, ""},
534
  { "MASTER_PORT", 0, 0, 0, ""},
535
  { "MASTER_SERVER_ID", 0, 0, 0, ""},
536
  { "MASTER_SSL", 0, 0, 0, ""},
537
  { "MASTER_SSL_CA", 0, 0, 0, ""},
538
  { "MASTER_SSL_CAPATH", 0, 0, 0, ""},
539
  { "MASTER_SSL_CERT", 0, 0, 0, ""},
540
  { "MASTER_SSL_CIPHER", 0, 0, 0, ""},
541
  { "MASTER_SSL_KEY", 0, 0, 0, ""},
542
  { "MASTER_USER", 0, 0, 0, ""},
543
  { "MATCH", 0, 0, 0, ""},
544
  { "MAX_CONNECTIONS_PER_HOUR", 0, 0, 0, ""},
545
  { "MAX_QUERIES_PER_HOUR", 0, 0, 0, ""},
546
  { "MAX_ROWS", 0, 0, 0, ""},
547
  { "MAX_UPDATES_PER_HOUR", 0, 0, 0, ""},
548
  { "MAX_USER_CONNECTIONS", 0, 0, 0, ""},
549
  { "MEDIUM", 0, 0, 0, ""},
550
  { "MEDIUMTEXT", 0, 0, 0, ""},
551
  { "MERGE", 0, 0, 0, ""},
552
  { "MICROSECOND", 0, 0, 0, ""},
553
  { "MIDDLEINT", 0, 0, 0, ""},
554
  { "MIGRATE", 0, 0, 0, ""},
555
  { "MINUTE", 0, 0, 0, ""},
556
  { "MINUTE_MICROSECOND", 0, 0, 0, ""},
557
  { "MINUTE_SECOND", 0, 0, 0, ""},
558
  { "MIN_ROWS", 0, 0, 0, ""},
559
  { "MOD", 0, 0, 0, ""},
560
  { "MODE", 0, 0, 0, ""},
561
  { "MODIFIES", 0, 0, 0, ""},
562
  { "MODIFY", 0, 0, 0, ""},
563
  { "MONTH", 0, 0, 0, ""},
564
  { "MULTILINESTRING", 0, 0, 0, ""},
565
  { "MULTIPOINT", 0, 0, 0, ""},
566
  { "MULTIPOLYGON", 0, 0, 0, ""},
567
  { "MUTEX", 0, 0, 0, ""},
568
  { "NAME", 0, 0, 0, ""},
569
  { "NAMES", 0, 0, 0, ""},
570
  { "NATIONAL", 0, 0, 0, ""},
571
  { "NATURAL", 0, 0, 0, ""},
572
  { "NDB", 0, 0, 0, ""},
573
  { "NDBCLUSTER", 0, 0, 0, ""},
574
  { "NCHAR", 0, 0, 0, ""},
575
  { "NEW", 0, 0, 0, ""},
576
  { "NEXT", 0, 0, 0, ""},
577
  { "NO", 0, 0, 0, ""},
578
  { "NONE", 0, 0, 0, ""},
579
  { "NOT", 0, 0, 0, ""},
580
  { "NO_WRITE_TO_BINLOG", 0, 0, 0, ""},
581
  { "NULL", 0, 0, 0, ""},
582
  { "NUMERIC", 0, 0, 0, ""},
583
  { "NVARCHAR", 0, 0, 0, ""},
584
  { "OFFSET", 0, 0, 0, ""},
585
  { "OLD_PASSWORD", 0, 0, 0, ""},
586
  { "ON", 0, 0, 0, ""},
587
  { "ONE", 0, 0, 0, ""},
588
  { "ONE_SHOT", 0, 0, 0, ""},
589
  { "OPEN", 0, 0, 0, ""},
590
  { "OPTIMIZE", 0, 0, 0, ""},
591
  { "OPTION", 0, 0, 0, ""},
592
  { "OPTIONALLY", 0, 0, 0, ""},
593
  { "OR", 0, 0, 0, ""},
594
  { "ORDER", 0, 0, 0, ""},
595
  { "OUT", 0, 0, 0, ""},
596
  { "OUTER", 0, 0, 0, ""},
597
  { "OUTFILE", 0, 0, 0, ""},
598
  { "PACK_KEYS", 0, 0, 0, ""},
599
  { "PARTIAL", 0, 0, 0, ""},
600
  { "PASSWORD", 0, 0, 0, ""},
601
  { "PHASE", 0, 0, 0, ""},
602
  { "POINT", 0, 0, 0, ""},
603
  { "POLYGON", 0, 0, 0, ""},
604
  { "PRECISION", 0, 0, 0, ""},
605
  { "PREPARE", 0, 0, 0, ""},
606
  { "PREV", 0, 0, 0, ""},
607
  { "PRIMARY", 0, 0, 0, ""},
608
  { "PRIVILEGES", 0, 0, 0, ""},
609
  { "PROCEDURE", 0, 0, 0, ""},
610
  { "PROCESS", 0, 0, 0, ""},
611
  { "PROCESSLIST", 0, 0, 0, ""},
612
  { "PURGE", 0, 0, 0, ""},
613
  { "QUARTER", 0, 0, 0, ""},
614
  { "QUERY", 0, 0, 0, ""},
615
  { "QUICK", 0, 0, 0, ""},
616
  { "RAID0", 0, 0, 0, ""},
617
  { "RAID_CHUNKS", 0, 0, 0, ""},
618
  { "RAID_CHUNKSIZE", 0, 0, 0, ""},
619
  { "RAID_TYPE", 0, 0, 0, ""},
620
  { "READ", 0, 0, 0, ""},
621
  { "READS", 0, 0, 0, ""},
622
  { "REAL", 0, 0, 0, ""},
623
  { "RECOVER", 0, 0, 0, ""},
624
  { "REDUNDANT", 0, 0, 0, ""},
625
  { "REFERENCES", 0, 0, 0, ""},
626
  { "REGEXP", 0, 0, 0, ""},
627
  { "RELAY_LOG_FILE", 0, 0, 0, ""},
628
  { "RELAY_LOG_POS", 0, 0, 0, ""},
629
  { "RELAY_THREAD", 0, 0, 0, ""},
630
  { "RELEASE", 0, 0, 0, ""},
631
  { "RELOAD", 0, 0, 0, ""},
632
  { "RENAME", 0, 0, 0, ""},
633
  { "REPAIR", 0, 0, 0, ""},
634
  { "REPEATABLE", 0, 0, 0, ""},
635
  { "REPLACE", 0, 0, 0, ""},
636
  { "REPLICATION", 0, 0, 0, ""},
637
  { "REPEAT", 0, 0, 0, ""},
638
  { "REQUIRE", 0, 0, 0, ""},
639
  { "RESET", 0, 0, 0, ""},
640
  { "RESTORE", 0, 0, 0, ""},
641
  { "RESTRICT", 0, 0, 0, ""},
642
  { "RESUME", 0, 0, 0, ""},
643
  { "RETURN", 0, 0, 0, ""},
644
  { "RETURNS", 0, 0, 0, ""},
645
  { "REVOKE", 0, 0, 0, ""},
646
  { "RIGHT", 0, 0, 0, ""},
647
  { "RLIKE", 0, 0, 0, ""},
648
  { "ROLLBACK", 0, 0, 0, ""},
649
  { "ROLLUP", 0, 0, 0, ""},
650
  { "ROUTINE", 0, 0, 0, ""},
651
  { "ROW", 0, 0, 0, ""},
652
  { "ROWS", 0, 0, 0, ""},
653
  { "ROW_FORMAT", 0, 0, 0, ""},
654
  { "RTREE", 0, 0, 0, ""},
655
  { "SAVEPOINT", 0, 0, 0, ""},
656
  { "SCHEMA", 0, 0, 0, ""},
657
  { "SCHEMAS", 0, 0, 0, ""},
658
  { "SECOND", 0, 0, 0, ""},
659
  { "SECOND_MICROSECOND", 0, 0, 0, ""},
660
  { "SECURITY", 0, 0, 0, ""},
661
  { "SELECT", 0, 0, 0, ""},
662
  { "SENSITIVE", 0, 0, 0, ""},
663
  { "SEPARATOR", 0, 0, 0, ""},
664
  { "SERIAL", 0, 0, 0, ""},
665
  { "SERIALIZABLE", 0, 0, 0, ""},
666
  { "SESSION", 0, 0, 0, ""},
667
  { "SET", 0, 0, 0, ""},
668
  { "SHARE", 0, 0, 0, ""},
669
  { "SHOW", 0, 0, 0, ""},
670
  { "SHUTDOWN", 0, 0, 0, ""},
671
  { "SIGNED", 0, 0, 0, ""},
672
  { "SIMPLE", 0, 0, 0, ""},
673
  { "SLAVE", 0, 0, 0, ""},
674
  { "SNAPSHOT", 0, 0, 0, ""},
675
  { "SMALLINT", 0, 0, 0, ""},
676
  { "SOME", 0, 0, 0, ""},
677
  { "SONAME", 0, 0, 0, ""},
678
  { "SOUNDS", 0, 0, 0, ""},
679
  { "SPATIAL", 0, 0, 0, ""},
680
  { "SPECIFIC", 0, 0, 0, ""},
681
  { "SQL", 0, 0, 0, ""},
682
  { "SQLEXCEPTION", 0, 0, 0, ""},
683
  { "SQLSTATE", 0, 0, 0, ""},
684
  { "SQLWARNING", 0, 0, 0, ""},
685
  { "SQL_BIG_RESULT", 0, 0, 0, ""},
686
  { "SQL_BUFFER_RESULT", 0, 0, 0, ""},
687
  { "SQL_CACHE", 0, 0, 0, ""},
688
  { "SQL_CALC_FOUND_ROWS", 0, 0, 0, ""},
689
  { "SQL_NO_CACHE", 0, 0, 0, ""},
690
  { "SQL_SMALL_RESULT", 0, 0, 0, ""},
691
  { "SQL_THREAD", 0, 0, 0, ""},
692
  { "SQL_TSI_FRAC_SECOND", 0, 0, 0, ""},
693
  { "SQL_TSI_SECOND", 0, 0, 0, ""},
694
  { "SQL_TSI_MINUTE", 0, 0, 0, ""},
695
  { "SQL_TSI_HOUR", 0, 0, 0, ""},
696
  { "SQL_TSI_DAY", 0, 0, 0, ""},
697
  { "SQL_TSI_WEEK", 0, 0, 0, ""},
698
  { "SQL_TSI_MONTH", 0, 0, 0, ""},
699
  { "SQL_TSI_QUARTER", 0, 0, 0, ""},
700
  { "SQL_TSI_YEAR", 0, 0, 0, ""},
701
  { "SSL", 0, 0, 0, ""},
702
  { "START", 0, 0, 0, ""},
703
  { "STARTING", 0, 0, 0, ""},
704
  { "STATUS", 0, 0, 0, ""},
705
  { "STOP", 0, 0, 0, ""},
706
  { "STORAGE", 0, 0, 0, ""},
707
  { "STRAIGHT_JOIN", 0, 0, 0, ""},
708
  { "STRING", 0, 0, 0, ""},
709
  { "STRIPED", 0, 0, 0, ""},
710
  { "SUBJECT", 0, 0, 0, ""},
711
  { "SUPER", 0, 0, 0, ""},
712
  { "SUSPEND", 0, 0, 0, ""},
713
  { "TABLE", 0, 0, 0, ""},
714
  { "TABLES", 0, 0, 0, ""},
715
  { "TABLESPACE", 0, 0, 0, ""},
716
  { "TEMPORARY", 0, 0, 0, ""},
717
  { "TEMPTABLE", 0, 0, 0, ""},
718
  { "TERMINATED", 0, 0, 0, ""},
719
  { "TEXT", 0, 0, 0, ""},
720
  { "THEN", 0, 0, 0, ""},
721
  { "TIME", 0, 0, 0, ""},
722
  { "TIMESTAMP", 0, 0, 0, ""},
723
  { "TIMESTAMPADD", 0, 0, 0, ""},
724
  { "TIMESTAMPDIFF", 0, 0, 0, ""},
725
  { "TINYINT", 0, 0, 0, ""},
726
  { "TINYTEXT", 0, 0, 0, ""},
727
  { "TO", 0, 0, 0, ""},
728
  { "TRAILING", 0, 0, 0, ""},
729
  { "TRANSACTION", 0, 0, 0, ""},
730
  { "TRIGGER", 0, 0, 0, ""},
731
  { "TRIGGERS", 0, 0, 0, ""},
732
  { "TRUE", 0, 0, 0, ""},
733
  { "TRUNCATE", 0, 0, 0, ""},
734
  { "TYPE", 0, 0, 0, ""},
735
  { "TYPES", 0, 0, 0, ""},
736
  { "UNCOMMITTED", 0, 0, 0, ""},
737
  { "UNDEFINED", 0, 0, 0, ""},
738
  { "UNDO", 0, 0, 0, ""},
739
  { "UNICODE", 0, 0, 0, ""},
740
  { "UNION", 0, 0, 0, ""},
741
  { "UNIQUE", 0, 0, 0, ""},
742
  { "UNKNOWN", 0, 0, 0, ""},
743
  { "UNLOCK", 0, 0, 0, ""},
744
  { "UNSIGNED", 0, 0, 0, ""},
745
  { "UNTIL", 0, 0, 0, ""},
746
  { "UPDATE", 0, 0, 0, ""},
747
  { "UPGRADE", 0, 0, 0, ""},
748
  { "USAGE", 0, 0, 0, ""},
749
  { "USE", 0, 0, 0, ""},
750
  { "USER", 0, 0, 0, ""},
751
  { "USER_RESOURCES", 0, 0, 0, ""},
752
  { "USE_FRM", 0, 0, 0, ""},
753
  { "USING", 0, 0, 0, ""},
754
  { "UTC_DATE", 0, 0, 0, ""},
755
  { "UTC_TIME", 0, 0, 0, ""},
756
  { "UTC_TIMESTAMP", 0, 0, 0, ""},
757
  { "VALUE", 0, 0, 0, ""},
758
  { "VALUES", 0, 0, 0, ""},
759
  { "VARBINARY", 0, 0, 0, ""},
760
  { "VARCHAR", 0, 0, 0, ""},
761
  { "VARCHARACTER", 0, 0, 0, ""},
762
  { "VARIABLES", 0, 0, 0, ""},
763
  { "VARYING", 0, 0, 0, ""},
764
  { "WARNINGS", 0, 0, 0, ""},
765
  { "WEEK", 0, 0, 0, ""},
766
  { "WHEN", 0, 0, 0, ""},
767
  { "WHERE", 0, 0, 0, ""},
768
  { "WHILE", 0, 0, 0, ""},
769
  { "VIEW", 0, 0, 0, ""},
770
  { "WITH", 0, 0, 0, ""},
771
  { "WORK", 0, 0, 0, ""},
772
  { "WRITE", 0, 0, 0, ""},
773
  { "X509", 0, 0, 0, ""},
774
  { "XOR", 0, 0, 0, ""},
775
  { "XA", 0, 0, 0, ""},
776
  { "YEAR", 0, 0, 0, ""},
777
  { "YEAR_MONTH", 0, 0, 0, ""},
778
  { "ZEROFILL", 0, 0, 0, ""},
779
  { "ABS", 0, 0, 0, ""},
780
  { "ACOS", 0, 0, 0, ""},
781
  { "ADDDATE", 0, 0, 0, ""},
782
  { "ADDTIME", 0, 0, 0, ""},
783
  { "AES_ENCRYPT", 0, 0, 0, ""},
784
  { "AES_DECRYPT", 0, 0, 0, ""},
785
  { "AREA", 0, 0, 0, ""},
786
  { "ASIN", 0, 0, 0, ""},
787
  { "ASBINARY", 0, 0, 0, ""},
788
  { "ASTEXT", 0, 0, 0, ""},
789
  { "ASWKB", 0, 0, 0, ""},
790
  { "ASWKT", 0, 0, 0, ""},
791
  { "ATAN", 0, 0, 0, ""},
792
  { "ATAN2", 0, 0, 0, ""},
793
  { "BENCHMARK", 0, 0, 0, ""},
794
  { "BIN", 0, 0, 0, ""},
795
  { "BIT_COUNT", 0, 0, 0, ""},
796
  { "BIT_OR", 0, 0, 0, ""},
797
  { "BIT_AND", 0, 0, 0, ""},
798
  { "BIT_XOR", 0, 0, 0, ""},
799
  { "CAST", 0, 0, 0, ""},
800
  { "CEIL", 0, 0, 0, ""},
801
  { "CEILING", 0, 0, 0, ""},
802
  { "BIT_LENGTH", 0, 0, 0, ""},
803
  { "CENTROID", 0, 0, 0, ""},
804
  { "CHAR_LENGTH", 0, 0, 0, ""},
805
  { "CHARACTER_LENGTH", 0, 0, 0, ""},
806
  { "COALESCE", 0, 0, 0, ""},
807
  { "COERCIBILITY", 0, 0, 0, ""},
808
  { "COMPRESS", 0, 0, 0, ""},
809
  { "CONCAT", 0, 0, 0, ""},
810
  { "CONCAT_WS", 0, 0, 0, ""},
811
  { "CONNECTION_ID", 0, 0, 0, ""},
812
  { "CONV", 0, 0, 0, ""},
813
  { "CONVERT_TZ", 0, 0, 0, ""},
814
  { "COUNT", 0, 0, 0, ""},
815
  { "COS", 0, 0, 0, ""},
816
  { "COT", 0, 0, 0, ""},
817
  { "CRC32", 0, 0, 0, ""},
818
  { "CROSSES", 0, 0, 0, ""},
819
  { "CURDATE", 0, 0, 0, ""},
820
  { "CURTIME", 0, 0, 0, ""},
821
  { "DATE_ADD", 0, 0, 0, ""},
822
  { "DATEDIFF", 0, 0, 0, ""},
823
  { "DATE_FORMAT", 0, 0, 0, ""},
824
  { "DATE_SUB", 0, 0, 0, ""},
825
  { "DAYNAME", 0, 0, 0, ""},
826
  { "DAYOFMONTH", 0, 0, 0, ""},
827
  { "DAYOFWEEK", 0, 0, 0, ""},
828
  { "DAYOFYEAR", 0, 0, 0, ""},
829
  { "DECODE", 0, 0, 0, ""},
830
  { "DEGREES", 0, 0, 0, ""},
831
  { "DES_ENCRYPT", 0, 0, 0, ""},
832
  { "DES_DECRYPT", 0, 0, 0, ""},
833
  { "DIMENSION", 0, 0, 0, ""},
834
  { "DISJOINT", 0, 0, 0, ""},
835
  { "ELT", 0, 0, 0, ""},
836
  { "ENCODE", 0, 0, 0, ""},
837
  { "ENCRYPT", 0, 0, 0, ""},
838
  { "ENDPOINT", 0, 0, 0, ""},
839
  { "ENVELOPE", 0, 0, 0, ""},
840
  { "EQUALS", 0, 0, 0, ""},
841
  { "EXTERIORRING", 0, 0, 0, ""},
842
  { "EXTRACT", 0, 0, 0, ""},
843
  { "EXP", 0, 0, 0, ""},
844
  { "EXPORT_SET", 0, 0, 0, ""},
845
  { "FIELD", 0, 0, 0, ""},
846
  { "FIND_IN_SET", 0, 0, 0, ""},
847
  { "FLOOR", 0, 0, 0, ""},
848
  { "FORMAT", 0, 0, 0, ""},
849
  { "FOUND_ROWS", 0, 0, 0, ""},
850
  { "FROM_DAYS", 0, 0, 0, ""},
851
  { "FROM_UNIXTIME", 0, 0, 0, ""},
852
  { "GET_LOCK", 0, 0, 0, ""},
853
  { "GLENGTH", 0, 0, 0, ""},
854
  { "GREATEST", 0, 0, 0, ""},
855
  { "GROUP_CONCAT", 0, 0, 0, ""},
856
  { "GROUP_UNIQUE_USERS", 0, 0, 0, ""},
857
  { "HEX", 0, 0, 0, ""},
858
  { "IFNULL", 0, 0, 0, ""},
859
  { "INET_ATON", 0, 0, 0, ""},
860
  { "INET_NTOA", 0, 0, 0, ""},
861
  { "INSTR", 0, 0, 0, ""},
862
  { "INTERIORRINGN", 0, 0, 0, ""},
863
  { "INTERSECTS", 0, 0, 0, ""},
864
  { "ISCLOSED", 0, 0, 0, ""},
865
  { "ISEMPTY", 0, 0, 0, ""},
866
  { "ISNULL", 0, 0, 0, ""},
867
  { "IS_FREE_LOCK", 0, 0, 0, ""},
868
  { "IS_USED_LOCK", 0, 0, 0, ""},
869
  { "LAST_INSERT_ID", 0, 0, 0, ""},
870
  { "ISSIMPLE", 0, 0, 0, ""},
871
  { "LAST_DAY", 0, 0, 0, ""},
872
  { "LCASE", 0, 0, 0, ""},
873
  { "LEAST", 0, 0, 0, ""},
874
  { "LENGTH", 0, 0, 0, ""},
875
  { "LN", 0, 0, 0, ""},
876
  { "LINEFROMTEXT", 0, 0, 0, ""},
877
  { "LINEFROMWKB", 0, 0, 0, ""},
878
  { "LINESTRINGFROMTEXT", 0, 0, 0, ""},
879
  { "LINESTRINGFROMWKB", 0, 0, 0, ""},
880
  { "LOAD_FILE", 0, 0, 0, ""},
881
  { "LOCATE", 0, 0, 0, ""},
882
  { "LOG", 0, 0, 0, ""},
883
  { "LOG2", 0, 0, 0, ""},
884
  { "LOG10", 0, 0, 0, ""},
885
  { "LOWER", 0, 0, 0, ""},
886
  { "LPAD", 0, 0, 0, ""},
887
  { "LTRIM", 0, 0, 0, ""},
888
  { "MAKE_SET", 0, 0, 0, ""},
889
  { "MAKEDATE", 0, 0, 0, ""},
890
  { "MAKETIME", 0, 0, 0, ""},
891
  { "MASTER_POS_WAIT", 0, 0, 0, ""},
892
  { "MAX", 0, 0, 0, ""},
893
  { "MBRCONTAINS", 0, 0, 0, ""},
894
  { "MBRDISJOINT", 0, 0, 0, ""},
895
  { "MBREQUAL", 0, 0, 0, ""},
896
  { "MBRINTERSECTS", 0, 0, 0, ""},
897
  { "MBROVERLAPS", 0, 0, 0, ""},
898
  { "MBRTOUCHES", 0, 0, 0, ""},
899
  { "MBRWITHIN", 0, 0, 0, ""},
900
  { "MD5", 0, 0, 0, ""},
901
  { "MID", 0, 0, 0, ""},
902
  { "MIN", 0, 0, 0, ""},
903
  { "MLINEFROMTEXT", 0, 0, 0, ""},
904
  { "MLINEFROMWKB", 0, 0, 0, ""},
905
  { "MPOINTFROMTEXT", 0, 0, 0, ""},
906
  { "MPOINTFROMWKB", 0, 0, 0, ""},
907
  { "MPOLYFROMTEXT", 0, 0, 0, ""},
908
  { "MPOLYFROMWKB", 0, 0, 0, ""},
909
  { "MONTHNAME", 0, 0, 0, ""},
910
  { "MULTILINESTRINGFROMTEXT", 0, 0, 0, ""},
911
  { "MULTILINESTRINGFROMWKB", 0, 0, 0, ""},
912
  { "MULTIPOINTFROMTEXT", 0, 0, 0, ""},
913
  { "MULTIPOINTFROMWKB", 0, 0, 0, ""},
914
  { "MULTIPOLYGONFROMTEXT", 0, 0, 0, ""},
915
  { "MULTIPOLYGONFROMWKB", 0, 0, 0, ""},
916
  { "NAME_CONST", 0, 0, 0, ""},
917
  { "NOW", 0, 0, 0, ""},
918
  { "NULLIF", 0, 0, 0, ""},
919
  { "NUMINTERIORRINGS", 0, 0, 0, ""},
920
  { "NUMPOINTS", 0, 0, 0, ""},
921
  { "OCTET_LENGTH", 0, 0, 0, ""},
922
  { "OCT", 0, 0, 0, ""},
923
  { "ORD", 0, 0, 0, ""},
924
  { "OVERLAPS", 0, 0, 0, ""},
925
  { "PERIOD_ADD", 0, 0, 0, ""},
926
  { "PERIOD_DIFF", 0, 0, 0, ""},
927
  { "PI", 0, 0, 0, ""},
928
  { "POINTFROMTEXT", 0, 0, 0, ""},
929
  { "POINTFROMWKB", 0, 0, 0, ""},
930
  { "POINTN", 0, 0, 0, ""},
931
  { "POLYFROMTEXT", 0, 0, 0, ""},
932
  { "POLYFROMWKB", 0, 0, 0, ""},
933
  { "POLYGONFROMTEXT", 0, 0, 0, ""},
934
  { "POLYGONFROMWKB", 0, 0, 0, ""},
935
  { "POSITION", 0, 0, 0, ""},
936
  { "POW", 0, 0, 0, ""},
937
  { "POWER", 0, 0, 0, ""},
938
  { "QUOTE", 0, 0, 0, ""},
939
  { "RADIANS", 0, 0, 0, ""},
940
  { "RAND", 0, 0, 0, ""},
941
  { "RELEASE_LOCK", 0, 0, 0, ""},
942
  { "REVERSE", 0, 0, 0, ""},
943
  { "ROUND", 0, 0, 0, ""},
944
  { "ROW_COUNT", 0, 0, 0, ""},
945
  { "RPAD", 0, 0, 0, ""},
946
  { "RTRIM", 0, 0, 0, ""},
947
  { "SEC_TO_TIME", 0, 0, 0, ""},
948
  { "SESSION_USER", 0, 0, 0, ""},
949
  { "SUBDATE", 0, 0, 0, ""},
950
  { "SIGN", 0, 0, 0, ""},
951
  { "SIN", 0, 0, 0, ""},
952
  { "SHA", 0, 0, 0, ""},
953
  { "SHA1", 0, 0, 0, ""},
954
  { "SLEEP", 0, 0, 0, ""},
955
  { "SOUNDEX", 0, 0, 0, ""},
956
  { "SPACE", 0, 0, 0, ""},
957
  { "SQRT", 0, 0, 0, ""},
958
  { "SRID", 0, 0, 0, ""},
959
  { "STARTPOINT", 0, 0, 0, ""},
960
  { "STD", 0, 0, 0, ""},
961
  { "STDDEV", 0, 0, 0, ""},
962
  { "STDDEV_POP", 0, 0, 0, ""},
963
  { "STDDEV_SAMP", 0, 0, 0, ""},
964
  { "STR_TO_DATE", 0, 0, 0, ""},
965
  { "STRCMP", 0, 0, 0, ""},
966
  { "SUBSTR", 0, 0, 0, ""},
967
  { "SUBSTRING", 0, 0, 0, ""},
968
  { "SUBSTRING_INDEX", 0, 0, 0, ""},
969
  { "SUBTIME", 0, 0, 0, ""},
970
  { "SUM", 0, 0, 0, ""},
971
  { "SYSDATE", 0, 0, 0, ""},
972
  { "SYSTEM_USER", 0, 0, 0, ""},
973
  { "TAN", 0, 0, 0, ""},
974
  { "TIME_FORMAT", 0, 0, 0, ""},
975
  { "TIME_TO_SEC", 0, 0, 0, ""},
976
  { "TIMEDIFF", 0, 0, 0, ""},
977
  { "TO_DAYS", 0, 0, 0, ""},
978
  { "TOUCHES", 0, 0, 0, ""},
979
  { "TRIM", 0, 0, 0, ""},
980
  { "UCASE", 0, 0, 0, ""},
981
  { "UNCOMPRESS", 0, 0, 0, ""},
982
  { "UNCOMPRESSED_LENGTH", 0, 0, 0, ""},
983
  { "UNHEX", 0, 0, 0, ""},
984
  { "UNIQUE_USERS", 0, 0, 0, ""},
985
  { "UNIX_TIMESTAMP", 0, 0, 0, ""},
986
  { "UPPER", 0, 0, 0, ""},
987
  { "UUID", 0, 0, 0, ""},
988
  { "VARIANCE", 0, 0, 0, ""},
989
  { "VAR_POP", 0, 0, 0, ""},
990
  { "VAR_SAMP", 0, 0, 0, ""},
991
  { "VERSION", 0, 0, 0, ""},
992
  { "WEEKDAY", 0, 0, 0, ""},
993
  { "WEEKOFYEAR", 0, 0, 0, ""},
994
  { "WITHIN", 0, 0, 0, ""},
995
  { "X", 0, 0, 0, ""},
996
  { "Y", 0, 0, 0, ""},
997
  { "YEARWEEK", 0, 0, 0, ""},
998
  /* end sentinel */
999
  { (char *)NULL,       0, 0, 0, ""}
1000
};
1001
206.3.1 by Patrick Galbraith
Most everything working with client rename
1002
static const char *load_default_groups[]= { "drizzle","client",0 };
1 by brian
clean slate
1003
1004
static int         embedded_server_arg_count= 0;
1005
static char       *embedded_server_args[MAX_SERVER_ARGS];
164 by Brian Aker
Commit cleanup of export types.
1006
77.3.18 by Monty Taylor
Merged in codestyle.
1007
int history_length;
1 by brian
clean slate
1008
static int not_in_history(const char *line);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1009
static void initialize_readline (const char *name);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1010
static void fix_history(DYNAMIC_STRING *final_command);
1 by brian
clean slate
1011
1012
static COMMANDS *find_command(char *name,char cmd_name);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1013
static bool add_line(DYNAMIC_STRING *buffer,char *line,char *in_string,
1 by brian
clean slate
1014
                     bool *ml_comment);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1015
static void remove_cntrl(DYNAMIC_STRING *buffer);
206.3.1 by Patrick Galbraith
Most everything working with client rename
1016
static void print_table_data(DRIZZLE_RES *result);
1017
static void print_table_data_html(DRIZZLE_RES *result);
1018
static void print_table_data_xml(DRIZZLE_RES *result);
1019
static void print_tab_data(DRIZZLE_RES *result);
1020
static void print_table_data_vertically(DRIZZLE_RES *result);
1 by brian
clean slate
1021
static void print_warnings(void);
1022
static ulong start_timer(void);
1023
static void end_timer(ulong start_time,char *buff);
206.3.1 by Patrick Galbraith
Most everything working with client rename
1024
static void drizzle_end_timer(ulong start_time,char *buff);
1 by brian
clean slate
1025
static void nice_time(double sec,char *buff,bool part_second);
206.3.1 by Patrick Galbraith
Most everything working with client rename
1026
extern sig_handler drizzle_end(int sig);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1027
extern sig_handler handle_sigint(int sig);
1 by brian
clean slate
1028
#if defined(HAVE_TERMIOS_H) && defined(GWINSZ_IN_SYS_IOCTL)
1029
static sig_handler window_resize(int sig);
1030
#endif
1031
1032
int main(int argc,char *argv[])
1033
{
1034
  char buff[80];
1035
236.1.60 by Monty Taylor
Another stab at protecting NLS stuff.
1036
#if defined(ENABLE_NLS)
1037
# if defined(HAVE_LOCALE_H)
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
1038
  setlocale(LC_ALL, "");
236.1.60 by Monty Taylor
Another stab at protecting NLS stuff.
1039
# endif
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
1040
  bindtextdomain("drizzle", LOCALEDIR);
1041
  textdomain("drizzle");
236.1.60 by Monty Taylor
Another stab at protecting NLS stuff.
1042
#endif
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
1043
1 by brian
clean slate
1044
  MY_INIT(argv[0]);
1045
  delimiter_str= delimiter;
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1046
  default_prompt= my_strdup(getenv("DRIZZLE_PS1") ?
1047
                            getenv("DRIZZLE_PS1") :
1048
                            "drizzle>> ", MYF(0));
1049
  current_prompt= my_strdup(default_prompt, MYF(0));
1050
1051
  processed_prompt= (DYNAMIC_STRING *)my_malloc(sizeof(DYNAMIC_STRING), MYF(0));
1052
  init_dynamic_string(processed_prompt, "", 32, 32);
1053
1 by brian
clean slate
1054
  prompt_counter=0;
1055
206.3.1 by Patrick Galbraith
Most everything working with client rename
1056
  outfile[0]=0;      // no (default) outfile
1057
  strmov(pager, "stdout");  // the default, if --pager wasn't given
1 by brian
clean slate
1058
  {
1059
    char *tmp=getenv("PAGER");
1060
    if (tmp && strlen(tmp))
1061
    {
1062
      default_pager_set= 1;
1063
      strmov(default_pager, tmp);
1064
    }
1065
  }
1066
  if (!isatty(0) || !isatty(1))
1067
  {
1068
    status.batch=1; opt_silent=1;
1069
    ignore_errors=0;
1070
  }
1071
  else
1072
    status.add_to_history=1;
1073
  status.exit_status=1;
1074
1075
  {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1076
    /*
1077
      The file descriptor-layer may be out-of-sync with the file-number layer,
1078
      so we make sure that "stdout" is really open.  If its file is closed then
1079
      explicitly close the FD layer.
1 by brian
clean slate
1080
    */
1081
    int stdout_fileno_copy;
1082
    stdout_fileno_copy= dup(fileno(stdout)); /* Okay if fileno fails. */
1083
    if (stdout_fileno_copy == -1)
1084
      fclose(stdout);
1085
    else
1086
      close(stdout_fileno_copy);             /* Clean up dup(). */
1087
  }
1088
1089
  load_defaults("my",load_default_groups,&argc,&argv);
1090
  defaults_argv=argv;
1091
  if (get_options(argc, (char **) argv))
1092
  {
1093
    free_defaults(defaults_argv);
1094
    my_end(0);
1095
    exit(1);
1096
  }
1097
  if (status.batch && !status.line_buff &&
1098
      !(status.line_buff=batch_readline_init(opt_max_allowed_packet+512,stdin)))
1099
  {
1100
    free_defaults(defaults_argv);
1101
    my_end(0);
1102
    exit(1);
1103
  }
1104
  completion_hash_init(&ht, 128);
1105
  init_alloc_root(&hash_mem_root, 16384, 0);
212.6.10 by Mats Kindahl
Removing redundant use of casts in client/ for memcmp(), memcpy(), memset(), and memmove().
1106
  memset(&drizzle, 0, sizeof(drizzle));
1 by brian
clean slate
1107
  if (sql_connect(current_host,current_db,current_user,opt_password,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1108
                  opt_silent))
1 by brian
clean slate
1109
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
1110
    quick= 1;          // Avoid history
1 by brian
clean slate
1111
    status.exit_status= 1;
206.3.1 by Patrick Galbraith
Most everything working with client rename
1112
    drizzle_end(-1);
1 by brian
clean slate
1113
  }
1114
  if (!status.batch)
206.3.1 by Patrick Galbraith
Most everything working with client rename
1115
    ignore_errors=1;        // Don't abort monitor
1 by brian
clean slate
1116
1117
  if (opt_sigint_ignore)
1118
    signal(SIGINT, SIG_IGN);
1119
  else
1120
    signal(SIGINT, handle_sigint);              // Catch SIGINT to clean up
206.3.1 by Patrick Galbraith
Most everything working with client rename
1121
  signal(SIGQUIT, drizzle_end);      // Catch SIGQUIT to clean up
1 by brian
clean slate
1122
1123
#if defined(HAVE_TERMIOS_H) && defined(GWINSZ_IN_SYS_IOCTL)
1124
  /* Readline will call this if it installs a handler */
1125
  signal(SIGWINCH, window_resize);
1126
  /* call the SIGWINCH handler to get the default term width */
1127
  window_resize(0);
1128
#endif
1129
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1130
  put_info(_("Welcome to the Drizzle client..  Commands end with ; or \\g."),
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1131
           INFO_INFO,0,0);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1132
1133
  glob_buffer= (DYNAMIC_STRING *)my_malloc(sizeof(DYNAMIC_STRING), MYF(0));
1134
  init_dynamic_string(glob_buffer, "", 512, 512);
1135
1136
  /* this is a slight abuse of the DYNAMIC_STRING interface. deal. */
1137
  sprintf(glob_buffer->str,
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1138
          _("Your Drizzle connection id is %u\nServer version: %s\n"),
202.2.4 by Monty Taylor
Merged from Patrick.
1139
          drizzle_thread_id(&drizzle), server_version_string(&drizzle));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1140
  put_info(glob_buffer->str, INFO_INFO, 0, 0);
1141
  dynstr_set(glob_buffer, NULL);
1 by brian
clean slate
1142
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1143
  initialize_readline(my_progname);
1 by brian
clean slate
1144
  if (!status.batch && !quick && !opt_html && !opt_xml)
1145
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
1146
    /* read-history from file, default ~/.drizzle_history*/
1 by brian
clean slate
1147
    if (getenv("MYSQL_HISTFILE"))
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1148
      histfile= strdup(getenv("MYSQL_HISTFILE"));
1 by brian
clean slate
1149
    else if (getenv("HOME"))
1150
    {
1151
      histfile=(char*) my_malloc((uint) strlen(getenv("HOME"))
206.3.1 by Patrick Galbraith
Most everything working with client rename
1152
                                 + (uint) strlen("/.drizzle_history")+2,
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1153
                                 MYF(MY_WME));
1 by brian
clean slate
1154
      if (histfile)
206.3.1 by Patrick Galbraith
Most everything working with client rename
1155
        sprintf(histfile,"%s/.drizzle_history",getenv("HOME"));
1 by brian
clean slate
1156
      char link_name[FN_REFLEN];
1157
      if (my_readlink(link_name, histfile, 0) == 0 &&
1158
          strncmp(link_name, "/dev/null", 10) == 0)
1159
      {
206.3.1 by Patrick Galbraith
Most everything working with client rename
1160
        /* The .drizzle_history file is a symlink to /dev/null, don't use it */
1 by brian
clean slate
1161
        my_free(histfile, MYF(MY_ALLOW_ZERO_PTR));
1162
        histfile= 0;
1163
      }
1164
    }
1165
    if (histfile)
1166
    {
1167
      if (verbose)
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1168
        tee_fprintf(stdout, _("Reading history-file %s\n"),histfile);
1 by brian
clean slate
1169
      read_history(histfile);
1170
      if (!(histfile_tmp= (char*) my_malloc((uint) strlen(histfile) + 5,
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1171
                                            MYF(MY_WME))))
1 by brian
clean slate
1172
      {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1173
        fprintf(stderr, _("Couldn't allocate memory for temp histfile!\n"));
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1174
        exit(1);
1 by brian
clean slate
1175
      }
1176
      sprintf(histfile_tmp, "%s.TMP", histfile);
1177
    }
1178
  }
1179
  sprintf(buff, "%s",
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1180
          _("Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.\n"));
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1181
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1182
  put_info(buff,INFO_INFO,0,0);
1 by brian
clean slate
1183
  status.exit_status= read_and_execute(!status.batch);
1184
  if (opt_outfile)
1185
    end_tee();
206.3.1 by Patrick Galbraith
Most everything working with client rename
1186
  drizzle_end(0);
1 by brian
clean slate
1187
#ifndef _lint
206.3.1 by Patrick Galbraith
Most everything working with client rename
1188
  return(0);        // Keep compiler happy
1 by brian
clean slate
1189
#endif
1190
}
1191
206.3.1 by Patrick Galbraith
Most everything working with client rename
1192
sig_handler drizzle_end(int sig)
1 by brian
clean slate
1193
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
1194
  drizzle_close(&drizzle);
1 by brian
clean slate
1195
  if (!status.batch && !quick && !opt_html && !opt_xml && histfile)
1196
  {
1197
    /* write-history */
1198
    if (verbose)
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1199
      tee_fprintf(stdout, _("Writing history-file %s\n"),histfile);
1 by brian
clean slate
1200
    if (!write_history(histfile_tmp))
1201
      my_rename(histfile_tmp, histfile, MYF(MY_WME));
1202
  }
1203
  batch_readline_end(status.line_buff);
1204
  completion_hash_free(&ht);
1205
  free_root(&hash_mem_root,MYF(0));
1206
1207
  if (sig >= 0)
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1208
    put_info(sig ? _("Aborted") : _("Bye"), INFO_RESULT,0,0);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1209
  if (glob_buffer)
1210
    dynstr_free(glob_buffer);
1211
  my_free(glob_buffer, MYF(MY_ALLOW_ZERO_PTR));
1212
  if (processed_prompt)
1213
    dynstr_free(processed_prompt);
1214
  my_free(processed_prompt,MYF(MY_ALLOW_ZERO_PTR));
1 by brian
clean slate
1215
  my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
206.3.1 by Patrick Galbraith
Most everything working with client rename
1216
  my_free(opt_drizzle_unix_port,MYF(MY_ALLOW_ZERO_PTR));
1 by brian
clean slate
1217
  my_free(histfile,MYF(MY_ALLOW_ZERO_PTR));
1218
  my_free(histfile_tmp,MYF(MY_ALLOW_ZERO_PTR));
1219
  my_free(current_db,MYF(MY_ALLOW_ZERO_PTR));
1220
  my_free(current_host,MYF(MY_ALLOW_ZERO_PTR));
1221
  my_free(current_user,MYF(MY_ALLOW_ZERO_PTR));
1222
  my_free(full_username,MYF(MY_ALLOW_ZERO_PTR));
1223
  my_free(part_username,MYF(MY_ALLOW_ZERO_PTR));
1224
  my_free(default_prompt,MYF(MY_ALLOW_ZERO_PTR));
1225
  my_free(current_prompt,MYF(MY_ALLOW_ZERO_PTR));
1226
  while (embedded_server_arg_count > 1)
1227
    my_free(embedded_server_args[--embedded_server_arg_count],MYF(0));
206.3.1 by Patrick Galbraith
Most everything working with client rename
1228
  drizzle_server_end();
1 by brian
clean slate
1229
  free_defaults(defaults_argv);
1230
  my_end(my_end_arg);
1231
  exit(status.exit_status);
1232
}
1233
1234
1235
/*
1236
  This function handles sigint calls
1237
  If query is in process, kill query
1238
  no query in process, terminate like previous behavior
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1239
*/
1 by brian
clean slate
1240
sig_handler handle_sigint(int sig)
1241
{
1242
  char kill_buffer[40];
206.3.1 by Patrick Galbraith
Most everything working with client rename
1243
  DRIZZLE *kill_drizzle= NULL;
1 by brian
clean slate
1244
1245
  /* terminate if no query being executed, or we already tried interrupting */
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
1246
  if (!executing_query || interrupted_query) {
1 by brian
clean slate
1247
    goto err;
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
1248
  }
1 by brian
clean slate
1249
202.2.4 by Monty Taylor
Merged from Patrick.
1250
  kill_drizzle= drizzle_create(kill_drizzle);
206.3.1 by Patrick Galbraith
Most everything working with client rename
1251
  if (!drizzle_connect(kill_drizzle,current_host, current_user, opt_password,
1252
                          "", opt_drizzle_port, opt_drizzle_unix_port,0))
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
1253
  {
1 by brian
clean slate
1254
    goto err;
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
1255
  }
1 by brian
clean slate
1256
1257
  /* kill_buffer is always big enough because max length of %lu is 15 */
206.3.1 by Patrick Galbraith
Most everything working with client rename
1258
  sprintf(kill_buffer, "KILL /*!50000 QUERY */ %u", drizzle_thread_id(&drizzle));
1259
  drizzle_real_query(kill_drizzle, kill_buffer, strlen(kill_buffer));
1260
  drizzle_close(kill_drizzle);
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1261
  tee_fprintf(stdout, _("Query aborted by Ctrl+C\n"));
1 by brian
clean slate
1262
1263
  interrupted_query= 1;
1264
1265
  return;
1266
1267
err:
206.3.1 by Patrick Galbraith
Most everything working with client rename
1268
  drizzle_end(sig);
1 by brian
clean slate
1269
}
1270
1271
1272
#if defined(HAVE_TERMIOS_H) && defined(GWINSZ_IN_SYS_IOCTL)
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1273
sig_handler window_resize(int sig __attribute__((unused)))
1 by brian
clean slate
1274
{
1275
  struct winsize window_size;
1276
1277
  if (ioctl(fileno(stdin), TIOCGWINSZ, &window_size) == 0)
1278
    terminal_width= window_size.ws_col;
1279
}
1280
#endif
1281
1282
static struct my_option my_long_options[] =
1283
{
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1284
  {"help", '?', N_("Display this help and exit."), 0, 0, 0, GET_NO_ARG, NO_ARG, 0,
1 by brian
clean slate
1285
   0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1286
  {"help", 'I', N_("Synonym for -?"), 0, 0, 0, GET_NO_ARG, NO_ARG, 0,
1 by brian
clean slate
1287
   0, 0, 0, 0, 0},
1288
  {"auto-rehash", OPT_AUTO_REHASH,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1289
   N_("Enable automatic rehashing. One doesn't need to use 'rehash' to get table and field completion, but startup and reconnecting may take a longer time. Disable with --disable-auto-rehash."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1290
   (char**) &opt_rehash, (char**) &opt_rehash, 0, GET_BOOL, NO_ARG, 1, 0, 0, 0,
1 by brian
clean slate
1291
   0, 0},
1292
  {"no-auto-rehash", 'A',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1293
   N_("No automatic rehashing. One has to use 'rehash' to get table and field completion. This gives a quicker start of DRIZZLE and disables rehashing on reconnect. WARNING: options deprecated; use --disable-auto-rehash instead."),
1 by brian
clean slate
1294
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1295
  {"auto-vertical-output", OPT_AUTO_VERTICAL_OUTPUT,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1296
   N_("Automatically switch to vertical output mode if the result is wider than the terminal width."),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1297
   (char**) &auto_vertical_output, (char**) &auto_vertical_output, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
1 by brian
clean slate
1298
  {"batch", 'B',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1299
   N_("Don't use history file. Disable interactive behavior. (Enables --silent)"), 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
1 by brian
clean slate
1300
  {"character-sets-dir", OPT_CHARSETS_DIR,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1301
   N_("Directory where character sets are."), (char**) &charsets_dir,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1302
   (char**) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1303
  {"column-type-info", OPT_COLUMN_TYPES, N_("Display column type information."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1304
   (char**) &column_types_flag, (char**) &column_types_flag,
1 by brian
clean slate
1305
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1306
  {"comments", 'c', N_("Preserve comments. Send comments to the server. The default is --skip-comments (discard comments), enable with --comments"),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1307
   (char**) &preserve_comments, (char**) &preserve_comments,
1 by brian
clean slate
1308
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1309
  {"compress", 'C', N_("Use compression in server/client protocol."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1310
   (char**) &opt_compress, (char**) &opt_compress, 0, GET_BOOL, NO_ARG, 0, 0, 0,
1 by brian
clean slate
1311
   0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1312
  {"debug-check", OPT_DEBUG_CHECK, N_("Check memory and open file usage at exit ."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1313
   (char**) &debug_check_flag, (char**) &debug_check_flag, 0,
1 by brian
clean slate
1314
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1315
  {"debug-info", 'T', N_("Print some debug info at exit."), (char**) &debug_info_flag,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1316
   (char**) &debug_info_flag, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1317
  {"database", 'D', N_("Database to use."), (char**) &current_db,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1318
   (char**) &current_db, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
1 by brian
clean slate
1319
  {"default-character-set", OPT_DEFAULT_CHARSET,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1320
   N_("Set the default character set."), (char**) &default_charset,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1321
   (char**) &default_charset, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1322
  {"delimiter", OPT_DELIMITER, N_("Delimiter to be used."), (char**) &delimiter_str,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1323
   (char**) &delimiter_str, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1324
  {"execute", 'e', N_("Execute command and quit. (Disables --force and history file)"), 0,
1 by brian
clean slate
1325
   0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1326
  {"vertical", 'E', N_("Print the output of a query (rows) vertically."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1327
   (char**) &vertical, (char**) &vertical, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0,
1 by brian
clean slate
1328
   0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1329
  {"force", 'f', N_("Continue even if we get an sql error."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1330
   (char**) &ignore_errors, (char**) &ignore_errors, 0, GET_BOOL, NO_ARG, 0, 0,
1 by brian
clean slate
1331
   0, 0, 0, 0},
1332
  {"named-commands", 'G',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1333
   N_("Enable named commands. Named commands mean this program's internal commands; see drizzle> help . When enabled, the named commands can be used from any line of the query, otherwise only from the first line, before an enter. Disable with --disable-named-commands. This option is disabled by default."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1334
   (char**) &named_cmds, (char**) &named_cmds, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
1 by brian
clean slate
1335
   0, 0},
1336
  {"no-named-commands", 'g',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1337
   N_("Named commands are disabled. Use \\* form only, or use named commands only in the beginning of a line ending with a semicolon (;) Since version 10.9 the client now starts with this option ENABLED by default! Disable with '-G'. Long format commands still work from the first line. WARNING: option deprecated; use --disable-named-commands instead."),
1 by brian
clean slate
1338
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1339
  {"ignore-spaces", 'i', N_("Ignore space after function names."), 0, 0, 0,
1 by brian
clean slate
1340
   GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1341
  {"local-infile", OPT_LOCAL_INFILE, N_("Enable/disable LOAD DATA LOCAL INFILE."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1342
   (char**) &opt_local_infile,
1343
   (char**) &opt_local_infile, 0, GET_BOOL, OPT_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1344
  {"no-beep", 'b', N_("Turn off beep on error."), (char**) &opt_nobeep,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1345
   (char**) &opt_nobeep, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1346
  {"host", 'h', N_("Connect to host."), (char**) &current_host,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1347
   (char**) &current_host, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1348
  {"html", 'H', N_("Produce HTML output."), (char**) &opt_html, (char**) &opt_html,
1 by brian
clean slate
1349
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1350
  {"xml", 'X', N_("Produce XML output"), (char**) &opt_xml, (char**) &opt_xml, 0,
1 by brian
clean slate
1351
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1352
  {"line-numbers", OPT_LINE_NUMBERS, N_("Write line numbers for errors."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1353
   (char**) &line_numbers, (char**) &line_numbers, 0, GET_BOOL,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1354
   NO_ARG, 1, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1355
  {"skip-line-numbers", 'L', N_("Don't write line number for errors. WARNING: -L is deprecated, use long version of this option instead."), 0, 0, 0, GET_NO_ARG,
1 by brian
clean slate
1356
   NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1357
  {"unbuffered", 'n', N_("Flush buffer after each query."), (char**) &unbuffered,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1358
   (char**) &unbuffered, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1359
  {"column-names", OPT_COLUMN_NAMES, N_("Write column names in results."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1360
   (char**) &column_names, (char**) &column_names, 0, GET_BOOL,
1 by brian
clean slate
1361
   NO_ARG, 1, 0, 0, 0, 0, 0},
1362
  {"skip-column-names", 'N',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1363
   N_("Don't write column names in results. WARNING: -N is deprecated, use long version of this options instead."),
1 by brian
clean slate
1364
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
1365
  {"set-variable", 'O',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1366
   N_("Change the value of a variable. Please note that this option is deprecated; you can set variables directly with --variable-name=value."),
1 by brian
clean slate
1367
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1368
  {"sigint-ignore", OPT_SIGINT_IGNORE, N_("Ignore SIGINT (CTRL-C)"),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1369
   (char**) &opt_sigint_ignore,  (char**) &opt_sigint_ignore, 0, GET_BOOL,
1 by brian
clean slate
1370
   NO_ARG, 0, 0, 0, 0, 0, 0},
1371
  {"one-database", 'o',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1372
   N_("Only update the default database. This is useful for skipping updates to other database in the update log."),
1 by brian
clean slate
1373
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
1374
  {"pager", OPT_PAGER,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1375
   N_("Pager to use to display results. If you don't supply an option the default pager is taken from your ENV variable PAGER. Valid pagers are less, more, cat [> filename], etc. See interactive help (\\h) also. This option does not work in batch mode. Disable with --disable-pager. This option is disabled by default."),
1 by brian
clean slate
1376
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
1377
  {"no-pager", OPT_NOPAGER,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1378
   N_("Disable pager and print to stdout. See interactive help (\\h) also. WARNING: option deprecated; use --disable-pager instead."),
1 by brian
clean slate
1379
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
1380
  {"password", 'p',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1381
   N_("Password to use when connecting to server. If password is not given it's asked from the tty."),
1 by brian
clean slate
1382
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1383
  {"port", 'P', N_("Port number to use for connection or 0 for default to, in order of preference, my.cnf, $MYSQL_TCP_PORT, ")
1384
   N_("built-in default") " (" STRINGIFY_ARG(MYSQL_PORT) ").",
206.3.1 by Patrick Galbraith
Most everything working with client rename
1385
   (char**) &opt_drizzle_port,
1386
   (char**) &opt_drizzle_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,  0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1387
  {"prompt", OPT_PROMPT, N_("Set the drizzle prompt to this value."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1388
   (char**) &current_prompt, (char**) &current_prompt, 0, GET_STR_ALLOC,
1 by brian
clean slate
1389
   REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1390
  {"protocol", OPT_DRIZZLE_PROTOCOL, N_("The protocol of connection (tcp,socket,pipe,memory)."),
1 by brian
clean slate
1391
   0, 0, 0, GET_STR,  REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
1392
  {"quick", 'q',
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1393
   N_("Don't cache result, print it row by row. This may slow down the server if the output is suspended. Doesn't use history file."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1394
   (char**) &quick, (char**) &quick, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1395
  {"raw", 'r', N_("Write fields without conversion. Used with --batch."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1396
   (char**) &opt_raw_data, (char**) &opt_raw_data, 0, GET_BOOL, NO_ARG, 0, 0, 0,
1 by brian
clean slate
1397
   0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1398
  {"reconnect", OPT_RECONNECT, N_("Reconnect if the connection is lost. Disable with --disable-reconnect. This option is enabled by default."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1399
   (char**) &opt_reconnect, (char**) &opt_reconnect, 0, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1400
  {"silent", 's', N_("Be more silent. Print results with a tab as separator, each row on new line."), 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0,
1 by brian
clean slate
1401
   0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1402
  {"socket", 'S', N_("Socket file to use for connection."),
206.3.1 by Patrick Galbraith
Most everything working with client rename
1403
   (char**) &opt_drizzle_unix_port, (char**) &opt_drizzle_unix_port, 0, GET_STR_ALLOC,
1 by brian
clean slate
1404
   REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1405
  {"table", 't', N_("Output in table format."), (char**) &output_tables,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1406
   (char**) &output_tables, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
1 by brian
clean slate
1407
  {"tee", OPT_TEE,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1408
   N_("Append everything into outfile. See interactive help (\\h) also. Does not work in batch mode. Disable with --disable-tee. This option is disabled by default."),
1 by brian
clean slate
1409
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1410
  {"no-tee", OPT_NOTEE, N_("Disable outfile. See interactive help (\\h) also. WARNING: option deprecated; use --disable-tee instead"), 0, 0, 0, GET_NO_ARG,
1 by brian
clean slate
1411
   NO_ARG, 0, 0, 0, 0, 0, 0},
1412
#ifndef DONT_ALLOW_USER_CHANGE
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1413
  {"user", 'u', N_("User for login if not current user."), (char**) &current_user,
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1414
   (char**) &current_user, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
1 by brian
clean slate
1415
#endif
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1416
  {"safe-updates", 'U', N_("Only allow UPDATE and DELETE that uses keys."),
1417
   (char**) &safe_updates, (char**) &safe_updates, 0, GET_BOOL, NO_ARG, 0, 0,
1418
   0, 0, 0, 0},
1419
  {"i-am-a-dummy", 'U', N_("Synonym for option --safe-updates, -U."),
1420
   (char**) &safe_updates, (char**) &safe_updates, 0, GET_BOOL, NO_ARG, 0, 0,
1421
   0, 0, 0, 0},
1422
  {"verbose", 'v', N_("Write more. (-v -v -v gives the table output format)."), 0,
1 by brian
clean slate
1423
   0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1424
  {"version", 'V', N_("Output version information and exit."), 0, 0, 0,
1 by brian
clean slate
1425
   GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1426
  {"wait", 'w', N_("Wait and retry if connection is down."), 0, 0, 0, GET_NO_ARG,
1 by brian
clean slate
1427
   NO_ARG, 0, 0, 0, 0, 0, 0},
1428
  {"connect_timeout", OPT_CONNECT_TIMEOUT,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1429
   N_("Number of seconds before connection timeout."),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1430
   (char**) &opt_connect_timeout,
1431
   (char**) &opt_connect_timeout, 0, GET_ULONG, REQUIRED_ARG, 0, 0, 3600*12, 0,
1 by brian
clean slate
1432
   0, 0},
1433
  {"max_allowed_packet", OPT_MAX_ALLOWED_PACKET,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1434
   N_("Max packet length to send to, or receive from server"),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1435
   (char**) &opt_max_allowed_packet, (char**) &opt_max_allowed_packet, 0,
1 by brian
clean slate
1436
   GET_ULONG, REQUIRED_ARG, 16 *1024L*1024L, 4096,
152 by Brian Aker
longlong replacement
1437
   (int64_t) 2*1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
1 by brian
clean slate
1438
  {"net_buffer_length", OPT_NET_BUFFER_LENGTH,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1439
   N_("Buffer for TCP/IP and socket communication"),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1440
   (char**) &opt_net_buffer_length, (char**) &opt_net_buffer_length, 0, GET_ULONG,
1 by brian
clean slate
1441
   REQUIRED_ARG, 16384, 1024, 512*1024*1024L, MALLOC_OVERHEAD, 1024, 0},
1442
  {"select_limit", OPT_SELECT_LIMIT,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1443
   N_("Automatic limit for SELECT when using --safe-updates"),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1444
   (char**) &select_limit,
1445
   (char**) &select_limit, 0, GET_ULONG, REQUIRED_ARG, 1000L, 1, ULONG_MAX,
1 by brian
clean slate
1446
   0, 1, 0},
1447
  {"max_join_size", OPT_MAX_JOIN_SIZE,
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1448
   N_("Automatic limit for rows in a join when using --safe-updates"),
77.1.77 by Monty Taylor
A crapton more warning cleanups (I turned on more warnings)
1449
   (char**) &max_join_size,
1450
   (char**) &max_join_size, 0, GET_ULONG, REQUIRED_ARG, 1000000L, 1, ULONG_MAX,
1 by brian
clean slate
1451
   0, 1, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1452
  {"secure-auth", OPT_SECURE_AUTH, N_("Refuse client connecting to server if it uses old (pre-4.1.1) protocol"), (char**) &opt_secure_auth,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1453
   (char**) &opt_secure_auth, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1454
  {"server-arg", OPT_SERVER_ARG, N_("Send embedded server this as a parameter."),
1 by brian
clean slate
1455
   0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
261.3.5 by Monty Taylor
Changed gettext_noop() to N_()
1456
  {"show-warnings", OPT_SHOW_WARNINGS, N_("Show warnings after every statement."),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1457
   (char**) &show_warnings, (char**) &show_warnings, 0, GET_BOOL, NO_ARG,
1458
   0, 0, 0, 0, 0, 0},
1 by brian
clean slate
1459
  { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
1460
};
1461
1462
1463
static void usage(int version)
1464
{
1465
  const char* readline= "readline";
1466
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1467
  printf(_("%s  Ver %s Distrib %s, for %s (%s) using %s %s\n"),
264.1.10 by Monty Taylor
Removed client insistence on version.h stuff.
1468
         my_progname, VER, drizzle_get_client_info(),
1469
         SYSTEM_TYPE, MACHINE_TYPE,
1 by brian
clean slate
1470
         readline, rl_library_version);
1471
1472
  if (version)
1473
    return;
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1474
  printf(_("\
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
1475
Copyright (C) 2000-2008 MySQL AB\n                                      \
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1476
This software comes with ABSOLUTELY NO WARRANTY. This is free software,\n \
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
1477
and you are welcome to modify and redistribute it under the GPL license\n"));
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1478
  printf(_("Usage: %s [OPTIONS] [database]\n"), my_progname);
1 by brian
clean slate
1479
  my_print_help(my_long_options);
1480
  print_defaults("my", load_default_groups);
1481
  my_print_variables(my_long_options);
1482
}
1483
1484
143 by Brian Aker
Bool cleanup.
1485
bool
1 by brian
clean slate
1486
get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1487
               char *argument)
1 by brian
clean slate
1488
{
1489
  switch(optid) {
1490
  case OPT_CHARSETS_DIR:
206.3.1 by Patrick Galbraith
Most everything working with client rename
1491
    strmake(drizzle_charsets_dir, argument, sizeof(drizzle_charsets_dir) - 1);
1492
    charsets_dir = drizzle_charsets_dir;
1 by brian
clean slate
1493
    break;
1494
  case  OPT_DEFAULT_CHARSET:
1495
    default_charset_used= 1;
1496
    break;
1497
  case OPT_DELIMITER:
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1498
    if (argument == disabled_my_option)
1 by brian
clean slate
1499
    {
1500
      strmov(delimiter, DEFAULT_DELIMITER);
1501
    }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1502
    else
1 by brian
clean slate
1503
    {
1504
      /* Check that delimiter does not contain a backslash */
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1505
      if (!strstr(argument, "\\"))
1 by brian
clean slate
1506
      {
1507
        strmake(delimiter, argument, sizeof(delimiter) - 1);
1508
      }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1509
      else
1 by brian
clean slate
1510
      {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1511
        put_info(_("DELIMITER cannot contain a backslash character"),
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1512
                 INFO_ERROR,0,0);
1 by brian
clean slate
1513
        return 0;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1514
      }
1 by brian
clean slate
1515
    }
1516
    delimiter_length= (uint)strlen(delimiter);
1517
    delimiter_str= delimiter;
1518
    break;
1519
  case OPT_LOCAL_INFILE:
1520
    using_opt_local_infile=1;
1521
    break;
1522
  case OPT_TEE:
1523
    if (argument == disabled_my_option)
1524
    {
1525
      if (opt_outfile)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1526
        end_tee();
1 by brian
clean slate
1527
    }
1528
    else
1529
      init_tee(argument);
1530
    break;
1531
  case OPT_NOTEE:
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1532
    printf(_("WARNING: option deprecated; use --disable-tee instead.\n"));
1 by brian
clean slate
1533
    if (opt_outfile)
1534
      end_tee();
1535
    break;
1536
  case OPT_PAGER:
1537
    if (argument == disabled_my_option)
1538
      opt_nopager= 1;
1539
    else
1540
    {
1541
      opt_nopager= 0;
1542
      if (argument && strlen(argument))
1543
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1544
        default_pager_set= 1;
1545
        strmake(pager, argument, sizeof(pager) - 1);
1546
        strmov(default_pager, pager);
1 by brian
clean slate
1547
      }
1548
      else if (default_pager_set)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1549
        strmov(pager, default_pager);
1 by brian
clean slate
1550
      else
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1551
        opt_nopager= 1;
1 by brian
clean slate
1552
    }
1553
    break;
1554
  case OPT_NOPAGER:
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1555
    printf(_("WARNING: option deprecated; use --disable-pager instead.\n"));
1 by brian
clean slate
1556
    opt_nopager= 1;
1557
    break;
1558
  case OPT_SERVER_ARG:
261.3.6 by Monty Taylor
Added msg that was missed in drizzle.c
1559
    printf(_("WARNING: --server-arg option not supported in this configuration.\n"));
1 by brian
clean slate
1560
    break;
1561
  case 'A':
1562
    opt_rehash= 0;
1563
    break;
1564
  case 'N':
1565
    column_names= 0;
1566
    break;
1567
  case 'e':
1568
    status.batch= 1;
1569
    status.add_to_history= 0;
1570
    if (!status.line_buff)
1571
      ignore_errors= 0;                         // do it for the first -e only
1572
    if (!(status.line_buff= batch_readline_command(status.line_buff, argument)))
1573
      return 1;
1574
    break;
1575
  case 'o':
1576
    if (argument == disabled_my_option)
1577
      one_database= 0;
1578
    else
1579
      one_database= skip_updates= 1;
1580
    break;
1581
  case 'p':
1582
    if (argument == disabled_my_option)
206.3.1 by Patrick Galbraith
Most everything working with client rename
1583
      argument= (char*) "";      // Don't require password
1 by brian
clean slate
1584
    if (argument)
1585
    {
1586
      char *start= argument;
1587
      my_free(opt_password, MYF(MY_ALLOW_ZERO_PTR));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1588
      opt_password= strdup(argument);
202.1.25 by Monty Taylor
Fixed change of mysql.com -> drizzle.com.
1589
      while (*argument) *argument++= 'x';        // Destroy argument
1 by brian
clean slate
1590
      if (*start)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1591
        start[1]=0 ;
1 by brian
clean slate
1592
      tty_password= 0;
1593
    }
1594
    else
1595
      tty_password= 1;
1596
    break;
1597
  case 's':
1598
    if (argument == disabled_my_option)
1599
      opt_silent= 0;
1600
    else
1601
      opt_silent++;
1602
    break;
1603
  case 'v':
1604
    if (argument == disabled_my_option)
1605
      verbose= 0;
1606
    else
1607
      verbose++;
1608
    break;
1609
  case 'B':
1610
    status.batch= 1;
1611
    status.add_to_history= 0;
1612
    set_if_bigger(opt_silent,1);                         // more silent
1613
    break;
1614
    break;
1615
  case 'V':
1616
    usage(1);
1617
    exit(0);
1618
  case 'I':
1619
  case '?':
1620
    usage(0);
1621
    exit(0);
1622
  }
1623
  return 0;
1624
}
1625
1626
1627
static int get_options(int argc, char **argv)
1628
{
1629
  char *tmp, *pagpoint;
1630
  int ho_error;
236.3.5 by Andrey Hristov
Constify libdrizzle functions
1631
  const DRIZZLE_PARAMETERS *drizzle_params= drizzle_get_parameters();
1 by brian
clean slate
1632
1633
  tmp= (char *) getenv("MYSQL_HOST");
1634
  if (tmp)
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
1635
    current_host= strdup(tmp);
1 by brian
clean slate
1636
1637
  pagpoint= getenv("PAGER");
1638
  if (!((char*) (pagpoint)))
1639
  {
1640
    strmov(pager, "stdout");
1641
    opt_nopager= 1;
1642
  }
1643
  else
1644
    strmov(pager, pagpoint);
1645
  strmov(default_pager, pager);
1646
206.3.1 by Patrick Galbraith
Most everything working with client rename
1647
  opt_max_allowed_packet= *drizzle_params->p_max_allowed_packet;
1648
  opt_net_buffer_length= *drizzle_params->p_net_buffer_length;
1 by brian
clean slate
1649
1650
  if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))
1651
    exit(ho_error);
1652
206.3.1 by Patrick Galbraith
Most everything working with client rename
1653
  *drizzle_params->p_max_allowed_packet= opt_max_allowed_packet;
1654
  *drizzle_params->p_net_buffer_length= opt_net_buffer_length;
1 by brian
clean slate
1655
1656
  if (status.batch) /* disable pager and outfile in this case */
1657
  {
1658
    strmov(default_pager, "stdout");
1659
    strmov(pager, "stdout");
1660
    opt_nopager= 1;
1661
    default_pager_set= 0;
1662
    opt_outfile= 0;
1663
    opt_reconnect= 0;
1664
    connect_flag= 0; /* Not in interactive mode */
1665
  }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1666
1 by brian
clean slate
1667
  if (strcmp(default_charset, charset_info->csname) &&
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1668
      !(charset_info= get_charset_by_csname(default_charset,
1669
                                            MY_CS_PRIMARY, MYF(MY_WME))))
1 by brian
clean slate
1670
    exit(1);
1671
  if (argc > 1)
1672
  {
1673
    usage(0);
1674
    exit(1);
1675
  }
1676
  if (argc == 1)
1677
  {
1678
    skip_updates= 0;
1679
    my_free(current_db, MYF(MY_ALLOW_ZERO_PTR));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1680
    current_db= strdup(*argv);
1 by brian
clean slate
1681
  }
1682
  if (tty_password)
1683
    opt_password= get_tty_password(NullS);
1684
  if (debug_info_flag)
1685
    my_end_arg= MY_CHECK_ERROR | MY_GIVE_INFO;
1686
  if (debug_check_flag)
1687
    my_end_arg= MY_CHECK_ERROR;
1688
  return(0);
1689
}
1690
1691
static int read_and_execute(bool interactive)
1692
{
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1693
  char *line;
1694
  char in_string=0;
1 by brian
clean slate
1695
  ulong line_number=0;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1696
  bool ml_comment= 0;
1 by brian
clean slate
1697
  COMMANDS *com;
1698
  status.exit_status=1;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1699
1 by brian
clean slate
1700
  for (;;)
1701
  {
1702
    if (!interactive)
1703
    {
1704
      line=batch_readline(status.line_buff);
1705
      /*
1706
        Skip UTF8 Byte Order Marker (BOM) 0xEFBBBF.
1707
        Editors like "notepad" put this marker in
1708
        the very beginning of a text file when
1709
        you save the file using "Unicode UTF-8" format.
1710
      */
1711
      if (!line_number &&
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1712
          (uchar) line[0] == 0xEF &&
1713
          (uchar) line[1] == 0xBB &&
1714
          (uchar) line[2] == 0xBF)
1 by brian
clean slate
1715
        line+= 3;
1716
      line_number++;
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1717
      if (glob_buffer->length!=0)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1718
        status.query_start_line=line_number;
1 by brian
clean slate
1719
    }
1720
    else
1721
    {
1722
      char *prompt= (char*) (ml_comment ? "   /*> " :
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1723
                             (glob_buffer->length == 0) ?  construct_prompt() :
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1724
                             !in_string ? "    -> " :
1725
                             in_string == '\'' ?
1726
                             "    '> " : (in_string == '`' ?
1727
                                          "    `> " :
1728
                                          "    \"> "));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1729
      if (opt_outfile && (glob_buffer->length==0))
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1730
        fflush(OUTFILE);
1 by brian
clean slate
1731
1732
      if (opt_outfile)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1733
        fputs(prompt, OUTFILE);
1 by brian
clean slate
1734
      line= readline(prompt);
1735
      /*
1736
        When Ctrl+d or Ctrl+z is pressed, the line may be NULL on some OS
1737
        which may cause coredump.
1738
      */
1739
      if (opt_outfile && line)
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1740
        fprintf(OUTFILE, "%s\n", line);
1 by brian
clean slate
1741
    }
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1742
    // End of file
1743
    if (!line)
1 by brian
clean slate
1744
    {
1745
      status.exit_status=0;
1746
      break;
1747
    }
1748
1749
    /*
206.3.1 by Patrick Galbraith
Most everything working with client rename
1750
      Check if line is a drizzle command line
1 by brian
clean slate
1751
      (We want to allow help, print and clear anywhere at line start
1752
    */
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1753
    if ((named_cmds || (glob_buffer->length==0))
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1754
        && !ml_comment && !in_string && (com=find_command(line,0)))
1 by brian
clean slate
1755
    {
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1756
      if ((*com->func)(glob_buffer,line) > 0)
1757
        break;
1758
      // If buffer was emptied
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1759
      if (glob_buffer->length==0)
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1760
        in_string=0;
1 by brian
clean slate
1761
      if (interactive && status.add_to_history && not_in_history(line))
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1762
        add_history(line);
1 by brian
clean slate
1763
      continue;
1764
    }
77.3.4 by Monty Taylor
Removed debugging. Fixed multi-line processing error.
1765
    if (add_line(glob_buffer,line,&in_string,&ml_comment))
1 by brian
clean slate
1766
      break;
1767
  }
1768
  /* if in batch mode, send last query even if it doesn't end with \g or go */
1769
1770
  if (!interactive && !status.exit_status)
1771
  {
1772
    remove_cntrl(glob_buffer);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1773
    if (glob_buffer->length != 0)
1 by brian
clean slate
1774
    {
1775
      status.exit_status=1;
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1776
      if (com_go(glob_buffer,line) <= 0)
1777
        status.exit_status=0;
1 by brian
clean slate
1778
    }
1779
  }
1780
1781
  return status.exit_status;
1782
}
1783
1784
1785
static COMMANDS *find_command(char *name,char cmd_char)
1786
{
1787
  uint len;
1788
  char *end;
1789
1790
  if (!name)
1791
  {
1792
    len=0;
1793
    end=0;
1794
  }
1795
  else
1796
  {
1797
    while (my_isspace(charset_info,*name))
1798
      name++;
1799
    /*
1800
      If there is an \\g in the row or if the row has a delimiter but
1801
      this is not a delimiter command, let add_line() take care of
1802
      parsing the row and calling find_command()
1803
    */
1804
    if (strstr(name, "\\g") || (strstr(name, delimiter) &&
1805
                                !(strlen(name) >= 9 &&
1806
                                  !my_strnncoll(charset_info,
1807
                                                (uchar*) name, 9,
1808
                                                (const uchar*) "delimiter",
1809
                                                9))))
142.1.2 by Patrick
All DBUG_x removed from client/
1810
      return((COMMANDS *) 0);
1 by brian
clean slate
1811
    if ((end=strcont(name," \t")))
1812
    {
1813
      len=(uint) (end - name);
1814
      while (my_isspace(charset_info,*end))
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1815
        end++;
1 by brian
clean slate
1816
      if (!*end)
206.3.1 by Patrick Galbraith
Most everything working with client rename
1817
        end=0;          // no arguments to function
1 by brian
clean slate
1818
    }
1819
    else
1820
      len=(uint) strlen(name);
1821
  }
1822
1823
  for (uint i= 0; commands[i].name; i++)
1824
  {
1825
    if (commands[i].func &&
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1826
        ((name && !my_strnncoll(charset_info,(uchar*)name,len, (uchar*)commands[i].name,len) && !commands[i].name[len] && (!end || (end && commands[i].takes_params))) || (!name && commands[i].cmd_char == cmd_char)))
1 by brian
clean slate
1827
    {
142.1.2 by Patrick
All DBUG_x removed from client/
1828
      return(&commands[i]);
1 by brian
clean slate
1829
    }
1830
  }
142.1.2 by Patrick
All DBUG_x removed from client/
1831
  return((COMMANDS *) 0);
1 by brian
clean slate
1832
}
1833
1834
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1835
static bool add_line(DYNAMIC_STRING *buffer,char *line,char *in_string,
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
1836
                        bool *ml_comment)
1 by brian
clean slate
1837
{
1838
  uchar inchar;
1839
  char buff[80], *pos, *out;
1840
  COMMANDS *com;
1841
  bool need_space= 0;
1842
  bool ss_comment= 0;
142.1.2 by Patrick
All DBUG_x removed from client/
1843
1 by brian
clean slate
1844
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1845
  if (!line[0] && (buffer->length==0))
142.1.2 by Patrick
All DBUG_x removed from client/
1846
    return(0);
1 by brian
clean slate
1847
  if (status.add_to_history && line[0] && not_in_history(line))
1848
    add_history(line);
1849
  char *end_of_line=line+(uint) strlen(line);
1850
1851
  for (pos=out=line ; (inchar= (uchar) *pos) ; pos++)
1852
  {
1853
    if (!preserve_comments)
1854
    {
1855
      // Skip spaces at the beggining of a statement
1856
      if (my_isspace(charset_info,inchar) && (out == line) &&
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1857
          (buffer->length==0))
1 by brian
clean slate
1858
        continue;
1859
    }
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1860
1 by brian
clean slate
1861
#ifdef USE_MB
1862
    // Accept multi-byte characters as-is
1863
    int length;
1864
    if (use_mb(charset_info) &&
1865
        (length= my_ismbchar(charset_info, pos, end_of_line)))
1866
    {
1867
      if (!*ml_comment || preserve_comments)
1868
      {
1869
        while (length--)
1870
          *out++ = *pos++;
1871
        pos--;
1872
      }
1873
      else
1874
        pos+= length - 1;
1875
      continue;
1876
    }
1877
#endif
77.3.4 by Monty Taylor
Removed debugging. Fixed multi-line processing error.
1878
        if (!*ml_comment && inchar == '\\' &&
206.3.1 by Patrick Galbraith
Most everything working with client rename
1879
        !(drizzle.server_status & SERVER_STATUS_NO_BACKSLASH_ESCAPES))
1 by brian
clean slate
1880
    {
1881
      // Found possbile one character command like \c
1882
1883
      if (!(inchar = (uchar) *++pos))
206.3.1 by Patrick Galbraith
Most everything working with client rename
1884
        break;        // readline adds one '\'
1885
      if (*in_string || inchar == 'N')  // \N is short for NULL
1886
      {          // Don't allow commands in string
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1887
        *out++='\\';
1888
        *out++= (char) inchar;
1889
        continue;
1 by brian
clean slate
1890
      }
1891
      if ((com=find_command(NullS,(char) inchar)))
1892
      {
1893
        // Flush previously accepted characters
1894
        if (out != line)
1895
        {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1896
          dynstr_append_mem(buffer, line, (out-line));
1 by brian
clean slate
1897
          out= line;
1898
        }
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1899
1900
        if ((*com->func)(buffer,pos-1) > 0)
142.1.2 by Patrick
All DBUG_x removed from client/
1901
          return(1);                       // Quit
1 by brian
clean slate
1902
        if (com->takes_params)
1903
        {
1904
          if (ss_comment)
1905
          {
1906
            /*
1907
              If a client-side macro appears inside a server-side comment,
1908
              discard all characters in the comment after the macro (that is,
1909
              until the end of the comment rather than the next delimiter)
1910
            */
1911
            for (pos++; *pos && (*pos != '*' || *(pos + 1) != '/'); pos++)
1912
              ;
1913
            pos--;
1914
          }
1915
          else
1916
          {
1917
            for (pos++ ;
1918
                 *pos && (*pos != *delimiter ||
1919
                          !is_prefix(pos + 1, delimiter + 1)) ; pos++)
206.3.1 by Patrick Galbraith
Most everything working with client rename
1920
              ;  // Remove parameters
1 by brian
clean slate
1921
            if (!*pos)
1922
              pos--;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1923
            else
1 by brian
clean slate
1924
              pos+= delimiter_length - 1; // Point at last delim char
1925
          }
1926
        }
1927
      }
1928
      else
1929
      {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
1930
        sprintf(buff,_("Unknown command '\\%c'."),inchar);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
1931
        if (put_info(buff,INFO_ERROR,0,0) > 0)
77.4.1 by Monty Taylor
Merged from trunk.
1932
          return(1);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
1933
        *out++='\\';
1934
        *out++=(char) inchar;
1935
        continue;
1 by brian
clean slate
1936
      }
1937
    }
1938
    else if (!*ml_comment && !*in_string &&
1939
             (end_of_line - pos) >= 10 &&
1940
             !my_strnncoll(charset_info, (uchar*) pos, 10,
1941
                           (const uchar*) "delimiter ", 10))
1942
    {
1943
      // Flush previously accepted characters
1944
      if (out != line)
1945
      {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1946
        dynstr_append_mem(buffer, line, (out - line));
1 by brian
clean slate
1947
        out= line;
1948
      }
1949
1950
      // Flush possible comments in the buffer
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1951
      if (buffer->length != 0)
1 by brian
clean slate
1952
      {
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1953
        if (com_go(buffer, 0) > 0) // < 0 is not fatal
142.1.2 by Patrick
All DBUG_x removed from client/
1954
          return(1);
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
1955
        assert(buffer!=NULL);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1956
        dynstr_set(buffer, NULL);
1 by brian
clean slate
1957
      }
1958
1959
      /*
1960
        Delimiter wants the get rest of the given line as argument to
1961
        allow one to change ';' to ';;' and back
1962
      */
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1963
      dynstr_append(buffer,pos);
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1964
      if (com_delimiter(buffer, pos) > 0)
142.1.2 by Patrick
All DBUG_x removed from client/
1965
        return(1);
1 by brian
clean slate
1966
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1967
      dynstr_set(buffer, NULL);
1 by brian
clean slate
1968
      break;
1969
    }
1970
    else if (!*ml_comment && !*in_string && is_prefix(pos, delimiter))
1971
    {
1972
      // Found a statement. Continue parsing after the delimiter
1973
      pos+= delimiter_length;
1974
1975
      if (preserve_comments)
1976
      {
1977
        while (my_isspace(charset_info, *pos))
1978
          *out++= *pos++;
1979
      }
1980
      // Flush previously accepted characters
1981
      if (out != line)
1982
      {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1983
        dynstr_append_mem(buffer, line, (out-line));
1 by brian
clean slate
1984
        out= line;
1985
      }
1986
1987
      if (preserve_comments && ((*pos == '#') ||
1988
                                ((*pos == '-') &&
1989
                                 (pos[1] == '-') &&
1990
                                 my_isspace(charset_info, pos[2]))))
1991
      {
1992
        // Add trailing single line comments to this statement
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
1993
        dynstr_append(buffer, pos);
1 by brian
clean slate
1994
        pos+= strlen(pos);
1995
      }
1996
1997
      pos--;
1998
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
1999
      if ((com= find_command(buffer->str, 0)))
1 by brian
clean slate
2000
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2001
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2002
        if ((*com->func)(buffer, buffer->str) > 0)
77.4.1 by Monty Taylor
Merged from trunk.
2003
          return(1);                       // Quit
1 by brian
clean slate
2004
      }
2005
      else
2006
      {
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2007
        if (com_go(buffer, 0) > 0)             // < 0 is not fatal
142.1.2 by Patrick
All DBUG_x removed from client/
2008
          return(1);
1 by brian
clean slate
2009
      }
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2010
      dynstr_set(buffer, NULL);
1 by brian
clean slate
2011
    }
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2012
    else if (!*ml_comment
2013
             && (!*in_string
2014
                 && (inchar == '#'
2015
                     || (inchar == '-'
2016
                         && pos[1] == '-'
2017
                         && my_isspace(charset_info,pos[2])))))
1 by brian
clean slate
2018
    {
2019
      // Flush previously accepted characters
2020
      if (out != line)
2021
      {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2022
        dynstr_append_mem(buffer, line, (out - line));
1 by brian
clean slate
2023
        out= line;
2024
      }
2025
2026
      // comment to end of line
2027
      if (preserve_comments)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2028
        dynstr_append(buffer,pos);
1 by brian
clean slate
2029
2030
      break;
2031
    }
2032
    else if (!*in_string && inchar == '/' && *(pos+1) == '*' &&
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2033
             *(pos+2) != '!')
1 by brian
clean slate
2034
    {
2035
      if (preserve_comments)
2036
      {
2037
        *out++= *pos++;                       // copy '/'
2038
        *out++= *pos;                         // copy '*'
2039
      }
2040
      else
2041
        pos++;
2042
      *ml_comment= 1;
2043
      if (out != line)
2044
      {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2045
        dynstr_append_mem(buffer, line, (out-line));
1 by brian
clean slate
2046
        out=line;
2047
      }
2048
    }
2049
    else if (*ml_comment && !ss_comment && inchar == '*' && *(pos + 1) == '/')
2050
    {
2051
      if (preserve_comments)
2052
      {
2053
        *out++= *pos++;                       // copy '*'
2054
        *out++= *pos;                         // copy '/'
2055
      }
2056
      else
2057
        pos++;
2058
      *ml_comment= 0;
2059
      if (out != line)
2060
      {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2061
        dynstr_append_mem(buffer, line, (out - line));
1 by brian
clean slate
2062
        out= line;
2063
      }
2064
      // Consumed a 2 chars or more, and will add 1 at most,
2065
      // so using the 'line' buffer to edit data in place is ok.
2066
      need_space= 1;
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2067
    }
1 by brian
clean slate
2068
    else
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2069
    {
2070
      // Add found char to buffer
1 by brian
clean slate
2071
      if (!*in_string && inchar == '/' && *(pos + 1) == '*' &&
2072
          *(pos + 2) == '!')
2073
        ss_comment= 1;
2074
      else if (!*in_string && ss_comment && inchar == '*' && *(pos + 1) == '/')
2075
        ss_comment= 0;
2076
      if (inchar == *in_string)
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2077
        *in_string= 0;
1 by brian
clean slate
2078
      else if (!*ml_comment && !*in_string &&
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2079
               (inchar == '\'' || inchar == '"' || inchar == '`'))
2080
        *in_string= (char) inchar;
1 by brian
clean slate
2081
      if (!*ml_comment || preserve_comments)
2082
      {
2083
        if (need_space && !my_isspace(charset_info, (char)inchar))
2084
          *out++= ' ';
2085
        need_space= 0;
2086
        *out++= (char) inchar;
2087
      }
2088
    }
2089
  }
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2090
  if (out != line || (buffer->length > 0))
1 by brian
clean slate
2091
  {
2092
    *out++='\n';
2093
    uint length=(uint) (out-line);
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2094
    if ((!*ml_comment || preserve_comments)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2095
        && dynstr_append_mem(buffer, line, length))
142.1.2 by Patrick
All DBUG_x removed from client/
2096
      return(1);
1 by brian
clean slate
2097
  }
142.1.2 by Patrick
All DBUG_x removed from client/
2098
  return(0);
1 by brian
clean slate
2099
}
2100
2101
/*****************************************************************
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2102
            Interface to Readline Completion
1 by brian
clean slate
2103
******************************************************************/
2104
2105
182.1.6 by Jim Winstead
Fix declaration of no_completion, drop 'new_' prefix from a function to make
2106
static char **mysql_completion (const char *text, int start, int end);
1 by brian
clean slate
2107
static char *new_command_generator(const char *text, int);
182.1.6 by Jim Winstead
Fix declaration of no_completion, drop 'new_' prefix from a function to make
2108
1 by brian
clean slate
2109
/*
2110
  Tell the GNU Readline library how to complete.  We want to try to complete
2111
  on command names if this is the first word in the line, or on filenames
2112
  if not.
2113
*/
182.1.6 by Jim Winstead
Fix declaration of no_completion, drop 'new_' prefix from a function to make
2114
static char *no_completion(const char * a __attribute__((unused)),
2115
                           int b __attribute__((unused)))
1 by brian
clean slate
2116
{
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2117
  /* No filename completion */
2118
  return 0;
1 by brian
clean slate
2119
}
182.1.6 by Jim Winstead
Fix declaration of no_completion, drop 'new_' prefix from a function to make
2120
1 by brian
clean slate
2121
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2122
/* glues pieces of history back together if in pieces   */
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2123
static void fix_history(DYNAMIC_STRING *final_command)
1 by brian
clean slate
2124
{
2125
  int total_lines = 1;
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2126
  const char *ptr = final_command->str;
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2127
  char str_char = '\0';  /* Character if we are in a string or not */
2128
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2129
  /* Converted buffer */
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2130
  DYNAMIC_STRING *fixed_buffer=
2131
    (DYNAMIC_STRING *)my_malloc(sizeof(DYNAMIC_STRING), MYF(0));
2132
2133
  init_dynamic_string(fixed_buffer, "", 512, 512);
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2134
1 by brian
clean slate
2135
  /* find out how many lines we have and remove newlines */
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2136
  while (*ptr != '\0')
1 by brian
clean slate
2137
  {
2138
    switch (*ptr) {
2139
      /* string character */
2140
    case '"':
2141
    case '\'':
2142
    case '`':
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2143
      // open string
2144
      if (str_char == '\0')
2145
        str_char = *ptr;
1 by brian
clean slate
2146
      else if (str_char == *ptr)   /* close string */
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2147
        str_char = '\0';
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2148
      dynstr_append_mem(fixed_buffer, ptr, 1);
1 by brian
clean slate
2149
      break;
2150
    case '\n':
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2151
      /*
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2152
        not in string, change to space
2153
        if in string, leave it alone
1 by brian
clean slate
2154
      */
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2155
      dynstr_append(fixed_buffer,(str_char == '\0') ? " " : "\n");
1 by brian
clean slate
2156
      total_lines++;
2157
      break;
2158
    case '\\':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2159
      dynstr_append(fixed_buffer, "\\");
1 by brian
clean slate
2160
      /* need to see if the backslash is escaping anything */
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2161
      if (str_char)
1 by brian
clean slate
2162
      {
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2163
        ptr++;
2164
        /* special characters that need escaping */
2165
        if (*ptr == '\'' || *ptr == '"' || *ptr == '\\')
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2166
          dynstr_append_mem(fixed_buffer, ptr, 1);
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2167
        else
2168
          ptr--;
1 by brian
clean slate
2169
      }
2170
      break;
2171
    default:
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2172
      dynstr_append_mem(fixed_buffer, ptr, 1);
1 by brian
clean slate
2173
    }
2174
    ptr++;
2175
  }
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2176
  if (total_lines > 1)
2177
    add_history(fixed_buffer->str);
1 by brian
clean slate
2178
}
2179
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2180
/*
1 by brian
clean slate
2181
  returns 0 if line matches the previous history entry
2182
  returns 1 if the line doesn't match the previous history entry
2183
*/
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2184
static int not_in_history(const char *line)
1 by brian
clean slate
2185
{
2186
  HIST_ENTRY *oldhist = history_get(history_length);
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2187
1 by brian
clean slate
2188
  if (oldhist == 0)
2189
    return 1;
2190
  if (strcmp(oldhist->line,line) == 0)
2191
    return 0;
2192
  return 1;
2193
}
2194
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
2195
static void initialize_readline (const char *name)
1 by brian
clean slate
2196
{
2197
  /* Allow conditional parsing of the ~/.inputrc file. */
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2198
  rl_readline_name= (char *)name;
1 by brian
clean slate
2199
2200
  /* Tell the completer that we want a crack first. */
236.1.15 by Monty Taylor
Fixed the previous merge. (since I suck)
2201
  rl_attempted_completion_function= (rl_completion_func_t*)&mysql_completion;
2202
  rl_completion_entry_function= (rl_compentry_func_t*)&no_completion;
1 by brian
clean slate
2203
}
2204
182.1.6 by Jim Winstead
Fix declaration of no_completion, drop 'new_' prefix from a function to make
2205
1 by brian
clean slate
2206
/*
2207
  Attempt to complete on the contents of TEXT.  START and END show the
2208
  region of TEXT that contains the word to complete.  We can use the
2209
  entire line in case we want to do some simple parsing.  Return the
2210
  array of matches, or NULL if there aren't any.
2211
*/
182.1.6 by Jim Winstead
Fix declaration of no_completion, drop 'new_' prefix from a function to make
2212
char **mysql_completion (const char *text,
2213
                        int start __attribute__((unused)),
2214
                        int end __attribute__((unused)))
1 by brian
clean slate
2215
{
2216
  if (!status.batch && !quick)
2217
    return rl_completion_matches(text, new_command_generator);
2218
  else
2219
    return (char**) 0;
2220
}
2221
182.1.6 by Jim Winstead
Fix declaration of no_completion, drop 'new_' prefix from a function to make
2222
1 by brian
clean slate
2223
static char *new_command_generator(const char *text,int state)
2224
{
2225
  static int textlen;
2226
  char *ptr;
2227
  static Bucket *b;
2228
  static entry *e;
2229
  static uint i;
2230
2231
  if (!state)
2232
    textlen=(uint) strlen(text);
2233
2234
  if (textlen>0)
206.3.1 by Patrick Galbraith
Most everything working with client rename
2235
  {            /* lookup in the hash */
1 by brian
clean slate
2236
    if (!state)
2237
    {
2238
      uint len;
2239
2240
      b = find_all_matches(&ht,text,(uint) strlen(text),&len);
2241
      if (!b)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2242
        return NullS;
1 by brian
clean slate
2243
      e = b->pData;
2244
    }
2245
2246
    if (e)
2247
    {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2248
      ptr= strdup(e->str);
1 by brian
clean slate
2249
      e = e->pNext;
2250
      return ptr;
2251
    }
2252
  }
2253
  else
2254
  { /* traverse the entire hash, ugly but works */
2255
2256
    if (!state)
2257
    {
2258
      /* find the first used bucket */
2259
      for (i=0 ; i < ht.nTableSize ; i++)
2260
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2261
        if (ht.arBuckets[i])
2262
        {
2263
          b = ht.arBuckets[i];
2264
          e = b->pData;
2265
          break;
2266
        }
1 by brian
clean slate
2267
      }
2268
    }
2269
    ptr= NullS;
2270
    while (e && !ptr)
206.3.1 by Patrick Galbraith
Most everything working with client rename
2271
    {          /* find valid entry in bucket */
1 by brian
clean slate
2272
      if ((uint) strlen(e->str) == b->nKeyLength)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2273
        ptr = strdup(e->str);
1 by brian
clean slate
2274
      /* find the next used entry */
2275
      e = e->pNext;
2276
      if (!e)
2277
      { /* find the next used bucket */
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2278
        b = b->pNext;
2279
        if (!b)
2280
        {
2281
          for (i++ ; i<ht.nTableSize; i++)
2282
          {
2283
            if (ht.arBuckets[i])
2284
            {
2285
              b = ht.arBuckets[i];
2286
              e = b->pData;
2287
              break;
2288
            }
2289
          }
2290
        }
2291
        else
2292
          e = b->pData;
1 by brian
clean slate
2293
      }
2294
    }
2295
    if (ptr)
2296
      return ptr;
2297
  }
2298
  return NullS;
2299
}
2300
2301
2302
/* Build up the completion hash */
2303
2304
static void build_completion_hash(bool rehash, bool write_info)
2305
{
2306
  COMMANDS *cmd=commands;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2307
  DRIZZLE_RES *databases=0,*tables=0;
2308
  DRIZZLE_RES *fields;
1 by brian
clean slate
2309
  static char ***field_names= 0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2310
  DRIZZLE_ROW database_row,table_row;
2311
  DRIZZLE_FIELD *sql_field;
2312
  char buf[NAME_LEN*2+2];     // table name plus field name plus 2
1 by brian
clean slate
2313
  int i,j,num_fields;
142.1.2 by Patrick
All DBUG_x removed from client/
2314
1 by brian
clean slate
2315
2316
  if (status.batch || quick || !current_db)
206.3.1 by Patrick Galbraith
Most everything working with client rename
2317
    return;      // We don't need completion in batches
1 by brian
clean slate
2318
  if (!rehash)
142.1.2 by Patrick
All DBUG_x removed from client/
2319
    return;
1 by brian
clean slate
2320
2321
  /* Free old used memory */
2322
  if (field_names)
2323
    field_names=0;
2324
  completion_hash_clean(&ht);
2325
  free_root(&hash_mem_root,MYF(0));
2326
2327
  /* hash this file's known subset of SQL commands */
2328
  while (cmd->name) {
2329
    add_word(&ht,(char*) cmd->name);
2330
    cmd++;
2331
  }
2332
77.1.40 by Monty Taylor
More naming changes.
2333
  /* hash Drizzle functions (to be implemented) */
1 by brian
clean slate
2334
2335
  /* hash all database names */
206.3.1 by Patrick Galbraith
Most everything working with client rename
2336
  if (drizzle_query(&drizzle,"show databases") == 0)
1 by brian
clean slate
2337
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2338
    if (!(databases = drizzle_store_result(&drizzle)))
2339
      put_info(drizzle_error(&drizzle),INFO_INFO,0,0);
1 by brian
clean slate
2340
    else
2341
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2342
      while ((database_row=drizzle_fetch_row(databases)))
1 by brian
clean slate
2343
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2344
        char *str=strdup_root(&hash_mem_root, (char*) database_row[0]);
2345
        if (str)
2346
          add_word(&ht,(char*) str);
1 by brian
clean slate
2347
      }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2348
      drizzle_free_result(databases);
1 by brian
clean slate
2349
    }
2350
  }
2351
  /* hash all table names */
206.3.1 by Patrick Galbraith
Most everything working with client rename
2352
  if (drizzle_query(&drizzle,"show tables")==0)
1 by brian
clean slate
2353
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2354
    if (!(tables = drizzle_store_result(&drizzle)))
2355
      put_info(drizzle_error(&drizzle),INFO_INFO,0,0);
1 by brian
clean slate
2356
    else
2357
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2358
      if (drizzle_num_rows(tables) > 0 && !opt_silent && write_info)
1 by brian
clean slate
2359
      {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2360
        tee_fprintf(stdout, _("\
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2361
Reading table information for completion of table and column names\n    \
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
2362
You can turn off this feature to get a quicker startup with -A\n\n"));
1 by brian
clean slate
2363
      }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2364
      while ((table_row=drizzle_fetch_row(tables)))
1 by brian
clean slate
2365
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2366
        char *str=strdup_root(&hash_mem_root, (char*) table_row[0]);
2367
        if (str &&
2368
            !completion_hash_exists(&ht,(char*) str, (uint) strlen(str)))
2369
          add_word(&ht,str);
1 by brian
clean slate
2370
      }
2371
    }
2372
  }
2373
2374
  /* hash all field names, both with the table prefix and without it */
206.3.1 by Patrick Galbraith
Most everything working with client rename
2375
  if (!tables)          /* no tables */
1 by brian
clean slate
2376
  {
142.1.2 by Patrick
All DBUG_x removed from client/
2377
    return;
1 by brian
clean slate
2378
  }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2379
  drizzle_data_seek(tables,0);
1 by brian
clean slate
2380
  if (!(field_names= (char ***) alloc_root(&hash_mem_root,sizeof(char **) *
206.3.1 by Patrick Galbraith
Most everything working with client rename
2381
                                           (uint) (drizzle_num_rows(tables)+1))))
1 by brian
clean slate
2382
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2383
    drizzle_free_result(tables);
142.1.2 by Patrick
All DBUG_x removed from client/
2384
    return;
1 by brian
clean slate
2385
  }
2386
  i=0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2387
  while ((table_row=drizzle_fetch_row(tables)))
1 by brian
clean slate
2388
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2389
    if ((fields=drizzle_list_fields(&drizzle,(const char*) table_row[0],NullS)))
1 by brian
clean slate
2390
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2391
      num_fields=drizzle_num_fields(fields);
1 by brian
clean slate
2392
      if (!(field_names[i] = (char **) alloc_root(&hash_mem_root,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2393
                                                  sizeof(char *) *
2394
                                                  (num_fields*2+1))))
1 by brian
clean slate
2395
      {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2396
        drizzle_free_result(fields);
1 by brian
clean slate
2397
        break;
2398
      }
2399
      field_names[i][num_fields*2]= '\0';
2400
      j=0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2401
      while ((sql_field=drizzle_fetch_field(fields)))
1 by brian
clean slate
2402
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2403
        sprintf(buf,"%.64s.%.64s",table_row[0],sql_field->name);
2404
        field_names[i][j] = strdup_root(&hash_mem_root,buf);
2405
        add_word(&ht,field_names[i][j]);
2406
        field_names[i][num_fields+j] = strdup_root(&hash_mem_root,
2407
                                                   sql_field->name);
2408
        if (!completion_hash_exists(&ht,field_names[i][num_fields+j],
2409
                                    (uint) strlen(field_names[i][num_fields+j])))
2410
          add_word(&ht,field_names[i][num_fields+j]);
2411
        j++;
1 by brian
clean slate
2412
      }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2413
      drizzle_free_result(fields);
1 by brian
clean slate
2414
    }
2415
    else
2416
      field_names[i]= 0;
2417
2418
    i++;
2419
  }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2420
  drizzle_free_result(tables);
2421
  field_names[i]=0;        // End pointer
142.1.2 by Patrick
All DBUG_x removed from client/
2422
  return;
1 by brian
clean slate
2423
}
2424
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2425
/* for gnu readline */
1 by brian
clean slate
2426
2427
#ifndef HAVE_INDEX
2428
extern "C" {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2429
  extern char *index(const char *,int c),*rindex(const char *,int);
2430
2431
  char *index(const char *s,int c)
2432
  {
2433
    for (;;)
2434
    {
2435
      if (*s == (char) c) return (char*) s;
2436
      if (!*s++) return NullS;
2437
    }
2438
  }
2439
2440
  char *rindex(const char *s,int c)
2441
  {
2442
    register char *t;
2443
2444
    t = NullS;
2445
    do if (*s == (char) c) t = (char*) s; while (*s++);
2446
    return (char*) t;
2447
  }
1 by brian
clean slate
2448
}
2449
#endif
2450
2451
2452
static int reconnect(void)
2453
{
2454
  /* purecov: begin tested */
2455
  if (opt_reconnect)
2456
  {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2457
    put_info(_("No connection. Trying to reconnect..."),INFO_INFO,0,0);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2458
    (void) com_connect((DYNAMIC_STRING *) 0, 0);
1 by brian
clean slate
2459
    if (opt_rehash)
2460
      com_rehash(NULL, NULL);
2461
  }
2462
  if (!connected)
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2463
    return put_info(_("Can't connect to the server\n"),INFO_ERROR,0,0);
1 by brian
clean slate
2464
  /* purecov: end */
2465
  return 0;
2466
}
2467
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
2468
static void get_current_db(void)
1 by brian
clean slate
2469
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
2470
  DRIZZLE_RES *res;
1 by brian
clean slate
2471
2472
  my_free(current_db, MYF(MY_ALLOW_ZERO_PTR));
2473
  current_db= NULL;
2474
  /* In case of error below current_db will be NULL */
206.3.1 by Patrick Galbraith
Most everything working with client rename
2475
  if (!drizzle_query(&drizzle, "SELECT DATABASE()") &&
2476
      (res= drizzle_use_result(&drizzle)))
1 by brian
clean slate
2477
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2478
    DRIZZLE_ROW row= drizzle_fetch_row(res);
1 by brian
clean slate
2479
    if (row[0])
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2480
      current_db= strdup(row[0]);
206.3.1 by Patrick Galbraith
Most everything working with client rename
2481
    drizzle_free_result(res);
1 by brian
clean slate
2482
  }
2483
}
2484
2485
/***************************************************************************
2486
 The different commands
2487
***************************************************************************/
2488
206.3.1 by Patrick Galbraith
Most everything working with client rename
2489
int drizzle_real_query_for_lazy(const char *buf, int length)
1 by brian
clean slate
2490
{
2491
  for (uint retry=0;; retry++)
2492
  {
2493
    int error;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2494
    if (!drizzle_real_query(&drizzle,buf,length))
1 by brian
clean slate
2495
      return 0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2496
    error= put_error(&drizzle);
2497
    if (drizzle_errno(&drizzle) != CR_SERVER_GONE_ERROR || retry > 1 ||
1 by brian
clean slate
2498
        !opt_reconnect)
2499
      return error;
2500
    if (reconnect())
2501
      return error;
2502
  }
2503
}
2504
206.3.1 by Patrick Galbraith
Most everything working with client rename
2505
int drizzle_store_result_for_lazy(DRIZZLE_RES **result)
1 by brian
clean slate
2506
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
2507
  if ((*result=drizzle_store_result(&drizzle)))
1 by brian
clean slate
2508
    return 0;
2509
206.3.1 by Patrick Galbraith
Most everything working with client rename
2510
  if (drizzle_error(&drizzle)[0])
2511
    return put_error(&drizzle);
1 by brian
clean slate
2512
  return 0;
2513
}
2514
206.3.1 by Patrick Galbraith
Most everything working with client rename
2515
static void print_help_item(DRIZZLE_ROW *cur, int num_name, int num_cat, char *last_char)
1 by brian
clean slate
2516
{
2517
  char ccat= (*cur)[num_cat][0];
2518
  if (*last_char != ccat)
2519
  {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2520
    put_info(ccat == 'Y' ? _("categories:") : _("topics:"), INFO_INFO,0,0);
1 by brian
clean slate
2521
    *last_char= ccat;
2522
  }
2523
  tee_fprintf(PAGER, "   %s\n", (*cur)[num_name]);
2524
}
2525
2526
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2527
static int com_server_help(DYNAMIC_STRING *buffer,
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2528
                           char *line __attribute__((unused)),
2529
                           char *help_arg)
1 by brian
clean slate
2530
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
2531
  DRIZZLE_ROW cur;
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2532
  const char *server_cmd= buffer->str;
1 by brian
clean slate
2533
  char cmd_buf[100];
206.3.1 by Patrick Galbraith
Most everything working with client rename
2534
  DRIZZLE_RES *result;
1 by brian
clean slate
2535
  int error;
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2536
1 by brian
clean slate
2537
  if (help_arg[0] != '\'')
2538
  {
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2539
    char *end_arg= strend(help_arg);
2540
    if(--end_arg)
2541
    {
2542
      while (my_isspace(charset_info,*end_arg))
2543
        end_arg--;
2544
      *++end_arg= '\0';
2545
    }
2546
    (void) strxnmov(cmd_buf, sizeof(cmd_buf), "help '", help_arg, "'", NullS);
1 by brian
clean slate
2547
    server_cmd= cmd_buf;
2548
  }
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2549
1 by brian
clean slate
2550
  if (!connected && reconnect())
2551
    return 1;
2552
206.3.1 by Patrick Galbraith
Most everything working with client rename
2553
  if ((error= drizzle_real_query_for_lazy(server_cmd,(int)strlen(server_cmd))) ||
2554
      (error= drizzle_store_result_for_lazy(&result)))
1 by brian
clean slate
2555
    return error;
2556
2557
  if (result)
2558
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2559
    unsigned int num_fields= drizzle_num_fields(result);
2560
    uint64_t num_rows= drizzle_num_rows(result);
2561
    drizzle_fetch_fields(result);
1 by brian
clean slate
2562
    if (num_fields==3 && num_rows==1)
2563
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2564
      if (!(cur= drizzle_fetch_row(result)))
1 by brian
clean slate
2565
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2566
        error= -1;
2567
        goto err;
1 by brian
clean slate
2568
      }
2569
2570
      init_pager();
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2571
      tee_fprintf(PAGER,   _("Name: \'%s\'\n"), cur[0]);
2572
      tee_fprintf(PAGER,   _("Description:\n%s"), cur[1]);
1 by brian
clean slate
2573
      if (cur[2] && *((char*)cur[2]))
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2574
        tee_fprintf(PAGER, _("Examples:\n%s"), cur[2]);
1 by brian
clean slate
2575
      tee_fprintf(PAGER,   "\n");
2576
      end_pager();
2577
    }
2578
    else if (num_fields >= 2 && num_rows)
2579
    {
2580
      init_pager();
2581
      char last_char= 0;
2582
2583
      int num_name= 0, num_cat= 0;
2584
2585
      if (num_fields == 2)
2586
      {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2587
        put_info(_("Many help items for your request exist."), INFO_INFO,0,0);
2588
        put_info(_("To make a more specific request, please type 'help <item>',\nwhere <item> is one of the following"), INFO_INFO,0,0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2589
        num_name= 0;
2590
        num_cat= 1;
1 by brian
clean slate
2591
      }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2592
      else if ((cur= drizzle_fetch_row(result)))
1 by brian
clean slate
2593
      {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2594
        tee_fprintf(PAGER, _("You asked for help about help category: '%s'\n"), cur[0]);
2595
        put_info(_("For more information, type 'help <item>', where <item> is one of the following"), INFO_INFO,0,0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2596
        num_name= 1;
2597
        num_cat= 2;
2598
        print_help_item(&cur,1,2,&last_char);
1 by brian
clean slate
2599
      }
2600
206.3.1 by Patrick Galbraith
Most everything working with client rename
2601
      while ((cur= drizzle_fetch_row(result)))
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2602
        print_help_item(&cur,num_name,num_cat,&last_char);
1 by brian
clean slate
2603
      tee_fprintf(PAGER, "\n");
2604
      end_pager();
2605
    }
2606
    else
2607
    {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2608
      put_info(_("\nNothing found"), INFO_INFO,0,0);
2609
      put_info(_("Please try to run 'help contents' for a list of all accessible topics\n"), INFO_INFO,0,0);
1 by brian
clean slate
2610
    }
2611
  }
2612
2613
err:
206.3.1 by Patrick Galbraith
Most everything working with client rename
2614
  drizzle_free_result(result);
1 by brian
clean slate
2615
  return error;
2616
}
2617
2618
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2619
com_help(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2620
         char *line __attribute__((unused)))
1 by brian
clean slate
2621
{
2622
  register int i, j;
2623
  char * help_arg= strchr(line,' '), buff[32], *end;
2624
  if (help_arg)
2625
  {
2626
    while (my_isspace(charset_info,*help_arg))
2627
      help_arg++;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2628
    if (*help_arg)
2629
      return com_server_help(buffer,line,help_arg);
1 by brian
clean slate
2630
  }
2631
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2632
  put_info(_("List of all Drizzle commands:"), INFO_INFO,0,0);
1 by brian
clean slate
2633
  if (!named_cmds)
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2634
    put_info(_("Note that all text commands must be first on line and end with ';'"),INFO_INFO,0,0);
1 by brian
clean slate
2635
  for (i = 0; commands[i].name; i++)
2636
  {
2637
    end= strmov(buff, commands[i].name);
2638
    for (j= (int)strlen(commands[i].name); j < 10; j++)
2639
      end= strmov(end, " ");
2640
    if (commands[i].func)
2641
      tee_fprintf(stdout, "%s(\\%c) %s\n", buff,
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2642
                  commands[i].cmd_char, _(commands[i].doc));
1 by brian
clean slate
2643
  }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2644
  if (connected && drizzle_get_server_version(&drizzle) >= 40100)
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2645
    put_info(_("\nFor server side help, type 'help contents'\n"), INFO_INFO,0,0);
1 by brian
clean slate
2646
  return 0;
2647
}
2648
2649
2650
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2651
com_clear(DYNAMIC_STRING *buffer,char *line __attribute__((unused)))
1 by brian
clean slate
2652
{
2653
  if (status.add_to_history)
2654
    fix_history(buffer);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2655
  dynstr_set(buffer, NULL);
1 by brian
clean slate
2656
  return 0;
2657
}
2658
2659
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2660
com_charset(DYNAMIC_STRING *buffer __attribute__((unused)), char *line)
1 by brian
clean slate
2661
{
2662
  char buff[256], *param;
264.2.6 by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code.
2663
  const CHARSET_INFO * new_cs;
1 by brian
clean slate
2664
  strmake(buff, line, sizeof(buff) - 1);
2665
  param= get_arg(buff, 0);
2666
  if (!param || !*param)
2667
  {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2668
    return put_info(_("Usage: \\C char_setname | charset charset_name"),
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
2669
                    INFO_ERROR, 0, 0);
1 by brian
clean slate
2670
  }
2671
  new_cs= get_charset_by_csname(param, MY_CS_PRIMARY, MYF(MY_WME));
2672
  if (new_cs)
2673
  {
2674
    charset_info= new_cs;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2675
    drizzle_set_character_set(&drizzle, charset_info->csname);
1 by brian
clean slate
2676
    default_charset= (char *)charset_info->csname;
2677
    default_charset_used= 1;
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2678
    put_info(_("Charset changed"), INFO_INFO,0,0);
1 by brian
clean slate
2679
  }
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2680
  else put_info(_("Charset is not found"), INFO_INFO,0,0);
1 by brian
clean slate
2681
  return 0;
2682
}
2683
2684
/*
2685
  Execute command
2686
  Returns: 0  if ok
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2687
  -1 if not fatal error
2688
  1  if fatal error
1 by brian
clean slate
2689
*/
2690
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2691
com_go(DYNAMIC_STRING *buffer,
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2692
       char *line __attribute__((unused)))
1 by brian
clean slate
2693
{
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2694
  char          buff[200]; /* about 110 chars used so far */
2695
  char          time_buff[52+3+1]; /* time max + space&parens + NUL */
206.3.1 by Patrick Galbraith
Most everything working with client rename
2696
  DRIZZLE_RES     *result;
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2697
  ulong         timer, warnings= 0;
2698
  uint          error= 0;
1 by brian
clean slate
2699
  int           err= 0;
2700
2701
  interrupted_query= 0;
2702
2703
  /* Remove garbage for nicer messages */
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2704
  remove_cntrl(buffer);
1 by brian
clean slate
2705
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2706
  if (buffer->length == 0)
1 by brian
clean slate
2707
  {
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2708
    // Ignore empty quries
2709
    if (status.batch)
1 by brian
clean slate
2710
      return 0;
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2711
    return put_info(_("No query specified\n"),INFO_ERROR,0,0);
1 by brian
clean slate
2712
2713
  }
2714
  if (!connected && reconnect())
2715
  {
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2716
    // Remove query on error
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2717
    dynstr_set(buffer, NULL);
1 by brian
clean slate
2718
    return opt_reconnect ? -1 : 1;          // Fatal error
2719
  }
2720
  if (verbose)
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2721
    (void) com_print(buffer, 0);
1 by brian
clean slate
2722
2723
  if (skip_updates &&
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2724
      ((buffer->length < 4) || !strncmp(buffer->str, "SET ", 4)))
1 by brian
clean slate
2725
  {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2726
    (void) put_info(_("Ignoring query to other database"),INFO_INFO,0,0);
1 by brian
clean slate
2727
    return 0;
2728
  }
2729
2730
  timer=start_timer();
2731
  executing_query= 1;
202.2.4 by Monty Taylor
Merged from Patrick.
2732
  error= drizzle_real_query_for_lazy(buffer->str,buffer->length);
1 by brian
clean slate
2733
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
2734
  if (status.add_to_history)
2735
  {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2736
    dynstr_append(buffer, vertical ? "\\G" : delimiter);
1 by brian
clean slate
2737
    /* Append final command onto history */
2738
    fix_history(buffer);
2739
  }
2740
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2741
  dynstr_set(buffer, NULL);
1 by brian
clean slate
2742
2743
  if (error)
2744
    goto end;
2745
2746
  do
2747
  {
2748
    char *pos;
2749
2750
    if (quick)
2751
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2752
      if (!(result=drizzle_use_result(&drizzle)) && drizzle_field_count(&drizzle))
1 by brian
clean slate
2753
      {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2754
        error= put_error(&drizzle);
1 by brian
clean slate
2755
        goto end;
2756
      }
2757
    }
2758
    else
2759
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2760
      error= drizzle_store_result_for_lazy(&result);
1 by brian
clean slate
2761
      if (error)
2762
        goto end;
2763
    }
2764
2765
    if (verbose >= 3 || !opt_silent)
206.3.1 by Patrick Galbraith
Most everything working with client rename
2766
      drizzle_end_timer(timer,time_buff);
1 by brian
clean slate
2767
    else
2768
      time_buff[0]= '\0';
2769
2770
    /* Every branch must truncate  buff . */
2771
    if (result)
2772
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
2773
      if (!drizzle_num_rows(result) && ! quick && !column_types_flag)
1 by brian
clean slate
2774
      {
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2775
        strmov(buff, _("Empty set"));
1 by brian
clean slate
2776
        if (opt_xml)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2777
        {
1 by brian
clean slate
2778
          /*
2779
            We must print XML header and footer
2780
            to produce a well-formed XML even if
2781
            the result set is empty (Bug#27608).
2782
          */
2783
          init_pager();
2784
          print_table_data_xml(result);
2785
          end_pager();
2786
        }
2787
      }
2788
      else
2789
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2790
        init_pager();
2791
        if (opt_html)
2792
          print_table_data_html(result);
2793
        else if (opt_xml)
2794
          print_table_data_xml(result);
2795
        else if (vertical || (auto_vertical_output && (terminal_width < get_result_width(result))))
2796
          print_table_data_vertically(result);
2797
        else if (opt_silent && verbose <= 2 && !output_tables)
2798
          print_tab_data(result);
2799
        else
2800
          print_table_data(result);
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
2801
        sprintf(buff,
2802
                ngettext("%ld row in set","%ld rows in set",
2803
                         (long) drizzle_num_rows(result)),
2804
                (long) drizzle_num_rows(result));
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2805
        end_pager();
206.3.1 by Patrick Galbraith
Most everything working with client rename
2806
        if (drizzle_errno(&drizzle))
2807
          error= put_error(&drizzle);
1 by brian
clean slate
2808
      }
2809
    }
206.3.1 by Patrick Galbraith
Most everything working with client rename
2810
    else if (drizzle_affected_rows(&drizzle) == ~(uint64_t) 0)
202.3.13 by Monty Taylor
Changed gettext() to _() in drizzle.c.
2811
      strmov(buff,_("Query OK"));
1 by brian
clean slate
2812
    else
202.3.2 by Monty Taylor
Added gettext calls in to my_getopt.c and drizzle.c
2813
      sprintf(buff, ngettext("Query OK, %ld row affected",
2814
                             "Query OK, %ld rows affected",
2815
                             (long) drizzle_affected_rows(&drizzle)),
2816
              (long) drizzle_affected_rows(&drizzle));
1 by brian
clean slate
2817
2818
    pos=strend(buff);
206.3.1 by Patrick Galbraith
Most everything working with client rename
2819
    if ((warnings= drizzle_warning_count(&drizzle)))
1 by brian
clean slate
2820
    {
2821
      *pos++= ',';
2822
      *pos++= ' ';
2823
      pos=int10_to_str(warnings, pos, 10);
2824
      pos=strmov(pos, " warning");
2825
      if (warnings != 1)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2826
        *pos++= 's';
1 by brian
clean slate
2827
    }
2828
    strmov(pos, time_buff);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
2829
    put_info(buff,INFO_RESULT,0,0);
206.3.1 by Patrick Galbraith
Most everything working with client rename
2830
    if (drizzle_info(&drizzle))
2831
      put_info(drizzle_info(&drizzle),INFO_RESULT,0,0);
2832
    put_info("",INFO_RESULT,0,0);      // Empty row
1 by brian
clean slate
2833
206.3.1 by Patrick Galbraith
Most everything working with client rename
2834
    if (result && !drizzle_eof(result))  /* Something wrong when using quick */
2835
      error= put_error(&drizzle);
1 by brian
clean slate
2836
    else if (unbuffered)
2837
      fflush(stdout);
206.3.1 by Patrick Galbraith
Most everything working with client rename
2838
    drizzle_free_result(result);
2839
  } while (!(err= drizzle_next_result(&drizzle)));
1 by brian
clean slate
2840
  if (err >= 1)
206.3.1 by Patrick Galbraith
Most everything working with client rename
2841
    error= put_error(&drizzle);
1 by brian
clean slate
2842
2843
end:
2844
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2845
  /* Show warnings if any or error occured */
1 by brian
clean slate
2846
  if (show_warnings == 1 && (warnings >= 1 || error))
2847
    print_warnings();
2848
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2849
  if (!error && !status.batch &&
206.3.1 by Patrick Galbraith
Most everything working with client rename
2850
      (drizzle.server_status & SERVER_STATUS_DB_DROPPED))
1 by brian
clean slate
2851
    get_current_db();
2852
2853
  executing_query= 0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
2854
  return error;        /* New command follows */
1 by brian
clean slate
2855
}
2856
2857
2858
static void init_pager()
2859
{
2860
  if (!opt_nopager)
2861
  {
2862
    if (!(PAGER= popen(pager, "w")))
2863
    {
2864
      tee_fprintf(stdout, "popen() failed! defaulting PAGER to stdout!\n");
2865
      PAGER= stdout;
2866
    }
2867
  }
2868
  else
2869
    PAGER= stdout;
2870
}
2871
2872
static void end_pager()
2873
{
2874
  if (!opt_nopager)
2875
    pclose(PAGER);
2876
}
2877
2878
2879
static void init_tee(const char *file_name)
2880
{
2881
  FILE* new_outfile;
2882
  if (opt_outfile)
2883
    end_tee();
2884
  if (!(new_outfile= my_fopen(file_name, O_APPEND | O_WRONLY, MYF(MY_WME))))
2885
  {
2886
    tee_fprintf(stdout, "Error logging to file '%s'\n", file_name);
2887
    return;
2888
  }
2889
  OUTFILE = new_outfile;
2890
  strmake(outfile, file_name, FN_REFLEN-1);
2891
  tee_fprintf(stdout, "Logging to file '%s'\n", file_name);
2892
  opt_outfile= 1;
2893
  return;
2894
}
2895
2896
2897
static void end_tee()
2898
{
2899
  my_fclose(OUTFILE, MYF(0));
2900
  OUTFILE= 0;
2901
  opt_outfile= 0;
2902
  return;
2903
}
2904
2905
2906
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
2907
com_ego(DYNAMIC_STRING *buffer,char *line)
1 by brian
clean slate
2908
{
2909
  int result;
2910
  bool oldvertical=vertical;
2911
  vertical=1;
2912
  result=com_go(buffer,line);
2913
  vertical=oldvertical;
2914
  return result;
2915
}
2916
2917
2918
static const char *fieldtype2str(enum enum_field_types type)
2919
{
2920
  switch (type) {
212.2.2 by Patrick Galbraith
Renamed FIELD_TYPE to DRIZZLE_TYPE
2921
    case DRIZZLE_TYPE_BLOB:        return "BLOB";
2922
    case DRIZZLE_TYPE_NEWDATE:        return "DATE";
2923
    case DRIZZLE_TYPE_DATETIME:    return "DATETIME";
2924
    case DRIZZLE_TYPE_NEWDECIMAL:  return "DECIMAL";
2925
    case DRIZZLE_TYPE_DOUBLE:      return "DOUBLE";
2926
    case DRIZZLE_TYPE_ENUM:        return "ENUM";
2927
    case DRIZZLE_TYPE_LONG:        return "LONG";
2928
    case DRIZZLE_TYPE_LONGLONG:    return "LONGLONG";
2929
    case DRIZZLE_TYPE_NULL:        return "NULL";
2930
    case DRIZZLE_TYPE_SET:         return "SET";
2931
    case DRIZZLE_TYPE_SHORT:       return "SHORT";
2932
    case DRIZZLE_TYPE_TIME:        return "TIME";
2933
    case DRIZZLE_TYPE_TIMESTAMP:   return "TIMESTAMP";
2934
    case DRIZZLE_TYPE_TINY:        return "TINY";
1 by brian
clean slate
2935
    default:                     return "?-unknown-?";
2936
  }
2937
}
2938
2939
static char *fieldflags2str(uint f) {
2940
  static char buf[1024];
2941
  char *s=buf;
2942
  *s=0;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2943
#define ff2s_check_flag(X)                                              \
2944
  if (f & X ## _FLAG) { s=strmov(s, # X " "); f &= ~ X ## _FLAG; }
1 by brian
clean slate
2945
  ff2s_check_flag(NOT_NULL);
2946
  ff2s_check_flag(PRI_KEY);
2947
  ff2s_check_flag(UNIQUE_KEY);
2948
  ff2s_check_flag(MULTIPLE_KEY);
2949
  ff2s_check_flag(BLOB);
2950
  ff2s_check_flag(UNSIGNED);
2951
  ff2s_check_flag(BINARY);
2952
  ff2s_check_flag(ENUM);
2953
  ff2s_check_flag(AUTO_INCREMENT);
2954
  ff2s_check_flag(TIMESTAMP);
2955
  ff2s_check_flag(SET);
2956
  ff2s_check_flag(NO_DEFAULT_VALUE);
2957
  ff2s_check_flag(NUM);
2958
  ff2s_check_flag(PART_KEY);
2959
  ff2s_check_flag(GROUP);
2960
  ff2s_check_flag(UNIQUE);
2961
  ff2s_check_flag(BINCMP);
2962
  ff2s_check_flag(ON_UPDATE_NOW);
2963
#undef ff2s_check_flag
2964
  if (f)
2965
    sprintf(s, " unknows=0x%04x", f);
2966
  return buf;
2967
}
2968
2969
static void
206.3.1 by Patrick Galbraith
Most everything working with client rename
2970
print_field_types(DRIZZLE_RES *result)
1 by brian
clean slate
2971
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
2972
  DRIZZLE_FIELD   *field;
1 by brian
clean slate
2973
  uint i=0;
2974
206.3.1 by Patrick Galbraith
Most everything working with client rename
2975
  while ((field = drizzle_fetch_field(result)))
1 by brian
clean slate
2976
  {
2977
    tee_fprintf(PAGER, "Field %3u:  `%s`\n"
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
2978
                "Catalog:    `%s`\n"
2979
                "Database:   `%s`\n"
2980
                "Table:      `%s`\n"
2981
                "Org_table:  `%s`\n"
2982
                "Type:       %s\n"
2983
                "Collation:  %s (%u)\n"
2984
                "Length:     %lu\n"
2985
                "Max_length: %lu\n"
2986
                "Decimals:   %u\n"
2987
                "Flags:      %s\n\n",
1 by brian
clean slate
2988
                ++i,
2989
                field->name, field->catalog, field->db, field->table,
2990
                field->org_table, fieldtype2str(field->type),
2991
                get_charset_name(field->charsetnr), field->charsetnr,
2992
                field->length, field->max_length, field->decimals,
2993
                fieldflags2str(field->flags));
2994
  }
2995
  tee_puts("", PAGER);
2996
}
2997
2998
2999
static void
206.3.1 by Patrick Galbraith
Most everything working with client rename
3000
print_table_data(DRIZZLE_RES *result)
1 by brian
clean slate
3001
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
3002
  DRIZZLE_ROW     cur;
3003
  DRIZZLE_FIELD   *field;
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
3004
  bool          *num_flag;
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3005
  DYNAMIC_STRING *separator=
3006
    (DYNAMIC_STRING *)my_malloc(sizeof(DYNAMIC_STRING), MYF(0));
3007
  init_dynamic_string(separator, "", 256, 256);
1 by brian
clean slate
3008
206.3.1 by Patrick Galbraith
Most everything working with client rename
3009
  num_flag=(bool*) my_malloc(sizeof(bool)*drizzle_num_fields(result),
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
3010
                             MYF(MY_WME));
1 by brian
clean slate
3011
  if (column_types_flag)
3012
  {
3013
    print_field_types(result);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3014
    if (!drizzle_num_rows(result))
1 by brian
clean slate
3015
      return;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3016
    drizzle_field_seek(result,0);
1 by brian
clean slate
3017
  }
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3018
  dynstr_append(separator, "+");
206.3.1 by Patrick Galbraith
Most everything working with client rename
3019
  while ((field = drizzle_fetch_field(result)))
1 by brian
clean slate
3020
  {
3021
    uint length= column_names ? field->name_length : 0;
3022
    if (quick)
3023
      length=max(length,field->length);
3024
    else
3025
      length=max(length,field->max_length);
3026
    if (length < 4 && !IS_NOT_NULL(field->flags))
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3027
      // Room for "NULL"
3028
      length=4;
1 by brian
clean slate
3029
    field->max_length=length;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3030
    uint x;
3031
    for (x=0; x< (length+2); x++)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3032
      dynstr_append(separator, "-");
3033
    dynstr_append(separator, "+");
1 by brian
clean slate
3034
  }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3035
3036
  tee_puts((char*) separator->str, PAGER);
1 by brian
clean slate
3037
  if (column_names)
3038
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3039
    drizzle_field_seek(result,0);
1 by brian
clean slate
3040
    (void) tee_fputs("|", PAGER);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3041
    for (uint off=0; (field = drizzle_fetch_field(result)) ; off++)
1 by brian
clean slate
3042
    {
3043
      uint name_length= (uint) strlen(field->name);
3044
      uint numcells= charset_info->cset->numcells(charset_info,
3045
                                                  field->name,
3046
                                                  field->name + name_length);
3047
      uint display_length= field->max_length + name_length - numcells;
3048
      tee_fprintf(PAGER, " %-*s |",(int) min(display_length,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3049
                                             MAX_COLUMN_LENGTH),
1 by brian
clean slate
3050
                  field->name);
3051
      num_flag[off]= IS_NUM(field->type);
3052
    }
3053
    (void) tee_fputs("\n", PAGER);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3054
    tee_puts((char*) separator->str, PAGER);
1 by brian
clean slate
3055
  }
3056
206.3.1 by Patrick Galbraith
Most everything working with client rename
3057
  while ((cur= drizzle_fetch_row(result)))
1 by brian
clean slate
3058
  {
3059
    if (interrupted_query)
3060
      break;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3061
    uint32_t *lengths= drizzle_fetch_lengths(result);
1 by brian
clean slate
3062
    (void) tee_fputs("| ", PAGER);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3063
    drizzle_field_seek(result, 0);
3064
    for (uint off= 0; off < drizzle_num_fields(result); off++)
1 by brian
clean slate
3065
    {
3066
      const char *buffer;
3067
      uint data_length;
3068
      uint field_max_length;
3069
      uint visible_length;
3070
      uint extra_padding;
3071
3072
      if (cur[off] == NULL)
3073
      {
3074
        buffer= "NULL";
3075
        data_length= 4;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3076
      }
3077
      else
1 by brian
clean slate
3078
      {
3079
        buffer= cur[off];
3080
        data_length= (uint) lengths[off];
3081
      }
3082
206.3.1 by Patrick Galbraith
Most everything working with client rename
3083
      field= drizzle_fetch_field(result);
1 by brian
clean slate
3084
      field_max_length= field->max_length;
3085
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3086
      /*
3087
        How many text cells on the screen will this string span?  If it contains
3088
        multibyte characters, then the number of characters we occupy on screen
3089
        will be fewer than the number of bytes we occupy in memory.
1 by brian
clean slate
3090
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3091
        We need to find how much screen real-estate we will occupy to know how
3092
        many extra padding-characters we should send with the printing function.
1 by brian
clean slate
3093
      */
3094
      visible_length= charset_info->cset->numcells(charset_info, buffer, buffer + data_length);
3095
      extra_padding= data_length - visible_length;
3096
3097
      if (field_max_length > MAX_COLUMN_LENGTH)
3098
        tee_print_sized_data(buffer, data_length, MAX_COLUMN_LENGTH+extra_padding, FALSE);
3099
      else
3100
      {
3101
        if (num_flag[off] != 0) /* if it is numeric, we right-justify it */
3102
          tee_print_sized_data(buffer, data_length, field_max_length+extra_padding, TRUE);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3103
        else
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
3104
          tee_print_sized_data(buffer, data_length,
3105
                               field_max_length+extra_padding, FALSE);
1 by brian
clean slate
3106
      }
3107
      tee_fputs(" | ", PAGER);
3108
    }
3109
    (void) tee_fputs("\n", PAGER);
3110
  }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3111
  tee_puts(separator->str, PAGER);
77.3.1 by Monty Taylor
First steps in removing sql_string and using glib instead.
3112
  my_free(num_flag, MYF(MY_ALLOW_ZERO_PTR));
1 by brian
clean slate
3113
}
3114
3115
/**
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3116
   Return the length of a field after it would be rendered into text.
3117
3118
   This doesn't know or care about multibyte characters.  Assume we're
3119
   using such a charset.  We can't know that all of the upcoming rows
3120
   for this column will have bytes that each render into some fraction
3121
   of a character.  It's at least possible that a row has bytes that
3122
   all render into one character each, and so the maximum length is
3123
   still the number of bytes.  (Assumption 1:  This can't be better
3124
   because we can never know the number of characters that the DB is
3125
   going to send -- only the number of bytes.  2: Chars <= Bytes.)
3126
3127
   @param  field  Pointer to a field to be inspected
3128
3129
   @returns  number of character positions to be used, at most
1 by brian
clean slate
3130
*/
206.3.1 by Patrick Galbraith
Most everything working with client rename
3131
static int get_field_disp_length(DRIZZLE_FIELD *field)
1 by brian
clean slate
3132
{
3133
  uint length= column_names ? field->name_length : 0;
3134
3135
  if (quick)
3136
    length= max(length, field->length);
3137
  else
3138
    length= max(length, field->max_length);
3139
3140
  if (length < 4 && !IS_NOT_NULL(field->flags))
206.3.1 by Patrick Galbraith
Most everything working with client rename
3141
    length= 4;        /* Room for "NULL" */
1 by brian
clean slate
3142
3143
  return length;
3144
}
3145
3146
/**
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3147
   For a new result, return the max number of characters that any
3148
   upcoming row may return.
3149
3150
   @param  result  Pointer to the result to judge
3151
3152
   @returns  The max number of characters in any row of this result
1 by brian
clean slate
3153
*/
206.3.1 by Patrick Galbraith
Most everything working with client rename
3154
static int get_result_width(DRIZZLE_RES *result)
1 by brian
clean slate
3155
{
3156
  unsigned int len= 0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3157
  DRIZZLE_FIELD *field;
3158
  DRIZZLE_FIELD_OFFSET offset;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3159
206.3.1 by Patrick Galbraith
Most everything working with client rename
3160
  offset= drizzle_field_tell(result);
142.1.2 by Patrick
All DBUG_x removed from client/
3161
  assert(offset == 0);
1 by brian
clean slate
3162
206.3.1 by Patrick Galbraith
Most everything working with client rename
3163
  while ((field= drizzle_fetch_field(result)) != NULL)
1 by brian
clean slate
3164
    len+= get_field_disp_length(field) + 3; /* plus bar, space, & final space */
3165
206.3.1 by Patrick Galbraith
Most everything working with client rename
3166
  (void) drizzle_field_seek(result, offset);
1 by brian
clean slate
3167
3168
  return len + 1; /* plus final bar. */
3169
}
3170
3171
static void
3172
tee_print_sized_data(const char *data, unsigned int data_length, unsigned int total_bytes_to_send, bool right_justified)
3173
{
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3174
  /*
1 by brian
clean slate
3175
    For '\0's print ASCII spaces instead, as '\0' is eaten by (at
3176
    least my) console driver, and that messes up the pretty table
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3177
    grid.  (The \0 is also the reason we can't use fprintf() .)
1 by brian
clean slate
3178
  */
3179
  unsigned int i;
3180
  const char *p;
3181
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3182
  if (right_justified)
1 by brian
clean slate
3183
    for (i= data_length; i < total_bytes_to_send; i++)
3184
      tee_putc((int)' ', PAGER);
3185
3186
  for (i= 0, p= data; i < data_length; i+= 1, p+= 1)
3187
  {
3188
    if (*p == '\0')
3189
      tee_putc((int)' ', PAGER);
3190
    else
3191
      tee_putc((int)*p, PAGER);
3192
  }
3193
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3194
  if (! right_justified)
1 by brian
clean slate
3195
    for (i= data_length; i < total_bytes_to_send; i++)
3196
      tee_putc((int)' ', PAGER);
3197
}
3198
3199
3200
3201
static void
206.3.1 by Patrick Galbraith
Most everything working with client rename
3202
print_table_data_html(DRIZZLE_RES *result)
1 by brian
clean slate
3203
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
3204
  DRIZZLE_ROW  cur;
3205
  DRIZZLE_FIELD  *field;
1 by brian
clean slate
3206
206.3.1 by Patrick Galbraith
Most everything working with client rename
3207
  drizzle_field_seek(result,0);
1 by brian
clean slate
3208
  (void) tee_fputs("<TABLE BORDER=1><TR>", PAGER);
3209
  if (column_names)
3210
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3211
    while((field = drizzle_fetch_field(result)))
1 by brian
clean slate
3212
    {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3213
      tee_fprintf(PAGER, "<TH>%s</TH>", (field->name ?
3214
                                         (field->name[0] ? field->name :
3215
                                          " &nbsp; ") : "NULL"));
1 by brian
clean slate
3216
    }
3217
    (void) tee_fputs("</TR>", PAGER);
3218
  }
206.3.1 by Patrick Galbraith
Most everything working with client rename
3219
  while ((cur = drizzle_fetch_row(result)))
1 by brian
clean slate
3220
  {
3221
    if (interrupted_query)
3222
      break;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3223
    uint32_t *lengths=drizzle_fetch_lengths(result);
1 by brian
clean slate
3224
    (void) tee_fputs("<TR>", PAGER);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3225
    for (uint32_t i= 0; i < drizzle_num_fields(result); i++)
1 by brian
clean slate
3226
    {
3227
      (void) tee_fputs("<TD>", PAGER);
3228
      safe_put_field(cur[i],lengths[i]);
3229
      (void) tee_fputs("</TD>", PAGER);
3230
    }
3231
    (void) tee_fputs("</TR>", PAGER);
3232
  }
3233
  (void) tee_fputs("</TABLE>", PAGER);
3234
}
3235
3236
3237
static void
206.3.1 by Patrick Galbraith
Most everything working with client rename
3238
print_table_data_xml(DRIZZLE_RES *result)
1 by brian
clean slate
3239
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
3240
  DRIZZLE_ROW   cur;
236.3.5 by Andrey Hristov
Constify libdrizzle functions
3241
  const DRIZZLE_FIELD *fields;
1 by brian
clean slate
3242
206.3.1 by Patrick Galbraith
Most everything working with client rename
3243
  drizzle_field_seek(result,0);
1 by brian
clean slate
3244
3245
  tee_fputs("<?xml version=\"1.0\"?>\n\n<resultset statement=\"", PAGER);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3246
  xmlencode_print(glob_buffer->str, glob_buffer->length);
1 by brian
clean slate
3247
  tee_fputs("\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">",
3248
            PAGER);
3249
206.3.1 by Patrick Galbraith
Most everything working with client rename
3250
  fields = drizzle_fetch_fields(result);
3251
  while ((cur = drizzle_fetch_row(result)))
1 by brian
clean slate
3252
  {
3253
    if (interrupted_query)
3254
      break;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3255
    uint32_t *lengths=drizzle_fetch_lengths(result);
1 by brian
clean slate
3256
    (void) tee_fputs("\n  <row>\n", PAGER);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3257
    for (uint i=0; i < drizzle_num_fields(result); i++)
1 by brian
clean slate
3258
    {
3259
      tee_fprintf(PAGER, "\t<field name=\"");
3260
      xmlencode_print(fields[i].name, (uint) strlen(fields[i].name));
3261
      if (cur[i])
3262
      {
3263
        tee_fprintf(PAGER, "\">");
3264
        xmlencode_print(cur[i], lengths[i]);
3265
        tee_fprintf(PAGER, "</field>\n");
3266
      }
3267
      else
3268
        tee_fprintf(PAGER, "\" xsi:nil=\"true\" />\n");
3269
    }
3270
    (void) tee_fputs("  </row>\n", PAGER);
3271
  }
3272
  (void) tee_fputs("</resultset>\n", PAGER);
3273
}
3274
3275
3276
static void
206.3.1 by Patrick Galbraith
Most everything working with client rename
3277
print_table_data_vertically(DRIZZLE_RES *result)
1 by brian
clean slate
3278
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
3279
  DRIZZLE_ROW  cur;
3280
  uint    max_length=0;
3281
  DRIZZLE_FIELD  *field;
1 by brian
clean slate
3282
206.3.1 by Patrick Galbraith
Most everything working with client rename
3283
  while ((field = drizzle_fetch_field(result)))
1 by brian
clean slate
3284
  {
3285
    uint length= field->name_length;
3286
    if (length > max_length)
3287
      max_length= length;
3288
    field->max_length=length;
3289
  }
3290
206.3.1 by Patrick Galbraith
Most everything working with client rename
3291
  drizzle_field_seek(result,0);
3292
  for (uint row_count=1; (cur= drizzle_fetch_row(result)); row_count++)
1 by brian
clean slate
3293
  {
3294
    if (interrupted_query)
3295
      break;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3296
    drizzle_field_seek(result,0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3297
    tee_fprintf(PAGER,
3298
                "*************************** %d. row ***************************\n", row_count);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3299
    for (uint off=0; off < drizzle_num_fields(result); off++)
1 by brian
clean slate
3300
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3301
      field= drizzle_fetch_field(result);
1 by brian
clean slate
3302
      tee_fprintf(PAGER, "%*s: ",(int) max_length,field->name);
3303
      tee_fprintf(PAGER, "%s\n",cur[off] ? (char*) cur[off] : "NULL");
3304
    }
3305
  }
3306
}
3307
3308
3309
/* print_warnings should be called right after executing a statement */
3310
3311
static void print_warnings()
3312
{
3313
  const char   *query;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3314
  DRIZZLE_RES    *result;
3315
  DRIZZLE_ROW    cur;
157 by Brian Aker
Second pass cleanup on removal of my_uint types
3316
  uint64_t num_rows;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3317
 
1 by brian
clean slate
3318
  /* Save current error before calling "show warnings" */
206.3.1 by Patrick Galbraith
Most everything working with client rename
3319
  uint error= drizzle_errno(&drizzle);
1 by brian
clean slate
3320
3321
  /* Get the warnings */
3322
  query= "show warnings";
206.3.1 by Patrick Galbraith
Most everything working with client rename
3323
  drizzle_real_query_for_lazy(query, strlen(query));
3324
  drizzle_store_result_for_lazy(&result);
1 by brian
clean slate
3325
3326
  /* Bail out when no warnings */
206.3.1 by Patrick Galbraith
Most everything working with client rename
3327
  if (!(num_rows= drizzle_num_rows(result)))
1 by brian
clean slate
3328
    goto end;
3329
206.3.1 by Patrick Galbraith
Most everything working with client rename
3330
  cur= drizzle_fetch_row(result);
1 by brian
clean slate
3331
3332
  /*
3333
    Don't print a duplicate of the current error.  It is possible for SHOW
3334
    WARNINGS to return multiple errors with the same code, but different
3335
    messages.  To be safe, skip printing the duplicate only if it is the only
3336
    warning.
3337
  */
133 by Brian Aker
Cleanup of warning/errors.
3338
  if (!cur || (num_rows == 1 && error == (uint) strtoul(cur[1], NULL, 10)))
1 by brian
clean slate
3339
    goto end;
3340
3341
  /* Print the warnings */
3342
  init_pager();
3343
  do
3344
  {
3345
    tee_fprintf(PAGER, "%s (Code %s): %s\n", cur[0], cur[1], cur[2]);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3346
  } while ((cur= drizzle_fetch_row(result)));
1 by brian
clean slate
3347
  end_pager();
3348
3349
end:
206.3.1 by Patrick Galbraith
Most everything working with client rename
3350
  drizzle_free_result(result);
1 by brian
clean slate
3351
}
3352
3353
3354
static const char *array_value(const char **array, char key)
3355
{
3356
  for (; *array; array+= 2)
3357
    if (**array == key)
3358
      return array[1];
3359
  return 0;
3360
}
3361
3362
3363
static void
3364
xmlencode_print(const char *src, uint length)
3365
{
3366
  if (!src)
3367
    tee_fputs("NULL", PAGER);
3368
  else
3369
  {
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3370
    for (const char *p = src; *p && length; length--)
1 by brian
clean slate
3371
    {
3372
      const char *t;
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3373
      if ((t = array_value(xmlmeta, *p++)))
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3374
        tee_fputs(t, PAGER);
1 by brian
clean slate
3375
      else
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3376
        tee_putc(*p, PAGER);
1 by brian
clean slate
3377
    }
3378
  }
3379
}
3380
3381
3382
static void
3383
safe_put_field(const char *pos,ulong length)
3384
{
3385
  if (!pos)
3386
    tee_fputs("NULL", PAGER);
3387
  else
3388
  {
3389
    if (opt_raw_data)
3390
      tee_fputs(pos, PAGER);
3391
    else for (const char *end=pos+length ; pos != end ; pos++)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3392
         {
1 by brian
clean slate
3393
#ifdef USE_MB
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3394
           int l;
3395
           if (use_mb(charset_info) &&
3396
               (l = my_ismbchar(charset_info, pos, end)))
3397
           {
3398
             while (l--)
3399
               tee_putc(*pos++, PAGER);
3400
             pos--;
3401
             continue;
3402
           }
1 by brian
clean slate
3403
#endif
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3404
           if (!*pos)
3405
             tee_fputs("\\0", PAGER); // This makes everything hard
3406
           else if (*pos == '\t')
3407
             tee_fputs("\\t", PAGER); // This would destroy tab format
3408
           else if (*pos == '\n')
3409
             tee_fputs("\\n", PAGER); // This too
3410
           else if (*pos == '\\')
3411
             tee_fputs("\\\\", PAGER);
3412
           else
3413
             tee_putc(*pos, PAGER);
3414
         }
1 by brian
clean slate
3415
  }
3416
}
3417
3418
3419
static void
206.3.1 by Patrick Galbraith
Most everything working with client rename
3420
print_tab_data(DRIZZLE_RES *result)
1 by brian
clean slate
3421
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
3422
  DRIZZLE_ROW  cur;
3423
  DRIZZLE_FIELD  *field;
3424
  uint32_t    *lengths;
1 by brian
clean slate
3425
3426
  if (opt_silent < 2 && column_names)
3427
  {
3428
    int first=0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3429
    while ((field = drizzle_fetch_field(result)))
1 by brian
clean slate
3430
    {
3431
      if (first++)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3432
        (void) tee_fputs("\t", PAGER);
1 by brian
clean slate
3433
      (void) tee_fputs(field->name, PAGER);
3434
    }
3435
    (void) tee_fputs("\n", PAGER);
3436
  }
206.3.1 by Patrick Galbraith
Most everything working with client rename
3437
  while ((cur = drizzle_fetch_row(result)))
1 by brian
clean slate
3438
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3439
    lengths= drizzle_fetch_lengths(result);
1 by brian
clean slate
3440
    safe_put_field(cur[0],lengths[0]);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3441
    for (uint off=1 ; off < drizzle_num_fields(result); off++)
1 by brian
clean slate
3442
    {
3443
      (void) tee_fputs("\t", PAGER);
3444
      safe_put_field(cur[off], lengths[off]);
3445
    }
3446
    (void) tee_fputs("\n", PAGER);
3447
  }
3448
}
3449
3450
static int
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
3451
com_tee(DYNAMIC_STRING *buffer __attribute__((unused)), char *line )
1 by brian
clean slate
3452
{
3453
  char file_name[FN_REFLEN], *end, *param;
3454
3455
  if (status.batch)
3456
    return 0;
3457
  while (my_isspace(charset_info,*line))
3458
    line++;
3459
  if (!(param = strchr(line, ' '))) // if outfile wasn't given, use the default
3460
  {
3461
    if (!strlen(outfile))
3462
    {
3463
      printf("No previous outfile available, you must give a filename!\n");
3464
      return 0;
3465
    }
3466
    else if (opt_outfile)
3467
    {
3468
      tee_fprintf(stdout, "Currently logging to file '%s'\n", outfile);
3469
      return 0;
3470
    }
3471
    else
206.3.1 by Patrick Galbraith
Most everything working with client rename
3472
      param = outfile;      //resume using the old outfile
1 by brian
clean slate
3473
  }
3474
3475
  /* eliminate the spaces before the parameters */
3476
  while (my_isspace(charset_info,*param))
3477
    param++;
3478
  end= strmake(file_name, param, sizeof(file_name) - 1);
3479
  /* remove end space from command line */
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3480
  while (end > file_name && (my_isspace(charset_info,end[-1]) ||
3481
                             my_iscntrl(charset_info,end[-1])))
1 by brian
clean slate
3482
    end--;
3483
  end[0]= 0;
3484
  if (end == file_name)
3485
  {
3486
    printf("No outfile specified!\n");
3487
    return 0;
3488
  }
3489
  init_tee(file_name);
3490
  return 0;
3491
}
3492
3493
3494
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3495
com_notee(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3496
          char *line __attribute__((unused)))
1 by brian
clean slate
3497
{
3498
  if (opt_outfile)
3499
    end_tee();
3500
  tee_fprintf(stdout, "Outfile disabled.\n");
3501
  return 0;
3502
}
3503
3504
/*
3505
  Sorry, this command is not available in Windows.
3506
*/
3507
3508
static int
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
3509
com_pager(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
3510
          char *line __attribute__((unused)))
1 by brian
clean slate
3511
{
3512
  char pager_name[FN_REFLEN], *end, *param;
3513
3514
  if (status.batch)
3515
    return 0;
3516
  /* Skip spaces in front of the pager command */
3517
  while (my_isspace(charset_info, *line))
3518
    line++;
3519
  /* Skip the pager command */
3520
  param= strchr(line, ' ');
3521
  /* Skip the spaces between the command and the argument */
3522
  while (param && my_isspace(charset_info, *param))
3523
    param++;
3524
  if (!param || !strlen(param)) // if pager was not given, use the default
3525
  {
3526
    if (!default_pager_set)
3527
    {
3528
      tee_fprintf(stdout, "Default pager wasn't set, using stdout.\n");
3529
      opt_nopager=1;
3530
      strmov(pager, "stdout");
3531
      PAGER= stdout;
3532
      return 0;
3533
    }
3534
    strmov(pager, default_pager);
3535
  }
3536
  else
3537
  {
3538
    end= strmake(pager_name, param, sizeof(pager_name)-1);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3539
    while (end > pager_name && (my_isspace(charset_info,end[-1]) ||
1 by brian
clean slate
3540
                                my_iscntrl(charset_info,end[-1])))
3541
      end--;
3542
    end[0]=0;
3543
    strmov(pager, pager_name);
3544
    strmov(default_pager, pager_name);
3545
  }
3546
  opt_nopager=0;
3547
  tee_fprintf(stdout, "PAGER set to '%s'\n", pager);
3548
  return 0;
3549
}
3550
3551
3552
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3553
com_nopager(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3554
            char *line __attribute__((unused)))
1 by brian
clean slate
3555
{
3556
  strmov(pager, "stdout");
3557
  opt_nopager=1;
3558
  PAGER= stdout;
3559
  tee_fprintf(stdout, "PAGER set to stdout\n");
3560
  return 0;
3561
}
3562
3563
/* If arg is given, exit without errors. This happens on command 'quit' */
3564
3565
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3566
com_quit(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3567
         char *line __attribute__((unused)))
1 by brian
clean slate
3568
{
3569
  /* let the screen auto close on a normal shutdown */
3570
  status.exit_status=0;
3571
  return 1;
3572
}
3573
3574
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3575
com_rehash(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3576
           char *line __attribute__((unused)))
1 by brian
clean slate
3577
{
3578
  build_completion_hash(1, 0);
3579
  return 0;
3580
}
3581
3582
3583
3584
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3585
com_print(DYNAMIC_STRING *buffer,char *line __attribute__((unused)))
1 by brian
clean slate
3586
{
3587
  tee_puts("--------------", stdout);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3588
  (void) tee_fputs(buffer->str, stdout);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3589
  if ( (buffer->length == 0)
3590
       || (buffer->str)[(buffer->length)-1] != '\n')
1 by brian
clean slate
3591
    tee_putc('\n', stdout);
3592
  tee_puts("--------------\n", stdout);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3593
  /* If empty buffer */
3594
  return 0;
1 by brian
clean slate
3595
}
3596
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3597
/* ARGSUSED */
1 by brian
clean slate
3598
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3599
com_connect(DYNAMIC_STRING *buffer, char *line)
1 by brian
clean slate
3600
{
3601
  char *tmp, buff[256];
3602
  bool save_rehash= opt_rehash;
3603
  int error;
3604
212.6.1 by Mats Kindahl
Replacing all bzero() calls with memset() calls and removing the bzero.c file.
3605
  memset(buff, 0, sizeof(buff));
1 by brian
clean slate
3606
  if (buffer)
3607
  {
3608
    /*
3609
      Two null bytes are needed in the end of buff to allow
3610
      get_arg to find end of string the second time it's called.
3611
    */
3612
    tmp= strmake(buff, line, sizeof(buff)-2);
3613
#ifdef EXTRA_DEBUG
3614
    tmp[1]= 0;
3615
#endif
3616
    tmp= get_arg(buff, 0);
3617
    if (tmp && *tmp)
3618
    {
3619
      my_free(current_db, MYF(MY_ALLOW_ZERO_PTR));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3620
      current_db= strdup(tmp);
1 by brian
clean slate
3621
      tmp= get_arg(buff, 1);
3622
      if (tmp)
3623
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3624
        my_free(current_host,MYF(MY_ALLOW_ZERO_PTR));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3625
        current_host=strdup(tmp);
1 by brian
clean slate
3626
      }
3627
    }
3628
    else
3629
    {
3630
      /* Quick re-connect */
3631
      opt_rehash= 0;                            /* purecov: tested */
3632
    }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3633
    // command used
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
3634
    assert(buffer!=NULL);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3635
    dynstr_set(buffer, NULL);
1 by brian
clean slate
3636
  }
3637
  else
3638
    opt_rehash= 0;
3639
  error=sql_connect(current_host,current_db,current_user,opt_password,0);
3640
  opt_rehash= save_rehash;
3641
3642
  if (connected)
3643
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3644
    sprintf(buff,"Connection id:    %u",drizzle_thread_id(&drizzle));
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3645
    put_info(buff,INFO_INFO,0,0);
1 by brian
clean slate
3646
    sprintf(buff,"Current database: %.128s\n",
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3647
            current_db ? current_db : "*** NONE ***");
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3648
    put_info(buff,INFO_INFO,0,0);
1 by brian
clean slate
3649
  }
3650
  return error;
3651
}
3652
3653
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
3654
static int com_source(DYNAMIC_STRING *buffer __attribute__((unused)), char *line)
1 by brian
clean slate
3655
{
3656
  char source_name[FN_REFLEN], *end, *param;
3657
  LINE_BUFFER *line_buff;
3658
  int error;
3659
  STATUS old_status;
3660
  FILE *sql_file;
3661
3662
  /* Skip space from file name */
3663
  while (my_isspace(charset_info,*line))
3664
    line++;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3665
  if (!(param = strchr(line, ' ')))    // Skip command name
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3666
    return put_info("Usage: \\. <filename> | source <filename>",
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3667
                    INFO_ERROR, 0,0);
1 by brian
clean slate
3668
  while (my_isspace(charset_info,*param))
3669
    param++;
3670
  end=strmake(source_name,param,sizeof(source_name)-1);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3671
  while (end > source_name && (my_isspace(charset_info,end[-1]) ||
1 by brian
clean slate
3672
                               my_iscntrl(charset_info,end[-1])))
3673
    end--;
3674
  end[0]=0;
3675
  unpack_filename(source_name,source_name);
3676
  /* open file name */
3677
  if (!(sql_file = my_fopen(source_name, O_RDONLY | O_BINARY,MYF(0))))
3678
  {
3679
    char buff[FN_REFLEN+60];
3680
    sprintf(buff,"Failed to open file '%s', error: %d", source_name,errno);
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3681
    return put_info(buff, INFO_ERROR, 0 ,0);
1 by brian
clean slate
3682
  }
3683
3684
  if (!(line_buff=batch_readline_init(opt_max_allowed_packet+512,sql_file)))
3685
  {
3686
    my_fclose(sql_file,MYF(0));
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3687
    return put_info("Can't initialize batch_readline", INFO_ERROR, 0 ,0);
1 by brian
clean slate
3688
  }
3689
3690
  /* Save old status */
3691
  old_status=status;
212.6.10 by Mats Kindahl
Removing redundant use of casts in client/ for memcmp(), memcpy(), memset(), and memmove().
3692
  memset(&status, 0, sizeof(status));
1 by brian
clean slate
3693
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3694
  // Run in batch mode
3695
  status.batch=old_status.batch;
1 by brian
clean slate
3696
  status.line_buff=line_buff;
3697
  status.file_name=source_name;
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3698
  // Empty command buffer
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
3699
  assert(glob_buffer!=NULL);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3700
  dynstr_set(glob_buffer, NULL);
1 by brian
clean slate
3701
  error= read_and_execute(false);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3702
  // Continue as before
3703
  status=old_status;
1 by brian
clean slate
3704
  my_fclose(sql_file,MYF(0));
3705
  batch_readline_end(line_buff);
3706
  return error;
3707
}
3708
3709
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3710
/* ARGSUSED */
1 by brian
clean slate
3711
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3712
com_delimiter(DYNAMIC_STRING *buffer __attribute__((unused)), char *line)
1 by brian
clean slate
3713
{
3714
  char buff[256], *tmp;
3715
3716
  strmake(buff, line, sizeof(buff) - 1);
3717
  tmp= get_arg(buff, 0);
3718
3719
  if (!tmp || !*tmp)
3720
  {
3721
    put_info("DELIMITER must be followed by a 'delimiter' character or string",
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3722
             INFO_ERROR, 0, 0);
1 by brian
clean slate
3723
    return 0;
3724
  }
3725
  else
3726
  {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3727
    if (strstr(tmp, "\\"))
1 by brian
clean slate
3728
    {
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3729
      put_info("DELIMITER cannot contain a backslash character",
3730
               INFO_ERROR, 0, 0);
1 by brian
clean slate
3731
      return 0;
3732
    }
3733
  }
3734
  strmake(delimiter, tmp, sizeof(delimiter) - 1);
3735
  delimiter_length= (int)strlen(delimiter);
3736
  delimiter_str= delimiter;
3737
  return 0;
3738
}
3739
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3740
/* ARGSUSED */
1 by brian
clean slate
3741
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3742
com_use(DYNAMIC_STRING *buffer __attribute__((unused)), char *line)
1 by brian
clean slate
3743
{
3744
  char *tmp, buff[FN_REFLEN + 1];
3745
  int select_db;
3746
212.6.1 by Mats Kindahl
Replacing all bzero() calls with memset() calls and removing the bzero.c file.
3747
  memset(buff, 0, sizeof(buff));
1 by brian
clean slate
3748
  strmake(buff, line, sizeof(buff) - 1);
3749
  tmp= get_arg(buff, 0);
3750
  if (!tmp || !*tmp)
3751
  {
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3752
    put_info("USE must be followed by a database name", INFO_ERROR, 0, 0);
1 by brian
clean slate
3753
    return 0;
3754
  }
3755
  /*
3756
    We need to recheck the current database, because it may change
3757
    under our feet, for example if DROP DATABASE or RENAME DATABASE
3758
    (latter one not yet available by the time the comment was written)
3759
  */
3760
  get_current_db();
3761
3762
  if (!current_db || cmp_database(charset_info, current_db,tmp))
3763
  {
3764
    if (one_database)
3765
    {
3766
      skip_updates= 1;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3767
      select_db= 0;    // don't do drizzle_select_db()
1 by brian
clean slate
3768
    }
3769
    else
206.3.1 by Patrick Galbraith
Most everything working with client rename
3770
      select_db= 2;    // do drizzle_select_db() and build_completion_hash()
1 by brian
clean slate
3771
  }
3772
  else
3773
  {
3774
    /*
3775
      USE to the current db specified.
206.3.1 by Patrick Galbraith
Most everything working with client rename
3776
      We do need to send drizzle_select_db() to make server
1 by brian
clean slate
3777
      update database level privileges, which might
3778
      change since last USE (see bug#10979).
3779
      For performance purposes, we'll skip rebuilding of completion hash.
3780
    */
3781
    skip_updates= 0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3782
    select_db= 1;      // do only drizzle_select_db(), without completion
1 by brian
clean slate
3783
  }
3784
3785
  if (select_db)
3786
  {
3787
    /*
3788
      reconnect once if connection is down or if connection was found to
3789
      be down during query
3790
    */
3791
    if (!connected && reconnect())
3792
      return opt_reconnect ? -1 : 1;                        // Fatal error
206.3.1 by Patrick Galbraith
Most everything working with client rename
3793
    if (drizzle_select_db(&drizzle,tmp))
1 by brian
clean slate
3794
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3795
      if (drizzle_errno(&drizzle) != CR_SERVER_GONE_ERROR)
3796
        return put_error(&drizzle);
1 by brian
clean slate
3797
3798
      if (reconnect())
3799
        return opt_reconnect ? -1 : 1;                      // Fatal error
206.3.1 by Patrick Galbraith
Most everything working with client rename
3800
      if (drizzle_select_db(&drizzle,tmp))
3801
        return put_error(&drizzle);
1 by brian
clean slate
3802
    }
3803
    my_free(current_db,MYF(MY_ALLOW_ZERO_PTR));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3804
    current_db= strdup(tmp);
1 by brian
clean slate
3805
    if (select_db > 1)
3806
      build_completion_hash(opt_rehash, 1);
3807
  }
3808
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3809
  put_info("Database changed",INFO_INFO, 0, 0);
1 by brian
clean slate
3810
  return 0;
3811
}
3812
3813
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3814
com_warnings(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3815
             char *line __attribute__((unused)))
1 by brian
clean slate
3816
{
3817
  show_warnings = 1;
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3818
  put_info("Show warnings enabled.",INFO_INFO, 0, 0);
1 by brian
clean slate
3819
  return 0;
3820
}
3821
3822
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3823
com_nowarnings(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3824
               char *line __attribute__((unused)))
1 by brian
clean slate
3825
{
3826
  show_warnings = 0;
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
3827
  put_info("Show warnings disabled.",INFO_INFO, 0, 0);
1 by brian
clean slate
3828
  return 0;
3829
}
3830
3831
/*
3832
  Gets argument from a command on the command line. If get_next_arg is
3833
  not defined, skips the command and returns the first argument. The
3834
  line is modified by adding zero to the end of the argument. If
3835
  get_next_arg is defined, then the function searches for end of string
3836
  first, after found, returns the next argument and adds zero to the
3837
  end. If you ever wish to use this feature, remember to initialize all
3838
  items in the array to zero first.
3839
*/
3840
143 by Brian Aker
Bool cleanup.
3841
char *get_arg(char *line, bool get_next_arg)
1 by brian
clean slate
3842
{
3843
  char *ptr, *start;
143 by Brian Aker
Bool cleanup.
3844
  bool quoted= 0, valid_arg= 0;
1 by brian
clean slate
3845
  char qtype= 0;
3846
3847
  ptr= line;
3848
  if (get_next_arg)
3849
  {
3850
    for (; *ptr; ptr++) ;
3851
    if (*(ptr + 1))
3852
      ptr++;
3853
  }
3854
  else
3855
  {
3856
    /* skip leading white spaces */
3857
    while (my_isspace(charset_info, *ptr))
3858
      ptr++;
3859
    if (*ptr == '\\') // short command was used
3860
      ptr+= 2;
3861
    else
3862
      while (*ptr &&!my_isspace(charset_info, *ptr)) // skip command
3863
        ptr++;
3864
  }
3865
  if (!*ptr)
3866
    return NullS;
3867
  while (my_isspace(charset_info, *ptr))
3868
    ptr++;
3869
  if (*ptr == '\'' || *ptr == '\"' || *ptr == '`')
3870
  {
3871
    qtype= *ptr;
3872
    quoted= 1;
3873
    ptr++;
3874
  }
3875
  for (start=ptr ; *ptr; ptr++)
3876
  {
3877
    if (*ptr == '\\' && ptr[1]) // escaped character
3878
    {
3879
      // Remove the backslash
3880
      strmov(ptr, ptr+1);
3881
    }
3882
    else if ((!quoted && *ptr == ' ') || (quoted && *ptr == qtype))
3883
    {
3884
      *ptr= 0;
3885
      break;
3886
    }
3887
  }
3888
  valid_arg= ptr != start;
3889
  return valid_arg ? start : NullS;
3890
}
3891
3892
3893
static int
206.3.1 by Patrick Galbraith
Most everything working with client rename
3894
sql_connect(char *host,char *database,char *user,char *password,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3895
                 uint silent)
1 by brian
clean slate
3896
{
3897
  if (connected)
3898
  {
3899
    connected= 0;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3900
    drizzle_close(&drizzle);
1 by brian
clean slate
3901
  }
202.2.4 by Monty Taylor
Merged from Patrick.
3902
  drizzle_create(&drizzle);
1 by brian
clean slate
3903
  if (opt_connect_timeout)
3904
  {
3905
    uint timeout=opt_connect_timeout;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3906
    drizzle_options(&drizzle,DRIZZLE_OPT_CONNECT_TIMEOUT,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3907
                  (char*) &timeout);
1 by brian
clean slate
3908
  }
3909
  if (opt_compress)
206.3.1 by Patrick Galbraith
Most everything working with client rename
3910
    drizzle_options(&drizzle,DRIZZLE_OPT_COMPRESS,NullS);
1 by brian
clean slate
3911
  if (opt_secure_auth)
206.3.1 by Patrick Galbraith
Most everything working with client rename
3912
    drizzle_options(&drizzle, DRIZZLE_SECURE_AUTH, (char *) &opt_secure_auth);
1 by brian
clean slate
3913
  if (using_opt_local_infile)
206.3.1 by Patrick Galbraith
Most everything working with client rename
3914
    drizzle_options(&drizzle,DRIZZLE_OPT_LOCAL_INFILE, (char*) &opt_local_infile);
261.1.5 by Brian Aker
Send plain text password in scramble for moment
3915
  drizzle_options(&drizzle,DRIZZLE_OPT_PROTOCOL,(char*)&opt_protocol);
1 by brian
clean slate
3916
  if (safe_updates)
3917
  {
3918
    char init_command[100];
3919
    sprintf(init_command,
206.3.1 by Patrick Galbraith
Most everything working with client rename
3920
            "SET SQL_SAFE_UPDATES=1,SQL_SELECT_LIMIT=%"PRIu32
77.1.107 by Monty Taylor
Fixed build warnings.
3921
            ",SQL_MAX_JOIN_SIZE=%"PRIu32,
206.3.1 by Patrick Galbraith
Most everything working with client rename
3922
            select_limit, max_join_size);
3923
    drizzle_options(&drizzle, DRIZZLE_INIT_COMMAND, init_command);
1 by brian
clean slate
3924
  }
3925
  if (default_charset_used)
206.3.1 by Patrick Galbraith
Most everything working with client rename
3926
    drizzle_options(&drizzle, DRIZZLE_SET_CHARSET_NAME, default_charset);
3927
  if (!drizzle_connect(&drizzle, host, user, password,
3928
                          database, opt_drizzle_port, opt_drizzle_unix_port,
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3929
                          connect_flag | CLIENT_MULTI_STATEMENTS))
1 by brian
clean slate
3930
  {
3931
    if (!silent ||
206.3.1 by Patrick Galbraith
Most everything working with client rename
3932
        (drizzle_errno(&drizzle) != CR_CONN_HOST_ERROR &&
3933
         drizzle_errno(&drizzle) != CR_CONNECTION_ERROR))
1 by brian
clean slate
3934
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3935
      (void) put_error(&drizzle);
1 by brian
clean slate
3936
      (void) fflush(stdout);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3937
      return ignore_errors ? -1 : 1;    // Abort
1 by brian
clean slate
3938
    }
206.3.1 by Patrick Galbraith
Most everything working with client rename
3939
    return -1;          // Retryable
1 by brian
clean slate
3940
  }
3941
  connected=1;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3942
  drizzle.reconnect= debug_info_flag; // We want to know if this happens
1 by brian
clean slate
3943
  build_completion_hash(opt_rehash, 1);
3944
  return 0;
3945
}
3946
3947
3948
static int
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
3949
com_status(DYNAMIC_STRING *buffer __attribute__((unused)),
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3950
           char *line __attribute__((unused)))
1 by brian
clean slate
3951
{
3952
  const char *status_str;
3953
  char buff[40];
151 by Brian Aker
Ulonglong to uint64_t
3954
  uint64_t id;
206.3.1 by Patrick Galbraith
Most everything working with client rename
3955
  DRIZZLE_RES *result;
1 by brian
clean slate
3956
3957
  tee_puts("--------------", stdout);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3958
  usage(1);          /* Print version */
1 by brian
clean slate
3959
  if (connected)
3960
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3961
    tee_fprintf(stdout, "\nConnection id:\t\t%lu\n",drizzle_thread_id(&drizzle));
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3962
    /*
3963
      Don't remove "limit 1",
1 by brian
clean slate
3964
      it is protection againts SQL_SELECT_LIMIT=0
3965
    */
206.3.1 by Patrick Galbraith
Most everything working with client rename
3966
    if (!drizzle_query(&drizzle,"select DATABASE(), USER() limit 1") &&
3967
        (result=drizzle_use_result(&drizzle)))
1 by brian
clean slate
3968
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
3969
      DRIZZLE_ROW cur=drizzle_fetch_row(result);
1 by brian
clean slate
3970
      if (cur)
3971
      {
3972
        tee_fprintf(stdout, "Current database:\t%s\n", cur[0] ? cur[0] : "");
3973
        tee_fprintf(stdout, "Current user:\t\t%s\n", cur[1]);
3974
      }
206.3.1 by Patrick Galbraith
Most everything working with client rename
3975
      drizzle_free_result(result);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
3976
    }
3977
    tee_puts("SSL:\t\t\tNot in use", stdout);
1 by brian
clean slate
3978
  }
3979
  else
3980
  {
3981
    vidattr(A_BOLD);
3982
    tee_fprintf(stdout, "\nNo connection\n");
3983
    vidattr(A_NORMAL);
3984
    return 0;
3985
  }
3986
  if (skip_updates)
3987
  {
3988
    vidattr(A_BOLD);
3989
    tee_fprintf(stdout, "\nAll updates ignored to this database\n");
3990
    vidattr(A_NORMAL);
3991
  }
3992
  tee_fprintf(stdout, "Current pager:\t\t%s\n", pager);
3993
  tee_fprintf(stdout, "Using outfile:\t\t'%s'\n", opt_outfile ? outfile : "");
3994
  tee_fprintf(stdout, "Using delimiter:\t%s\n", delimiter);
206.3.1 by Patrick Galbraith
Most everything working with client rename
3995
  tee_fprintf(stdout, "Server version:\t\t%s\n", server_version_string(&drizzle));
3996
  tee_fprintf(stdout, "Protocol version:\t%d\n", drizzle_get_proto_info(&drizzle));
3997
  tee_fprintf(stdout, "Connection:\t\t%s\n", drizzle_get_host_info(&drizzle));
3998
  if ((id= drizzle_insert_id(&drizzle)))
1 by brian
clean slate
3999
    tee_fprintf(stdout, "Insert id:\t\t%s\n", llstr(id, buff));
4000
4001
  /* "limit 1" is protection against SQL_SELECT_LIMIT=0 */
206.3.1 by Patrick Galbraith
Most everything working with client rename
4002
  if (!drizzle_query(&drizzle,"select @@character_set_client, @@character_set_connection, @@character_set_server, @@character_set_database limit 1") &&
4003
      (result=drizzle_use_result(&drizzle)))
1 by brian
clean slate
4004
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
4005
    DRIZZLE_ROW cur=drizzle_fetch_row(result);
1 by brian
clean slate
4006
    if (cur)
4007
    {
4008
      tee_fprintf(stdout, "Server characterset:\t%s\n", cur[2] ? cur[2] : "");
4009
      tee_fprintf(stdout, "Db     characterset:\t%s\n", cur[3] ? cur[3] : "");
4010
      tee_fprintf(stdout, "Client characterset:\t%s\n", cur[0] ? cur[0] : "");
4011
      tee_fprintf(stdout, "Conn.  characterset:\t%s\n", cur[1] ? cur[1] : "");
4012
    }
206.3.1 by Patrick Galbraith
Most everything working with client rename
4013
    drizzle_free_result(result);
1 by brian
clean slate
4014
  }
4015
  else
4016
  {
4017
    /* Probably pre-4.1 server */
4018
    tee_fprintf(stdout, "Client characterset:\t%s\n", charset_info->csname);
206.3.1 by Patrick Galbraith
Most everything working with client rename
4019
    tee_fprintf(stdout, "Server characterset:\t%s\n", drizzle.charset->csname);
1 by brian
clean slate
4020
  }
4021
206.3.1 by Patrick Galbraith
Most everything working with client rename
4022
  if (strstr(drizzle_get_host_info(&drizzle),"TCP/IP") || ! drizzle.unix_socket)
4023
    tee_fprintf(stdout, "TCP port:\t\t%d\n", drizzle.port);
1 by brian
clean slate
4024
  else
206.3.1 by Patrick Galbraith
Most everything working with client rename
4025
    tee_fprintf(stdout, "UNIX socket:\t\t%s\n", drizzle.unix_socket);
4026
  if (drizzle.net.compress)
1 by brian
clean slate
4027
    tee_fprintf(stdout, "Protocol:\t\tCompressed\n");
4028
206.3.1 by Patrick Galbraith
Most everything working with client rename
4029
  if ((status_str= drizzle_stat(&drizzle)) && !drizzle_error(&drizzle)[0])
1 by brian
clean slate
4030
  {
4031
    ulong sec;
4032
    const char *pos= strchr(status_str,' ');
4033
    /* print label */
4034
    tee_fprintf(stdout, "%.*s\t\t\t", (int) (pos-status_str), status_str);
4035
    if ((status_str= str2int(pos,10,0,LONG_MAX,(long*) &sec)))
4036
    {
4037
      nice_time((double) sec,buff,0);
206.3.1 by Patrick Galbraith
Most everything working with client rename
4038
      tee_puts(buff, stdout);      /* print nice time */
1 by brian
clean slate
4039
      while (*status_str == ' ')
4040
        status_str++;  /* to next info */
4041
      tee_putc('\n', stdout);
4042
      tee_puts(status_str, stdout);
4043
    }
4044
  }
4045
  if (safe_updates)
4046
  {
4047
    vidattr(A_BOLD);
4048
    tee_fprintf(stdout, "\nNote that you are running in safe_update_mode:\n");
4049
    vidattr(A_NORMAL);
4050
    tee_fprintf(stdout, "\
4051
UPDATEs and DELETEs that don't use a key in the WHERE clause are not allowed.\n\
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4052
(One can force an UPDATE/DELETE by adding LIMIT # at the end of the command.)\n \
4053
SELECT has an automatic 'LIMIT %lu' if LIMIT is not used.\n             \
1 by brian
clean slate
4054
Max number of examined row combination in a join is set to: %lu\n\n",
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4055
                select_limit, max_join_size);
1 by brian
clean slate
4056
  }
4057
  tee_puts("--------------\n", stdout);
4058
  return 0;
4059
}
4060
4061
static const char *
206.3.1 by Patrick Galbraith
Most everything working with client rename
4062
server_version_string(DRIZZLE *con)
1 by brian
clean slate
4063
{
4064
  static char buf[MAX_SERVER_VERSION_LENGTH] = "";
4065
4066
  /* Only one thread calls this, so no synchronization is needed */
4067
  if (buf[0] == '\0')
4068
  {
4069
    char *bufp = buf;
206.3.1 by Patrick Galbraith
Most everything working with client rename
4070
    DRIZZLE_RES *result;
1 by brian
clean slate
4071
206.3.1 by Patrick Galbraith
Most everything working with client rename
4072
    bufp= strnmov(buf, drizzle_get_server_info(con), sizeof buf);
1 by brian
clean slate
4073
4074
    /* "limit 1" is protection against SQL_SELECT_LIMIT=0 */
206.3.1 by Patrick Galbraith
Most everything working with client rename
4075
    if (!drizzle_query(con, "select @@version_comment limit 1") &&
4076
        (result = drizzle_use_result(con)))
1 by brian
clean slate
4077
    {
206.3.1 by Patrick Galbraith
Most everything working with client rename
4078
      DRIZZLE_ROW cur = drizzle_fetch_row(result);
1 by brian
clean slate
4079
      if (cur && cur[0])
4080
      {
4081
        bufp = strxnmov(bufp, sizeof buf - (bufp - buf), " ", cur[0], NullS);
4082
      }
206.3.1 by Patrick Galbraith
Most everything working with client rename
4083
      drizzle_free_result(result);
1 by brian
clean slate
4084
    }
4085
4086
    /* str*nmov doesn't guarantee NUL-termination */
4087
    if (bufp == buf + sizeof buf)
4088
      buf[sizeof buf - 1] = '\0';
4089
  }
4090
4091
  return buf;
4092
}
4093
4094
static int
4095
put_info(const char *str,INFO_TYPE info_type, uint error, const char *sqlstate)
4096
{
4097
  FILE *file= (info_type == INFO_ERROR ? stderr : stdout);
4098
  static int inited=0;
4099
4100
  if (status.batch)
4101
  {
4102
    if (info_type == INFO_ERROR)
4103
    {
4104
      (void) fflush(file);
4105
      fprintf(file,"ERROR");
4106
      if (error)
4107
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4108
        if (sqlstate)
4109
          (void) fprintf(file," %d (%s)",error, sqlstate);
1 by brian
clean slate
4110
        else
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4111
          (void) fprintf(file," %d",error);
1 by brian
clean slate
4112
      }
4113
      if (status.query_start_line && line_numbers)
4114
      {
77.3.19 by Monty Taylor
Merged fro mcodestyle.
4115
        (void) fprintf(file," at line %"PRIu32,status.query_start_line);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4116
        if (status.file_name)
4117
          (void) fprintf(file," in file: '%s'", status.file_name);
1 by brian
clean slate
4118
      }
4119
      (void) fprintf(file,": %s\n",str);
4120
      (void) fflush(file);
4121
      if (!ignore_errors)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4122
        return 1;
1 by brian
clean slate
4123
    }
4124
    else if (info_type == INFO_RESULT && verbose > 1)
4125
      tee_puts(str, file);
4126
    if (unbuffered)
4127
      fflush(file);
4128
    return info_type == INFO_ERROR ? -1 : 0;
4129
  }
4130
  if (!opt_silent || info_type == INFO_ERROR)
4131
  {
4132
    if (!inited)
4133
    {
4134
      inited=1;
4135
#ifdef HAVE_SETUPTERM
4136
      (void) setupterm((char *)0, 1, (int *) 0);
4137
#endif
4138
    }
4139
    if (info_type == INFO_ERROR)
4140
    {
4141
      if (!opt_nobeep)
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
4142
        /* This should make a bell */
4143
        putchar('\a');
1 by brian
clean slate
4144
      vidattr(A_STANDOUT);
4145
      if (error)
4146
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4147
        if (sqlstate)
1 by brian
clean slate
4148
          (void) tee_fprintf(file, "ERROR %d (%s): ", error, sqlstate);
4149
        else
4150
          (void) tee_fprintf(file, "ERROR %d: ", error);
4151
      }
4152
      else
4153
        tee_puts("ERROR: ", file);
4154
    }
4155
    else
4156
      vidattr(A_BOLD);
4157
    (void) tee_puts(str, file);
4158
    vidattr(A_NORMAL);
4159
  }
4160
  if (unbuffered)
4161
    fflush(file);
4162
  return info_type == INFO_ERROR ? -1 : 0;
4163
}
4164
4165
4166
static int
206.3.1 by Patrick Galbraith
Most everything working with client rename
4167
put_error(DRIZZLE *con)
1 by brian
clean slate
4168
{
206.3.1 by Patrick Galbraith
Most everything working with client rename
4169
  return put_info(drizzle_error(con), INFO_ERROR, drizzle_errno(con),
4170
                  drizzle_sqlstate(con));
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4171
}
1 by brian
clean slate
4172
4173
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4174
static void remove_cntrl(DYNAMIC_STRING *buffer)
1 by brian
clean slate
4175
{
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4176
  char *start=  buffer->str;
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4177
  char *end= start + (buffer->length);
1 by brian
clean slate
4178
  while (start < end && !my_isgraph(charset_info,end[-1]))
4179
    end--;
258.1.2 by Mark Atwood
fix bug 250078, parser error with space at end of statement
4180
  uint chars_to_truncate = (buffer->length) - (end-start);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4181
  if (buffer->length > chars_to_truncate)
4182
    dynstr_trunc(buffer, chars_to_truncate);
1 by brian
clean slate
4183
}
4184
4185
4186
void tee_fprintf(FILE *file, const char *fmt, ...)
4187
{
4188
  va_list args;
4189
4190
  va_start(args, fmt);
4191
  (void) vfprintf(file, fmt, args);
4192
  va_end(args);
4193
4194
  if (opt_outfile)
4195
  {
4196
    va_start(args, fmt);
4197
    (void) vfprintf(OUTFILE, fmt, args);
4198
    va_end(args);
4199
  }
4200
}
4201
4202
4203
void tee_fputs(const char *s, FILE *file)
4204
{
4205
  fputs(s, file);
4206
  if (opt_outfile)
4207
    fputs(s, OUTFILE);
4208
}
4209
4210
4211
void tee_puts(const char *s, FILE *file)
4212
{
4213
  fputs(s, file);
4214
  fputc('\n', file);
4215
  if (opt_outfile)
4216
  {
4217
    fputs(s, OUTFILE);
4218
    fputc('\n', OUTFILE);
4219
  }
4220
}
4221
4222
void tee_putc(int c, FILE *file)
4223
{
4224
  putc(c, file);
4225
  if (opt_outfile)
4226
    putc(c, OUTFILE);
4227
}
4228
4229
#include <sys/times.h>
206.3.1 by Patrick Galbraith
Most everything working with client rename
4230
#ifdef _SC_CLK_TCK        // For mit-pthreads
1 by brian
clean slate
4231
#undef CLOCKS_PER_SEC
4232
#define CLOCKS_PER_SEC (sysconf(_SC_CLK_TCK))
4233
#endif
4234
4235
static ulong start_timer(void)
4236
{
4237
  struct tms tms_tmp;
4238
  return times(&tms_tmp);
4239
}
4240
4241
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4242
/**
202.1.25 by Monty Taylor
Fixed change of mysql.com -> drizzle.com.
4243
   Write as many as 52+1 bytes to buff, in the form of a legible
4244
   duration of time.
1 by brian
clean slate
4245
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4246
   len("4294967296 days, 23 hours, 59 minutes, 60.00 seconds")  ->  52
1 by brian
clean slate
4247
*/
4248
static void nice_time(double sec,char *buff,bool part_second)
4249
{
4250
  ulong tmp;
4251
  if (sec >= 3600.0*24)
4252
  {
4253
    tmp=(ulong) floor(sec/(3600.0*24));
4254
    sec-=3600.0*24*tmp;
4255
    buff=int10_to_str((long) tmp, buff, 10);
4256
    buff=strmov(buff,tmp > 1 ? " days " : " day ");
4257
  }
4258
  if (sec >= 3600.0)
4259
  {
4260
    tmp=(ulong) floor(sec/3600.0);
4261
    sec-=3600.0*tmp;
4262
    buff=int10_to_str((long) tmp, buff, 10);
4263
    buff=strmov(buff,tmp > 1 ? " hours " : " hour ");
4264
  }
4265
  if (sec >= 60.0)
4266
  {
4267
    tmp=(ulong) floor(sec/60.0);
4268
    sec-=60.0*tmp;
4269
    buff=int10_to_str((long) tmp, buff, 10);
4270
    buff=strmov(buff," min ");
4271
  }
4272
  if (part_second)
4273
    sprintf(buff,"%.2f sec",sec);
4274
  else
4275
    sprintf(buff,"%d sec",(int) sec);
4276
}
4277
4278
4279
static void end_timer(ulong start_time,char *buff)
4280
{
4281
  nice_time((double) (start_timer() - start_time) /
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4282
            CLOCKS_PER_SEC,buff,1);
1 by brian
clean slate
4283
}
4284
4285
206.3.1 by Patrick Galbraith
Most everything working with client rename
4286
static void drizzle_end_timer(ulong start_time,char *buff)
1 by brian
clean slate
4287
{
4288
  buff[0]=' ';
4289
  buff[1]='(';
4290
  end_timer(start_time,buff+2);
4291
  strmov(strend(buff),")");
4292
}
4293
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4294
static const char * construct_prompt()
1 by brian
clean slate
4295
{
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4296
  // Erase the old prompt
77.3.3 by Monty Taylor
Last change to migrate to glib from sql_string.
4297
  assert(processed_prompt!=NULL);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4298
  dynstr_set(processed_prompt, NULL);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4299
4300
  // Get the date struct
4301
  time_t  lclock = time(NULL);
1 by brian
clean slate
4302
  struct tm *t = localtime(&lclock);
4303
4304
  /* parse thru the settings for the prompt */
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
4305
  for (char *c= current_prompt; *c; (void)*c++)
1 by brian
clean slate
4306
  {
4307
    if (*c != PROMPT_CHAR)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4308
    {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4309
      dynstr_append_mem(processed_prompt, c, 1);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4310
    }
1 by brian
clean slate
4311
    else
4312
    {
77.3.7 by Monty Taylor
Made mysql into a pure-C program.
4313
      int getHour;
4314
      int getYear;
4315
      char* dateTime= NULL;
1 by brian
clean slate
4316
      switch (*++c) {
4317
      case '\0':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4318
        // stop it from going beyond if ends with %
4319
        c--;
4320
        break;
1 by brian
clean slate
4321
      case 'c':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4322
        add_int_to_prompt(++prompt_counter);
4323
        break;
1 by brian
clean slate
4324
      case 'v':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4325
        if (connected)
202.2.4 by Monty Taylor
Merged from Patrick.
4326
          dynstr_append(processed_prompt, drizzle_get_server_info(&drizzle));
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4327
        else
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4328
          dynstr_append(processed_prompt, "not_connected");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4329
        break;
1 by brian
clean slate
4330
      case 'd':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4331
        dynstr_append(processed_prompt, current_db ? current_db : "(none)");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4332
        break;
1 by brian
clean slate
4333
      case 'h':
4334
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4335
        const char *prompt;
206.3.1 by Patrick Galbraith
Most everything working with client rename
4336
        prompt= connected ? drizzle_get_host_info(&drizzle) : "not_connected";
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4337
        if (strstr(prompt, "Localhost"))
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4338
          dynstr_append(processed_prompt, "localhost");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4339
        else
4340
        {
4341
          const char *end=strcend(prompt,' ');
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4342
          dynstr_append_mem(processed_prompt, prompt, (end-prompt));
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4343
        }
4344
        break;
1 by brian
clean slate
4345
      }
4346
      case 'p':
4347
      {
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4348
        if (!connected)
4349
        {
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4350
          dynstr_append(processed_prompt, "not_connected");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4351
          break;
4352
        }
1 by brian
clean slate
4353
206.3.1 by Patrick Galbraith
Most everything working with client rename
4354
        const char *host_info = drizzle_get_host_info(&drizzle);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4355
        if (strstr(host_info, "memory"))
4356
        {
202.2.4 by Monty Taylor
Merged from Patrick.
4357
          dynstr_append(processed_prompt, drizzle.host);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4358
        }
4359
        else if (strstr(host_info,"TCP/IP") ||
206.3.1 by Patrick Galbraith
Most everything working with client rename
4360
                 !drizzle.unix_socket)
4361
          add_int_to_prompt(drizzle.port);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4362
        else
4363
        {
206.3.1 by Patrick Galbraith
Most everything working with client rename
4364
          char *pos=strrchr(drizzle.unix_socket,'/');
202.2.4 by Monty Taylor
Merged from Patrick.
4365
          dynstr_append(processed_prompt, pos ? pos+1 : drizzle.unix_socket);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4366
        }
1 by brian
clean slate
4367
      }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4368
      break;
1 by brian
clean slate
4369
      case 'U':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4370
        if (!full_username)
4371
          init_username();
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4372
        dynstr_append(processed_prompt, full_username ? full_username :
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4373
                        (current_user ?  current_user : "(unknown)"));
4374
        break;
1 by brian
clean slate
4375
      case 'u':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4376
        if (!full_username)
4377
          init_username();
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4378
        dynstr_append(processed_prompt, part_username ? part_username :
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4379
                        (current_user ?  current_user : "(unknown)"));
4380
        break;
1 by brian
clean slate
4381
      case PROMPT_CHAR:
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4382
        {
4383
          char c= PROMPT_CHAR;
4384
          dynstr_append_mem(processed_prompt, &c, 1);
4385
        }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4386
        break;
1 by brian
clean slate
4387
      case 'n':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4388
        {
4389
          char c= '\n';
4390
          dynstr_append_mem(processed_prompt, &c, 1);
4391
        }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4392
        break;
1 by brian
clean slate
4393
      case ' ':
4394
      case '_':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4395
        {
4396
          char c= ' ';
4397
          dynstr_append_mem(processed_prompt, &c, 1);
4398
        }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4399
        break;
1 by brian
clean slate
4400
      case 'R':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4401
        if (t->tm_hour < 10)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4402
          add_int_to_prompt(0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4403
        add_int_to_prompt(t->tm_hour);
4404
        break;
1 by brian
clean slate
4405
      case 'r':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4406
        getHour = t->tm_hour % 12;
4407
        if (getHour == 0)
4408
          getHour=12;
4409
        if (getHour < 10)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4410
          add_int_to_prompt(0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4411
        add_int_to_prompt(getHour);
4412
        break;
1 by brian
clean slate
4413
      case 'm':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4414
        if (t->tm_min < 10)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4415
          add_int_to_prompt(0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4416
        add_int_to_prompt(t->tm_min);
4417
        break;
1 by brian
clean slate
4418
      case 'y':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4419
        getYear = t->tm_year % 100;
4420
        if (getYear < 10)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4421
          add_int_to_prompt(0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4422
        add_int_to_prompt(getYear);
4423
        break;
1 by brian
clean slate
4424
      case 'Y':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4425
        add_int_to_prompt(t->tm_year+1900);
4426
        break;
1 by brian
clean slate
4427
      case 'D':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4428
        dateTime = ctime(&lclock);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4429
        dynstr_append(processed_prompt, strtok(dateTime,"\n"));
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4430
        break;
1 by brian
clean slate
4431
      case 's':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4432
        if (t->tm_sec < 10)
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4433
          add_int_to_prompt(0);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4434
        add_int_to_prompt(t->tm_sec);
4435
        break;
1 by brian
clean slate
4436
      case 'w':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4437
        dynstr_append(processed_prompt, (day_names[t->tm_wday]));
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4438
        break;
1 by brian
clean slate
4439
      case 'P':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4440
        dynstr_append(processed_prompt, t->tm_hour < 12 ? "am" : "pm");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4441
        break;
1 by brian
clean slate
4442
      case 'o':
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4443
        add_int_to_prompt(t->tm_mon+1);
4444
        break;
1 by brian
clean slate
4445
      case 'O':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4446
        dynstr_append(processed_prompt, month_names[t->tm_mon]);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4447
        break;
1 by brian
clean slate
4448
      case '\'':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4449
        dynstr_append(processed_prompt, "'");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4450
        break;
1 by brian
clean slate
4451
      case '"':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4452
        dynstr_append(processed_prompt, "\"");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4453
        break;
1 by brian
clean slate
4454
      case 'S':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4455
        dynstr_append(processed_prompt, ";");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4456
        break;
1 by brian
clean slate
4457
      case 't':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4458
        dynstr_append(processed_prompt, "\t");
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4459
        break;
1 by brian
clean slate
4460
      case 'l':
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4461
        dynstr_append(processed_prompt, delimiter_str);
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4462
        break;
1 by brian
clean slate
4463
      default:
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4464
        dynstr_append_mem(processed_prompt, c, 1);
1 by brian
clean slate
4465
      }
4466
    }
4467
  }
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4468
  return processed_prompt->str;
1 by brian
clean slate
4469
}
4470
4471
4472
static void add_int_to_prompt(int toadd)
4473
{
4474
  char buffer[16];
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4475
  int10_to_str(toadd, buffer, 10);
4476
  dynstr_append(processed_prompt, buffer);
1 by brian
clean slate
4477
}
4478
4479
static void init_username()
4480
{
4481
  my_free(full_username,MYF(MY_ALLOW_ZERO_PTR));
4482
  my_free(part_username,MYF(MY_ALLOW_ZERO_PTR));
4483
206.3.1 by Patrick Galbraith
Most everything working with client rename
4484
  DRIZZLE_RES *result;
4485
  if (!drizzle_query(&drizzle,"select USER()") &&
4486
      (result=drizzle_use_result(&drizzle)))
1 by brian
clean slate
4487
  {
206.3.1 by Patrick Galbraith
Most everything working with client rename
4488
    DRIZZLE_ROW cur=drizzle_fetch_row(result);
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4489
    full_username= strdup(cur[0]);
4490
    part_username= strdup(strtok(cur[0],"@"));
202.1.25 by Monty Taylor
Fixed change of mysql.com -> drizzle.com.
4491
    (void) drizzle_fetch_row(result);        // Read eof
1 by brian
clean slate
4492
  }
4493
}
4494
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
4495
static int com_prompt(DYNAMIC_STRING *buffer __attribute__((unused)),
202.1.25 by Monty Taylor
Fixed change of mysql.com -> drizzle.com.
4496
                      char *line)
1 by brian
clean slate
4497
{
4498
  char *ptr=strchr(line, ' ');
4499
  prompt_counter = 0;
4500
  my_free(current_prompt,MYF(MY_ALLOW_ZERO_PTR));
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4501
  current_prompt= strdup(ptr ? ptr+1 : default_prompt);
1 by brian
clean slate
4502
  if (!ptr)
77.3.2 by Monty Taylor
Got it compiling... now, too bad it doesn't work.
4503
    tee_fprintf(stdout, "Returning to default PROMPT of %s\n",
182.1.2 by Jim Winstead
Various fixes to enable compilation on Mac OS X, and remove the glib dependency.
4504
                default_prompt);
1 by brian
clean slate
4505
  else
4506
    tee_fprintf(stdout, "PROMPT set to '%s'\n", current_prompt);
4507
  return 0;
4508
}