1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/* Copyright (C) 2009 Sun Microsystems
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#ifndef PLUGIN_SINGLE_THREAD_SINGLE_THREAD_H
#define PLUGIN_SINGLE_THREAD_SINGLE_THREAD_H
#include <drizzled/gettext.h>
#include <drizzled/error.h>
#include <drizzled/plugin/scheduler.h>
#include <drizzled/sql_parse.h>
#include <drizzled/session.h>
#include <string>
#include "drizzled/internal/my_sys.h"
/**
* Simple scheduler that uses the main thread to handle the request. This
* should only be used for debugging.
*/
class SingleThreadScheduler : public drizzled::plugin::Scheduler
{
public:
SingleThreadScheduler(const char *name_arg) :
Scheduler(name_arg) {}
/* When we enter this function, LOCK_thread_count is held! */
virtual bool addSession(drizzled::Session *session)
{
if (drizzled::internal::my_thread_init())
{
session->disconnect(drizzled::ER_OUT_OF_RESOURCES, true);
status_var_increment(session->status_var.aborted_connects);
return true;
}
/*
This is not the real thread start beginning, but there is not an easy
way to find it.
*/
session->thread_stack= (char *)&session;
session->run();
killSessionNow(session);
return false;
}
virtual void killSessionNow(drizzled::Session *session)
{
drizzled::Session::unlink(session);
drizzled::internal::my_thread_end();
}
};
#endif /* PLUGIN_SINGLE_THREAD_SINGLE_THREAD_H */
|