4 * @brief Implementation of job_queue_t
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 #include "job_queue.h"
28 #include <utils/allocator.h>
29 #include <utils/linked_list.h>
32 typedef struct private_job_queue_t private_job_queue_t
;
35 * @brief Private Variables and Functions of job_queue class
38 struct private_job_queue_t
{
46 * The jobs are stored in a linked list
51 * access to linked_list is locked through this mutex
53 pthread_mutex_t mutex
;
56 * If the queue is empty a thread has to wait
57 * This condvar is used to wake up such a thread
59 pthread_cond_t condvar
;
64 * implements job_queue_t.get_count
66 static int get_count(private_job_queue_t
*this)
69 pthread_mutex_lock(&(this->mutex
));
70 count
= this->list
->get_count(this->list
);
71 pthread_mutex_unlock(&(this->mutex
));
76 * implements job_queue_t.get
78 static job_t
*get(private_job_queue_t
*this)
82 pthread_mutex_lock(&(this->mutex
));
83 /* go to wait while no jobs available */
84 while(this->list
->get_count(this->list
) == 0)
86 /* add mutex unlock handler for cancellation, enable cancellation */
87 pthread_cleanup_push((void(*)(void*))pthread_mutex_unlock
, (void*)&(this->mutex
));
88 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE
, &oldstate
);
90 pthread_cond_wait( &(this->condvar
), &(this->mutex
));
92 /* reset cancellation, remove mutex-unlock handler (without executing) */
93 pthread_setcancelstate(oldstate
, NULL
);
94 pthread_cleanup_pop(0);
96 this->list
->remove_first(this->list
,(void **) &job
);
97 pthread_mutex_unlock(&(this->mutex
));
102 * implements function job_queue_t.add
104 static void add(private_job_queue_t
*this, job_t
*job
)
106 pthread_mutex_lock(&(this->mutex
));
107 this->list
->insert_last(this->list
,job
);
108 pthread_cond_signal( &(this->condvar
));
109 pthread_mutex_unlock(&(this->mutex
));
113 * implements job_queue_t.destroy
115 static void job_queue_destroy (private_job_queue_t
*this)
117 while (this->list
->get_count(this->list
) > 0)
120 if (this->list
->remove_first(this->list
,(void *) &job
) != SUCCESS
)
122 this->list
->destroy(this->list
);
125 job
->destroy_all(job
);
127 this->list
->destroy(this->list
);
129 pthread_mutex_destroy(&(this->mutex
));
131 pthread_cond_destroy(&(this->condvar
));
133 allocator_free(this);
138 * Documented in header
140 job_queue_t
*job_queue_create()
142 private_job_queue_t
*this = allocator_alloc_thing(private_job_queue_t
);
144 this->public.get_count
= (int(*)(job_queue_t
*))get_count
;
145 this->public.get
= (job_t
*(*)(job_queue_t
*))get
;
146 this->public.add
= (void(*)(job_queue_t
*, job_t
*))add
;
147 this->public.destroy
= (void(*)(job_queue_t
*))job_queue_destroy
;
149 this->list
= linked_list_create();
150 pthread_mutex_init(&(this->mutex
), NULL
);
151 pthread_cond_init(&(this->condvar
), NULL
);
153 return (&this->public);