~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.h

  • Committer: Brian Aker
  • Date: 2009-10-01 22:56:26 UTC
  • mto: (1154.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1155.
  • Revision ID: brian@gaz-20091001225626-sb1pdykpxlnkheaj
Remove Factory/make scheduler work like everything else.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
#include <drizzled/server_includes.h>
 
17
#include <drizzled/atomics.h>
 
18
#include <drizzled/gettext.h>
 
19
#include <drizzled/error.h>
 
20
#include <drizzled/plugin/scheduler.h>
 
21
#include <drizzled/sql_parse.h>
 
22
#include <drizzled/session.h>
 
23
#include <string>
 
24
 
 
25
class MultiThreadScheduler: public drizzled::plugin::Scheduler
 
26
{
 
27
private:
 
28
  drizzled::atomic<uint32_t> thread_count;
 
29
  pthread_attr_t attr;
 
30
 
 
31
public:
 
32
  MultiThreadScheduler(const char *name_arg): 
 
33
    Scheduler(name_arg)
 
34
  {
 
35
    struct sched_param tmp_sched_param;
 
36
 
 
37
    memset(&tmp_sched_param, 0, sizeof(struct sched_param));
 
38
 
 
39
    /* Setup attribute parameter for session threads. */
 
40
    (void) pthread_attr_init(&attr);
 
41
    (void) pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
 
42
    pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
 
43
 
 
44
    tmp_sched_param.sched_priority= WAIT_PRIOR;
 
45
    (void) pthread_attr_setschedparam(&attr, &tmp_sched_param);
 
46
 
 
47
    thread_count= 0;
 
48
  }
 
49
 
 
50
  ~MultiThreadScheduler();
 
51
  bool addSession(Session *session);
 
52
  void killSessionNow(Session *session);
 
53
  
 
54
  void runSession(Session *session)
 
55
  {
 
56
    if (my_thread_init())
 
57
    {
 
58
      session->disconnect(ER_OUT_OF_RESOURCES, true);
 
59
      statistic_increment(aborted_connects, &LOCK_status);
 
60
      killSessionNow(session);
 
61
    }
 
62
 
 
63
    session->thread_stack= (char*) &session;
 
64
    session->run();
 
65
    killSessionNow(session);
 
66
  }
 
67
};