2014-05-13 09:28:15 +00:00
# ifndef THREADQUEUE_H_
# define THREADQUEUE_H_
/*****************************************************************************
* This file is part of Kvazaar HEVC encoder .
*
* Copyright ( C ) 2013 - 2014 Tampere University of Technology and others ( see
* COPYING file ) .
*
* Kvazaar is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation .
*
* Kvazaar is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with Kvazaar . If not , see < http : //www.gnu.org/licenses/>.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2014-05-19 10:56:27 +00:00
# include "global.h"
2014-05-13 09:28:15 +00:00
# include <pthread.h>
2014-05-16 08:15:05 +00:00
# include "threads.h"
2014-05-13 09:28:15 +00:00
typedef enum {
THREADQUEUE_JOB_STATE_QUEUED = 0 ,
THREADQUEUE_JOB_STATE_RUNNING = 1 ,
THREADQUEUE_JOB_STATE_DONE = 2
} threadqueue_job_state ;
typedef struct threadqueue_job {
pthread_mutex_t lock ;
threadqueue_job_state state ;
2014-05-16 08:15:05 +00:00
unsigned int ndepends ; //Number of active dependencies that this job wait for
2014-05-13 09:28:15 +00:00
struct threadqueue_job * * rdepends ; //array of pointer to jobs that depend on this one. They have to exist when the thread finishes, because they cannot be run before.
unsigned int rdepends_count ; //number of rdepends
unsigned int rdepends_size ; //allocated size of rdepends
//Job function and state to use
void ( * fptr ) ( void * arg ) ;
void * arg ;
2014-05-15 08:14:07 +00:00
# ifdef _DEBUG
const char * debug_description ;
int debug_worker_id ;
2014-05-16 08:15:05 +00:00
CLOCK_T debug_clock_enqueue ;
CLOCK_T debug_clock_start ;
CLOCK_T debug_clock_stop ;
CLOCK_T debug_clock_dequeue ;
2014-05-15 08:14:07 +00:00
# endif
2014-05-13 09:28:15 +00:00
} threadqueue_job ;
typedef struct {
pthread_mutex_t lock ;
pthread_cond_t cond ;
pthread_cond_t cb_cond ;
pthread_t * threads ;
int threads_count ;
int threads_running ;
int stop ; //=>1: threads should stop asap
threadqueue_job * * queue ;
2014-05-21 08:57:07 +00:00
unsigned int queue_start ;
2014-05-13 09:28:15 +00:00
unsigned int queue_count ;
unsigned int queue_size ;
2014-06-03 08:26:15 +00:00
unsigned int queue_waiting_execution ; //Number of jobs without any dependency which could be run
unsigned int queue_waiting_dependency ; //Number of jobs waiting for a dependency to complete
2014-05-15 08:14:07 +00:00
# ifdef _DEBUG
//Format: pointer <tab> worker id <tab> time enqueued <tab> time started <tab> time stopped <tab> time dequeued <tab> job description
//For threads, pointer = "" and job description == "thread", time enqueued and time dequeued are equal to "-"
//For flush, pointer = "" and job description == "FLUSH", time enqueued, time dequeued and time started are equal to "-"
//Each time field, except the first one in the line be expressed in a relative way, by prepending the number of seconds by +.
//Dependencies: pointer -> pointer
FILE * debug_log ;
2014-05-16 08:15:05 +00:00
CLOCK_T * debug_clock_thread_start ;
CLOCK_T * debug_clock_thread_end ;
2014-05-15 08:14:07 +00:00
# endif
2014-05-13 09:28:15 +00:00
} threadqueue_queue ;
//Init a threadqueue
int threadqueue_init ( threadqueue_queue * threadqueue , int thread_count ) ;
2014-05-14 09:49:50 +00:00
//Add a job to the queue, and returs a threadqueue_job handle. If wait == 1, one has to run threadqueue_job_unwait_job in order to have it run
2014-05-15 08:14:07 +00:00
threadqueue_job * threadqueue_submit ( threadqueue_queue * threadqueue , void ( * fptr ) ( void * arg ) , void * arg , int wait , const char * debug_description ) ;
2014-05-14 09:49:50 +00:00
int threadqueue_job_unwait_job ( threadqueue_queue * threadqueue , threadqueue_job * job ) ;
2014-05-13 09:28:15 +00:00
//Add a dependency between two jobs.
int threadqueue_job_dep_add ( threadqueue_job * job , threadqueue_job * depends_on ) ;
//Blocking call until the queue is empty. Previously set threadqueue_job handles should not be used anymore
int threadqueue_flush ( threadqueue_queue * threadqueue ) ;
2014-06-05 07:09:25 +00:00
//Blocking call until job is executed. Job handles submitted before job should not be used any more.
int threadqueue_waitfor ( threadqueue_queue * threadqueue , threadqueue_job * job ) ;
2014-05-13 09:28:15 +00:00
//Free ressources in a threadqueue
int threadqueue_finalize ( threadqueue_queue * threadqueue ) ;
2014-05-15 13:50:34 +00:00
# ifdef _DEBUG
2014-05-16 08:15:05 +00:00
int threadqueue_log ( threadqueue_queue * threadqueue , const CLOCK_T * start , const CLOCK_T * stop , const char * debug_description ) ;
2014-05-15 13:50:34 +00:00
//This macro HAS TO BE at the beginning of a block
2014-05-16 08:15:05 +00:00
# define PERFORMANCE_MEASURE_START() CLOCK_T start, stop; GET_TIME(&start)
# define PERFORMANCE_MEASURE_END(threadqueue, str, ...) do {GET_TIME(&stop); {char job_description[256]; sprintf(job_description, (str), __VA_ARGS__); threadqueue_log((threadqueue), &start, &stop, job_description); }} while (0)
2014-05-15 13:50:34 +00:00
# else
# define PERFORMANCE_MEASURE_START() do {} while (0)
# define PERFORMANCE_MEASURE_END(threadqueue, str, ...) do {} while (0)
# endif
2014-05-13 09:28:15 +00:00
/* Constraints:
*
* - Always first lock threadqueue , than a job inside it
* - When job A depends on job B , always lock first job B and then job A
2014-06-05 07:09:25 +00:00
* - Jobs should be submitted in an order which is compatible with serial execution .
2014-05-13 09:28:15 +00:00
*
* */
# endif //THREADQUEUE_H_