source: xplcommon/src/xplcommon/POSIXThread.h@ 0:35ba6f10e28f

Last change on this file since 0:35ba6f10e28f was 0:35ba6f10e28f, checked in by István Váradi <ivaradi@…>, 11 years ago

Initial revision, thread handling implemented

File size: 3.8 KB
Line 
1// -*- coding: utf-8 -*-
2// Copyright (c) 2012 by István Váradi
3
4// This file is part of libxplcommon, a common utility library for
5// development related to X-Plane
6
7// Copyright (c) 2013, István Váradi
8// All rights reserved.
9
10// Redistribution and use in source and binary forms, with or without
11// modification, are permitted provided that the following conditions are met:
12
13// 1. Redistributions of source code must retain the above copyright notice, this
14// list of conditions and the following disclaimer.
15// 2. Redistributions in binary form must reproduce the above copyright notice,
16// this list of conditions and the following disclaimer in the documentation
17// and/or other materials provided with the distribution.
18
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
23// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30// The views and conclusions contained in the software and documentation are those
31// of the authors and should not be interpreted as representing official policies,
32// either expressed or implied, of the FreeBSD Project.
33
34#ifndef XPLCOMMON_POSIXTHREAD_H
35#define XPLCOMMON_POSIXTHREAD_H
36//------------------------------------------------------------------------------
37
38#include "config.h"
39
40#ifdef HAVE_PTHREAD_H
41//------------------------------------------------------------------------------
42
43#include <pthread.h>
44
45//------------------------------------------------------------------------------
46
47namespace xplcommon {
48
49//------------------------------------------------------------------------------
50
51/**
52 * A pthreads-based thread implementation.
53 */
54class POSIXThread
55{
56private:
57 /**
58 * The thread-runner function.
59 */
60 static void* threadFn(void* arg);
61
62 /**
63 * The posix thread handle.
64 */
65 pthread_t thread;
66
67public:
68 /**
69 * Virtual destructor.
70 */
71 virtual ~POSIXThread();
72
73 /**
74 * Start the thread.
75 *
76 * @return if the thread could be started
77 */
78 bool start();
79
80 /**
81 * Perform the thread's real operation.
82 */
83 virtual void run() = 0;
84
85 /**
86 * Wait for the thread to quit.
87 */
88 void join();
89};
90
91//------------------------------------------------------------------------------
92
93/// Common type for OS-independent code
94typedef POSIXThread Thread;
95
96//------------------------------------------------------------------------------
97// Inline definitions
98//------------------------------------------------------------------------------
99
100inline POSIXThread::~POSIXThread()
101{
102}
103
104//------------------------------------------------------------------------------
105
106inline bool POSIXThread::start()
107{
108 return pthread_create(&thread, 0, &threadFn, this)>=0;
109}
110
111//------------------------------------------------------------------------------
112
113inline void POSIXThread::join()
114{
115 pthread_join(thread, 0);
116}
117
118//------------------------------------------------------------------------------
119
120} /* namespace xplcommon */
121
122//------------------------------------------------------------------------------
123#endif // HAVE_PTHREAD_H
124
125#endif // XPLCOMMON_POSIXTHREAD_H
126
127// Local Variables:
128// mode: C++
129// c-basic-offset: 4
130// indent-tabs-mode: nil
131// End:
Note: See TracBrowser for help on using the repository browser.