14
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
16
16
#include "config.h"
20
#include <drizzled/pthread_globals.h>
17
#include <plugin/multi_thread/multi_thread.h>
18
#include "drizzled/pthread_globals.h"
19
#include <boost/program_options.hpp>
21
20
#include <drizzled/module/option_map.h>
22
21
#include <drizzled/errmsg_print.h>
23
#include <drizzled/session.h>
24
#include <drizzled/session/cache.h>
25
#include <drizzled/abort_exception.h>
26
#include <drizzled/transaction_services.h>
27
#include <drizzled/gettext.h>
29
23
#include <boost/thread.hpp>
30
24
#include <boost/bind.hpp>
31
#include <boost/program_options.hpp>
33
#include "multi_thread.h"
35
26
namespace po= boost::program_options;
36
27
using namespace std;
37
28
using namespace drizzled;
39
30
/* Configuration variables. */
40
typedef constrained_check<uint32_t, 4096, 1> max_threads_constraint;
41
static max_threads_constraint max_threads;
31
static uint32_t max_threads;
34
static MultiThreadScheduler *scheduler= NULL;
45
38
extern size_t my_thread_stack_size;
48
namespace multi_thread {
50
void MultiThreadScheduler::runSession(drizzled::session_id_t id)
41
void MultiThreadScheduler::runSession(drizzled::Session *session)
53
boost::this_thread::disable_interruption disable_by_default;
55
Session::shared_ptr session(session::Cache::singleton().find(id));
43
if (drizzled::internal::my_thread_init())
62
std::cerr << _("Session killed before thread could execute") << endl;
65
session->pushInterrupt(&disable_by_default);
67
if (drizzled::internal::my_thread_init())
69
session->disconnect(drizzled::ER_OUT_OF_RESOURCES);
70
session->status_var.aborted_connects++;
74
boost::this_thread::at_thread_exit(&internal::my_thread_end);
76
session->thread_stack= (char*) &stack_dummy;
45
session->disconnect(drizzled::ER_OUT_OF_RESOURCES, true);
46
session->status_var.aborted_connects++;
80
47
killSessionNow(session);
82
catch (abort_exception& ex)
84
cout << _("Drizzle has receieved an abort event.") << endl;
85
cout << _("In Function: ") << *::boost::get_error_info<boost::throw_function>(ex) << endl;
86
cout << _("In File: ") << *::boost::get_error_info<boost::throw_file>(ex) << endl;
87
cout << _("On Line: ") << *::boost::get_error_info<boost::throw_line>(ex) << endl;
49
boost::this_thread::at_thread_exit(&internal::my_thread_end);
89
TransactionServices::singleton().sendShutdownEvent(*session.get());
91
// @todo remove hard spin by disconnection the session first from the
93
while (not session.unique()) {}
51
session->thread_stack= (char*) &session;
53
killSessionNow(session);
96
56
void MultiThreadScheduler::setStackSize()
134
bool MultiThreadScheduler::addSession(Session::shared_ptr &session)
94
bool MultiThreadScheduler::addSession(Session *session)
136
96
if (thread_count >= max_threads)
139
99
thread_count.increment();
142
session->getThread().reset(new boost::thread((boost::bind(&MultiThreadScheduler::runSession, this, session->getSessionId()))));
144
catch (std::exception&)
146
thread_count.decrement();
150
if (not session->getThread())
152
thread_count.decrement();
156
if (not session->getThread()->joinable())
101
boost::thread new_thread(boost::bind(&MultiThreadScheduler::runSession, this, session));
103
if (not new_thread.joinable())
158
105
thread_count.decrement();
166
void MultiThreadScheduler::killSession(Session *session)
168
boost_thread_shared_ptr thread(session->getThread());
176
void MultiThreadScheduler::killSessionNow(Session::shared_ptr &session)
178
killSession(session.get());
180
session->disconnect();
113
void MultiThreadScheduler::killSessionNow(Session *session)
182
115
/* Locks LOCK_thread_count and deletes session */
183
116
Session::unlink(session);
184
117
thread_count.decrement();
187
120
MultiThreadScheduler::~MultiThreadScheduler()
189
boost::mutex::scoped_lock scopedLock(drizzled::session::Cache::singleton().mutex());
122
boost::mutex::scoped_lock scopedLock(LOCK_thread_count);
190
123
while (thread_count)
192
125
COND_thread_count.wait(scopedLock);
196
} // multi_thread namespace
199
130
static int init(drizzled::module::Context &context)
202
context.add(new multi_thread::MultiThreadScheduler("multi_thread"));
133
const module::option_map &vm= context.getOptions();
134
if (vm.count("max-threads"))
136
if (max_threads > 4096 || max_threads < 1)
138
errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for max-threads\n"));
143
scheduler= new MultiThreadScheduler("multi_thread");
144
context.add(scheduler);
149
static DRIZZLE_SYSVAR_UINT(max_threads, max_threads,
151
N_("Maximum number of user threads available."),
152
NULL, NULL, 2048, 1, 4096, 0);
207
154
static void init_options(drizzled::module::option_context &context)
209
156
context("max-threads",
210
po::value<max_threads_constraint>(&max_threads)->default_value(2048),
211
_("Maximum number of user threads available."));
157
po::value<uint32_t>(&max_threads)->default_value(2048),
158
N_("Maximum number of user threads available."));
161
static drizzle_sys_var* sys_variables[]= {
162
DRIZZLE_SYSVAR(max_threads),
214
166
DRIZZLE_DECLARE_PLUGIN
216
168
DRIZZLE_VERSION_ID,