Qore Programming Language  0.8.11.1
qore_thread.h
Go to the documentation of this file.
1 /* -*- mode: c++; indent-tabs-mode: nil -*- */
2 /*
3  qore_thread.h
4 
5  POSIX thread library for Qore
6 
7  Qore Programming Language
8 
9  Copyright (C) 2003 - 2014 David Nichols
10 
11  Permission is hereby granted, free of charge, to any person obtaining a
12  copy of this software and associated documentation files (the "Software"),
13  to deal in the Software without restriction, including without limitation
14  the rights to use, copy, modify, merge, publish, distribute, sublicense,
15  and/or sell copies of the Software, and to permit persons to whom the
16  Software is furnished to do so, subject to the following conditions:
17 
18  The above copyright notice and this permission notice shall be included in
19  all copies or substantial portions of the Software.
20 
21  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27  DEALINGS IN THE SOFTWARE.
28 
29  Note that the Qore library is released under a choice of three open-source
30  licenses: MIT (as above), LGPL 2+, or GPL 2+; see README-LICENSE for more
31  information.
32 */
33 
34 #ifndef _QORE_QORE_THREAD_H
35 #define _QORE_QORE_THREAD_H
36 
41 #include <stdio.h>
42 #include <pthread.h>
43 
44 class QoreProgram;
45 class AbstractQoreZoneInfo;
46 class ThreadCleanupNode;
48 
50 typedef void (*qtdest_t)(void *);
51 
53 typedef void (*qtrdest_t)(void *, ExceptionSink *);
54 
56 typedef void (*q_thread_t)(ExceptionSink* xsink, void* arg);
57 
59 
65 DLLEXPORT bool is_valid_qore_thread();
66 
68 DLLEXPORT int gettid();
69 
71 DLLEXPORT QoreProgram *getProgram();
72 
74 DLLEXPORT const AbstractQoreZoneInfo *currentTZ();
75 
77 
79 DLLEXPORT void set_thread_resource(AbstractThreadResource* atr);
80 
82 
86 
88 
92 
93 #if 0
94 
101 DLLEXPORT void set_thread_resource_id(q_trid_t trid, AbstractThreadResource *atr);
102 
104 
109 DLLEXPORT int remove_thread_resource_id(q_trid_t trid);
110 
112 
115 DLLEXPORT bool check_thread_resource_id(q_trid_t trid);
116 #endif
117 
119 DLLEXPORT q_trid_t qore_get_trid();
120 
122 
130 private:
131  static ThreadCleanupNode *head;
132 
133 public:
134  DLLLOCAL ThreadCleanupList();
135  DLLLOCAL ~ThreadCleanupList();
136  DLLLOCAL void exec();
137 
139 
142  DLLEXPORT void push(qtdest_t func, void *arg);
143 
145 
147  DLLEXPORT void pop(bool exec = true);
148 };
149 
151 DLLEXPORT extern ThreadCleanupList tclist;
152 
156 #define QFT_OK 0
157 #define QFT_ERROR -1
158 #define QFT_REGISTERED -2
159 
160 
161 
173 DLLEXPORT int q_register_foreign_thread();
174 
176 
185 DLLEXPORT int q_deregister_foreign_thread();
186 
188 
192 DLLEXPORT int q_reserve_foreign_thread_id();
193 
195 
201 DLLEXPORT int q_release_reserved_foreign_thread_id(int tid);
202 
204 
210 DLLEXPORT int q_register_reserved_foreign_thread(int tid);
211 
213 
218 
220 
228 int q_start_thread(ExceptionSink* xsink, q_thread_t f, void* arg = 0);
229 
231 
234 private:
236  DLLLOCAL QoreForeignThreadHelper& operator=(const QoreForeignThreadHelper&);
238  DLLLOCAL void* operator new(size_t);
239 
240 protected:
241  class qore_foreign_thread_priv* priv;
242 
243 public:
245  DLLEXPORT QoreForeignThreadHelper();
246 
248  DLLEXPORT explicit QoreForeignThreadHelper(int tid);
249 
251  DLLEXPORT ~QoreForeignThreadHelper();
252 };
253 
254 #endif // ifndef _QORE_THREAD_H
void(* qtdest_t)(void *)
pointer to a qore thread destructor function
Definition: qore_thread.h:50
base class for saving data using Qore's thread resource management system
Definition: AbstractThreadResource.h:50
DLLEXPORT int q_reserve_foreign_thread_id()
reserves a thread ID for later registration and returns the TID reserved; use q_release_reserved_fore...
DLLEXPORT int gettid()
returns the current TID number
DLLEXPORT void pop(bool exec=true)
must only be called in the module destructor/deletion function
DLLEXPORT ~QoreForeignThreadHelper()
deregisters the current thread if the registration was successful using either q_deregister_foreign_t...
DLLEXPORT bool check_thread_resource(AbstractThreadResource *atr)
check if a thread resouce has been saved
DLLEXPORT ThreadCleanupList tclist
the interface to the thread cleanup list
DLLEXPORT void set_thread_resource(AbstractThreadResource *atr)
save a resource against a thread for thread resource handling
DLLEXPORT void push(qtdest_t func, void *arg)
must only be called in the module initialization function
DLLEXPORT int remove_thread_resource(AbstractThreadResource *atr)
remove the resource from the thread resource list for the current thread
DLLEXPORT QoreProgram * getProgram()
returns the current QoreProgram
DLLEXPORT int q_deregister_foreign_thread()
deregisters the current thread as a foreign thread
DLLEXPORT int q_release_reserved_foreign_thread_id(int tid)
releases a TID reserved with q_reserve_foreign_thread_id()
void(* qtrdest_t)(void *, ExceptionSink *)
pointer to a qore thread resource destructor function
Definition: qore_thread.h:53
unsigned q_trid_t
type for thread resource IDs (unique within a single running qore library process) ...
Definition: common.h:432
supports parsing and executing Qore-language code, reference counted, dynamically-allocated only ...
Definition: QoreProgram.h:103
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:43
DLLEXPORT QoreForeignThreadHelper()
registers the current thread as a foreign thread; the thread will be deregistered with q_deregister_f...
list of functions to be run when a thread ends; required for some external libraries that require exp...
Definition: qore_thread.h:129
void(* q_thread_t)(ExceptionSink *xsink, void *arg)
pointer to a function that can be started with q_start_thread()
Definition: qore_thread.h:56
DLLEXPORT int q_register_foreign_thread()
registers the current thread as a Qore thread; returns QFT_OK (0) if the thread was successfully regi...
use this class to temporarily register and deregister a foreign thread to allow Qore code to be execu...
Definition: qore_thread.h:233
int q_start_thread(ExceptionSink *xsink, q_thread_t f, void *arg=0)
starts a new thread with the given arguments, when the thread terminates, it deregisters itself ...
DLLEXPORT q_trid_t qore_get_trid()
get a thread resource ID
DLLEXPORT int q_deregister_reserved_foreign_thread()
deregisters a foreign qore thread but retains the TID as reserved
DLLEXPORT int q_register_reserved_foreign_thread(int tid)
registers a foreign qore thread as a Qore thread with a reserved TID
DLLEXPORT bool is_valid_qore_thread()
returns true if the current thread is a valid qore thread; it is not safe to call most Qore functions...
DLLEXPORT const AbstractQoreZoneInfo * currentTZ()
returns the current local time zone, note that if 0 = UTC