803
by Brian Aker
Refactored all current scheduler to be behind scheduler plugin api. |
1 |
/* Copyright (C) 2009 Sun Microsystems
|
2 |
||
3 |
This program is free software; you can redistribute it and/or modify
|
|
4 |
it under the terms of the GNU General Public License as published by
|
|
5 |
the Free Software Foundation; version 2 of the License.
|
|
6 |
||
7 |
This program is distributed in the hope that it will be useful,
|
|
8 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 |
GNU General Public License for more details.
|
|
11 |
||
12 |
You should have received a copy of the GNU General Public License
|
|
13 |
along with this program; if not, write to the Free Software
|
|
14 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
15 |
||
16 |
/*
|
|
17 |
session_scheduler keeps the link between Session and events.
|
|
18 |
It's embedded in the Session class.
|
|
19 |
*/
|
|
20 |
||
21 |
#include <drizzled/session.h> |
|
22 |
#include <drizzled/gettext.h> |
|
23 |
#include <drizzled/errmsg_print.h> |
|
24 |
#include <event.h> |
|
25 |
/* API for connecting, logging in to a drizzled server */
|
|
26 |
#include <drizzled/connect.h> |
|
27 |
#include "session_scheduler.h" |
|
28 |
||
29 |
/* Prototype */
|
|
779.3.23
by Monty Taylor
More fixy-fixes. |
30 |
extern "C" |
803
by Brian Aker
Refactored all current scheduler to be behind scheduler plugin api. |
31 |
void libevent_io_callback(int Fd, short Operation, void *ctx); |
32 |
bool libevent_should_close_connection(Session* session); |
|
33 |
void libevent_session_add(Session* session); |
|
34 |
||
805
by Brian Aker
Refactor init/deinit into the normal startup structures for a plugin. |
35 |
session_scheduler::session_scheduler(Session *parent_session) |
36 |
: logged_in(false), thread_attached(false) |
|
37 |
{
|
|
38 |
memset(&io_event, 0, sizeof(struct event)); |
|
39 |
||
840.1.20
by Monty Taylor
Renamed non-prefixed things from libdrizzleclient to drizzleclient. |
40 |
event_set(&io_event, drizzleclient_net_get_sd(&(parent_session->net)), EV_READ, |
803
by Brian Aker
Refactored all current scheduler to be behind scheduler plugin api. |
41 |
libevent_io_callback, (void*)parent_session); |
42 |
||
43 |
list.data= parent_session; |
|
44 |
}
|
|
45 |
||
46 |
/*
|
|
47 |
Attach/associate the connection with the OS thread, for command processing.
|
|
48 |
*/
|
|
49 |
||
50 |
bool session_scheduler::thread_attach() |
|
51 |
{
|
|
52 |
assert(!thread_attached); |
|
779.7.9
by Monty Taylor
Changed casts to c++ style. |
53 |
Session* session = static_cast<Session*>(list.data); |
803
by Brian Aker
Refactored all current scheduler to be behind scheduler plugin api. |
54 |
if (libevent_should_close_connection(session) || |
55 |
setup_connection_thread_globals(session)) |
|
56 |
{
|
|
57 |
return true; |
|
58 |
}
|
|
59 |
my_errno= 0; |
|
60 |
session->mysys_var->abort= 0; |
|
61 |
thread_attached= true; |
|
62 |
||
63 |
return false; |
|
64 |
}
|
|
65 |
||
66 |
||
67 |
/*
|
|
68 |
Detach/disassociate the connection with the OS thread.
|
|
69 |
*/
|
|
70 |
||
71 |
void session_scheduler::thread_detach() |
|
72 |
{
|
|
73 |
if (thread_attached) |
|
74 |
{
|
|
779.7.9
by Monty Taylor
Changed casts to c++ style. |
75 |
Session* session = static_cast<Session*>(list.data); |
803
by Brian Aker
Refactored all current scheduler to be behind scheduler plugin api. |
76 |
session->mysys_var= NULL; |
77 |
thread_attached= false; |
|
78 |
}
|
|
79 |
}
|