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>
70
extern "C" int daemonize(int nochdir, int noclose, int wait_sigusr1);
71
extern "C" int daemon_is_ready(void);
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"
73
63
using namespace drizzled;
74
64
using namespace std;
97
85
session->is_fatal_error= 1;
100
@TODO There are two exceptions mechanism (Session and sp_rcontext),
88
TODO: There are two exceptions mechanism (Session and sp_rcontext),
101
89
this could be improved by having a common stack of handlers.
103
if (session->handle_error(error, str, DRIZZLE_ERROR::WARN_LEVEL_ERROR))
91
if (session->handle_error(error, str,
92
DRIZZLE_ERROR::WARN_LEVEL_ERROR))
107
96
session->lex->current_select == 0 if lex structure is not inited
108
97
(not query command (COM_QUERY))
110
99
if (! (session->lex->current_select &&
111
session->lex->current_select->no_error && !session->is_fatal_error))
100
session->lex->current_select->no_error && !session->is_fatal_error))
113
102
if (! session->main_da.is_error()) // Return only first message
116
105
error= ER_UNKNOWN_ERROR;
121
108
session->main_da.set_error_status(error, str);
131
118
session->no_warnings_for_error= true;
132
119
push_warning(session, DRIZZLE_ERROR::WARN_LEVEL_ERROR, error, str);
133
120
session->no_warnings_for_error= false;
137
if (not session || MyFlags & ME_NOREFRESH)
139
errmsg_printf(error::ERROR, "%s: %s",internal::my_progname,str);
123
if (!session || MyFlags & ME_NOREFRESH)
124
errmsg_printf(ERRMSG_LVL_ERROR, "%s: %s",internal::my_progname,str);
143
127
static void init_signals(void)
162
146
sigaction(SIGFPE, &sa, NULL);
165
if (getDebug().test(debug::CORE_ON_SIGNAL))
149
if (test_flags.test(TEST_CORE_ON_SIGNAL))
167
151
/* Change limits so that we will get a core file */
168
152
struct rlimit rl;
169
153
rl.rlim_cur = rl.rlim_max = RLIM_INFINITY;
170
154
if (setrlimit(RLIMIT_CORE, &rl) && global_system_variables.log_warnings)
171
errmsg_printf(error::WARN,
155
errmsg_printf(ERRMSG_LVL_WARN,
172
156
_("setrlimit could not change the size of core files "
173
157
"to 'infinity'; We may not be able to generate a "
174
158
"core file on signals"));
214
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level,
216
int, const string& ) throw(const char *)
198
static void GoogleProtoErrorThrower(google::protobuf::LogLevel level, const char* filename,
199
int line, const string& message) throw(const char *)
220
206
case google::protobuf::LOGLEVEL_INFO:
250
238
/* Function generates error messages before abort */
251
239
error_handler_hook= my_message_sql;
253
240
/* init_common_variables must get basic settings such as data_home_dir
254
241
and plugin_load_list. */
255
if (init_basic_variables(argc, argv))
256
unireg_abort(1); // Will do exit
260
if (signal(SIGHUP, SIG_IGN) == SIG_ERR)
262
perror("Failed to ignore SIGHUP");
264
if (daemonize(1, 1, 1) == -1)
266
fprintf(stderr, "failed to daemon() in order to daemonize\n");
271
if (init_remaining_variables(modules))
242
if (init_common_variables(argc, argv, modules))
272
243
unireg_abort(1); // Will do exit
284
255
if (not opt_help)
286
if (chdir(getDataHome().file_string().c_str()))
257
if (chdir(getDataHome().c_str()))
288
errmsg_printf(error::ERROR,
259
errmsg_printf(ERRMSG_LVL_ERROR,
289
260
_("Data directory %s does not exist\n"),
290
getDataHome().file_string().c_str());
261
getDataHome().c_str());
293
264
if (mkdir("local", 0700))
297
268
if (chdir("local"))
299
errmsg_printf(error::ERROR,
270
errmsg_printf(ERRMSG_LVL_ERROR,
300
271
_("Local catalog %s/local does not exist\n"),
301
getDataHome().file_string().c_str());
272
getDataHome().c_str());
305
fs::path &full_data_home= getFullDataHome();
306
full_data_home= fs::system_complete(getDataHome());
307
std::cerr << "home " << full_data_home << std::endl;
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()= "../";
319
if (init_server_components(modules))
322
catch (abort_exception& ex)
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;
292
if (init_server_components(modules))
335
296
* This check must be done after init_server_components for now
348
309
if (plugin::Listen::setup())
351
313
assert(plugin::num_trx_monitored_objects > 0);
352
if (drizzle_rm_tmp_tables() || my_tz_init((Session *)0, default_tz_name))
314
if (drizzle_rm_tmp_tables() ||
315
my_tz_init((Session *)0, default_tz_name))
354
317
abort_loop= true;
355
318
select_thread_in_use=0;
356
319
(void) pthread_kill(signal_thread, SIGTERM);
358
(void) unlink(pid_file.file_string().c_str()); // Not needed anymore
321
(void) unlink(pidfile_name); // Not needed anymore
363
errmsg_printf(error::INFO, _(ER(ER_STARTUP)), internal::my_progname,
326
errmsg_printf(ERRMSG_LVL_INFO, _(ER(ER_STARTUP)), internal::my_progname,
364
327
PANDORA_RELEASE_VERSION, COMPILATION_COMMENT);
367
TransactionServices &transaction_services= TransactionServices::singleton();
369
/* Send server startup event */
371
Session::shared_ptr session;
373
if ((session= Session::make_shared(plugin::Listen::getNullClient(), catalog::local())))
375
currentSession().release();
376
currentSession().reset(session.get());
379
transaction_services.sendStartupEvent(*session);
381
plugin_startup_window(modules, *(session.get()));
389
Listen for new connections and start new session for each connection
330
/* Listen for new connections and start new session for each connection
390
331
accepted. The listen.getClient() method will return NULL when the server
393
plugin::Client *client;
332
should be shutdown. */
394
333
while ((client= plugin::Listen::getClient()) != NULL)
396
Session::shared_ptr session;
397
session= Session::make_shared(client, client->catalog());
335
if (!(session= new Session(client)))
405
341
/* If we error on creation we drop the connection and delete the session. */
406
if (Session::schedule(session))
342
if (session->schedule())
407
343
Session::unlink(session);
410
/* Send server shutdown event */
412
Session::shared_ptr session;
414
if ((session= Session::make_shared(plugin::Listen::getNullClient(), catalog::local())))
416
currentSession().release();
417
currentSession().reset(session.get());
418
transaction_services.sendShutdownEvent(*session.get());
423
boost::mutex::scoped_lock scopedLock(session::Cache::singleton().mutex());
424
select_thread_in_use= false; // For close_connections
346
LOCK_thread_count.lock();
347
select_thread_in_use=0; // For close_connections
348
LOCK_thread_count.unlock();
426
349
COND_thread_count.notify_all();
428
351
/* Wait until cleanup is done */
429
session::Cache::singleton().shutdownSecond();
353
boost::mutex::scoped_lock scopedLock(LOCK_thread_count);
354
while (!ready_to_exit)
355
COND_server_end.wait(scopedLock);
432
359
module::Registry::shutdown();