2013-04-17 00:00:59 -04:00
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
2013-04-16 23:59:50 -04:00
# ident "$Id$"
# ident "Copyright (c) 2011 Tokutek Inc. All rights reserved."
# ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11 / 760379 and to the patents and / or patent applications resulting from it."
refs #5592 move circular_buffer, omt, threadpool, growable_array, rwlock, frwlock, kibbutz, mempool, partitioned_counter, nb_mutex, sort to util/, and some other cleanup stuff
git-svn-id: file:///svn/toku/tokudb@48763 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:01:13 -04:00
# include "kibbutz.h"
2013-04-17 00:00:25 -04:00
# include <config.h>
refs #5592 move circular_buffer, omt, threadpool, growable_array, rwlock, frwlock, kibbutz, mempool, partitioned_counter, nb_mutex, sort to util/, and some other cleanup stuff
git-svn-id: file:///svn/toku/tokudb@48763 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-17 00:01:13 -04:00
# include <memory.h>
2013-04-17 00:00:25 -04:00
# include <toku_pthread.h>
2013-04-16 23:59:50 -04:00
// A Kibbutz is a collection of workers and some work to do.
struct todo {
void ( * f ) ( void * extra ) ;
void * extra ;
struct todo * next ;
struct todo * prev ;
} ;
struct kid {
struct kibbutz * k ;
} ;
struct kibbutz {
2013-04-17 00:00:31 -04:00
toku_mutex_t mutex ;
toku_cond_t cond ;
2013-04-16 23:59:50 -04:00
bool please_shutdown ;
struct todo * head , * tail ; // head is the next thing to do.
int n_workers ;
pthread_t * workers ; // an array of n_workers
struct kid * ids ; // pass this in when creating a worker so it knows who it is.
} ;
static void * work_on_kibbutz ( void * ) ;
KIBBUTZ toku_kibbutz_create ( int n_workers ) {
2013-04-17 00:01:07 -04:00
KIBBUTZ XCALLOC ( k ) ;
2013-04-17 00:00:31 -04:00
toku_mutex_init ( & k - > mutex , NULL ) ;
toku_cond_init ( & k - > cond , NULL ) ;
2013-04-16 23:59:50 -04:00
k - > please_shutdown = false ;
k - > head = NULL ;
k - > tail = NULL ;
k - > n_workers = n_workers ;
XMALLOC_N ( n_workers , k - > workers ) ;
XMALLOC_N ( n_workers , k - > ids ) ;
for ( int i = 0 ; i < n_workers ; i + + ) {
k - > ids [ i ] . k = k ;
int r = toku_pthread_create ( & k - > workers [ i ] , NULL , work_on_kibbutz , & k - > ids [ i ] ) ;
assert ( r = = 0 ) ;
}
return k ;
}
static void klock ( KIBBUTZ k ) {
2013-04-17 00:00:31 -04:00
toku_mutex_lock ( & k - > mutex ) ;
2013-04-16 23:59:50 -04:00
}
static void kunlock ( KIBBUTZ k ) {
2013-04-17 00:00:31 -04:00
toku_mutex_unlock ( & k - > mutex ) ;
2013-04-16 23:59:50 -04:00
}
static void kwait ( KIBBUTZ k ) {
2013-04-17 00:00:31 -04:00
toku_cond_wait ( & k - > cond , & k - > mutex ) ;
2013-04-16 23:59:50 -04:00
}
static void ksignal ( KIBBUTZ k ) {
2013-04-17 00:00:31 -04:00
toku_cond_signal ( & k - > cond ) ;
2013-04-16 23:59:50 -04:00
}
2013-04-16 23:59:58 -04:00
//
// pops the tail of the kibbutz off the list and works on it
// Note that in toku_kibbutz_enq, items are enqueued at the head,
// making the work be done in FIFO order. This is necessary
// to avoid deadlocks in flusher threads.
//
2013-04-16 23:59:50 -04:00
static void * work_on_kibbutz ( void * kidv ) {
2013-04-17 00:00:59 -04:00
struct kid * CAST_FROM_VOIDP ( kid , kidv ) ;
2013-04-16 23:59:50 -04:00
KIBBUTZ k = kid - > k ;
klock ( k ) ;
while ( 1 ) {
while ( k - > tail ) {
struct todo * item = k - > tail ;
k - > tail = item - > prev ;
if ( k - > tail = = NULL ) {
k - > head = NULL ;
} else {
// if there are other things to do, then wake up the next guy, if there is one.
ksignal ( k ) ;
}
kunlock ( k ) ;
item - > f ( item - > extra ) ;
toku_free ( item ) ;
klock ( k ) ;
// if there's another item on k->head, then we'll just go grab it now, without waiting for a signal.
}
if ( k - > please_shutdown ) {
// Don't follow this unless the work is all done, so that when we set please_shutdown, all the work finishes before any threads quit.
ksignal ( k ) ; // must wake up anyone else who is waiting, so they can shut down.
kunlock ( k ) ;
return NULL ;
}
// There is no work to do and it's not time to shutdown, so wait.
kwait ( k ) ;
}
}
2013-04-16 23:59:58 -04:00
//
// adds work to the head of the kibbutz
// Note that in work_on_kibbutz, items are popped off the tail for work,
// making the work be done in FIFO order. This is necessary
// to avoid deadlocks in flusher threads.
//
2013-04-16 23:59:50 -04:00
void toku_kibbutz_enq ( KIBBUTZ k , void ( * f ) ( void * ) , void * extra ) {
struct todo * XMALLOC ( td ) ;
td - > f = f ;
td - > extra = extra ;
klock ( k ) ;
assert ( ! k - > please_shutdown ) ;
td - > next = k - > head ;
td - > prev = NULL ;
if ( k - > head ) {
assert ( k - > head - > prev = = NULL ) ;
k - > head - > prev = td ;
}
k - > head = td ;
if ( k - > tail = = NULL ) k - > tail = td ;
ksignal ( k ) ;
kunlock ( k ) ;
}
void toku_kibbutz_destroy ( KIBBUTZ k )
// Effect: wait for all the enqueued work to finish, and then destroy the kibbutz.
// Note: It is an error for to perform kibbutz_enq operations after this is called.
{
klock ( k ) ;
assert ( ! k - > please_shutdown ) ;
k - > please_shutdown = true ;
ksignal ( k ) ; // must wake everyone up to tell them to shutdown.
kunlock ( k ) ;
for ( int i = 0 ; i < k - > n_workers ; i + + ) {
void * result ;
int r = toku_pthread_join ( k - > workers [ i ] , & result ) ;
assert ( r = = 0 ) ;
assert ( result = = NULL ) ;
}
toku_free ( k - > workers ) ;
toku_free ( k - > ids ) ;
2013-04-17 00:00:31 -04:00
toku_cond_destroy ( & k - > cond ) ;
toku_mutex_destroy ( & k - > mutex ) ;
2013-04-16 23:59:50 -04:00
toku_free ( k ) ;
}