4 * @brief Job-Queue based on linked_list_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 <pluto/constants.h>
27 #include <pluto/defs.h>
29 #include "job_queue.h"
32 * @brief implements function destroy of job_t
34 static status_t
job_destroy(job_t
*job
)
41 * Creates a job (documented in header-file)
43 job_t
*job_create(job_type_t type
, void *assigned_data
)
45 job_t
*this = alloc_thing(job_t
, "job_t");
47 this->destroy
= job_destroy
;
50 this->assigned_data
= assigned_data
;
56 * @brief Private Variables and Functions of job_queue class
59 typedef struct private_job_queue_s private_job_queue_t
;
62 struct private_job_queue_s
{
66 * The jobs are stored in a linked list
70 * access to linked_list is locked through this mutex
72 pthread_mutex_t mutex
;
75 * If the queue is empty a thread has to wait
76 * This condvar is used to wake up such a thread
78 pthread_cond_t condvar
;
83 * @brief implements function get_count of job_queue_t
85 status_t
get_count(job_queue_t
*job_queue
, int *count
)
87 private_job_queue_t
*this = (private_job_queue_t
*) job_queue
;
88 pthread_mutex_lock(&(this->mutex
));
89 *count
= this->list
->count
;
90 pthread_mutex_unlock(&(this->mutex
));
95 * @brief implements function get of job_queue_t
97 status_t
get(job_queue_t
*job_queue
, job_t
**job
)
99 private_job_queue_t
*this = (private_job_queue_t
*) job_queue
;
100 pthread_mutex_lock(&(this->mutex
));
101 while(this->list
->count
== 0)
103 pthread_cond_wait( &(this->condvar
), &(this->mutex
));
105 this->list
->remove_first(this->list
,(void **) job
);
106 pthread_mutex_unlock(&(this->mutex
));
111 * @brief implements function add of job_queue_t
113 status_t
add(job_queue_t
*job_queue
, job_t
*job
)
115 private_job_queue_t
*this = (private_job_queue_t
*) job_queue
;
116 pthread_mutex_lock(&(this->mutex
));
117 this->list
->insert_last(this->list
,job
);
118 pthread_cond_signal( &(this->condvar
));
119 pthread_mutex_unlock(&(this->mutex
));
124 * @brief implements function destroy of job_queue_t
127 status_t
job_queue_destroy (job_queue_t
*job_queue
)
129 private_job_queue_t
*this = (private_job_queue_t
*) job_queue
;
131 while (this->list
->count
> 0)
134 if (this->list
->remove_first(this->list
,(void *) &job
) != SUCCESS
)
136 this->list
->destroy(this->list
);
141 this->list
->destroy(this->list
);
143 pthread_mutex_destroy(&(this->mutex
));
145 pthread_cond_destroy(&(this->condvar
));
153 * Documented in header
155 job_queue_t
*job_queue_create()
157 linked_list_t
*linked_list
= linked_list_create();
158 if (linked_list
== NULL
)
163 private_job_queue_t
*this = alloc_thing(private_job_queue_t
, "private_job_queue_t");
166 linked_list
->destroy(linked_list
);
170 this->public.get_count
= get_count
;
171 this->public.get
= get
;
172 this->public.add
= add
;
173 this->public.destroy
= job_queue_destroy
;
175 this->list
= linked_list
;
176 pthread_mutex_init(&(this->mutex
), NULL
);
177 pthread_cond_init(&(this->condvar
), NULL
);
179 return (&this->public);