2 libfmail: Threaded Load handler with Thread Pool
4 Copyright (C) 2007 Carlos Daniel Ruvalcaba Valenzuela <clsdaniel@gmail.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 class ThreadLoadHandler
: public Thread
, public Semaphore
{
30 ThreadLoadHandler(ProtocolHandler
*pht
) : Thread(), Semaphore(){
36 int setSocket(Socket
*sock
){
44 printf("Thread Sleeping\n");
47 printf("Thread Handling\n");
51 printf("Thread Done\n");
57 ThreadLoad::ThreadLoad(ProtocolHandler
*ph
, int tpoolSize
){
60 ThreadLoadHandler
**tpool
;
62 pool
= (void**)malloc(sizeof(ThreadLoadHandler
*) * poolSize
);
63 tpool
= (ThreadLoadHandler
**)pool
;
65 for (i
= 0; i
< poolSize
; i
++){
66 tpool
[i
] = new ThreadLoadHandler(ph
);
71 ThreadLoad::~ThreadLoad(){
73 ThreadLoadHandler
**tpool
;
75 tpool
= (ThreadLoadHandler
**)pool
;
80 for(i
= 0; i
< poolSize
; i
++){
82 if (tpool
[i
]->isReady()){
92 for(i
= 0; i
< poolSize
; i
++){
99 int ThreadLoad::Dispatch(Socket
*sock
, ProtocolHandler
*ph
){
101 ThreadLoadHandler
**tpool
;
103 tpool
= (ThreadLoadHandler
**)pool
;
108 printf("Dispatching from Thread Pool\n");
109 while (dispatched
== 0){
110 if (tpool
[i
]->getValue() == 0){
111 printf("\t* Using Thread %i\n", i
);
112 tpool
[i
]->setSocket(sock
);