GSI Object Oriented Online Offline (Go4) GO4-6.4.0
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
TGo4Thread.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef TGo4Thread_H
15#define TGo4Thread_H
16
17#include "TNamed.h"
18
19class TThread;
20class TCondition;
21class TGo4Runnable;
22
33
34class TGo4Thread : public TNamed {
35
36 public:
37
38 TGo4Thread() = delete;
39
40 TGo4Thread(const TGo4Thread &right);
41
47 TGo4Thread (const char *name, TGo4Runnable *runnable, Bool_t internal = kTRUE);
48
49 virtual ~TGo4Thread();
50
52 Bool_t Create();
53
55 Bool_t Cancel();
56
60 Bool_t ReCreate();
61
64 Bool_t Start();
65
67 Bool_t Stop();
68
71 static void Sleep(UInt_t millisecs);
72
74 Int_t GetPID() const { return fiThreadPID; }
75
77 Long_t GetSelfID() const { return fiThreadSelfID; }
78
81 Bool_t IsInternal() const { return fbIsInternal; }
82
84 Bool_t IsCreated() const { return fbIsCreated; }
85
87 Bool_t IsRunning() const { return fbIsRunning; }
88
90 Bool_t IsWaiting() const { return fbIsWaiting; }
91
92 private:
93
98 static void Threadfunc (void *arg);
99
102
103 TCondition *GetCondition() const { return fxCondition; }
104
105 void SetPID();
106
107 void SetSelfID();
108
109 void SetWaiting(Bool_t mode=kTRUE) { fbIsWaiting=mode; }
110
116 Bool_t fbIsInternal{kFALSE};
117
119 Bool_t fbIsCreated{kFALSE};
120
122 Bool_t fbIsRunning{kFALSE};
123
125 Int_t fiThreadPID{0};
126
128 Long_t fiThreadSelfID{0};
129
131 Bool_t fbIsWaiting{kFALSE};
132
141
142 TThread *fxThread{nullptr};
143
144 TCondition *fxCondition{nullptr};
145};
146
147#endif
Base class for all go4 runnables.
Bool_t Stop()
resets running flag for runnable
TCondition * fxCondition
Definition TGo4Thread.h:144
Bool_t IsWaiting() const
true if Threadfunc is suspended to condition wait
Definition TGo4Thread.h:90
Int_t fiThreadPID
Linux process id associated with the pthread.
Definition TGo4Thread.h:125
Bool_t fbIsCreated
kTRUE if TThread instance exists and pthread is created
Definition TGo4Thread.h:119
void SetWaiting(Bool_t mode=kTRUE)
Definition TGo4Thread.h:109
Bool_t fbIsWaiting
true if Threadfunc is suspended to condition wait
Definition TGo4Thread.h:131
TThread * fxThread
Definition TGo4Thread.h:142
Long_t GetSelfID() const
self id of the current thread
Definition TGo4Thread.h:77
Bool_t IsCreated() const
kTRUE if TThread instance exists and pthread is created
Definition TGo4Thread.h:84
Long_t fiThreadSelfID
self id of the current thread
Definition TGo4Thread.h:128
Bool_t Cancel()
Cancels TThread.
TGo4Runnable * fxRunnable
External class providing the threaded workfunction and exception routines for workfunction.
Definition TGo4Thread.h:140
Bool_t fbIsRunning
Flag that controls Workfunc loop within Threadfunc.
Definition TGo4Thread.h:122
Bool_t Create()
creates the TThread if not yet existing
Bool_t fbIsInternal
specifies whether thread is internal thread of handler (true) or is owned by external class (false).
Definition TGo4Thread.h:116
TGo4Runnable * GetRunnable() const
We need this to have access to instance runnable from static Threadfunc:
Definition TGo4Thread.h:101
static void Sleep(UInt_t millisecs)
wrapper for gSystem->Sleep with consecutive TThread::CancelPoint - necessary for proper pthread termi...
Bool_t ReCreate()
Stops old Runnable; Creates new TThread of same Runnable and name; cancels old Thread.
Bool_t Start()
starts runnable method Run within thread loop by setting running flag and signaling condition
TGo4Thread()=delete
void SetSelfID()
void SetPID()
Bool_t IsInternal() const
returns flag indicating if go4thread object is internal to threadhandler or created externally
Definition TGo4Thread.h:81
Int_t GetPID() const
linux process id associated with the pthread
Definition TGo4Thread.h:74
virtual ~TGo4Thread()
static void Threadfunc(void *arg)
This function is passed to TThread ctor and runs as pthread.
TCondition * GetCondition() const
Definition TGo4Thread.h:103
Bool_t IsRunning() const
Flag that controls Workfunc loop within Threadfunc.
Definition TGo4Thread.h:87