~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/main.cc

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

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
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
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
44
44
 
45
45
#include <boost/filesystem.hpp>
46
46
 
47
 
#include "drizzled/plugin.h"
48
 
#include "drizzled/gettext.h"
49
 
#include "drizzled/configmake.h"
50
 
#include "drizzled/session.h"
51
 
#include "drizzled/internal/my_sys.h"
52
 
#include "drizzled/unireg.h"
53
 
#include "drizzled/drizzled.h"
54
 
#include "drizzled/errmsg_print.h"
55
 
#include "drizzled/data_home.h"
56
 
#include "drizzled/plugin/listen.h"
57
 
#include "drizzled/plugin/client.h"
58
 
#include "drizzled/pthread_globals.h"
59
 
#include "drizzled/tztime.h"
60
 
#include "drizzled/signal_handler.h"
61
 
#include "drizzled/replication_services.h"
 
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);
62
72
 
63
73
using namespace drizzled;
64
74
using namespace std;
67
77
static pthread_t select_thread;
68
78
static uint32_t thr_kill_signal;
69
79
 
 
80
extern bool opt_daemon;
 
81
 
70
82
 
71
83
/**
72
84
  All global error messages are sent here where the first one is stored
73
85
  for the client.
74
86
*/
75
 
static void my_message_sql(uint32_t error, const char *str, myf MyFlags)
 
87
static void my_message_sql(drizzled::error_t error, const char *str, myf MyFlags)
76
88
{
77
89
  Session *session;
78
90
  /*
85
97
      session->is_fatal_error= 1;
86
98
 
87
99
    /*
88
 
      TODO: There are two exceptions mechanism (Session and sp_rcontext),
 
100
      @TODO There are two exceptions mechanism (Session and sp_rcontext),
89
101
      this could be improved by having a common stack of handlers.
90
102
    */
91
 
    if (session->handle_error(error, str,
92
 
                          DRIZZLE_ERROR::WARN_LEVEL_ERROR))
93
 
      return;;
 
103
    if (session->handle_error(error, str, DRIZZLE_ERROR::WARN_LEVEL_ERROR))
 
104
      return;
94
105
 
95
106
    /*
96
107
      session->lex->current_select == 0 if lex structure is not inited
97
108
      (not query command (COM_QUERY))
98
109
    */
99
110
    if (! (session->lex->current_select &&
100
 
        session->lex->current_select->no_error && !session->is_fatal_error))
 
111
           session->lex->current_select->no_error && !session->is_fatal_error))
101
112
    {
102
113
      if (! session->main_da.is_error())            // Return only first message
103
114
      {
104
 
        if (error == 0)
 
115
        if (error == EE_OK)
105
116
          error= ER_UNKNOWN_ERROR;
 
117
 
106
118
        if (str == NULL)
107
119
          str= ER(error);
 
120
 
108
121
        session->main_da.set_error_status(error, str);
109
122
      }
110
123
    }
118
131
      session->no_warnings_for_error= true;
119
132
      push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR, error, str);
120
133
      session->no_warnings_for_error= false;
121
 
      }
122
134
    }
123
 
    if (!session || MyFlags & ME_NOREFRESH)
124
 
        errmsg_printf(ERRMSG_LVL_ERROR, "%s: %s",internal::my_progname,str);
 
135
  }
 
136
 
 
137
  if (not session || MyFlags & ME_NOREFRESH)
 
138
  {
 
139
    errmsg_printf(error::ERROR, "%s: %s",internal::my_progname,str);
 
140
  }
125
141
}
126
142
 
127
143
static void init_signals(void)
129
145
  sigset_t set;
130
146
  struct sigaction sa;
131
147
 
132
 
  if (!(test_flags.test(TEST_NO_STACKTRACE) || 
133
 
        test_flags.test(TEST_CORE_ON_SIGNAL)))
 
148
  if (not (getDebug().test(debug::NO_STACKTRACE) || 
 
149
        getDebug().test(debug::CORE_ON_SIGNAL)))
134
150
  {
135
151
    sa.sa_flags = SA_RESETHAND | SA_NODEFER;
136
152
    sigemptyset(&sa.sa_mask);
146
162
    sigaction(SIGFPE, &sa, NULL);
147
163
  }
148
164
 
149
 
  if (test_flags.test(TEST_CORE_ON_SIGNAL))
 
165
  if (getDebug().test(debug::CORE_ON_SIGNAL))
150
166
  {
151
167
    /* Change limits so that we will get a core file */
152
168
    struct rlimit rl;
153
169
    rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
154
170
    if (setrlimit(RLIMIT_CORE, &rl) && global_system_variables.log_warnings)
155
 
        errmsg_printf(ERRMSG_LVL_WARN,
 
171
        errmsg_printf(error::WARN,
156
172
                      _("setrlimit could not change the size of core files "
157
173
                        "to 'infinity';  We may not be able to generate a "
158
174
                        "core file on signals"));
177
193
#ifdef SIGTSTP
178
194
  sigaddset(&set,SIGTSTP);
179
195
#endif
180
 
  if (test_flags.test(TEST_SIGINT))
 
196
  if (getDebug().test(debug::ALLOW_SIGINT))
181
197
  {
182
198
    sa.sa_flags= 0;
183
199
    sa.sa_handler= drizzled_end_thread_signal;
195
211
  return;
196
212
}
197
213
 
198
 
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level, const char* filename,
199
 
                       int line, const string& message) throw(const char *)
 
214
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level,
 
215
                                    const char* ,
 
216
                                    int, const string& ) throw(const char *)
200
217
{
201
 
  (void)filename;
202
 
  (void)line;
203
 
  (void)message;
204
218
  switch(level)
205
219
  {
206
220
  case google::protobuf::LOGLEVEL_INFO:
219
233
# if defined(HAVE_LOCALE_H)
220
234
  setlocale(LC_ALL, "");
221
235
# endif
222
 
  bindtextdomain("drizzle", LOCALEDIR);
223
 
  textdomain("drizzle");
 
236
  bindtextdomain("drizzle7", LOCALEDIR);
 
237
  textdomain("drizzle7");
224
238
#endif
225
239
 
226
240
  module::Registry &modules= module::Registry::singleton();
227
 
  plugin::Client *client;
228
 
  Session *session;
229
241
 
230
242
  MY_INIT(argv[0]);             // init my_sys library & pthreads
231
243
  /* nothing should come before this line ^^^ */
237
249
 
238
250
  /* Function generates error messages before abort */
239
251
  error_handler_hook= my_message_sql;
 
252
 
240
253
  /* init_common_variables must get basic settings such as data_home_dir
241
254
     and plugin_load_list. */
242
 
  if (init_common_variables(argc, argv, modules))
 
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))
243
272
    unireg_abort(1);                            // Will do exit
244
273
 
245
274
  /*
254
283
 
255
284
  if (not opt_help)
256
285
  {
257
 
    if (chdir(getDataHome().c_str()))
 
286
    if (chdir(getDataHome().file_string().c_str()))
258
287
    {
259
 
      errmsg_printf(ERRMSG_LVL_ERROR,
 
288
      errmsg_printf(error::ERROR,
260
289
                    _("Data directory %s does not exist\n"),
261
 
                    getDataHome().c_str());
 
290
                    getDataHome().file_string().c_str());
262
291
      unireg_abort(1);
263
292
    }
264
293
    if (mkdir("local", 0700))
267
296
    }
268
297
    if (chdir("local"))
269
298
    {
270
 
      errmsg_printf(ERRMSG_LVL_ERROR,
 
299
      errmsg_printf(error::ERROR,
271
300
                    _("Local catalog %s/local does not exist\n"),
272
 
                    getDataHome().c_str());
 
301
                    getDataHome().file_string().c_str());
273
302
      unireg_abort(1);
274
303
    }
275
 
    /* TODO: This is a hack until we can properly support std::string in sys_var*/
276
 
    char **data_home_ptr= getDatadirPtr();
277
 
    fs::path full_data_home_path(fs::system_complete(fs::path(getDataHome())));
278
 
    std::string full_data_home(full_data_home_path.file_string());
279
 
    *data_home_ptr= new char[full_data_home.size()+1] ();
280
 
    memcpy(*data_home_ptr, full_data_home.c_str(), full_data_home.size());
281
 
    getDataHomeCatalog()= "./";
282
 
    getDataHome()= "../";
 
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;
283
308
  }
284
309
 
285
310
 
289
314
    server_id= 1;
290
315
  }
291
316
 
292
 
  if (init_server_components(modules))
 
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
293
330
    unireg_abort(1);
 
331
  }
 
332
 
294
333
 
295
334
  /**
296
335
   * This check must be done after init_server_components for now
309
348
  if (plugin::Listen::setup())
310
349
    unireg_abort(1);
311
350
 
312
 
 
313
351
  assert(plugin::num_trx_monitored_objects > 0);
314
 
  if (drizzle_rm_tmp_tables() ||
315
 
      my_tz_init((Session *)0, default_tz_name))
 
352
  if (drizzle_rm_tmp_tables() || my_tz_init((Session *)0, default_tz_name))
316
353
  {
317
354
    abort_loop= true;
318
355
    select_thread_in_use=0;
319
356
    (void) pthread_kill(signal_thread, SIGTERM);
320
357
 
321
 
    (void) unlink(pidfile_name);        // Not needed anymore
 
358
    (void) unlink(pid_file.file_string().c_str());      // Not needed anymore
322
359
 
323
 
    exit(1);
 
360
    unireg_abort(1);
324
361
  }
325
362
 
326
 
  errmsg_printf(ERRMSG_LVL_INFO, _(ER(ER_STARTUP)), internal::my_progname,
 
363
  errmsg_printf(error::INFO, _(ER(ER_STARTUP)), internal::my_progname,
327
364
                PANDORA_RELEASE_VERSION, COMPILATION_COMMENT);
328
365
 
329
366
 
330
 
  /* Listen for new connections and start new session for each connection
 
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
331
390
     accepted. The listen.getClient() method will return NULL when the server
332
 
     should be shutdown. */
 
391
     should be shutdown.
 
392
   */
 
393
  plugin::Client *client;
333
394
  while ((client= plugin::Listen::getClient()) != NULL)
334
395
  {
335
 
    if (!(session= new Session(client)))
 
396
    Session::shared_ptr session;
 
397
    session= Session::make_shared(client, client->catalog());
 
398
 
 
399
    if (not session)
336
400
    {
337
401
      delete client;
338
402
      continue;
339
403
    }
340
404
 
341
405
    /* If we error on creation we drop the connection and delete the session. */
342
 
    if (session->schedule())
 
406
    if (Session::schedule(session))
343
407
      Session::unlink(session);
344
408
  }
345
409
 
346
 
  LOCK_thread_count.lock();
347
 
  select_thread_in_use=0;                       // For close_connections
348
 
  LOCK_thread_count.unlock();
 
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
  }
349
426
  COND_thread_count.notify_all();
350
427
 
351
428
  /* Wait until cleanup is done */
352
 
  {
353
 
    boost::mutex::scoped_lock scopedLock(LOCK_thread_count);
354
 
    while (!ready_to_exit)
355
 
      COND_server_end.wait(scopedLock);
356
 
  }
 
429
  session::Cache::singleton().shutdownSecond();
357
430
 
358
431
  clean_up(1);
359
432
  module::Registry::shutdown();