summaryrefslogtreecommitdiff
path: root/ychat-0.7.7.1/src/thrd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
commit9cd3ccffd5372dfde3af478e3f832f18db4be3f1 (patch)
tree631c295a4a4a16b57502b847626763a279bf6df7 /ychat-0.7.7.1/src/thrd
parent13aaf70af703748fe096e0664c305cd202637ad2 (diff)
tagging tags
Diffstat (limited to 'ychat-0.7.7.1/src/thrd')
-rw-r--r--ychat-0.7.7.1/src/thrd/CVS/Entries5
-rw-r--r--ychat-0.7.7.1/src/thrd/CVS/Repository1
-rw-r--r--ychat-0.7.7.1/src/thrd/CVS/Root1
-rwxr-xr-xychat-0.7.7.1/src/thrd/pool.cpp221
-rwxr-xr-xychat-0.7.7.1/src/thrd/pool.h67
-rw-r--r--ychat-0.7.7.1/src/thrd/thro.cpp42
-rw-r--r--ychat-0.7.7.1/src/thrd/thro.h30
7 files changed, 367 insertions, 0 deletions
diff --git a/ychat-0.7.7.1/src/thrd/CVS/Entries b/ychat-0.7.7.1/src/thrd/CVS/Entries
new file mode 100644
index 0000000..cca2803
--- /dev/null
+++ b/ychat-0.7.7.1/src/thrd/CVS/Entries
@@ -0,0 +1,5 @@
+/pool.cpp/1.13/Mon Feb 21 01:55:50 2005//
+/pool.h/1.10/Mon Feb 21 01:55:50 2005//
+/thro.cpp/1.6/Mon Feb 21 01:55:50 2005//
+/thro.h/1.5/Mon Feb 21 01:55:50 2005//
+D
diff --git a/ychat-0.7.7.1/src/thrd/CVS/Repository b/ychat-0.7.7.1/src/thrd/CVS/Repository
new file mode 100644
index 0000000..058942a
--- /dev/null
+++ b/ychat-0.7.7.1/src/thrd/CVS/Repository
@@ -0,0 +1 @@
+ychat/src/thrd
diff --git a/ychat-0.7.7.1/src/thrd/CVS/Root b/ychat-0.7.7.1/src/thrd/CVS/Root
new file mode 100644
index 0000000..745de68
--- /dev/null
+++ b/ychat-0.7.7.1/src/thrd/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@buetow.org:/usr/home/cvs/cvsroot
diff --git a/ychat-0.7.7.1/src/thrd/pool.cpp b/ychat-0.7.7.1/src/thrd/pool.cpp
new file mode 100755
index 0000000..d25a873
--- /dev/null
+++ b/ychat-0.7.7.1/src/thrd/pool.cpp
@@ -0,0 +1,221 @@
+#ifndef POOL_CPP
+#define POOL_CPP
+
+#include "pool.h"
+
+using namespace std;
+
+int pool::i_thrd_used = 0;
+
+pool::pool()
+{
+ i_thrd_pool_size = tool::string2int( wrap::CONF->get_elem( "httpd.thread.initpoolsize" ) );
+ i_thrd_pool_queue = tool::string2int( wrap::CONF->get_elem( "httpd.thread.queuesize" ) );
+ tpool_init( &thread_pool, i_thrd_pool_size, i_thrd_pool_queue);
+}
+
+void
+pool::tpool_init( tpool_t *tpoolp, int num_worker_threads, int max_queue_size)
+{
+ int i, rtn;
+ tpool_t tpool;
+
+ // allocate a pool data structure
+ if (( tpool = (tpool_t) malloc( sizeof( struct tpool ) ) ) == 0 )
+ {
+ wrap::system_message( POOLERR );
+ exit(-1);
+ }
+
+ // initialize th fields
+ tpool->num_threads = num_worker_threads;
+ tpool->max_queue_size = max_queue_size;
+
+ if ( ( tpool->threads = (pthread_t*) malloc( sizeof(pthread_t)*num_worker_threads ) ) == 0 )
+ {
+ wrap::system_message( POOLERR );
+ exit(-1);
+ }
+
+ tpool->cur_queue_size = 0;
+ tpool->queue_head = 0;
+ tpool->queue_tail = 0;
+
+ if ( ( rtn = pthread_mutex_init( &(tpool->queue_lock), 0 ) ) != 0 )
+ {
+ string s_err( "pthread_mutex_init " );
+ s_err.append( strerror( rtn ) );
+
+ wrap::system_message( s_err );
+
+ exit(-1);
+ }
+ else if ( ( rtn = pthread_cond_init( &(tpool->queue_not_empty), 0 ) ) != 0 )
+ {
+ string s_err( "pthread_cond_init (1): " );
+ s_err.append( strerror( rtn ) );
+
+ wrap::system_message( s_err );
+
+ exit(1);
+ }
+ else if ( ( rtn = pthread_cond_init( &(tpool->queue_not_full), 0 ) ) != 0 )
+ {
+ string s_err( "pthread_cond_init (2): " );
+ s_err.append( strerror( rtn ) );
+
+ wrap::system_message( s_err );
+
+ exit(1);
+ }
+ else if ( ( rtn = pthread_cond_init( &(tpool->queue_empty), 0 ) ) != 0 )
+ {
+ string s_err( "pthread_mutex_init " );
+ s_err.append( strerror( rtn ) );
+
+ wrap::system_message( s_err );
+
+ exit(1);
+ }
+
+ // create threads
+ for ( i = 0; i < num_worker_threads; ++i )
+ pthread_create( &(tpool->threads[i]) , 0, tpool_thread, (void*)tpool );
+
+ *tpoolp = tpool;
+}
+
+void*
+pool::tpool_thread( void* p_void )
+{
+ tpool_t tpool = (tpool_t) p_void;
+ tpool_work_t *my_workp;
+
+ for( pthread_mutex_lock( &(tpool->queue_lock) );;
+ pthread_mutex_lock( &(tpool->queue_lock) ), --i_thrd_used )
+ {
+
+#ifdef NCURSES
+ print_threads(i_thrd_used);
+#endif
+
+ while (tpool->cur_queue_size == 0)
+ pthread_cond_wait( &(tpool->queue_not_empty), &(tpool->queue_lock) );
+
+ my_workp = tpool->queue_head;
+ tpool->cur_queue_size--;
+
+ if ( tpool->cur_queue_size == 0)
+ tpool->queue_head = tpool->queue_tail = 0;
+
+ else
+ tpool->queue_head = my_workp->next;
+
+ if ( tpool->cur_queue_size == ( tpool->max_queue_size - 1 ) )
+ pthread_cond_signal( &(tpool->queue_not_full) );
+
+ if ( tpool->cur_queue_size == 0 )
+ pthread_cond_signal( &(tpool->queue_empty) );
+
+ pthread_mutex_unlock( &(tpool->queue_lock) );
+
+ (*(my_workp->routine))(my_workp->p_void);
+
+ free(my_workp);
+ }
+}
+
+void pool::run_func( void *p_void )
+{
+ int* p_sock = (int*)p_void;
+ wrap::SOCK->read_write( p_sock );
+ delete p_sock;
+}
+
+int
+pool::tpool_add_work( tpool_t tpool, void(*routine)(void*), void* p_void ) ///
+{
+ tpool_work_t *workp;
+ pthread_mutex_lock( &(tpool->queue_lock) );
+
+ if ( ++i_thrd_used == tpool->num_threads )
+ {
+ int i_max_pool_size = tool::string2int( wrap::CONF->get_elem( "httpd.thread.maxpoolsize" ) );
+ if ( i_max_pool_size != 0 && i_thrd_used > i_max_pool_size )
+ {
+ wrap::system_message(POOLER2+tool::int2string(i_thrd_used)+")");
+ }
+ else
+ {
+ int i_size = tpool->num_threads + 1;
+
+ wrap::system_message(POOLFLL+tool::int2string(i_size)+")");
+
+ tpool->threads = (pthread_t*)realloc((void*)tpool->threads, sizeof(pthread_t)*tpool->num_threads);
+
+ for ( int i = tpool->num_threads; i < i_size; ++i )
+ pthread_create( &(tpool->threads[i]) , 0, tpool_thread, (void*)tpool );
+
+ i_thrd_pool_size = tpool->num_threads = i_size;
+#ifdef NCURSES
+
+ print_pool_size();
+#endif
+
+ }
+ }
+
+#ifdef NCURSES
+ print_threads(i_thrd_used);
+#endif
+
+ while (tpool->cur_queue_size == tpool->max_queue_size)
+ pthread_cond_wait( &(tpool->queue_not_full), &(tpool->queue_lock) );
+
+ // allocate work structure:
+ workp = (tpool_work_t*) malloc( sizeof( tpool_work_t ) );
+
+ workp->routine = routine;
+ workp->p_void = p_void;
+ workp->next = 0;
+
+ if (tpool->cur_queue_size == 0 )
+ {
+ tpool->queue_tail = tpool->queue_head = workp;
+ }
+ else
+ {
+ (tpool->queue_tail)->next = workp;
+ tpool->queue_tail = workp;
+ }
+
+ tpool->cur_queue_size++;
+ pthread_cond_signal( &tpool->queue_not_empty );
+ pthread_mutex_unlock( &(tpool->queue_lock) );
+
+ return 0;
+}
+
+#ifdef NCURSES
+void
+pool::print_threads(int i_thrd_used)
+{
+ if ( wrap::NCUR->is_ready() )
+ {
+ mvprintw( NCUR_POOL_RUNNING_X,NCUR_POOL_RUNNING_Y, "In use: %d ", i_thrd_used);
+ refresh();
+ }
+}
+
+void
+pool::print_pool_size()
+{
+ if ( wrap::NCUR->is_ready() )
+ {
+ mvprintw( NCUR_POOL_SIZE_X,NCUR_POOL_SIZE_Y, "Size: %d %d", i_thrd_pool_size, i_thrd_pool_queue );
+ refresh();
+ }
+}
+#endif
+
+#endif
diff --git a/ychat-0.7.7.1/src/thrd/pool.h b/ychat-0.7.7.1/src/thrd/pool.h
new file mode 100755
index 0000000..71ecaa9
--- /dev/null
+++ b/ychat-0.7.7.1/src/thrd/pool.h
@@ -0,0 +1,67 @@
+#include "../incl.h"
+
+#ifndef POOL_H
+#define POOL_H
+
+using namespace std;
+
+class pool
+{
+private:
+ static int i_thrd_used;
+
+ typedef struct tpool_work
+ {
+ void (*routine)(void*); ///
+ void *p_void;
+ struct tpool_work *next;
+ }
+ tpool_work_t;
+
+ typedef struct tpool
+ {
+ // pool characteristics:
+ int num_threads;
+ int max_queue_size;
+
+ // pool state
+ pthread_t *threads;
+ int cur_queue_size;
+
+ tpool_work_t *queue_head;
+ tpool_work_t *queue_tail;
+
+ pthread_mutex_t queue_lock;
+ pthread_cond_t queue_not_empty;
+ pthread_cond_t queue_not_full;
+ pthread_cond_t queue_empty;
+ }
+ *tpool_t;
+
+ int i_thrd_pool_size;
+ int i_thrd_pool_queue;
+
+ tpool_t thread_pool;
+
+ void tpool_init( tpool_t *tpoolp, int num_worker_threads, int max_queue_size);
+ int tpool_add_work( tpool_t tpool, void(*routine)(void*), void* p_void );
+ static void* tpool_thread( void *p_void);
+ static void run_func( void *p_void );
+
+public:
+ pool();
+
+ // inline (speed)!
+ void run( void *p_void )
+ {
+ tpool_add_work( thread_pool, run_func, p_void );
+ }
+
+#ifdef NCURSES
+ void print_pool_size();
+ static void print_threads(int i_thrd_used);
+#endif
+
+};
+
+#endif
diff --git a/ychat-0.7.7.1/src/thrd/thro.cpp b/ychat-0.7.7.1/src/thrd/thro.cpp
new file mode 100644
index 0000000..e35520c
--- /dev/null
+++ b/ychat-0.7.7.1/src/thrd/thro.cpp
@@ -0,0 +1,42 @@
+#ifndef THRO_CPP
+#define THRO_CPP
+
+#include "thro.h"
+
+using namespace std;
+
+thro::thro()
+{}
+
+thro::~thro()
+{}
+
+void
+thro::run()
+{
+ void *p_void;
+ run( p_void );
+}
+
+void
+thro::run( void *p_void )
+{
+ elem.p_thro = this;
+ elem.p_void = p_void;
+ pthread_create( &pthread, NULL, start_, &elem );
+}
+
+void*
+thro::start_( void *p_void )
+{
+ elements *e = (elements*) p_void;
+ e->p_thro->start( e->p_void );
+}
+
+void
+thro::start( void *p_void )
+{
+ wrap::system_message( THRDSTR );
+}
+
+#endif
diff --git a/ychat-0.7.7.1/src/thrd/thro.h b/ychat-0.7.7.1/src/thrd/thro.h
new file mode 100644
index 0000000..783cd0d
--- /dev/null
+++ b/ychat-0.7.7.1/src/thrd/thro.h
@@ -0,0 +1,30 @@
+#include "../incl.h"
+
+#ifndef THRO_H
+#define THRO_H
+
+using namespace std;
+
+class thro
+{
+private:
+ pthread_t pthread;
+
+ struct elements
+ {
+ thro *p_thro;
+ void *p_void;
+ }
+ elem;
+
+ static void* start_( void *p_void );
+
+public:
+ thro( );
+ ~thro( );
+ void run();
+ void run( void *p_void );
+ virtual void start( void *p_void );
+};
+
+#endif