45
45
#include <boost/filesystem.hpp>
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
#include <drizzled/current_session.h>
70
#include <drizzled/daemon.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"
65
#include "drizzled/util/backtrace.h"
72
67
using namespace drizzled;
73
68
using namespace std;
69
namespace fs=boost::filesystem;
75
71
static pthread_t select_thread;
76
72
static uint32_t thr_kill_signal;
78
extern bool opt_daemon;
82
76
All global error messages are sent here where the first one is stored
85
static void my_message_sql(drizzled::error_t error, const char *str, myf MyFlags)
79
static void my_message_sql(uint32_t error, const char *str, myf MyFlags)
95
89
session->is_fatal_error= 1;
98
@TODO There are two exceptions mechanism (Session and sp_rcontext),
92
TODO: There are two exceptions mechanism (Session and sp_rcontext),
99
93
this could be improved by having a common stack of handlers.
101
if (session->handle_error(error, str, DRIZZLE_ERROR::WARN_LEVEL_ERROR))
95
if (session->handle_error(error, str,
96
DRIZZLE_ERROR::WARN_LEVEL_ERROR))
105
session->getLex()->current_select == 0 if lex structure is not inited
100
session->lex->current_select == 0 if lex structure is not inited
106
101
(not query command (COM_QUERY))
108
if (! (session->getLex()->current_select &&
109
session->getLex()->current_select->no_error && !session->is_fatal_error))
103
if (! (session->lex->current_select &&
104
session->lex->current_select->no_error && !session->is_fatal_error))
111
106
if (! session->main_da.is_error()) // Return only first message
114
109
error= ER_UNKNOWN_ERROR;
119
112
session->main_da.set_error_status(error, str);
129
122
session->no_warnings_for_error= true;
130
123
push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR, error, str);
131
124
session->no_warnings_for_error= false;
135
if (not session || MyFlags & ME_NOREFRESH)
137
errmsg_printf(error::ERROR, "%s: %s",internal::my_progname,str);
127
if (!session || MyFlags & ME_NOREFRESH)
128
errmsg_printf(ERRMSG_LVL_ERROR, "%s: %s",internal::my_progname,str);
141
131
static void init_signals(void)
160
150
sigaction(SIGFPE, &sa, NULL);
163
if (getDebug().test(debug::CORE_ON_SIGNAL))
153
if (test_flags.test(TEST_CORE_ON_SIGNAL))
165
155
/* Change limits so that we will get a core file */
166
156
struct rlimit rl;
167
157
rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
168
158
if (setrlimit(RLIMIT_CORE, &rl) && global_system_variables.log_warnings)
169
errmsg_printf(error::WARN,
159
errmsg_printf(ERRMSG_LVL_WARN,
170
160
_("setrlimit could not change the size of core files "
171
161
"to 'infinity'; We may not be able to generate a "
172
162
"core file on signals"));
212
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level,
214
int, const string& ) throw(const char *)
202
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level, const char* filename,
203
int line, const string& message) throw(const char *)
209
drizzled::util::custom_backtrace();
218
213
case google::protobuf::LOGLEVEL_INFO:
231
227
# if defined(HAVE_LOCALE_H)
232
228
setlocale(LC_ALL, "");
234
bindtextdomain("drizzle7", LOCALEDIR);
235
textdomain("drizzle7");
230
bindtextdomain("drizzle", LOCALEDIR);
231
textdomain("drizzle");
238
234
module::Registry &modules= module::Registry::singleton();
235
plugin::Client *client;
240
237
MY_INIT(argv[0]); // init my_sys library & pthreads
241
238
/* nothing should come before this line ^^^ */
248
245
/* Function generates error messages before abort */
249
246
error_handler_hook= my_message_sql;
251
247
/* init_common_variables must get basic settings such as data_home_dir
252
248
and plugin_load_list. */
253
if (init_basic_variables(argc, argv))
254
unireg_abort(1); // Will do exit
258
if (signal(SIGHUP, SIG_IGN) == SIG_ERR)
260
perror("Failed to ignore SIGHUP");
264
fprintf(stderr, "failed to daemon() in order to daemonize\n");
269
if (init_remaining_variables(modules))
249
if (init_common_variables(argc, argv, modules))
270
250
unireg_abort(1); // Will do exit
295
275
if (chdir("local"))
297
errmsg_printf(error::ERROR,
277
errmsg_printf(ERRMSG_LVL_ERROR,
298
278
_("Local catalog %s/local does not exist\n"),
299
279
getDataHome().file_string().c_str());
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());
283
full_data_home= fs::system_complete(getDataHome());
284
getDataHomeCatalog()= "./";
285
getDataHome()= "../";
317
if (init_server_components(modules))
320
catch (abort_exception& ex)
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;
295
if (init_server_components(modules))
333
299
* This check must be done after init_server_components for now
356
324
(void) unlink(pid_file.file_string().c_str()); // Not needed anymore
361
errmsg_printf(error::INFO, _(ER(ER_STARTUP)), internal::my_progname,
329
errmsg_printf(ERRMSG_LVL_INFO, _(ER(ER_STARTUP)), internal::my_progname,
362
330
PANDORA_RELEASE_VERSION, COMPILATION_COMMENT);
367
335
/* Send server startup event */
369
Session::shared_ptr session;
371
if ((session= Session::make_shared(plugin::Listen::getNullClient(), catalog::local())))
339
if ((session= new Session(plugin::Listen::getNullClient())))
373
341
currentSession().release();
374
currentSession().reset(session.get());
377
transaction_services.sendStartupEvent(*session);
379
plugin_startup_window(modules, *(session.get()));
342
currentSession().reset(session);
343
transaction_services.sendStartupEvent(session);
387
Listen for new connections and start new session for each connection
349
/* Listen for new connections and start new session for each connection
388
350
accepted. The listen.getClient() method will return NULL when the server
391
plugin::Client *client;
351
should be shutdown. */
392
352
while ((client= plugin::Listen::getClient()) != NULL)
394
Session::shared_ptr session;
395
session= Session::make_shared(client, client->catalog());
354
Session::shared_ptr session(new Session(client));
408
367
/* Send server shutdown event */
410
Session::shared_ptr session;
412
if ((session= Session::make_shared(plugin::Listen::getNullClient(), catalog::local())))
371
if ((session= new Session(plugin::Listen::getNullClient())))
414
373
currentSession().release();
415
currentSession().reset(session.get());
416
transaction_services.sendShutdownEvent(*session.get());
374
currentSession().reset(session);
375
transaction_services.sendShutdownEvent(session);
424
384
COND_thread_count.notify_all();
426
386
/* Wait until cleanup is done */
427
session::Cache::singleton().shutdownSecond();
388
boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
389
while (not ready_to_exit)
390
COND_server_end.wait(scopedLock);
430
394
module::Registry::shutdown();