~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/main.cc

  • Committer: Lee Bieber
  • Date: 2011-01-25 17:15:03 UTC
  • mfrom: (1994.4.55 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: kalebral@gmail.com-20110125171503-zyx91pfdyyw9lty5
Merge Marisa - 684803: Need to update Drizzledump documentation with migration conversions / caveats
Merge Marisa - 686641: Need to document removal of multi-table update/delete from Drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include <config.h>
 
20
#include "config.h"
21
21
 
22
22
#include <pthread.h>
23
23
#include <signal.h>
44
44
 
45
45
#include <boost/filesystem.hpp>
46
46
 
47
 
#include <drizzled/abort_exception.h>
48
 
#include <drizzled/catalog/local.h>
49
 
#include <drizzled/configmake.h>
50
 
#include <drizzled/data_home.h>
 
47
#include "drizzled/plugin.h"
 
48
#include "drizzled/gettext.h"
 
49
#include "drizzled/configmake.h"
 
50
#include "drizzled/session.h"
 
51
#include "drizzled/session/cache.h"
 
52
#include "drizzled/internal/my_sys.h"
 
53
#include "drizzled/unireg.h"
 
54
#include "drizzled/drizzled.h"
 
55
#include "drizzled/errmsg_print.h"
 
56
#include "drizzled/data_home.h"
 
57
#include "drizzled/plugin/listen.h"
 
58
#include "drizzled/plugin/client.h"
 
59
#include "drizzled/pthread_globals.h"
 
60
#include "drizzled/tztime.h"
 
61
#include "drizzled/signal_handler.h"
 
62
#include "drizzled/replication_services.h"
 
63
#include "drizzled/transaction_services.h"
 
64
#include "drizzled/catalog/local.h"
 
65
 
51
66
#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
 
#include <drizzled/current_session.h>
70
 
#include <drizzled/daemon.h>
 
67
 
 
68
#include "drizzled/util/backtrace.h"
71
69
 
72
70
using namespace drizzled;
73
71
using namespace std;
 
72
namespace fs=boost::filesystem;
74
73
 
75
74
static pthread_t select_thread;
76
75
static uint32_t thr_kill_signal;
77
76
 
78
 
extern bool opt_daemon;
79
 
 
80
77
 
81
78
/**
82
79
  All global error messages are sent here where the first one is stored
95
92
      session->is_fatal_error= 1;
96
93
 
97
94
    /*
98
 
      @TODO There are two exceptions mechanism (Session and sp_rcontext),
 
95
      TODO: There are two exceptions mechanism (Session and sp_rcontext),
99
96
      this could be improved by having a common stack of handlers.
100
97
    */
101
 
    if (session->handle_error(error, str, DRIZZLE_ERROR::WARN_LEVEL_ERROR))
102
 
      return;
 
98
    if (session->handle_error(error, str,
 
99
                          DRIZZLE_ERROR::WARN_LEVEL_ERROR))
 
100
      return;;
103
101
 
104
102
    /*
105
 
      session->getLex()->current_select == 0 if lex structure is not inited
 
103
      session->lex->current_select == 0 if lex structure is not inited
106
104
      (not query command (COM_QUERY))
107
105
    */
108
 
    if (! (session->getLex()->current_select &&
109
 
           session->getLex()->current_select->no_error && !session->is_fatal_error))
 
106
    if (! (session->lex->current_select &&
 
107
        session->lex->current_select->no_error && !session->is_fatal_error))
110
108
    {
111
109
      if (! session->main_da.is_error())            // Return only first message
112
110
      {
129
127
      session->no_warnings_for_error= true;
130
128
      push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR, error, str);
131
129
      session->no_warnings_for_error= false;
 
130
      }
132
131
    }
133
 
  }
134
132
 
135
 
  if (not session || MyFlags & ME_NOREFRESH)
136
 
  {
137
 
    errmsg_printf(error::ERROR, "%s: %s",internal::my_progname,str);
138
 
  }
 
133
    if (not session || MyFlags & ME_NOREFRESH)
 
134
    {
 
135
      errmsg_printf(ERRMSG_LVL_ERROR, "%s: %s",internal::my_progname,str);
 
136
    }
139
137
}
140
138
 
141
139
static void init_signals(void)
166
164
    struct rlimit rl;
167
165
    rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
168
166
    if (setrlimit(RLIMIT_CORE, &rl) && global_system_variables.log_warnings)
169
 
        errmsg_printf(error::WARN,
 
167
        errmsg_printf(ERRMSG_LVL_WARN,
170
168
                      _("setrlimit could not change the size of core files "
171
169
                        "to 'infinity';  We may not be able to generate a "
172
170
                        "core file on signals"));
247
245
 
248
246
  /* Function generates error messages before abort */
249
247
  error_handler_hook= my_message_sql;
250
 
 
251
248
  /* init_common_variables must get basic settings such as data_home_dir
252
249
     and plugin_load_list. */
253
 
  if (init_basic_variables(argc, argv))
254
 
    unireg_abort(1);                            // Will do exit
255
 
 
256
 
  if (opt_daemon)
257
 
  {
258
 
    if (signal(SIGHUP, SIG_IGN) == SIG_ERR)
259
 
    {
260
 
      perror("Failed to ignore SIGHUP");
261
 
    }
262
 
    if (daemonize())
263
 
    {
264
 
      fprintf(stderr, "failed to daemon() in order to daemonize\n");
265
 
      exit(EXIT_FAILURE);
266
 
    }
267
 
  }
268
 
 
269
 
  if (init_remaining_variables(modules))
 
250
  if (init_common_variables(argc, argv, modules))
270
251
    unireg_abort(1);                            // Will do exit
271
252
 
272
253
  /*
283
264
  {
284
265
    if (chdir(getDataHome().file_string().c_str()))
285
266
    {
286
 
      errmsg_printf(error::ERROR,
 
267
      errmsg_printf(ERRMSG_LVL_ERROR,
287
268
                    _("Data directory %s does not exist\n"),
288
269
                    getDataHome().file_string().c_str());
289
270
      unireg_abort(1);
294
275
    }
295
276
    if (chdir("local"))
296
277
    {
297
 
      errmsg_printf(error::ERROR,
 
278
      errmsg_printf(ERRMSG_LVL_ERROR,
298
279
                    _("Local catalog %s/local does not exist\n"),
299
280
                    getDataHome().file_string().c_str());
300
281
      unireg_abort(1);
301
282
    }
302
283
 
303
 
    boost::filesystem::path &full_data_home= getFullDataHome();
304
 
    full_data_home= boost::filesystem::system_complete(getDataHome());
305
 
    errmsg_printf(error::INFO, "Data Home directory is : %s", full_data_home.native_file_string().c_str());
 
284
    full_data_home= fs::system_complete(getDataHome());
306
285
  }
307
286
 
308
287
 
312
291
    server_id= 1;
313
292
  }
314
293
 
315
 
  try
316
 
  {
317
 
    if (init_server_components(modules))
318
 
      DRIZZLE_ABORT;
319
 
  }
320
 
  catch (abort_exception& ex)
321
 
  {
322
 
#if defined(DEBUG)
323
 
    cout << _("Drizzle has receieved an abort event.") << endl;
324
 
    cout << _("In Function: ") << *::boost::get_error_info<boost::throw_function>(ex) << endl;
325
 
    cout << _("In File: ") << *::boost::get_error_info<boost::throw_file>(ex) << endl;
326
 
    cout << _("On Line: ") << *::boost::get_error_info<boost::throw_line>(ex) << endl;
327
 
#endif
 
294
  if (init_server_components(modules))
328
295
    unireg_abort(1);
329
 
  }
330
 
 
331
296
 
332
297
  /**
333
298
   * This check must be done after init_server_components for now
347
312
    unireg_abort(1);
348
313
 
349
314
  assert(plugin::num_trx_monitored_objects > 0);
350
 
  if (drizzle_rm_tmp_tables())
 
315
  if (drizzle_rm_tmp_tables() || my_tz_init((Session *)0, default_tz_name))
351
316
  {
352
317
    abort_loop= true;
353
318
    select_thread_in_use=0;
358
323
    unireg_abort(1);
359
324
  }
360
325
 
361
 
  errmsg_printf(error::INFO, _(ER(ER_STARTUP)), internal::my_progname,
 
326
  errmsg_printf(ERRMSG_LVL_INFO, _(ER(ER_STARTUP)), internal::my_progname,
362
327
                PANDORA_RELEASE_VERSION, COMPILATION_COMMENT);
363
328
 
364
329
 
372
337
    {
373
338
      currentSession().release();
374
339
      currentSession().reset(session.get());
375
 
 
376
 
 
377
 
      transaction_services.sendStartupEvent(*session);
 
340
      transaction_services.sendStartupEvent(*session.get());
378
341
 
379
342
      plugin_startup_window(modules, *(session.get()));
380
343
    }
381
344
  }
382
345
 
383
 
  if (opt_daemon)
384
 
    daemon_is_ready();
385
346
 
386
347
  /* 
387
348
    Listen for new connections and start new session for each connection
424
385
  COND_thread_count.notify_all();
425
386
 
426
387
  /* Wait until cleanup is done */
427
 
  session::Cache::singleton().shutdownSecond();
 
388
  {
 
389
    boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
 
390
 
 
391
    while (not ready_to_exit)
 
392
    {
 
393
      COND_server_end.wait(scopedLock);
 
394
    }
 
395
  }
428
396
 
429
397
  clean_up(1);
430
398
  module::Registry::shutdown();