~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2010-10-09 17:44:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1853.
  • Revision ID: brian@tangent.org-20101009174413-4cs0q58kw0fjd45y
First pass through adding back user_locks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
18
18
 */
19
19
 
20
20
#include "config.h"
21
 
 
22
 
#include <drizzled/configmake.h>
23
 
#include <drizzled/atomics.h>
24
 
#include <drizzled/data_home.h>
 
21
#include "drizzled/configmake.h"
 
22
#include "drizzled/atomics.h"
 
23
#include "drizzled/data_home.h"
25
24
 
26
25
#include <netdb.h>
27
26
#include <sys/types.h>
32
31
#include <stdexcept>
33
32
 
34
33
#include <boost/program_options.hpp>
35
 
#include <drizzled/program_options/config_file.h>
 
34
#include "drizzled/program_options/config_file.h"
36
35
#include <boost/thread/recursive_mutex.hpp>
37
36
#include <boost/thread/mutex.hpp>
38
 
#include <boost/thread/shared_mutex.hpp>
39
37
#include <boost/thread/condition_variable.hpp>
40
38
#include <boost/filesystem.hpp>
41
 
#include <boost/detail/atomic_count.hpp>
42
39
 
43
 
#include <drizzled/cached_directory.h>
44
 
#include <drizzled/charset.h>
45
 
#include <drizzled/data_home.h>
46
 
#include <drizzled/debug.h>
47
 
#include <drizzled/definition/cache.h>
48
 
#include <drizzled/drizzled.h>
 
40
#include "drizzled/internal/my_sys.h"
 
41
#include "drizzled/internal/my_bit.h"
 
42
#include <drizzled/my_hash.h>
 
43
#include <drizzled/error.h>
49
44
#include <drizzled/errmsg_print.h>
50
 
#include <drizzled/error.h>
51
 
#include <drizzled/global_buffer.h>
52
 
#include <drizzled/internal/my_bit.h>
53
 
#include <drizzled/internal/my_sys.h>
 
45
#include <drizzled/tztime.h>
 
46
#include <drizzled/sql_base.h>
 
47
#include <drizzled/show.h>
 
48
#include <drizzled/sql_parse.h>
54
49
#include <drizzled/item/cmpfunc.h>
 
50
#include <drizzled/session.h>
55
51
#include <drizzled/item/create.h>
56
 
#include <drizzled/message/cache.h>
57
 
#include <drizzled/module/load_list.h>
58
 
#include <drizzled/module/registry.h>
59
 
#include <drizzled/my_hash.h>
60
 
#include <drizzled/plugin/client.h>
61
 
#include <drizzled/plugin/error_message.h>
62
 
#include <drizzled/plugin/event_observer.h>
63
 
#include <drizzled/plugin/listen.h>
64
 
#include <drizzled/plugin/monitored_in_transaction.h>
65
 
#include <drizzled/plugin/scheduler.h>
66
 
#include <drizzled/plugin/storage_engine.h>
67
 
#include <drizzled/plugin/xa_resource_manager.h>
68
 
#include <drizzled/probes.h>
69
 
#include <drizzled/replication_services.h> /* For ReplicationServices::evaluateRegisteredPlugins() */
70
 
#include <drizzled/session.h>
71
 
#include <drizzled/session/cache.h>
72
 
#include <drizzled/show.h>
73
 
#include <drizzled/sql_base.h>
74
 
#include <drizzled/sql_parse.h>
75
 
#include <drizzled/temporal_format.h> /* For init_temporal_formats() */
76
 
#include <drizzled/tztime.h>
77
52
#include <drizzled/unireg.h>
78
 
#include <plugin/myisam/myisam.h>
79
 
 
80
 
#include "drizzled/visibility.h"
 
53
#include "drizzled/temporal_format.h" /* For init_temporal_formats() */
 
54
#include "drizzled/plugin/listen.h"
 
55
#include "drizzled/plugin/error_message.h"
 
56
#include "drizzled/plugin/client.h"
 
57
#include "drizzled/plugin/scheduler.h"
 
58
#include "drizzled/plugin/xa_resource_manager.h"
 
59
#include "drizzled/plugin/monitored_in_transaction.h"
 
60
#include "drizzled/replication_services.h" /* For ReplicationServices::evaluateRegisteredPlugins() */
 
61
#include "drizzled/probes.h"
 
62
#include "drizzled/session_list.h"
 
63
#include "drizzled/charset.h"
 
64
#include "plugin/myisam/myisam.h"
 
65
#include "drizzled/drizzled.h"
 
66
#include "drizzled/module/registry.h"
 
67
#include "drizzled/module/load_list.h"
81
68
 
82
69
#include <google/protobuf/stubs/common.h>
83
70
 
84
 
#include <drizzled/refresh_version.h>
85
 
 
86
71
#if TIME_WITH_SYS_TIME
87
72
# include <sys/time.h>
88
73
# include <time.h>
137
122
#endif
138
123
 
139
124
#include "drizzled/internal/my_pthread.h"                       // For thr_setconcurency()
140
 
#include "drizzled/constrained_value.h"
141
125
 
142
126
#include <drizzled/gettext.h>
143
127
 
144
128
 
145
 
#ifdef HAVE_VALGRIND
 
129
#ifdef HAVE_purify
146
130
#define IF_PURIFY(A,B) (A)
147
131
#else
148
132
#define IF_PURIFY(A,B) (B)
158
142
namespace po=boost::program_options;
159
143
namespace dpo=drizzled::program_options;
160
144
 
161
 
bool opt_daemon= false;
162
145
 
163
146
namespace drizzled
164
147
{
165
148
 
 
149
#define mysqld_charset &my_charset_utf8_general_ci
166
150
inline void setup_fpu()
167
151
{
168
152
#if defined(__FreeBSD__) && defined(HAVE_IEEEFP_H)
234
218
 
235
219
/* Global variables */
236
220
 
 
221
bool volatile ready_to_exit;
237
222
char *drizzled_user;
238
223
bool volatile select_thread_in_use;
239
224
bool volatile abort_loop;
240
 
DRIZZLED_API bool volatile shutdown_in_progress;
 
225
bool volatile shutdown_in_progress;
241
226
char *opt_scheduler_default;
242
227
const char *opt_scheduler= NULL;
243
228
 
244
 
DRIZZLED_API size_t my_thread_stack_size= 0;
 
229
size_t my_thread_stack_size= 0;
245
230
 
246
231
/*
247
232
  Legacy global plugin::StorageEngine. These will be removed (please do not add more).
252
237
bool calling_initgroups= false; /**< Used in SIGSEGV handler. */
253
238
 
254
239
uint32_t drizzled_bind_timeout;
 
240
std::bitset<12> test_flags;
255
241
uint32_t dropping_tables, ha_open_options;
256
242
uint32_t tc_heuristic_recover= 0;
257
243
uint64_t session_startup_options;
258
 
back_log_constraints back_log(50);
259
 
DRIZZLED_API uint32_t server_id;
 
244
uint32_t back_log;
 
245
uint32_t server_id;
260
246
uint64_t table_cache_size;
261
247
size_t table_def_size;
 
248
uint64_t max_connect_errors;
262
249
uint32_t global_thread_id= 1UL;
263
250
pid_t current_pid;
264
251
 
310
297
 
311
298
char system_time_zone[30];
312
299
char *default_tz_name;
313
 
DRIZZLED_API char glob_hostname[FN_REFLEN];
 
300
char glob_hostname[FN_REFLEN];
314
301
 
315
302
char *opt_tc_log_file;
316
303
const key_map key_map_empty(0);
325
312
const char *in_additional_cond= "<IN COND>";
326
313
const char *in_having_cond= "<IN HAVING>";
327
314
 
 
315
my_decimal decimal_zero;
328
316
/* classes for comparation parsing/processing */
329
317
 
330
318
FILE *stderror_file=0;
331
319
 
332
 
drizzle_system_variables global_system_variables;
333
 
drizzle_system_variables max_system_variables;
334
 
global_counters current_global_counters;
 
320
struct system_variables global_system_variables;
 
321
struct system_variables max_system_variables;
 
322
struct global_counters current_global_counters;
335
323
 
336
 
DRIZZLED_API const CHARSET_INFO *system_charset_info;
337
 
const CHARSET_INFO *files_charset_info;
 
324
const CHARSET_INFO *system_charset_info, *files_charset_info ;
338
325
const CHARSET_INFO *table_alias_charset;
339
326
const CHARSET_INFO *character_set_filesystem;
340
327
 
342
329
 
343
330
SHOW_COMP_OPTION have_symlink;
344
331
 
345
 
boost::condition_variable_any COND_refresh;
 
332
/* Thread specific variables */
 
333
 
 
334
boost::mutex LOCK_open;
 
335
boost::mutex LOCK_global_system_variables;
 
336
boost::mutex LOCK_thread_count;
 
337
 
 
338
boost::condition_variable COND_refresh;
346
339
boost::condition_variable COND_thread_count;
347
340
pthread_t signal_thread;
 
341
boost::condition_variable COND_server_end;
348
342
 
349
343
/* Static variables */
350
344
 
352
346
 
353
347
passwd *user_info;
354
348
 
355
 
boost::detail::atomic_count connection_count(0);
356
 
 
357
 
global_buffer_constraint<uint64_t> global_sort_buffer(0);
358
 
global_buffer_constraint<uint64_t> global_join_buffer(0);
359
 
global_buffer_constraint<uint64_t> global_read_rnd_buffer(0);
360
 
global_buffer_constraint<uint64_t> global_read_buffer(0);
361
 
 
362
 
DRIZZLED_API size_t transaction_message_threshold;
 
349
atomic<uint32_t> connection_count;
 
350
 
 
351
/** 
 
352
  Refresh value. We use to test this to find out if a refresh even has happened recently.
 
353
*/
 
354
uint64_t refresh_version;  /* Increments on each reload */
363
355
 
364
356
/* Function declarations */
365
357
bool drizzle_rm_tmp_tables();
383
375
vector<string> defaults_file_list;
384
376
po::variables_map vm;
385
377
 
 
378
fs::path data_home(LOCALSTATEDIR);
 
379
fs::path full_data_home(LOCALSTATEDIR);
 
380
 
386
381
po::variables_map &getVariablesMap()
387
382
{
388
383
  return vm;
389
384
}
390
385
 
391
 
 
 
386
fs::path& getDataHome()
 
387
{
 
388
  return data_home;
 
389
}
 
390
 
 
391
fs::path& getDataHomeCatalog()
 
392
{
 
393
  static fs::path data_home_catalog(getDataHome());
 
394
  return data_home_catalog;
 
395
}
 
396
 
 
397
 
392
398
/****************************************************************************
393
399
** Code to end drizzled
394
400
****************************************************************************/
400
406
 
401
407
  /* kill connection thread */
402
408
  {
403
 
    boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
 
409
    boost::mutex::scoped_lock scopedLock(LOCK_thread_count);
404
410
 
405
411
    while (select_thread_in_use)
406
412
    {
424
430
    statements and inform their clients that the server is about to die.
425
431
  */
426
432
 
 
433
  Session *tmp;
 
434
 
 
435
  LOCK_thread_count.lock(); // For unlink from list
 
436
 
 
437
  for( SessionList::iterator it= getSessionList().begin(); it != getSessionList().end(); ++it )
427
438
  {
428
 
    boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
429
 
    session::Cache::list list= session::Cache::singleton().getCache();
430
 
 
431
 
    for (session::Cache::list::iterator it= list.begin(); it != list.end(); ++it )
432
 
    {
433
 
      Session::shared_ptr tmp(*it);
434
 
 
435
 
      tmp->setKilled(Session::KILL_CONNECTION);
436
 
      tmp->scheduler->killSession(tmp.get());
437
 
      DRIZZLE_CONNECTION_DONE(tmp->thread_id);
438
 
 
439
 
      tmp->lockOnSys();
440
 
    }
 
439
    tmp= *it;
 
440
    tmp->killed= Session::KILL_CONNECTION;
 
441
    tmp->scheduler->killSession(tmp);
 
442
    DRIZZLE_CONNECTION_DONE(tmp->thread_id);
 
443
    tmp->lockOnSys();
441
444
  }
 
445
  LOCK_thread_count.unlock(); // For unlink from list
442
446
 
443
 
  if (session::Cache::singleton().count())
 
447
  if (connection_count)
444
448
    sleep(2);                                   // Give threads time to die
445
449
 
446
450
  /*
450
454
  */
451
455
  for (;;)
452
456
  {
453
 
    boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
454
 
    session::Cache::list list= session::Cache::singleton().getCache();
455
 
 
456
 
    if (list.empty())
 
457
    LOCK_thread_count.lock(); // For unlink from list
 
458
    if (getSessionList().empty())
457
459
    {
 
460
      LOCK_thread_count.unlock();
458
461
      break;
459
462
    }
 
463
    tmp= getSessionList().front();
460
464
    /* Close before unlock, avoiding crash. See LP bug#436685 */
461
 
    list.front()->getClient()->close();
 
465
    tmp->client->close();
 
466
    LOCK_thread_count.unlock();
462
467
  }
463
468
}
464
469
 
 
470
/**
 
471
  cleanup all memory and end program nicely.
 
472
 
 
473
    If SIGNALS_DONT_BREAK_READ is defined, this function is called
 
474
    by the main thread. To get Drizzle to shut down nicely in this case
 
475
    (Mac OS X) we have to call exit() instead if pthread_exit().
 
476
 
 
477
  @note
 
478
    This function never returns.
 
479
*/
 
480
void unireg_end(void)
 
481
{
 
482
  clean_up(1);
 
483
  internal::my_thread_end();
 
484
#if defined(SIGNALS_DONT_BREAK_READ)
 
485
  exit(0);
 
486
#else
 
487
  pthread_exit(0);                              // Exit is in main thread
 
488
#endif
 
489
}
 
490
 
465
491
 
466
492
void unireg_abort(int exit_code)
467
493
{
468
494
 
469
495
  if (exit_code)
470
 
  {
471
 
    errmsg_printf(error::ERROR, _("Aborting"));
472
 
  }
 
496
    errmsg_printf(ERRMSG_LVL_ERROR, _("Aborting\n"));
473
497
  else if (opt_help)
474
 
  {
475
498
    usage();
476
 
  }
477
 
 
478
499
  clean_up(!opt_help && (exit_code));
479
500
  internal::my_end();
480
501
  exit(exit_code);
501
522
  (void) unlink(pid_file.file_string().c_str());        // This may not always exist
502
523
 
503
524
  if (print_message && server_start_time)
504
 
    errmsg_printf(drizzled::error::INFO, _(ER(ER_SHUTDOWN_COMPLETE)),internal::my_progname);
505
 
 
506
 
  session::Cache::singleton().shutdownFirst();
 
525
    errmsg_printf(ERRMSG_LVL_INFO, _(ER(ER_SHUTDOWN_COMPLETE)),internal::my_progname);
 
526
  LOCK_thread_count.lock();
 
527
  ready_to_exit=1;
 
528
  /* do the broadcast inside the lock to ensure that my_end() is not called */
 
529
  COND_server_end.notify_all();
 
530
  LOCK_thread_count.unlock();
507
531
 
508
532
  /*
509
533
    The following lines may never be executed as the main thread may have
528
552
      tmp_user_info= getpwnam(user);
529
553
      if ((!tmp_user_info || user_id != tmp_user_info->pw_uid) &&
530
554
          global_system_variables.log_warnings)
531
 
            errmsg_printf(error::WARN, _("One can only use the --user switch "
 
555
            errmsg_printf(ERRMSG_LVL_WARN, _("One can only use the --user switch "
532
556
                            "if running as root\n"));
533
557
    }
534
558
    return NULL;
535
559
  }
536
 
  if (not user)
 
560
  if (!user)
537
561
  {
538
 
      errmsg_printf(error::ERROR, _("Fatal error: Please read \"Security\" section of "
539
 
                                    "the manual to find out how to run drizzled as root"));
 
562
      errmsg_printf(ERRMSG_LVL_ERROR, _("Fatal error: Please read \"Security\" section of "
 
563
                      "the manual to find out how to run drizzled as root!\n"));
540
564
    unireg_abort(1);
541
565
  }
542
 
 
543
 
  if (not strcmp(user, "root"))
 
566
  if (!strcmp(user,"root"))
544
567
    return NULL;                        // Avoid problem with dynamic libraries
545
568
 
546
569
  if (!(tmp_user_info= getpwnam(user)))
547
570
  {
548
571
    // Allow a numeric uid to be used
549
572
    const char *pos;
550
 
    for (pos= user; my_isdigit(&my_charset_utf8_general_ci,*pos); pos++) ;
 
573
    for (pos= user; my_isdigit(mysqld_charset,*pos); pos++) ;
551
574
    if (*pos)                                   // Not numeric id
552
575
      goto err;
553
576
    if (!(tmp_user_info= getpwuid(atoi(user))))
556
579
  return tmp_user_info;
557
580
 
558
581
err:
559
 
  errmsg_printf(error::ERROR, _("Fatal error: Can't change to run as user '%s' ;  "
 
582
  errmsg_printf(ERRMSG_LVL_ERROR, _("Fatal error: Can't change to run as user '%s' ;  "
560
583
                    "Please check that the user exists!\n"),user);
561
584
  unireg_abort(1);
562
585
 
563
586
#ifdef PR_SET_DUMPABLE
564
 
  if (getDebug().test(debug::CORE_ON_SIGNAL))
 
587
  if (test_flags.test(TEST_CORE_ON_SIGNAL))
565
588
  {
566
589
    /* inform kernel that process is dumpable */
567
590
    (void) prctl(PR_SET_DUMPABLE, 1);
581
604
  initgroups((char*) user, user_info_arg->pw_gid);
582
605
  if (setgid(user_info_arg->pw_gid) == -1)
583
606
  {
584
 
    sql_perror(_("Set process group ID failed"));
 
607
    sql_perror(N_("Set process group ID failed"));
585
608
    unireg_abort(1);
586
609
  }
587
610
  if (setuid(user_info_arg->pw_uid) == -1)
588
611
  {
589
 
    sql_perror(_("Set process user ID failed"));
 
612
    sql_perror(N_("Set process user ID failed"));
590
613
    unireg_abort(1);
591
614
  }
592
615
}
598
621
{
599
622
  if ((chroot(path) == -1) || !chdir("/"))
600
623
  {
601
 
    sql_perror(_("Process chroot failed"));
 
624
    sql_perror(N_("Process chroot failed"));
602
625
    unireg_abort(1);
603
626
  }
604
627
}
610
633
  SYNOPSIS
611
634
    Session::unlink()
612
635
    session              Thread handler
 
636
 
 
637
  NOTES
 
638
    LOCK_thread_count is locked and left locked
613
639
*/
614
640
 
615
 
void drizzled::Session::unlink(session_id_t &session_id)
616
 
{
617
 
  Session::shared_ptr session= session::Cache::singleton().find(session_id);
618
 
 
619
 
  if (session)
620
 
    unlink(session);
621
 
}
622
 
 
623
 
void drizzled::Session::unlink(Session::shared_ptr &session)
624
 
{
625
 
  --connection_count;
 
641
void Session::unlink(Session *session)
 
642
{
 
643
  connection_count.decrement();
626
644
 
627
645
  session->cleanup();
628
646
 
629
 
  boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
630
 
 
631
 
  if (unlikely(plugin::EventObserver::disconnectSession(*session)))
632
 
  {
633
 
    // We should do something about an error...
634
 
  }
635
 
  session::Cache::singleton().erase(session);
 
647
  LOCK_thread_count.lock();
 
648
  session->lockForDelete();
 
649
 
 
650
  getSessionList().erase(remove(getSessionList().begin(),
 
651
                         getSessionList().end(),
 
652
                         session));
 
653
 
 
654
  delete session;
 
655
  LOCK_thread_count.unlock();
636
656
}
637
657
 
638
658
 
718
738
  global_system_variables.auto_increment_increment= 1;
719
739
  if (in_auto_increment_increment < 1 || in_auto_increment_increment > UINT64_MAX)
720
740
  {
721
 
    cout << _("Error: Invalid Value for auto_increment_increment");
 
741
    cout << N_("Error: Invalid Value for auto_increment_increment");
722
742
    exit(-1);
723
743
  }
724
744
  global_system_variables.auto_increment_increment= in_auto_increment_increment;
729
749
  global_system_variables.auto_increment_offset= 1;
730
750
  if (in_auto_increment_offset < 1 || in_auto_increment_offset > UINT64_MAX)
731
751
  {
732
 
    cout << _("Error: Invalid Value for auto_increment_offset");
 
752
    cout << N_("Error: Invalid Value for auto_increment_offset");
733
753
    exit(-1);
734
754
  }
735
755
  global_system_variables.auto_increment_offset= in_auto_increment_offset;
740
760
  global_system_variables.completion_type= 0;
741
761
  if (in_completion_type > 2)
742
762
  {
743
 
    cout << _("Error: Invalid Value for completion_type");
 
763
    cout << N_("Error: Invalid Value for completion_type");
744
764
    exit(-1);
745
765
  }
746
766
  global_system_variables.completion_type= in_completion_type;
747
767
}
748
768
 
 
769
static void check_limits_back_log(uint32_t in_back_log)
 
770
{
 
771
  back_log= 50;
 
772
  if (in_back_log < 1 || in_back_log > 65535)
 
773
  {
 
774
    cout << N_("Error: Invalid Value for back_log");
 
775
    exit(-1);
 
776
  }
 
777
  back_log= in_back_log;
 
778
}
749
779
 
750
780
static void check_limits_dpi(uint32_t in_div_precincrement)
751
781
{
752
782
  global_system_variables.div_precincrement= 4;
753
783
  if (in_div_precincrement > DECIMAL_MAX_SCALE)
754
784
  {
755
 
    cout << _("Error: Invalid Value for div-precision-increment");
 
785
    cout << N_("Error: Invalid Value for div-precision-increment");
756
786
    exit(-1);
757
787
  }
758
788
  global_system_variables.div_precincrement= in_div_precincrement;
763
793
  global_system_variables.group_concat_max_len= 1024;
764
794
  if (in_group_concat_max_len > ULONG_MAX || in_group_concat_max_len < 4)
765
795
  {
766
 
    cout << _("Error: Invalid Value for group_concat_max_len");
 
796
    cout << N_("Error: Invalid Value for group_concat_max_len");
767
797
    exit(-1);
768
798
  }
769
799
  global_system_variables.group_concat_max_len= in_group_concat_max_len;
774
804
  global_system_variables.join_buff_size= (128*1024L);
775
805
  if (in_join_buffer_size < IO_SIZE*2 || in_join_buffer_size > ULONG_MAX)
776
806
  {
777
 
    cout << _("Error: Invalid Value for join_buffer_size");
 
807
    cout << N_("Error: Invalid Value for join_buffer_size");
778
808
    exit(-1);
779
809
  }
780
810
  in_join_buffer_size-= in_join_buffer_size % IO_SIZE;
783
813
 
784
814
static void check_limits_map(uint32_t in_max_allowed_packet)
785
815
{
786
 
  global_system_variables.max_allowed_packet= (64*1024*1024L);
 
816
  global_system_variables.max_allowed_packet= (1024*1024L);
787
817
  if (in_max_allowed_packet < 1024 || in_max_allowed_packet > 1024*1024L*1024L)
788
818
  {
789
 
    cout << _("Error: Invalid Value for max_allowed_packet");
 
819
    cout << N_("Error: Invalid Value for max_allowed_packet");
790
820
    exit(-1);
791
821
  }
792
822
  in_max_allowed_packet-= in_max_allowed_packet % 1024;
793
823
  global_system_variables.max_allowed_packet= in_max_allowed_packet;
794
824
}
795
825
 
 
826
static void check_limits_mce(uint64_t in_max_connect_errors)
 
827
{
 
828
  max_connect_errors= MAX_CONNECT_ERRORS;
 
829
  if (in_max_connect_errors < 1 || in_max_connect_errors > ULONG_MAX)
 
830
  {
 
831
    cout << N_("Error: Invalid Value for max_connect_errors");
 
832
    exit(-1);
 
833
  }
 
834
  max_connect_errors= in_max_connect_errors;
 
835
}
 
836
 
796
837
static void check_limits_max_err_cnt(uint64_t in_max_error_count)
797
838
{
798
839
  global_system_variables.max_error_count= DEFAULT_ERROR_COUNT;
799
840
  if (in_max_error_count > 65535)
800
841
  {
801
 
    cout << _("Error: Invalid Value for max_error_count");
 
842
    cout << N_("Error: Invalid Value for max_error_count");
802
843
    exit(-1);
803
844
  }
804
845
  global_system_variables.max_error_count= in_max_error_count;
809
850
  global_system_variables.max_heap_table_size= (16*1024*1024L);
810
851
  if (in_max_heap_table_size < 16384 || in_max_heap_table_size > MAX_MEM_TABLE_SIZE)
811
852
  {
812
 
    cout << _("Error: Invalid Value for max_heap_table_size");
 
853
    cout << N_("Error: Invalid Value for max_heap_table_size");
813
854
    exit(-1);
814
855
  }
815
856
  in_max_heap_table_size-= in_max_heap_table_size % 1024;
821
862
  global_system_variables.min_examined_row_limit= 0;
822
863
  if (in_min_examined_row_limit > ULONG_MAX)
823
864
  {
824
 
    cout << _("Error: Invalid Value for min_examined_row_limit");
 
865
    cout << N_("Error: Invalid Value for min_examined_row_limit");
825
866
    exit(-1);
826
867
  }
827
868
  global_system_variables.min_examined_row_limit= in_min_examined_row_limit;
832
873
  global_system_variables.max_join_size= INT32_MAX;
833
874
  if ((uint64_t)in_max_join_size < 1 || (uint64_t)in_max_join_size > INT32_MAX)
834
875
  {
835
 
    cout << _("Error: Invalid Value for max_join_size");
 
876
    cout << N_("Error: Invalid Value for max_join_size");
836
877
    exit(-1);
837
878
  }
838
879
  global_system_variables.max_join_size= in_max_join_size;
843
884
  global_system_variables.max_length_for_sort_data= 1024;
844
885
  if (in_max_length_for_sort_data < 4 || in_max_length_for_sort_data > 8192*1024L)
845
886
  {
846
 
    cout << _("Error: Invalid Value for max_length_for_sort_data");
 
887
    cout << N_("Error: Invalid Value for max_length_for_sort_data");
847
888
    exit(-1);
848
889
  }
849
890
  global_system_variables.max_length_for_sort_data= in_max_length_for_sort_data;
854
895
  global_system_variables.max_seeks_for_key= ULONG_MAX;
855
896
  if (in_max_seeks_for_key < 1 || in_max_seeks_for_key > ULONG_MAX)
856
897
  {
857
 
    cout << _("Error: Invalid Value for max_seeks_for_key");
 
898
    cout << N_("Error: Invalid Value for max_seeks_for_key");
858
899
    exit(-1);
859
900
  }
860
901
  global_system_variables.max_seeks_for_key= in_max_seeks_for_key;
865
906
  global_system_variables.max_sort_length= 1024;
866
907
  if ((int64_t)in_max_sort_length < 4 || (int64_t)in_max_sort_length > 8192*1024L)
867
908
  {
868
 
    cout << _("Error: Invalid Value for max_sort_length");
 
909
    cout << N_("Error: Invalid Value for max_sort_length");
869
910
    exit(-1);
870
911
  }
871
912
  global_system_variables.max_sort_length= in_max_sort_length;
876
917
  global_system_variables.optimizer_search_depth= 0;
877
918
  if (in_optimizer_search_depth > MAX_TABLES + 2)
878
919
  {
879
 
    cout << _("Error: Invalid Value for optimizer_search_depth");
 
920
    cout << N_("Error: Invalid Value for optimizer_search_depth");
880
921
    exit(-1);
881
922
  }
882
923
  global_system_variables.optimizer_search_depth= in_optimizer_search_depth;
887
928
  global_system_variables.preload_buff_size= (32*1024L);
888
929
  if (in_preload_buff_size < 1024 || in_preload_buff_size > 1024*1024*1024L)
889
930
  {
890
 
    cout << _("Error: Invalid Value for preload_buff_size");
 
931
    cout << N_("Error: Invalid Value for preload_buff_size");
891
932
    exit(-1);
892
933
  }
893
934
  global_system_variables.preload_buff_size= in_preload_buff_size;
898
939
  global_system_variables.query_alloc_block_size= QUERY_ALLOC_BLOCK_SIZE;
899
940
  if (in_query_alloc_block_size < 1024)
900
941
  {
901
 
    cout << _("Error: Invalid Value for query_alloc_block_size");
 
942
    cout << N_("Error: Invalid Value for query_alloc_block_size");
902
943
    exit(-1);
903
944
  }
904
945
  in_query_alloc_block_size-= in_query_alloc_block_size % 1024;
910
951
  global_system_variables.query_prealloc_size= QUERY_ALLOC_PREALLOC_SIZE;
911
952
  if (in_query_prealloc_size < QUERY_ALLOC_PREALLOC_SIZE)
912
953
  {
913
 
    cout << _("Error: Invalid Value for query_prealloc_size");
 
954
    cout << N_("Error: Invalid Value for query_prealloc_size");
914
955
    exit(-1);
915
956
  }
916
957
  in_query_prealloc_size-= in_query_prealloc_size % 1024;
922
963
  global_system_variables.range_alloc_block_size= RANGE_ALLOC_BLOCK_SIZE;
923
964
  if (in_range_alloc_block_size < RANGE_ALLOC_BLOCK_SIZE)
924
965
  {
925
 
    cout << _("Error: Invalid Value for range_alloc_block_size");
 
966
    cout << N_("Error: Invalid Value for range_alloc_block_size");
926
967
    exit(-1);
927
968
  }
928
969
  in_range_alloc_block_size-= in_range_alloc_block_size % 1024;
934
975
  global_system_variables.read_buff_size= (128*1024L);
935
976
  if (in_read_buff_size < IO_SIZE*2 || in_read_buff_size > INT32_MAX)
936
977
  {
937
 
    cout << _("Error: Invalid Value for read_buff_size");
 
978
    cout << N_("Error: Invalid Value for read_buff_size");
938
979
    exit(-1);
939
980
  }
940
981
  in_read_buff_size-= in_read_buff_size % IO_SIZE;
946
987
  global_system_variables.read_rnd_buff_size= (256*1024L);
947
988
  if (in_read_rnd_buff_size < 64 || in_read_rnd_buff_size > UINT32_MAX)
948
989
  {
949
 
    cout << _("Error: Invalid Value for read_rnd_buff_size");
 
990
    cout << N_("Error: Invalid Value for read_rnd_buff_size");
950
991
    exit(-1);
951
992
  }
952
993
  global_system_variables.read_rnd_buff_size= in_read_rnd_buff_size;
957
998
  global_system_variables.sortbuff_size= MAX_SORT_MEMORY;
958
999
  if ((uint32_t)in_sortbuff_size < MIN_SORT_MEMORY)
959
1000
  {
960
 
    cout << _("Error: Invalid Value for sort_buff_size");
 
1001
    cout << N_("Error: Invalid Value for sort_buff_size");
961
1002
    exit(-1);
962
1003
  }
963
1004
  global_system_variables.sortbuff_size= in_sortbuff_size;
968
1009
  table_def_size= 128;
969
1010
  if (in_table_def_size < 1 || in_table_def_size > 512*1024L)
970
1011
  {
971
 
    cout << _("Error: Invalid Value for table_def_size");
 
1012
    cout << N_("Error: Invalid Value for table_def_size");
972
1013
    exit(-1);
973
1014
  }
974
1015
  table_def_size= in_table_def_size;
979
1020
  table_cache_size= TABLE_OPEN_CACHE_DEFAULT;
980
1021
  if (in_table_cache_size < TABLE_OPEN_CACHE_MIN || in_table_cache_size > 512*1024L)
981
1022
  {
982
 
    cout << _("Error: Invalid Value for table_cache_size");
 
1023
    cout << N_("Error: Invalid Value for table_cache_size");
983
1024
    exit(-1);
984
1025
  }
985
1026
  table_cache_size= in_table_cache_size;
990
1031
  table_lock_wait_timeout= 50;
991
1032
  if (in_table_lock_wait_timeout < 1 || in_table_lock_wait_timeout > 1024*1024*1024)
992
1033
  {
993
 
    cout << _("Error: Invalid Value for table_lock_wait_timeout");
 
1034
    cout << N_("Error: Invalid Value for table_lock_wait_timeout");
994
1035
    exit(-1);
995
1036
  }
996
1037
  table_lock_wait_timeout= in_table_lock_wait_timeout;
1006
1047
  global_system_variables.tmp_table_size= 16*1024*1024L;
1007
1048
  if (in_tmp_table_size < 1024 || in_tmp_table_size > MAX_MEM_TABLE_SIZE)
1008
1049
  {
1009
 
    cout << _("Error: Invalid Value for table_lock_wait_timeout");
 
1050
    cout << N_("Error: Invalid Value for table_lock_wait_timeout");
1010
1051
    exit(-1);
1011
1052
  }
1012
1053
  global_system_variables.tmp_table_size= in_tmp_table_size;
1014
1055
 
1015
1056
static void check_limits_transaction_message_threshold(size_t in_transaction_message_threshold)
1016
1057
{
1017
 
  transaction_message_threshold= 1024*1024;
 
1058
  global_system_variables.transaction_message_threshold= 1024*1024;
1018
1059
  if ((int64_t) in_transaction_message_threshold < 128*1024 || (int64_t)in_transaction_message_threshold > 1024*1024)
1019
1060
  {
1020
 
    cout << _("Error: Invalid Value for transaction_message_threshold valid values are between 131072 - 1048576 bytes");
 
1061
    cout << N_("Error: Invalid Value for transaction_message_threshold valid values are between 131072 - 1048576 bytes");
1021
1062
    exit(-1);
1022
1063
  }
1023
 
  transaction_message_threshold= in_transaction_message_threshold;
 
1064
  global_system_variables.transaction_message_threshold= in_transaction_message_threshold;
 
1065
}
 
1066
 
 
1067
static pair<string, string> parse_size_suffixes(string s)
 
1068
{
 
1069
  size_t equal_pos= s.find("=");
 
1070
  if (equal_pos != string::npos)
 
1071
  {
 
1072
    string arg_key(s.substr(0, equal_pos));
 
1073
    string arg_val(s.substr(equal_pos+1));
 
1074
 
 
1075
    try
 
1076
    {
 
1077
      size_t size_suffix_pos= arg_val.find_last_of("kmgKMG");
 
1078
      if (size_suffix_pos == arg_val.size()-1)
 
1079
      {
 
1080
        char suffix= arg_val[size_suffix_pos];
 
1081
        string size_val(arg_val.substr(0, size_suffix_pos));
 
1082
 
 
1083
        uint64_t base_size= boost::lexical_cast<uint64_t>(size_val);
 
1084
        uint64_t new_size= 0;
 
1085
 
 
1086
        switch (suffix)
 
1087
        {
 
1088
        case 'K':
 
1089
        case 'k':
 
1090
          new_size= base_size * 1024;
 
1091
          break;
 
1092
        case 'M':
 
1093
        case 'm':
 
1094
          new_size= base_size * 1024 * 1024;
 
1095
          break;
 
1096
        case 'G':
 
1097
        case 'g':
 
1098
          new_size= base_size * 1024 * 1024 * 1024;
 
1099
          break;
 
1100
        }
 
1101
        return make_pair(arg_key,
 
1102
                         boost::lexical_cast<string>(new_size));
 
1103
      }
 
1104
    }
 
1105
    catch (...)
 
1106
    {
 
1107
      /* Screw it, let the normal parser take over */
 
1108
    }
 
1109
  }
 
1110
 
 
1111
  return make_pair(string(""), string(""));
 
1112
}
 
1113
 
 
1114
static pair<string, string> parse_size_arg(string s)
 
1115
{
 
1116
  if (s.find("--") == 0)
 
1117
  {
 
1118
    return parse_size_suffixes(s.substr(2));
 
1119
  }
 
1120
  return make_pair(string(""), string(""));
1024
1121
}
1025
1122
 
1026
1123
static void process_defaults_files()
1029
1126
       iter != defaults_file_list.end();
1030
1127
       ++iter)
1031
1128
  {
1032
 
    fs::path file_location= *iter;
 
1129
    fs::path file_location(system_config_dir);
 
1130
    if ((*iter)[0] != '/')
 
1131
    {
 
1132
      /* Relative path - add config dir */
 
1133
      file_location /= *iter;
 
1134
    }
 
1135
    else
 
1136
    {
 
1137
      file_location= *iter;
 
1138
    }
1033
1139
 
1034
1140
    ifstream input_defaults_file(file_location.file_string().c_str());
1035
1141
    
1069
1175
       it != in_options.end();
1070
1176
       ++it)
1071
1177
  {
1072
 
    fs::path p(*it);
1073
 
    if (fs::is_regular_file(p))
1074
 
      defaults_file_list.push_back(*it);
1075
 
    else
1076
 
    {
1077
 
      errmsg_printf(error::ERROR,
1078
 
                  _("Defaults file '%s' not found\n"), (*it).c_str());
1079
 
      unireg_abort(1);
1080
 
    }
1081
 
 
 
1178
    defaults_file_list.push_back(*it);
1082
1179
  }
1083
1180
}
1084
1181
 
1085
 
int init_basic_variables(int argc, char **argv)
 
1182
int init_common_variables(int argc, char **argv, module::Registry &plugins)
1086
1183
{
1087
1184
  time_t curr_time;
1088
1185
  umask(((~internal::my_umask) & 0666));
1089
 
  decimal_zero.set_zero(); // set decimal_zero constant;
 
1186
  my_decimal_set_zero(&decimal_zero); // set decimal_zero constant;
1090
1187
  tzset();                      // Set tzname
1091
1188
 
1092
1189
  curr_time= time(NULL);
1117
1214
  if (gethostname(glob_hostname,sizeof(glob_hostname)) < 0)
1118
1215
  {
1119
1216
    strncpy(glob_hostname, STRING_WITH_LEN("localhost"));
1120
 
    errmsg_printf(error::WARN, _("gethostname failed, using '%s' as hostname"),
 
1217
    errmsg_printf(ERRMSG_LVL_WARN, _("gethostname failed, using '%s' as hostname"),
1121
1218
                  glob_hostname);
1122
1219
    pid_file= "drizzle";
1123
1220
  }
1128
1225
  pid_file.replace_extension(".pid");
1129
1226
 
1130
1227
  system_config_dir /= "drizzle";
 
1228
  std::string system_config_file_drizzle("drizzled.cnf");
1131
1229
 
1132
1230
  config_options.add_options()
1133
1231
  ("help,?", po::value<bool>(&opt_help)->default_value(false)->zero_tokens(),
1134
 
  _("Display this help and exit."))
1135
 
  ("daemon,d", po::value<bool>(&opt_daemon)->default_value(false)->zero_tokens(),
1136
 
  _("Run as a daemon."))
 
1232
  N_("Display this help and exit."))
1137
1233
  ("no-defaults", po::value<bool>()->default_value(false)->zero_tokens(),
1138
 
  _("Configuration file defaults are not used if no-defaults is set"))
 
1234
  N_("Configuration file defaults are not used if no-defaults is set"))
1139
1235
  ("defaults-file", po::value<vector<string> >()->composing()->notifier(&compose_defaults_file_list),
1140
 
  _("Configuration file to use"))
 
1236
   N_("Configuration file to use"))
1141
1237
  ("config-dir", po::value<fs::path>(&system_config_dir),
1142
 
  _("Base location for config files"))
 
1238
   N_("Base location for config files"))
1143
1239
  ("plugin-dir", po::value<fs::path>(&plugin_dir)->notifier(&notify_plugin_dir),
1144
 
  _("Directory for plugins."))
 
1240
  N_("Directory for plugins."))
1145
1241
  ;
1146
1242
 
1147
1243
  plugin_load_options.add_options()
1148
1244
  ("plugin-add", po::value<vector<string> >()->composing()->notifier(&compose_plugin_add),
1149
 
  _("Optional comma separated list of plugins to load at startup in addition "
 
1245
  N_("Optional comma separated list of plugins to load at startup in addition "
1150
1246
     "to the default list of plugins. "
1151
1247
     "[for example: --plugin_add=crc32,logger_gearman]"))    
1152
1248
  ("plugin-remove", po::value<vector<string> >()->composing()->notifier(&compose_plugin_remove),
1153
 
  _("Optional comma separated list of plugins to not load at startup. Effectively "
 
1249
  N_("Optional comma separated list of plugins to not load at startup. Effectively "
1154
1250
     "removes a plugin from the list of plugins to be loaded. "
1155
1251
     "[for example: --plugin_remove=crc32,logger_gearman]"))
1156
1252
  ("plugin-load", po::value<string>()->notifier(&notify_plugin_load)->default_value(PANDORA_PLUGIN_LIST),
1157
 
  _("Optional comma separated list of plugins to load at starup instead of "
 
1253
  N_("Optional comma separated list of plugins to load at starup instead of "
1158
1254
     "the default plugin load list. "
1159
1255
     "[for example: --plugin_load=crc32,logger_gearman]"))
1160
1256
  ;
1161
1257
 
1162
1258
  long_options.add_options()
1163
1259
  ("auto-increment-increment", po::value<uint64_t>(&global_system_variables.auto_increment_increment)->default_value(1)->notifier(&check_limits_aii),
1164
 
  _("Auto-increment columns are incremented by this"))
 
1260
  N_("Auto-increment columns are incremented by this"))
1165
1261
  ("auto-increment-offset", po::value<uint64_t>(&global_system_variables.auto_increment_offset)->default_value(1)->notifier(&check_limits_aio),
1166
 
  _("Offset added to Auto-increment columns. Used when auto-increment-increment != 1"))
 
1262
  N_("Offset added to Auto-increment columns. Used when auto-increment-increment != 1"))
1167
1263
  ("basedir,b", po::value<fs::path>(&basedir),
1168
 
  _("Path to installation directory. All paths are usually resolved "
 
1264
  N_("Path to installation directory. All paths are usually resolved "
1169
1265
     "relative to this."))
1170
1266
  ("chroot,r", po::value<string>(),
1171
 
  _("Chroot drizzled daemon during startup."))
 
1267
  N_("Chroot drizzled daemon during startup."))
1172
1268
  ("collation-server", po::value<string>(),
1173
 
  _("Set the default collation."))      
 
1269
  N_("Set the default collation."))      
1174
1270
  ("completion-type", po::value<uint32_t>(&global_system_variables.completion_type)->default_value(0)->notifier(&check_limits_completion_type),
1175
 
  _("Default completion type."))
1176
 
  ("core-file",  _("Write core on errors."))
1177
 
  ("datadir", po::value<fs::path>(&getDataHome()),
1178
 
  _("Path to the database root."))
 
1271
  N_("Default completion type."))
 
1272
  ("core-file",  N_("Write core on errors."))
 
1273
  ("datadir", po::value<fs::path>(&data_home),
 
1274
  N_("Path to the database root."))
1179
1275
  ("default-storage-engine", po::value<string>(),
1180
 
  _("Set the default storage engine for tables."))
 
1276
  N_("Set the default storage engine for tables."))
1181
1277
  ("default-time-zone", po::value<string>(),
1182
 
  _("Set the default time zone."))
 
1278
  N_("Set the default time zone."))
1183
1279
  ("exit-info,T", po::value<long>(),
1184
 
  _("Used for debugging;  Use at your own risk!"))
 
1280
  N_("Used for debugging;  Use at your own risk!"))
1185
1281
  ("gdb", po::value<bool>(&opt_debugging)->default_value(false)->zero_tokens(),
1186
 
  _("Set up signals usable for debugging"))
 
1282
  N_("Set up signals usable for debugging"))
1187
1283
  ("lc-time-name", po::value<string>(),
1188
 
  _("Set the language used for the month names and the days of the week."))
 
1284
  N_("Set the language used for the month names and the days of the week."))
1189
1285
  ("log-warnings,W", po::value<bool>(&global_system_variables.log_warnings)->default_value(false)->zero_tokens(),
1190
 
  _("Log some not critical warnings to the log file."))  
 
1286
  N_("Log some not critical warnings to the log file."))  
1191
1287
  ("pid-file", po::value<fs::path>(&pid_file),
1192
 
  _("Pid file used by drizzled."))
 
1288
  N_("Pid file used by drizzled."))
1193
1289
  ("port-open-timeout", po::value<uint32_t>(&drizzled_bind_timeout)->default_value(0),
1194
 
  _("Maximum time in seconds to wait for the port to become free. "))
1195
 
  ("replicate-query", po::value<bool>(&global_system_variables.replicate_query)->default_value(false)->zero_tokens(),
1196
 
  _("Include the SQL query in replicated protobuf messages."))
 
1290
  N_("Maximum time in seconds to wait for the port to become free. "))
1197
1291
  ("secure-file-priv", po::value<fs::path>(&secure_file_priv)->notifier(expand_secure_file_priv),
1198
 
  _("Limit LOAD DATA, SELECT ... OUTFILE, and LOAD_FILE() to files "
 
1292
  N_("Limit LOAD DATA, SELECT ... OUTFILE, and LOAD_FILE() to files "
1199
1293
     "within specified directory"))
1200
1294
  ("server-id", po::value<uint32_t>(&server_id)->default_value(0),
1201
 
  _("Uniquely identifies the server instance in the community of "
 
1295
  N_("Uniquely identifies the server instance in the community of "
1202
1296
     "replication partners."))
1203
1297
  ("skip-stack-trace",  
1204
 
  _("Don't print a stack trace on failure."))
 
1298
  N_("Don't print a stack trace on failure."))
1205
1299
  ("symbolic-links,s", po::value<bool>(&internal::my_use_symdir)->default_value(IF_PURIFY(false,true))->zero_tokens(),
1206
 
  _("Enable symbolic link support."))
 
1300
  N_("Enable symbolic link support."))
1207
1301
  ("timed-mutexes", po::value<bool>(&internal::timed_mutexes)->default_value(false)->zero_tokens(),
1208
 
  _("Specify whether to time mutexes (only InnoDB mutexes are currently "
 
1302
  N_("Specify whether to time mutexes (only InnoDB mutexes are currently "
1209
1303
     "supported)")) 
1210
1304
  ("tmpdir,t", po::value<string>(),
1211
 
  _("Path for temporary files."))
 
1305
  N_("Path for temporary files."))
1212
1306
  ("transaction-isolation", po::value<string>(),
1213
 
  _("Default transaction isolation level."))
1214
 
  ("transaction-message-threshold", po::value<size_t>(&transaction_message_threshold)->default_value(1024*1024)->notifier(&check_limits_transaction_message_threshold),
1215
 
  _("Max message size written to transaction log, valid values 131072 - 1048576 bytes."))
 
1307
  N_("Default transaction isolation level."))
 
1308
  ("transaction-message-threshold", po::value<size_t>(&global_system_variables.transaction_message_threshold)->default_value(1024*1024)->notifier(&check_limits_transaction_message_threshold),
 
1309
  N_("Max message size written to transaction log, valid values 131072 - 1048576 bytes."))
1216
1310
  ("user,u", po::value<string>(),
1217
 
  _("Run drizzled daemon as user."))  
 
1311
  N_("Run drizzled daemon as user."))  
1218
1312
  ("version,V", 
1219
 
  _("Output version information and exit."))
1220
 
  ("back-log", po::value<back_log_constraints>(&back_log),
1221
 
  _("The number of outstanding connection requests Drizzle can have. This "
 
1313
  N_("Output version information and exit."))
 
1314
  ("back-log", po::value<uint32_t>(&back_log)->default_value(50)->notifier(&check_limits_back_log),
 
1315
  N_("The number of outstanding connection requests Drizzle can have. This "
1222
1316
     "comes into play when the main Drizzle thread gets very many connection "
1223
1317
     "requests in a very short time."))
1224
1318
  ("bulk-insert-buffer-size", 
1225
1319
  po::value<uint64_t>(&global_system_variables.bulk_insert_buff_size)->default_value(8192*1024),
1226
 
  _("Size of tree cache used in bulk insert optimization. Note that this is "
 
1320
  N_("Size of tree cache used in bulk insert optimization. Note that this is "
1227
1321
     "a limit per thread!"))
1228
1322
  ("div-precision-increment",  po::value<uint32_t>(&global_system_variables.div_precincrement)->default_value(4)->notifier(&check_limits_dpi),
1229
 
  _("Precision of the result of '/' operator will be increased on that "
 
1323
  N_("Precision of the result of '/' operator will be increased on that "
1230
1324
     "value."))
1231
1325
  ("group-concat-max-len", po::value<uint64_t>(&global_system_variables.group_concat_max_len)->default_value(1024)->notifier(&check_limits_gcml),
1232
 
  _("The maximum length of the result of function  group_concat."))
 
1326
  N_("The maximum length of the result of function  group_concat."))
1233
1327
  ("join-buffer-size", po::value<uint64_t>(&global_system_variables.join_buff_size)->default_value(128*1024L)->notifier(&check_limits_join_buffer_size),
1234
 
  _("The size of the buffer that is used for full joins."))
1235
 
  ("join-heap-threshold",
1236
 
  po::value<uint64_t>()->default_value(0),
1237
 
  _("A global cap on the amount of memory that can be allocated by session join buffers (0 means unlimited)"))
1238
 
  ("max-allowed-packet", po::value<uint32_t>(&global_system_variables.max_allowed_packet)->default_value(64*1024*1024L)->notifier(&check_limits_map),
1239
 
  _("Max packetlength to send/receive from to server."))
 
1328
  N_("The size of the buffer that is used for full joins."))
 
1329
  ("max-allowed-packet", po::value<uint32_t>(&global_system_variables.max_allowed_packet)->default_value(1024*1024L)->notifier(&check_limits_map),
 
1330
  N_("Max packetlength to send/receive from to server."))
 
1331
  ("max-connect-errors", po::value<uint64_t>(&max_connect_errors)->default_value(MAX_CONNECT_ERRORS)->notifier(&check_limits_mce),
 
1332
  N_("If there is more than this number of interrupted connections from a "
 
1333
     "host this host will be blocked from further connections."))
1240
1334
  ("max-error-count", po::value<uint64_t>(&global_system_variables.max_error_count)->default_value(DEFAULT_ERROR_COUNT)->notifier(&check_limits_max_err_cnt),
1241
 
  _("Max number of errors/warnings to store for a statement."))
 
1335
  N_("Max number of errors/warnings to store for a statement."))
1242
1336
  ("max-heap-table-size", po::value<uint64_t>(&global_system_variables.max_heap_table_size)->default_value(16*1024*1024L)->notifier(&check_limits_mhts),
1243
 
  _("Don't allow creation of heap tables bigger than this."))
 
1337
  N_("Don't allow creation of heap tables bigger than this."))
1244
1338
  ("max-join-size", po::value<drizzled::ha_rows>(&global_system_variables.max_join_size)->default_value(INT32_MAX)->notifier(&check_limits_max_join_size),
1245
 
  _("Joins that are probably going to read more than max_join_size records "
 
1339
  N_("Joins that are probably going to read more than max_join_size records "
1246
1340
     "return an error."))
1247
1341
  ("max-length-for-sort-data", po::value<uint64_t>(&global_system_variables.max_length_for_sort_data)->default_value(1024)->notifier(&check_limits_mlfsd),
1248
 
  _("Max number of bytes in sorted records."))
 
1342
  N_("Max number of bytes in sorted records."))
1249
1343
  ("max-seeks-for-key", po::value<uint64_t>(&global_system_variables.max_seeks_for_key)->default_value(ULONG_MAX)->notifier(&check_limits_msfk),
1250
 
  _("Limit assumed max number of seeks when looking up rows based on a key"))
 
1344
  N_("Limit assumed max number of seeks when looking up rows based on a key"))
1251
1345
  ("max-sort-length", po::value<size_t>(&global_system_variables.max_sort_length)->default_value(1024)->notifier(&check_limits_max_sort_length),  
1252
 
  _("The number of bytes to use when sorting BLOB or TEXT values "
 
1346
  N_("The number of bytes to use when sorting BLOB or TEXT values "
1253
1347
     "(only the first max_sort_length bytes of each value are used; the "
1254
1348
     "rest are ignored)."))
1255
1349
  ("max-write-lock-count", po::value<uint64_t>(&max_write_lock_count)->default_value(UINT64_MAX),
1256
 
  _("After this many write locks, allow some read locks to run in between."))
 
1350
  N_("After this many write locks, allow some read locks to run in between."))
1257
1351
  ("min-examined-row-limit", po::value<uint64_t>(&global_system_variables.min_examined_row_limit)->default_value(0)->notifier(&check_limits_merl),
1258
 
  _("Don't log queries which examine less than min_examined_row_limit "
 
1352
  N_("Don't log queries which examine less than min_examined_row_limit "
1259
1353
     "rows to file."))
1260
1354
  ("disable-optimizer-prune",
1261
 
  _("Do not apply any heuristic(s) during query optimization to prune, "
 
1355
  N_("Do not apply any heuristic(s) during query optimization to prune, "
1262
1356
     "thus perform an exhaustive search from the optimizer search space."))
1263
1357
  ("optimizer-search-depth", po::value<uint32_t>(&global_system_variables.optimizer_search_depth)->default_value(0)->notifier(&check_limits_osd),
1264
 
  _("Maximum depth of search performed by the query optimizer. Values "
 
1358
  N_("Maximum depth of search performed by the query optimizer. Values "
1265
1359
     "larger than the number of relations in a query result in better query "
1266
1360
     "plans, but take longer to compile a query. Smaller values than the "
1267
1361
     "number of tables in a relation result in faster optimization, but may "
1270
1364
     "optimizer will switch to the original find_best (used for "
1271
1365
     "testing/comparison)."))
1272
1366
  ("preload-buffer-size", po::value<uint64_t>(&global_system_variables.preload_buff_size)->default_value(32*1024L)->notifier(&check_limits_pbs),
1273
 
  _("The size of the buffer that is allocated when preloading indexes"))
 
1367
  N_("The size of the buffer that is allocated when preloading indexes"))
1274
1368
  ("query-alloc-block-size", 
1275
1369
  po::value<uint32_t>(&global_system_variables.query_alloc_block_size)->default_value(QUERY_ALLOC_BLOCK_SIZE)->notifier(&check_limits_qabs),
1276
 
  _("Allocation block size for query parsing and execution"))
 
1370
  N_("Allocation block size for query parsing and execution"))
1277
1371
  ("query-prealloc-size",
1278
1372
  po::value<uint32_t>(&global_system_variables.query_prealloc_size)->default_value(QUERY_ALLOC_PREALLOC_SIZE)->notifier(&check_limits_qps),
1279
 
  _("Persistent buffer for query parsing and execution"))
 
1373
  N_("Persistent buffer for query parsing and execution"))
1280
1374
  ("range-alloc-block-size",
1281
1375
  po::value<size_t>(&global_system_variables.range_alloc_block_size)->default_value(RANGE_ALLOC_BLOCK_SIZE)->notifier(&check_limits_rabs),
1282
 
  _("Allocation block size for storing ranges during optimization"))
 
1376
  N_("Allocation block size for storing ranges during optimization"))
1283
1377
  ("read-buffer-size",
1284
1378
  po::value<uint32_t>(&global_system_variables.read_buff_size)->default_value(128*1024L)->notifier(&check_limits_read_buffer_size),
1285
 
  _("Each thread that does a sequential scan allocates a buffer of this "
 
1379
  N_("Each thread that does a sequential scan allocates a buffer of this "
1286
1380
      "size for each table it scans. If you do many sequential scans, you may "
1287
1381
      "want to increase this value."))
1288
 
  ("read-buffer-threshold",
1289
 
  po::value<uint64_t>()->default_value(0),
1290
 
  _("A global cap on the size of read-buffer-size (0 means unlimited)"))
1291
1382
  ("read-rnd-buffer-size",
1292
1383
  po::value<uint32_t>(&global_system_variables.read_rnd_buff_size)->default_value(256*1024L)->notifier(&check_limits_read_rnd_buffer_size),
1293
 
  _("When reading rows in sorted order after a sort, the rows are read "
 
1384
  N_("When reading rows in sorted order after a sort, the rows are read "
1294
1385
     "through this buffer to avoid a disk seeks. If not set, then it's set "
1295
1386
     "to the value of record_buffer."))
1296
 
  ("read-rnd-threshold",
1297
 
  po::value<uint64_t>()->default_value(0),
1298
 
  _("A global cap on the size of read-rnd-buffer-size (0 means unlimited)"))
1299
1387
  ("scheduler", po::value<string>(),
1300
 
  _("Select scheduler to be used (by default multi-thread)."))
 
1388
  N_("Select scheduler to be used (by default multi-thread)."))
1301
1389
  ("sort-buffer-size",
1302
1390
  po::value<size_t>(&global_system_variables.sortbuff_size)->default_value(MAX_SORT_MEMORY)->notifier(&check_limits_sort_buffer_size),
1303
 
  _("Each thread that needs to do a sort allocates a buffer of this size."))
1304
 
  ("sort-heap-threshold",
1305
 
  po::value<uint64_t>()->default_value(0),
1306
 
  _("A global cap on the amount of memory that can be allocated by session sort buffers (0 means unlimited)"))
 
1391
  N_("Each thread that needs to do a sort allocates a buffer of this size."))
1307
1392
  ("table-definition-cache", po::value<size_t>(&table_def_size)->default_value(128)->notifier(&check_limits_tdc),
1308
 
  _("The number of cached table definitions."))
 
1393
  N_("The number of cached table definitions."))
1309
1394
  ("table-open-cache", po::value<uint64_t>(&table_cache_size)->default_value(TABLE_OPEN_CACHE_DEFAULT)->notifier(&check_limits_toc),
1310
 
  _("The number of cached open tables."))
 
1395
  N_("The number of cached open tables."))
1311
1396
  ("table-lock-wait-timeout", po::value<uint64_t>(&table_lock_wait_timeout)->default_value(50)->notifier(&check_limits_tlwt),
1312
 
  _("Timeout in seconds to wait for a table level lock before returning an "
 
1397
  N_("Timeout in seconds to wait for a table level lock before returning an "
1313
1398
     "error. Used only if the connection has active cursors."))
1314
1399
  ("thread-stack", po::value<size_t>(&my_thread_stack_size)->default_value(DEFAULT_THREAD_STACK)->notifier(&check_limits_thread_stack),
1315
 
  _("The stack size for each thread."))
 
1400
  N_("The stack size for each thread."))
1316
1401
  ("tmp-table-size", 
1317
1402
  po::value<uint64_t>(&global_system_variables.tmp_table_size)->default_value(16*1024*1024L)->notifier(&check_limits_tmp_table_size),
1318
 
  _("If an internal in-memory temporary table exceeds this size, Drizzle will"
 
1403
  N_("If an internal in-memory temporary table exceeds this size, Drizzle will"
1319
1404
     " automatically convert it to an on-disk MyISAM table."))
1320
1405
  ;
1321
1406
 
1336
1421
  {
1337
1422
    po::store(parsed, vm);
1338
1423
  }
1339
 
  catch (std::exception&)
 
1424
  catch (...)
1340
1425
  {
1341
 
    errmsg_printf(error::ERROR, _("Duplicate entry for command line option\n"));
 
1426
    errmsg_printf(ERRMSG_LVL_ERROR, _("Duplicate entry for command line option\n"));
1342
1427
    unireg_abort(1);
1343
1428
  }
1344
1429
 
1345
1430
  if (not vm["no-defaults"].as<bool>())
1346
1431
  {
1347
 
    fs::path system_config_file_drizzle(system_config_dir);
1348
 
    system_config_file_drizzle /= "drizzled.cnf";
1349
1432
    defaults_file_list.insert(defaults_file_list.begin(),
1350
 
                              system_config_file_drizzle.file_string());
1351
 
 
1352
 
    fs::path config_conf_d_location(system_config_dir);
1353
 
    config_conf_d_location /= "conf.d";
1354
 
 
1355
 
 
1356
 
    CachedDirectory config_conf_d(config_conf_d_location.file_string());
1357
 
    if (not config_conf_d.fail())
 
1433
                              system_config_file_drizzle);
 
1434
  }
 
1435
 
 
1436
  fs::path config_conf_d_location(system_config_dir);
 
1437
  config_conf_d_location /= "conf.d";
 
1438
 
 
1439
  CachedDirectory config_conf_d(config_conf_d_location.file_string());
 
1440
  if (not config_conf_d.fail())
 
1441
  {
 
1442
 
 
1443
    for (CachedDirectory::Entries::const_iterator iter= config_conf_d.getEntries().begin();
 
1444
         iter != config_conf_d.getEntries().end();
 
1445
         ++iter)
1358
1446
    {
1359
 
 
1360
 
      for (CachedDirectory::Entries::const_iterator iter= config_conf_d.getEntries().begin();
1361
 
           iter != config_conf_d.getEntries().end();
1362
 
           ++iter)
 
1447
      string file_entry((*iter)->filename);
 
1448
          
 
1449
      if (not file_entry.empty()
 
1450
          && file_entry != "."
 
1451
          && file_entry != "..")
1363
1452
      {
1364
 
        string file_entry((*iter)->filename);
1365
 
 
1366
 
        if (not file_entry.empty()
1367
 
            && file_entry != "."
1368
 
            && file_entry != "..")
1369
 
        {
1370
 
          fs::path the_entry(config_conf_d_location);
1371
 
          the_entry /= file_entry;
1372
 
          defaults_file_list.push_back(the_entry.file_string());
1373
 
        }
 
1453
        fs::path the_entry(config_conf_d_location);
 
1454
        the_entry /= file_entry;
 
1455
        defaults_file_list.push_back(the_entry.file_string());
1374
1456
      }
1375
1457
    }
1376
1458
  }
1377
1459
 
 
1460
  process_defaults_files();
1378
1461
  /* TODO: here is where we should add a process_env_vars */
1379
1462
 
1380
1463
  /* We need a notify here so that plugin_init will work properly */
1381
 
  try
1382
 
  {
1383
 
    po::notify(vm);
1384
 
  }
1385
 
  catch (po::validation_error &err)
1386
 
  {
1387
 
    errmsg_printf(error::ERROR,  
1388
 
                  _("%s: %s.\n"
1389
 
                    "Use --help to get a list of available options\n"),
1390
 
                  internal::my_progname, err.what());
1391
 
    unireg_abort(1);
1392
 
  }
1393
 
 
1394
 
  process_defaults_files();
1395
 
 
1396
 
  /* Process with notify a second time because a config file may contain
1397
 
     plugin loader options */
1398
 
 
1399
 
  try
1400
 
  {
1401
 
    po::notify(vm);
1402
 
  }
1403
 
  catch (po::validation_error &err)
1404
 
  {
1405
 
    errmsg_printf(error::ERROR,
1406
 
                  _("%s: %s.\n"
1407
 
                    "Use --help to get a list of available options\n"),
1408
 
                  internal::my_progname, err.what());
1409
 
    unireg_abort(1);
1410
 
  }
1411
 
 
1412
 
  return 0;
1413
 
}
1414
 
 
1415
 
int init_remaining_variables(module::Registry &plugins)
1416
 
{
1417
 
  int style = po::command_line_style::default_style & ~po::command_line_style::allow_guessing;
1418
 
 
1419
 
  current_pid= getpid();                /* Save for later ref */
1420
 
 
 
1464
  po::notify(vm);
1421
1465
  /* At this point, we've read all the options we need to read from files and
1422
1466
     collected most of them into unknown options - now let's load everything
1423
1467
  */
1424
1468
 
1425
1469
  if (plugin_init(plugins, plugin_options))
1426
1470
  {
1427
 
    errmsg_printf(error::ERROR, _("Failed to initialize plugins\n"));
 
1471
    errmsg_printf(ERRMSG_LVL_ERROR, _("Failed to initialize plugins\n"));
1428
1472
    unireg_abort(1);
1429
1473
  }
1430
1474
 
1435
1479
  {
1436
1480
    po::parsed_options final_parsed=
1437
1481
      po::command_line_parser(unknown_options).style(style).
1438
 
      options(full_options).extra_parser(dpo::parse_size_arg).run();
 
1482
      options(full_options).extra_parser(parse_size_arg).run();
1439
1483
 
1440
1484
    final_unknown_options=
1441
1485
      po::collect_unrecognized(final_parsed.options, po::include_positional);
1443
1487
    po::store(final_parsed, vm);
1444
1488
 
1445
1489
  }
1446
 
  catch (po::validation_error &err)
1447
 
  {
1448
 
    errmsg_printf(error::ERROR,
1449
 
                  _("%s: %s.\n"
1450
 
                    "Use --help to get a list of available options\n"),
1451
 
                  internal::my_progname, err.what());
1452
 
    unireg_abort(1);
1453
 
  }
1454
1490
  catch (po::invalid_command_line_syntax &err)
1455
1491
  {
1456
 
    errmsg_printf(error::ERROR,
 
1492
    errmsg_printf(ERRMSG_LVL_ERROR,
1457
1493
                  _("%s: %s.\n"
1458
1494
                    "Use --help to get a list of available options\n"),
1459
1495
                  internal::my_progname, err.what());
1461
1497
  }
1462
1498
  catch (po::unknown_option &err)
1463
1499
  {
1464
 
    errmsg_printf(error::ERROR,
 
1500
    errmsg_printf(ERRMSG_LVL_ERROR,
1465
1501
                  _("%s\nUse --help to get a list of available options\n"),
1466
1502
                  err.what());
1467
1503
    unireg_abort(1);
1468
1504
  }
1469
1505
 
1470
 
  try
1471
 
  {
1472
 
    po::notify(vm);
1473
 
  }
1474
 
  catch (po::validation_error &err)
1475
 
  {
1476
 
    errmsg_printf(error::ERROR,  
1477
 
                  _("%s: %s.\n"
1478
 
                    "Use --help to get a list of available options\n"),
1479
 
                  internal::my_progname, err.what());
1480
 
    unireg_abort(1);
1481
 
  }
 
1506
  po::notify(vm);
1482
1507
 
1483
1508
  get_options();
1484
1509
 
1497
1522
 
1498
1523
  fix_paths();
1499
1524
 
 
1525
  current_pid= getpid();                /* Save for later ref */
1500
1526
  init_time();                          /* Init time-functions (read zone) */
1501
1527
 
1502
1528
  if (item_create_init())
1503
1529
    return 1;
1504
 
  if (sys_var_init())
 
1530
  if (set_var_init())
1505
1531
    return 1;
1506
1532
  /* Creates static regex matching for temporal values */
1507
1533
  if (! init_temporal_formats())
1510
1536
  if (!(default_charset_info=
1511
1537
        get_charset_by_csname(default_character_set_name, MY_CS_PRIMARY)))
1512
1538
  {
1513
 
    errmsg_printf(error::ERROR, _("Error getting default charset"));
 
1539
    errmsg_printf(ERRMSG_LVL_ERROR, _("Error getting default charset"));
1514
1540
    return 1;                           // Eof of the list
1515
1541
  }
1516
1542
 
1522
1548
    const CHARSET_INFO * const default_collation= get_charset_by_name(default_collation_name);
1523
1549
    if (not default_collation)
1524
1550
    {
1525
 
      errmsg_printf(error::ERROR, _(ER(ER_UNKNOWN_COLLATION)), default_collation_name);
 
1551
      errmsg_printf(ERRMSG_LVL_ERROR, _(ER(ER_UNKNOWN_COLLATION)), default_collation_name);
1526
1552
      return 1;
1527
1553
    }
1528
1554
    if (not my_charset_same(default_charset_info, default_collation))
1529
1555
    {
1530
 
      errmsg_printf(error::ERROR, _(ER(ER_COLLATION_CHARSET_MISMATCH)),
 
1556
      errmsg_printf(ERRMSG_LVL_ERROR, _(ER(ER_COLLATION_CHARSET_MISMATCH)),
1531
1557
                    default_collation_name,
1532
1558
                    default_charset_info->csname);
1533
1559
      return 1;
1540
1566
  if (not (character_set_filesystem=
1541
1567
           get_charset_by_csname(character_set_filesystem_name, MY_CS_PRIMARY)))
1542
1568
  {
1543
 
    errmsg_printf(error::ERROR, _("Error setting collation"));
 
1569
    errmsg_printf(ERRMSG_LVL_ERROR, _("Error setting collation"));
1544
1570
    return 1;
1545
1571
  }
1546
1572
  global_system_variables.character_set_filesystem= character_set_filesystem;
1548
1574
  if (!(my_default_lc_time_names=
1549
1575
        my_locale_by_name(lc_time_names_name)))
1550
1576
  {
1551
 
    errmsg_printf(error::ERROR, _("Unknown locale: '%s'"), lc_time_names_name);
 
1577
    errmsg_printf(ERRMSG_LVL_ERROR, _("Unknown locale: '%s'"), lc_time_names_name);
1552
1578
    return 1;
1553
1579
  }
1554
1580
  global_system_variables.lc_time_names= my_default_lc_time_names;
1568
1594
  */
1569
1595
  if (table_cache_init())
1570
1596
  {
1571
 
    errmsg_printf(error::ERROR, _("Could not initialize table cache\n"));
 
1597
    errmsg_printf(ERRMSG_LVL_ERROR, _("Could not initialize table cache\n"));
1572
1598
    unireg_abort(1);
1573
1599
  }
1574
 
 
1575
 
  // Resize the definition Cache at startup
1576
 
  table::Cache::singleton().rehash(table_def_size);
1577
 
  definition::Cache::singleton().rehash(table_def_size);
1578
 
  message::Cache::singleton().rehash(table_def_size);
 
1600
  TableShare::cacheStart();
1579
1601
 
1580
1602
  setup_fpu();
1581
1603
 
1583
1605
 
1584
1606
  if (xid_cache_init())
1585
1607
  {
1586
 
    errmsg_printf(error::ERROR, _("XA cache initialization failed: Out of memory\n"));
 
1608
    errmsg_printf(ERRMSG_LVL_ERROR, _("XA cache initialization failed: Out of memory\n"));
1587
1609
    unireg_abort(1);
1588
1610
  }
1589
1611
 
1612
1634
 
1613
1635
  if (plugin::Scheduler::setPlugin(scheduler_name))
1614
1636
  {
1615
 
      errmsg_printf(error::ERROR,
 
1637
      errmsg_printf(ERRMSG_LVL_ERROR,
1616
1638
                   _("No scheduler found, cannot continue!\n"));
1617
1639
      unireg_abort(1);
1618
1640
  }
1637
1659
    engine= plugin::StorageEngine::findByName(name);
1638
1660
    if (engine == NULL)
1639
1661
    {
1640
 
      errmsg_printf(error::ERROR, _("Unknown/unsupported storage engine: %s\n"),
 
1662
      errmsg_printf(ERRMSG_LVL_ERROR, _("Unknown/unsupported storage engine: %s\n"),
1641
1663
                    default_storage_engine_str);
1642
1664
      unireg_abort(1);
1643
1665
    }
1678
1700
  OPT_BACK_LOG,
1679
1701
  OPT_JOIN_BUFF_SIZE,
1680
1702
  OPT_MAX_ALLOWED_PACKET,
 
1703
  OPT_MAX_CONNECT_ERRORS,
1681
1704
  OPT_MAX_HEP_TABLE_SIZE,
1682
1705
  OPT_MAX_JOIN_SIZE,
1683
1706
  OPT_MAX_SORT_LENGTH,
1731
1754
  {"help", '?', N_("Display this help and exit."),
1732
1755
   (char**) &opt_help, (char**) &opt_help, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
1733
1756
   0, 0},
1734
 
  {"daemon", 'd', N_("Run as daemon."),
1735
 
   (char**) &opt_daemon, (char**) &opt_daemon, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
1736
 
   0, 0},
1737
1757
  {"auto-increment-increment", OPT_AUTO_INCREMENT,
1738
1758
   N_("Auto-increment columns are incremented by this"),
1739
1759
   (char**) &global_system_variables.auto_increment_increment,
1770
1790
  {"datadir", 'h',
1771
1791
   N_("Path to the database root."),
1772
1792
   NULL, NULL, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
 
1793
  {"default-storage-engine", OPT_STORAGE_ENGINE,
 
1794
   N_("Set the default storage engine (table type) for tables."),
 
1795
   (char**)&default_storage_engine_str, (char**)&default_storage_engine_str,
 
1796
   0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
 
1797
  {"default-time-zone", OPT_DEFAULT_TIME_ZONE,
 
1798
   N_("Set the default time zone."),
 
1799
   (char**) &default_tz_name, (char**) &default_tz_name,
 
1800
   0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
1773
1801
  /* See how it's handled in get_one_option() */
1774
1802
  {"exit-info", 'T',
1775
1803
   N_("Used for debugging;  Use at your own risk!"),
1780
1808
   N_("Set up signals usable for debugging"),
1781
1809
   (char**) &opt_debugging, (char**) &opt_debugging,
1782
1810
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
 
1811
  {"lc-time-names", OPT_LC_TIME_NAMES,
 
1812
   N_("Set the language used for the month names and the days of the week."),
 
1813
   (char**) &lc_time_names_name,
 
1814
   (char**) &lc_time_names_name,
 
1815
   0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
1783
1816
  {"log-warnings", 'W',
1784
1817
   N_("Log some not critical warnings to the log file."),
1785
1818
   (char**) &global_system_variables.log_warnings,
1822
1855
      "supported)"),
1823
1856
   (char**) &internal::timed_mutexes, (char**) &internal::timed_mutexes, 0, GET_BOOL, NO_ARG, 0,
1824
1857
    0, 0, 0, 0, 0},
 
1858
  {"tmpdir", 't',
 
1859
   N_("Path for temporary files."),
 
1860
   (char**) &opt_drizzle_tmpdir,
 
1861
   (char**) &opt_drizzle_tmpdir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
1825
1862
  {"transaction-isolation", OPT_TX_ISOLATION,
1826
1863
   N_("Default transaction isolation level."),
1827
1864
   0, 0, 0, GET_STR, REQUIRED_ARG, 0,
1830
1867
   N_("Run drizzled daemon as user."),
1831
1868
   0, 0, 0, GET_STR, REQUIRED_ARG,
1832
1869
   0, 0, 0, 0, 0, 0},
 
1870
  {"version", 'V',
 
1871
   N_("Output version information and exit."),
 
1872
   0, 0, 0, GET_NO_ARG,
 
1873
   NO_ARG, 0, 0, 0, 0, 0, 0},
1833
1874
  {"back_log", OPT_BACK_LOG,
1834
1875
   N_("The number of outstanding connection requests Drizzle can have. This "
1835
1876
      "comes into play when the main Drizzle thread gets very many connection "
1848
1889
   (char**) &global_system_variables.div_precincrement,
1849
1890
   (char**) &max_system_variables.div_precincrement, 0, GET_UINT,
1850
1891
   REQUIRED_ARG, 4, 0, DECIMAL_MAX_SCALE, 0, 0, 0},
 
1892
  { "group_concat_max_len", OPT_GROUP_CONCAT_MAX_LEN,
 
1893
    N_("The maximum length of the result of function  group_concat."),
 
1894
    (char**) &global_system_variables.group_concat_max_len,
 
1895
    (char**) &max_system_variables.group_concat_max_len, 0, GET_UINT64,
 
1896
    REQUIRED_ARG, 1024, 4, ULONG_MAX, 0, 1, 0},
1851
1897
  { "join_buffer_size", OPT_JOIN_BUFF_SIZE,
1852
1898
    N_("The size of the buffer that is used for full joins."),
1853
1899
   (char**) &global_system_variables.join_buff_size,
1858
1904
   N_("Max packetlength to send/receive from to server."),
1859
1905
   (char**) &global_system_variables.max_allowed_packet,
1860
1906
   (char**) &max_system_variables.max_allowed_packet, 0, GET_UINT32,
1861
 
   REQUIRED_ARG, 64*1024*1024L, 1024, 1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
 
1907
   REQUIRED_ARG, 1024*1024L, 1024, 1024L*1024L*1024L, MALLOC_OVERHEAD, 1024, 0},
 
1908
  {"max_connect_errors", OPT_MAX_CONNECT_ERRORS,
 
1909
   N_("If there is more than this number of interrupted connections from a "
 
1910
      "host this host will be blocked from further connections."),
 
1911
   (char**) &max_connect_errors, (char**) &max_connect_errors, 0, GET_UINT64,
 
1912
   REQUIRED_ARG, MAX_CONNECT_ERRORS, 1, ULONG_MAX, 0, 1, 0},
 
1913
  {"max_error_count", OPT_MAX_ERROR_COUNT,
 
1914
   N_("Max number of errors/warnings to store for a statement."),
 
1915
   (char**) &global_system_variables.max_error_count,
 
1916
   (char**) &max_system_variables.max_error_count,
 
1917
   0, GET_UINT64, REQUIRED_ARG, DEFAULT_ERROR_COUNT, 0, 65535, 0, 1, 0},
1862
1918
  {"max_heap_table_size", OPT_MAX_HEP_TABLE_SIZE,
1863
1919
   N_("Don't allow creation of heap tables bigger than this."),
1864
1920
   (char**) &global_system_variables.max_heap_table_size,
1978
2034
   (char**) &max_system_variables.read_rnd_buff_size, 0,
1979
2035
   GET_UINT, REQUIRED_ARG, 256*1024L, 64 /*IO_SIZE*2+MALLOC_OVERHEAD*/ ,
1980
2036
   UINT32_MAX, MALLOC_OVERHEAD, 1 /* Small lower limit to be able to test MRR */, 0},
 
2037
  {"scheduler", OPT_SCHEDULER,
 
2038
   N_("Select scheduler to be used (by default multi-thread)."),
 
2039
   (char**)&opt_scheduler, (char**)&opt_scheduler,
 
2040
   0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
1981
2041
  /* x8 compared to MySQL's x2. We have UTF8 to consider. */
1982
2042
  {"sort_buffer_size", OPT_SORT_BUFFER,
1983
2043
   N_("Each thread that needs to do a sort allocates a buffer of this size."),
2071
2131
  opt_tc_log_file= (char *)"tc.log";      // no hostname in tc_log file name !
2072
2132
  cleanup_done= 0;
2073
2133
  dropping_tables= ha_open_options=0;
2074
 
  getDebug().reset();
 
2134
  test_flags.reset();
2075
2135
  wake_thread=0;
2076
2136
  abort_loop= select_thread_in_use= false;
2077
 
  shutdown_in_progress= 0;
 
2137
  ready_to_exit= shutdown_in_progress= 0;
2078
2138
  drizzled_user= drizzled_chroot= 0;
2079
2139
  memset(&current_global_counters, 0, sizeof(current_global_counters));
2080
2140
  key_map_full.set();
2089
2149
  session_startup_options= (OPTION_AUTO_IS_NULL | OPTION_SQL_NOTES);
2090
2150
  refresh_version= 1L;  /* Increments on each reload */
2091
2151
  global_thread_id= 1UL;
2092
 
  session::Cache::singleton().getCache().clear();
 
2152
  getSessionList().clear();
2093
2153
 
2094
2154
  /* Variables in libraries */
2095
2155
  default_character_set_name= "utf8";
2139
2199
#else
2140
2200
  have_symlink=SHOW_OPTION_YES;
2141
2201
#endif
 
2202
 
 
2203
  connection_count= 0;
2142
2204
}
2143
2205
 
2144
2206
 
2159
2221
      drizzled_user= (char *)vm["user"].as<string>().c_str();
2160
2222
 
2161
2223
    else
2162
 
      errmsg_printf(error::WARN, _("Ignoring user change to '%s' because the user was "
 
2224
      errmsg_printf(ERRMSG_LVL_WARN, _("Ignoring user change to '%s' because the user was "
2163
2225
                                       "set to '%s' earlier on the command line\n"),
2164
2226
                    vm["user"].as<string>().c_str(), drizzled_user);
2165
2227
  }
2170
2232
    exit(0);
2171
2233
  }
2172
2234
 
2173
 
  if (vm.count("sort-heap-threshold"))
2174
 
  {
2175
 
    if ((vm["sort-heap-threshold"].as<uint64_t>() > 0) and
2176
 
      (vm["sort-heap-threshold"].as<uint64_t>() < 
2177
 
      global_system_variables.sortbuff_size))
2178
 
    {
2179
 
      cout << _("Error: sort-heap-threshold cannot be less than sort-buffer-size") << endl;
2180
 
      exit(-1);
2181
 
    }
2182
 
 
2183
 
    global_sort_buffer.setMaxSize(vm["sort-heap-threshold"].as<uint64_t>());
2184
 
  }
2185
 
 
2186
 
  if (vm.count("join-heap-threshold"))
2187
 
  {
2188
 
    if ((vm["join-heap-threshold"].as<uint64_t>() > 0) and
2189
 
      (vm["join-heap-threshold"].as<uint64_t>() <
2190
 
      global_system_variables.join_buff_size))
2191
 
    {
2192
 
      cout << _("Error: join-heap-threshold cannot be less than join-buffer-size") << endl;
2193
 
      exit(-1);
2194
 
    }
2195
 
 
2196
 
    global_join_buffer.setMaxSize(vm["join-heap-threshold"].as<uint64_t>());
2197
 
  }
2198
 
 
2199
 
  if (vm.count("read-rnd-threshold"))
2200
 
  {
2201
 
    if ((vm["read-rnd-threshold"].as<uint64_t>() > 0) and
2202
 
      (vm["read-rnd-threshold"].as<uint64_t>() <
2203
 
      global_system_variables.read_rnd_buff_size))
2204
 
    {
2205
 
      cout << _("Error: read-rnd-threshold cannot be less than read-rnd-buffer-size") << endl;
2206
 
      exit(-1);
2207
 
    }
2208
 
 
2209
 
    global_read_rnd_buffer.setMaxSize(vm["read-rnd-threshold"].as<uint64_t>());
2210
 
  }
2211
 
 
2212
 
  if (vm.count("read-buffer-threshold"))
2213
 
  {
2214
 
    if ((vm["read-buffer-threshold"].as<uint64_t>() > 0) and
2215
 
      (vm["read-buffer-threshold"].as<uint64_t>() <
2216
 
      global_system_variables.read_buff_size))
2217
 
    {
2218
 
      cout << _("Error: read-buffer-threshold cannot be less than read-buffer-size") << endl;
2219
 
      exit(-1);
2220
 
    }
2221
 
 
2222
 
    global_read_buffer.setMaxSize(vm["read-buffer-threshold"].as<uint64_t>());
2223
 
  }
2224
 
 
2225
2235
  if (vm.count("exit-info"))
2226
2236
  {
2227
2237
    if (vm["exit-info"].as<long>())
2228
2238
    {
2229
 
      getDebug().set((uint32_t) vm["exit-info"].as<long>());
 
2239
      test_flags.set((uint32_t) vm["exit-info"].as<long>());
2230
2240
    }
2231
2241
  }
2232
2242
 
2233
2243
  if (vm.count("want-core"))
2234
2244
  {
2235
 
    getDebug().set(debug::CORE_ON_SIGNAL);
 
2245
    test_flags.set(TEST_CORE_ON_SIGNAL);
2236
2246
  }
2237
2247
 
2238
2248
  if (vm.count("skip-stack-trace"))
2239
2249
  {
2240
 
    getDebug().set(debug::NO_STACKTRACE);
 
2250
    test_flags.set(TEST_NO_STACKTRACE);
2241
2251
  }
2242
2252
 
2243
2253
  if (vm.count("skip-symlinks"))
2247
2257
 
2248
2258
  if (vm.count("transaction-isolation"))
2249
2259
  {
2250
 
    int type= tx_isolation_typelib.find_type_or_exit(vm["transaction-isolation"].as<string>().c_str(), "transaction-isolation");
2251
 
    global_system_variables.tx_isolation= type - 1;
 
2260
    int type;
 
2261
    type= find_type_or_exit((char *)vm["transaction-isolation"].as<string>().c_str(), &tx_isolation_typelib, "transaction-isolation");
 
2262
    global_system_variables.tx_isolation= (type-1);
2252
2263
  }
2253
2264
 
2254
2265
  /* @TODO Make this all strings */
2275
2286
  if (opt_debugging)
2276
2287
  {
2277
2288
    /* Allow break with SIGINT, no core or stack trace */
2278
 
    getDebug().set(debug::ALLOW_SIGINT);
2279
 
    getDebug().set(debug::NO_STACKTRACE);
2280
 
    getDebug().reset(debug::CORE_ON_SIGNAL);
 
2289
    test_flags.set(TEST_SIGINT);
 
2290
    test_flags.set(TEST_NO_STACKTRACE);
 
2291
    test_flags.reset(TEST_CORE_ON_SIGNAL);
2281
2292
  }
2282
2293
 
2283
2294
  if (drizzled_chroot)
2299
2310
    pid_file_path= getDataHome();
2300
2311
    pid_file_path /= pid_file;
2301
2312
  }
2302
 
  pid_file= fs::system_complete(pid_file_path);
 
2313
  pid_file= pid_file_path;
2303
2314
 
2304
2315
  if (not opt_help)
2305
2316
  {
2329
2340
    {
2330
2341
      if (errno != EEXIST)
2331
2342
      {
2332
 
        errmsg_printf(error::ERROR, _("There was an error creating the '%s' part of the path '%s'.  Please check the path exists and is writable.\n"), fs::path(drizzle_tmpdir).leaf().c_str(), drizzle_tmpdir.c_str());
 
2343
        perror(drizzle_tmpdir.c_str());
2333
2344
        exit(1);
2334
2345
      }
2335
2346
    }
2336
2347
 
2337
2348
    if (stat(drizzle_tmpdir.c_str(), &buf) || (S_ISDIR(buf.st_mode) == false))
2338
2349
    {
2339
 
      errmsg_printf(error::ERROR, _("There was an error opening the path '%s', please check the path exists and is writable.\n"), drizzle_tmpdir.c_str());
 
2350
      perror(drizzle_tmpdir.c_str());
2340
2351
      exit(1);
2341
2352
    }
2342
2353
  }