clamd/thrmgr.h
c238ac42
 /*
c442ca9c
  *  Copyright (C) 2013-2019 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
  *  Copyright (C) 2007-2013 Sourcefire, Inc.
086eab5c
  *
  *  Authors: Tomasz Kojm, Török Edvin
c238ac42
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
  *
  *  This program 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 this program; if not, write to the Free Software
48b7b4a7
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
c238ac42
  */
 
 #ifndef __THRMGR_H__
 #define __THRMGR_H__
 
 #include <pthread.h>
67118e92
 
e0bb54d7
 #ifndef _WIN32
52e8d3c6
 #include <sys/time.h>
67118e92
 #endif
52e8d3c6
 
 typedef struct work_item_tag {
 	struct work_item_tag *next;
 	void *data;
 	struct timeval time_queued;
 } work_item_t;
 	
 typedef struct work_queue_tag {
 	work_item_t *head;
 	work_item_t *tail;
 	int item_count;
949c6fe5
 	int popped;
52e8d3c6
 } work_queue_t;
 
 typedef enum {
 	POOL_INVALID,
 	POOL_VALID,
bd8603aa
 	POOL_EXIT
52e8d3c6
 } pool_state_t;
 
aa22174b
 struct task_desc {
 	const char *filename;
 	const char *command;
 	struct timeval tv;
 	struct task_desc *prv;
 	struct task_desc *nxt;
deb30312
 	const struct cl_engine *engine;
aa22174b
 };
 
52e8d3c6
 typedef struct threadpool_tag {
 	pthread_mutex_t pool_mutex;
 	pthread_cond_t pool_cond;
 	pthread_attr_t pool_attr;
d6df9ffb
 
 	pthread_cond_t  idle_cond;
6a5ec1f9
 	pthread_cond_t  queueable_single_cond;
 	pthread_cond_t  queueable_bulk_cond;
 
1593523e
 	pool_state_t state;
 	int thr_max;
949c6fe5
 	int queue_max;
1593523e
 	int thr_alive;
 	int thr_idle;
80301d0c
 	int thr_multiscan;
52e8d3c6
 	int idle_timeout;
aa22174b
 	struct task_desc *tasks;
52e8d3c6
 	
 	void (*handler)(void *);
949c6fe5
 
 	work_queue_t *bulk_queue;
 	work_queue_t *single_queue;
52e8d3c6
 } threadpool_t;
 
949c6fe5
 typedef struct jobgroup {
     pthread_mutex_t mutex;
     pthread_cond_t only;
     unsigned	jobs;
     unsigned	exit_ok;
     unsigned	exit_error;
     unsigned	exit_total;
     int		force_exit;
 } jobgroup_t;
 
 enum thrmgr_exit {
     EXIT_OK,
     EXIT_ERROR,
     EXIT_OTHER
 };
 
 threadpool_t *thrmgr_new(int max_threads, int idle_timeout, int max_queue, void (*handler)(void *));
52e8d3c6
 void thrmgr_destroy(threadpool_t *threadpool);
 int thrmgr_dispatch(threadpool_t *threadpool, void *user_data);
1514794c
 int thrmgr_group_dispatch(threadpool_t *threadpool, jobgroup_t *group, void *user_data, int bulk);
949c6fe5
 void thrmgr_group_waitforall(jobgroup_t *group, unsigned *ok, unsigned *error, unsigned *total);
 int thrmgr_group_finished(jobgroup_t *group, enum thrmgr_exit exitc);
 int thrmgr_group_need_terminate(jobgroup_t *group);
0378a9ab
 void thrmgr_group_terminate(jobgroup_t *group);
949c6fe5
 jobgroup_t *thrmgr_group_new(void);
f2381892
 int thrmgr_printstats(int outfd, char term);
aa22174b
 void thrmgr_setactivetask(const char *filename, const char* command);
deb30312
 void thrmgr_setactiveengine(const struct cl_engine *engine);
c238ac42
 
 #endif