Moved all threading code into threads.c
[citadel.git] / citadel / threads.h
1 /* $Id:$ */
2
3 #ifndef THREADS_H
4 #define THREADS_H
5
6 #include "sysdep.h"
7
8 #ifdef HAVE_PTHREAD_H
9 #include <pthread.h>
10 #endif
11
12 #include <sys/time.h>
13 #include <string.h>
14
15 #ifdef HAVE_DB_H
16 #include <db.h>
17 #elif defined(HAVE_DB4_DB_H)
18 #include <db4/db.h>
19 #else
20 #error Neither <db.h> nor <db4/db.h> was found by configure. Install db4-devel.
21 #endif
22
23 #include "server.h"
24
25 /*
26  * Thread stuff
27  */
28 #define CTDLTHREAD_BIGSTACK     0x0001
29 #define CTDLTHREAD_WORKER       0x0002
30
31 enum CtdlThreadState {
32         CTDL_THREAD_INVALID,
33         CTDL_THREAD_VALID,
34         CTDL_THREAD_CREATE,
35         CTDL_THREAD_CANCELLED,
36         CTDL_THREAD_EXITED,
37         CTDL_THREAD_STOPPING,
38         CTDL_THREAD_STOP_REQ,   /* Do NOT put any running states before this state */
39         CTDL_THREAD_SLEEPING,
40         CTDL_THREAD_BLOCKED,
41         CTDL_THREAD_RUNNING,
42         CTDL_THREAD_LAST_STATE
43 };
44
45 extern struct CtdlThreadNode {
46         pthread_t tid;                          /* id as returned by pthread_create() */
47         pid_t pid;                              /* pid, as best the OS will let us determine */
48         time_t when;                            /* When to start a scheduled thread */
49         struct CitConext *Context;              /* The session context that this thread mught be working on or NULL if none */
50         long number;                            /* A unigue number for this thread (not implimented yet) */
51         int wakefd_recv;                        /* An fd that this thread can sleep on (not implimented yet) */
52         int wakefd_send;                        /* An fd that this thread can send out on (Not implimented yet) */
53         int signal;                             /* A field to store a signal we caught. */
54         const char *name;                       /* A name for this thread */
55         void *(*thread_func) (void *arg);       /* The actual function that does this threads work */
56         void *user_args;                        /* Arguments passed to this threads work function */
57         long flags;                             /* Flags that describe this thread */
58         enum CtdlThreadState state;             /* Flag to show state of this thread */
59         pthread_mutex_t ThreadMutex;            /* A mutex to sync this thread to others if this thread allows (also used for sleeping) */
60         pthread_cond_t ThreadCond;              /* A condition variable to sync this thread with others */
61         pthread_mutex_t SleepMutex;             /* A mutex for sleeping */
62         pthread_cond_t SleepCond;               /* A condition variable for sleeping */
63         pthread_attr_t attr;                    /* Attributes of this thread */
64         struct timeval start_time;              /* Time this thread was started */
65         struct timeval last_state_change;       /* Time when this thread last changed state */
66         double avg_sleeping;                    /* Average sleeping time */
67         double avg_running;                     /* Average running time */
68         double avg_blocked;                     /* Average blocked time */
69         double load_avg;                        /* Load average for this thread */
70         struct CtdlThreadNode *prev;            /* Previous thread in the thread table */
71         struct CtdlThreadNode *next;            /* Next thread in the thread table */
72 } *CtdlThreadList;
73
74 typedef struct {
75         DB_TXN *tid;            /* Transaction handle */
76         DBC *cursors[MAXCDB];   /* Cursors, for traversals... */
77         struct CtdlThreadNode *self;    /* Pointer to this threads control structure */
78 }ThreadTSD ;
79
80 extern double CtdlThreadLoadAvg;
81 extern double CtdlThreadWorkerAvg;
82 extern pthread_key_t ThreadKey;
83
84 void ctdl_thread_internal_init_tsd(void);
85 void ctdl_internal_thread_gc (void);
86 void ctdl_thread_internal_init(void);
87 void ctdl_thread_internal_cleanup(void);
88 void ctdl_thread_internal_calc_loadavg(void);
89 void ctdl_thread_internal_free_tsd(void);
90 struct CtdlThreadNode *ctdl_internal_create_thread(char *name, long flags, void *(*thread_func) (void *arg), void *args);
91 void ctdl_thread_internal_check_scheduled(void);
92
93 void InitialiseSemaphores(void);
94 int try_critical_section (int which_one);
95 void begin_critical_section (int which_one);
96 void end_critical_section (int which_one);
97 void go_threading(void);
98
99 #endif // THREADS_H