~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/main.cc

This will now require someone to do a --plugin-add in order to have csv,
archive, or blackhole running.

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
23
23
#include <signal.h>
24
24
#include <sys/resource.h>
25
25
#include <unistd.h>
26
 
#include <sys/stat.h>
27
 
#include <sys/types.h>
28
 
 
29
26
 
30
27
#if TIME_WITH_SYS_TIME
31
28
# include <sys/time.h>
42
39
# include <locale.h>
43
40
#endif
44
41
 
45
 
#include <boost/filesystem.hpp>
46
 
 
47
 
#include <drizzled/abort_exception.h>
48
 
#include <drizzled/catalog/local.h>
49
 
#include <drizzled/configmake.h>
50
 
#include <drizzled/data_home.h>
51
 
#include <drizzled/debug.h>
52
 
#include <drizzled/drizzled.h>
53
 
#include <drizzled/errmsg_print.h>
54
 
#include <drizzled/gettext.h>
55
 
#include <drizzled/internal/my_sys.h>
56
 
#include <drizzled/plugin.h>
57
 
#include <drizzled/plugin/client.h>
58
 
#include <drizzled/plugin/listen.h>
59
 
#include <drizzled/plugin/monitored_in_transaction.h>
60
 
#include <drizzled/pthread_globals.h>
61
 
#include <drizzled/replication_services.h>
62
 
#include <drizzled/session.h>
63
 
#include <drizzled/session/cache.h>
64
 
#include <drizzled/signal_handler.h>
65
 
#include <drizzled/transaction_services.h>
66
 
#include <drizzled/tztime.h>
67
 
#include <drizzled/unireg.h>
68
 
#include <drizzled/util/backtrace.h>
69
 
 
70
 
extern "C" int daemonize(int nochdir, int noclose, int wait_sigusr1);
71
 
extern "C" int daemon_is_ready(void);
 
42
 
 
43
#include "drizzled/plugin.h"
 
44
#include "drizzled/gettext.h"
 
45
#include "drizzled/configmake.h"
 
46
#include "drizzled/session.h"
 
47
#include "drizzled/internal/my_sys.h"
 
48
#include "drizzled/unireg.h"
 
49
#include "drizzled/drizzled.h"
 
50
#include "drizzled/errmsg_print.h"
 
51
#include "drizzled/data_home.h"
 
52
#include "drizzled/plugin/listen.h"
 
53
#include "drizzled/plugin/client.h"
 
54
#include "drizzled/pthread_globals.h"
 
55
#include "drizzled/tztime.h"
 
56
#include "drizzled/signal_handler.h"
 
57
#include "drizzled/replication_services.h"
72
58
 
73
59
using namespace drizzled;
74
60
using namespace std;
75
 
namespace fs=boost::filesystem;
76
61
 
77
62
static pthread_t select_thread;
78
63
static uint32_t thr_kill_signal;
79
64
 
80
 
extern bool opt_daemon;
81
 
 
82
 
 
83
65
/**
84
66
  All global error messages are sent here where the first one is stored
85
67
  for the client.
86
68
*/
87
 
static void my_message_sql(drizzled::error_t error, const char *str, myf MyFlags)
 
69
static void my_message_sql(uint32_t error, const char *str, myf MyFlags)
88
70
{
89
71
  Session *session;
90
72
  /*
97
79
      session->is_fatal_error= 1;
98
80
 
99
81
    /*
100
 
      @TODO There are two exceptions mechanism (Session and sp_rcontext),
 
82
      TODO: There are two exceptions mechanism (Session and sp_rcontext),
101
83
      this could be improved by having a common stack of handlers.
102
84
    */
103
 
    if (session->handle_error(error, str, DRIZZLE_ERROR::WARN_LEVEL_ERROR))
104
 
      return;
 
85
    if (session->handle_error(error, str,
 
86
                          DRIZZLE_ERROR::WARN_LEVEL_ERROR))
 
87
      return;;
105
88
 
106
89
    /*
107
90
      session->lex->current_select == 0 if lex structure is not inited
108
91
      (not query command (COM_QUERY))
109
92
    */
110
93
    if (! (session->lex->current_select &&
111
 
           session->lex->current_select->no_error && !session->is_fatal_error))
 
94
        session->lex->current_select->no_error && !session->is_fatal_error))
112
95
    {
113
96
      if (! session->main_da.is_error())            // Return only first message
114
97
      {
115
 
        if (error == EE_OK)
 
98
        if (error == 0)
116
99
          error= ER_UNKNOWN_ERROR;
117
 
 
118
100
        if (str == NULL)
119
101
          str= ER(error);
120
 
 
121
102
        session->main_da.set_error_status(error, str);
122
103
      }
123
104
    }
131
112
      session->no_warnings_for_error= true;
132
113
      push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR, error, str);
133
114
      session->no_warnings_for_error= false;
 
115
      }
134
116
    }
135
 
  }
136
 
 
137
 
  if (not session || MyFlags & ME_NOREFRESH)
138
 
  {
139
 
    errmsg_printf(error::ERROR, "%s: %s",internal::my_progname,str);
140
 
  }
 
117
    if (!session || MyFlags & ME_NOREFRESH)
 
118
        errmsg_printf(ERRMSG_LVL_ERROR, "%s: %s",internal::my_progname,str);
141
119
}
142
120
 
143
121
static void init_signals(void)
145
123
  sigset_t set;
146
124
  struct sigaction sa;
147
125
 
148
 
  if (not (getDebug().test(debug::NO_STACKTRACE) || 
149
 
        getDebug().test(debug::CORE_ON_SIGNAL)))
 
126
  if (!(test_flags.test(TEST_NO_STACKTRACE) || 
 
127
        test_flags.test(TEST_CORE_ON_SIGNAL)))
150
128
  {
151
129
    sa.sa_flags = SA_RESETHAND | SA_NODEFER;
152
130
    sigemptyset(&sa.sa_mask);
162
140
    sigaction(SIGFPE, &sa, NULL);
163
141
  }
164
142
 
165
 
  if (getDebug().test(debug::CORE_ON_SIGNAL))
 
143
  if (test_flags.test(TEST_CORE_ON_SIGNAL))
166
144
  {
167
145
    /* Change limits so that we will get a core file */
168
146
    struct rlimit rl;
169
147
    rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
170
148
    if (setrlimit(RLIMIT_CORE, &rl) && global_system_variables.log_warnings)
171
 
        errmsg_printf(error::WARN,
 
149
        errmsg_printf(ERRMSG_LVL_WARN,
172
150
                      _("setrlimit could not change the size of core files "
173
151
                        "to 'infinity';  We may not be able to generate a "
174
152
                        "core file on signals"));
193
171
#ifdef SIGTSTP
194
172
  sigaddset(&set,SIGTSTP);
195
173
#endif
196
 
  if (getDebug().test(debug::ALLOW_SIGINT))
 
174
  if (test_flags.test(TEST_SIGINT))
197
175
  {
198
176
    sa.sa_flags= 0;
199
177
    sa.sa_handler= drizzled_end_thread_signal;
211
189
  return;
212
190
}
213
191
 
214
 
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level,
215
 
                                    const char* ,
216
 
                                    int, const string& ) throw(const char *)
 
192
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level, const char* filename,
 
193
                       int line, const string& message) throw(const char *)
217
194
{
 
195
  (void)filename;
 
196
  (void)line;
 
197
  (void)message;
218
198
  switch(level)
219
199
  {
220
200
  case google::protobuf::LOGLEVEL_INFO:
233
213
# if defined(HAVE_LOCALE_H)
234
214
  setlocale(LC_ALL, "");
235
215
# endif
236
 
  bindtextdomain("drizzle7", LOCALEDIR);
237
 
  textdomain("drizzle7");
 
216
  bindtextdomain("drizzle", LOCALEDIR);
 
217
  textdomain("drizzle");
238
218
#endif
239
219
 
240
220
  module::Registry &modules= module::Registry::singleton();
 
221
  plugin::Client *client;
 
222
  Session *session;
241
223
 
242
224
  MY_INIT(argv[0]);             // init my_sys library & pthreads
243
225
  /* nothing should come before this line ^^^ */
247
229
 
248
230
  google::protobuf::SetLogHandler(&GoogleProtoErrorThrower);
249
231
 
250
 
  /* Function generates error messages before abort */
251
 
  error_handler_hook= my_message_sql;
252
 
 
253
 
  /* init_common_variables must get basic settings such as data_home_dir
254
 
     and plugin_load_list. */
255
 
  if (init_basic_variables(argc, argv))
256
 
    unireg_abort(1);                            // Will do exit
257
 
 
258
 
  if (opt_daemon)
259
 
  {
260
 
    if (signal(SIGHUP, SIG_IGN) == SIG_ERR)
261
 
    {
262
 
      perror("Failed to ignore SIGHUP");
263
 
    }
264
 
    if (daemonize(1, 1, 1) == -1)
265
 
    {
266
 
      fprintf(stderr, "failed to daemon() in order to daemonize\n");
267
 
      exit(EXIT_FAILURE);
268
 
    }
269
 
  }
270
 
 
271
 
  if (init_remaining_variables(modules))
272
 
    unireg_abort(1);                            // Will do exit
273
 
 
274
232
  /*
275
233
    init signals & alarm
276
234
    After this we can't quit by a simple unireg_abort
277
235
  */
 
236
  error_handler_hook= my_message_sql;
 
237
 
 
238
  /* Function generates error messages before abort */
 
239
  if (init_common_variables(DRIZZLE_CONFIG_NAME,
 
240
                            argc, argv, load_default_groups))
 
241
    unireg_abort(1);                            // Will do exit
 
242
 
278
243
  init_signals();
279
244
 
280
245
 
281
246
  select_thread=pthread_self();
282
247
  select_thread_in_use=1;
283
248
 
284
 
  if (not opt_help)
 
249
  if (chdir(data_home_real) && !opt_help)
285
250
  {
286
 
    if (chdir(getDataHome().file_string().c_str()))
287
 
    {
288
 
      errmsg_printf(error::ERROR,
289
 
                    _("Data directory %s does not exist\n"),
290
 
                    getDataHome().file_string().c_str());
291
 
      unireg_abort(1);
292
 
    }
293
 
    if (mkdir("local", 0700))
294
 
    {
295
 
      /* We don't actually care */
296
 
    }
297
 
    if (chdir("local"))
298
 
    {
299
 
      errmsg_printf(error::ERROR,
300
 
                    _("Local catalog %s/local does not exist\n"),
301
 
                    getDataHome().file_string().c_str());
302
 
      unireg_abort(1);
303
 
    }
304
 
 
305
 
    fs::path &full_data_home= getFullDataHome();
306
 
    full_data_home= fs::system_complete(getDataHome());
307
 
    std::cerr << "home " << full_data_home << std::endl;
 
251
    errmsg_printf(ERRMSG_LVL_ERROR, _("Data directory %s does not exist\n"), data_home_real);
 
252
    unireg_abort(1);
308
253
  }
309
 
 
310
 
 
 
254
  data_home= data_home_buff;
 
255
  data_home[0]=FN_CURLIB;               // all paths are relative from here
 
256
  data_home[1]=0;
 
257
  data_home_len= 2;
311
258
 
312
259
  if (server_id == 0)
313
260
  {
314
261
    server_id= 1;
315
262
  }
316
263
 
317
 
  try
318
 
  {
319
 
    if (init_server_components(modules))
320
 
      DRIZZLE_ABORT;
321
 
  }
322
 
  catch (abort_exception& ex)
323
 
  {
324
 
#if defined(DEBUG)
325
 
    cout << _("Drizzle has receieved an abort event.") << endl;
326
 
    cout << _("In Function: ") << *::boost::get_error_info<boost::throw_function>(ex) << endl;
327
 
    cout << _("In File: ") << *::boost::get_error_info<boost::throw_file>(ex) << endl;
328
 
    cout << _("On Line: ") << *::boost::get_error_info<boost::throw_line>(ex) << endl;
329
 
#endif
 
264
  if (init_server_components(modules))
330
265
    unireg_abort(1);
331
 
  }
332
 
 
333
266
 
334
267
  /**
335
268
   * This check must be done after init_server_components for now
349
282
    unireg_abort(1);
350
283
 
351
284
  assert(plugin::num_trx_monitored_objects > 0);
352
 
  if (drizzle_rm_tmp_tables() || my_tz_init((Session *)0, default_tz_name))
 
285
  if (drizzle_rm_tmp_tables() ||
 
286
      my_tz_init((Session *)0, default_tz_name))
353
287
  {
354
288
    abort_loop= true;
355
289
    select_thread_in_use=0;
356
290
    (void) pthread_kill(signal_thread, SIGTERM);
357
291
 
358
 
    (void) unlink(pid_file.file_string().c_str());      // Not needed anymore
 
292
    (void) unlink(pidfile_name);        // Not needed anymore
359
293
 
360
 
    unireg_abort(1);
 
294
    exit(1);
361
295
  }
362
296
 
363
 
  errmsg_printf(error::INFO, _(ER(ER_STARTUP)), internal::my_progname,
 
297
  errmsg_printf(ERRMSG_LVL_INFO, _(ER(ER_STARTUP)), internal::my_progname,
364
298
                PANDORA_RELEASE_VERSION, COMPILATION_COMMENT);
365
299
 
366
300
 
367
 
  TransactionServices &transaction_services= TransactionServices::singleton();
368
 
 
369
 
  /* Send server startup event */
370
 
  {
371
 
    Session::shared_ptr session;
372
 
 
373
 
    if ((session= Session::make_shared(plugin::Listen::getNullClient(), catalog::local())))
374
 
    {
375
 
      currentSession().release();
376
 
      currentSession().reset(session.get());
377
 
 
378
 
 
379
 
      transaction_services.sendStartupEvent(*session);
380
 
 
381
 
      plugin_startup_window(modules, *(session.get()));
382
 
    }
383
 
  }
384
 
 
385
 
  if (opt_daemon)
386
 
    daemon_is_ready();
387
 
 
388
 
  /* 
389
 
    Listen for new connections and start new session for each connection
 
301
  /* Listen for new connections and start new session for each connection
390
302
     accepted. The listen.getClient() method will return NULL when the server
391
 
     should be shutdown.
392
 
   */
393
 
  plugin::Client *client;
 
303
     should be shutdown. */
394
304
  while ((client= plugin::Listen::getClient()) != NULL)
395
305
  {
396
 
    Session::shared_ptr session;
397
 
    session= Session::make_shared(client, client->catalog());
398
 
 
399
 
    if (not session)
 
306
    if (!(session= new Session(client)))
400
307
    {
401
308
      delete client;
402
309
      continue;
403
310
    }
404
311
 
405
312
    /* If we error on creation we drop the connection and delete the session. */
406
 
    if (Session::schedule(session))
 
313
    if (session->schedule())
407
314
      Session::unlink(session);
408
315
  }
409
316
 
410
 
  /* Send server shutdown event */
411
 
  {
412
 
    Session::shared_ptr session;
413
 
 
414
 
    if ((session= Session::make_shared(plugin::Listen::getNullClient(), catalog::local())))
415
 
    {
416
 
      currentSession().release();
417
 
      currentSession().reset(session.get());
418
 
      transaction_services.sendShutdownEvent(*session.get());
419
 
    }
420
 
  }
421
 
 
422
 
  {
423
 
    boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
424
 
    select_thread_in_use= false;                        // For close_connections
425
 
  }
 
317
  LOCK_thread_count.lock();
 
318
  select_thread_in_use=0;                       // For close_connections
 
319
  LOCK_thread_count.unlock();
426
320
  COND_thread_count.notify_all();
427
321
 
428
322
  /* Wait until cleanup is done */
429
 
  session::Cache::singleton().shutdownSecond();
 
323
  LOCK_thread_count.lock();
 
324
  while (!ready_to_exit)
 
325
    pthread_cond_wait(COND_server_end.native_handle(), LOCK_thread_count.native_handle());
 
326
  LOCK_thread_count.unlock();
430
327
 
431
328
  clean_up(1);
432
329
  module::Registry::shutdown();
433
330
  internal::my_end();
434
 
 
435
331
  return 0;
436
332
}
437
333