blob: 88849475bbe48f2911aaad2f6b5686906a53738b [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Mark Slee9f0c6512007-02-28 23:58:26 +000019
Marc Slemko66949872006-07-15 01:52:39 +000020#include "PosixThreadFactory.h"
Marc Slemko3a3b53b2007-05-22 23:59:54 +000021#include "Exception.h"
Marc Slemko66949872006-07-15 01:52:39 +000022
David Reissaf296952008-06-10 22:54:40 +000023#if GOOGLE_PERFTOOLS_REGISTER_THREAD
24# include <google/profiler.h>
25#endif
26
Marc Slemko66949872006-07-15 01:52:39 +000027#include <assert.h>
28#include <pthread.h>
29
Marc Slemko6f038a72006-08-03 18:58:09 +000030#include <iostream>
31
32#include <boost/weak_ptr.hpp>
33
T Jake Lucianib5e62212009-01-31 22:36:20 +000034namespace apache { namespace thrift { namespace concurrency {
Marc Slemko66949872006-07-15 01:52:39 +000035
David Reissd4a269c2007-08-23 02:37:19 +000036using boost::shared_ptr;
37using boost::weak_ptr;
Marc Slemko6f038a72006-08-03 18:58:09 +000038
Mark Sleef5f2be42006-09-05 21:05:31 +000039/**
Marc Slemko3a3b53b2007-05-22 23:59:54 +000040 * The POSIX thread class.
Mark Sleef5f2be42006-09-05 21:05:31 +000041 *
Mark Sleef5f2be42006-09-05 21:05:31 +000042 * @version $Id:$
43 */
Marc Slemko66949872006-07-15 01:52:39 +000044class PthreadThread: public Thread {
Mark Sleef5f2be42006-09-05 21:05:31 +000045 public:
Marc Slemko66949872006-07-15 01:52:39 +000046
Mark Sleef5f2be42006-09-05 21:05:31 +000047 enum STATE {
48 uninitialized,
49 starting,
50 started,
51 stopping,
52 stopped
Marc Slemko66949872006-07-15 01:52:39 +000053 };
54
55 static const int MB = 1024 * 1024;
56
Marc Slemko8a40a762006-07-19 17:46:50 +000057 static void* threadMain(void* arg);
58
Mark Sleef5f2be42006-09-05 21:05:31 +000059 private:
Mark Slee2f6404d2006-10-10 01:37:40 +000060 pthread_t pthread_;
61 STATE state_;
62 int policy_;
63 int priority_;
64 int stackSize_;
65 weak_ptr<PthreadThread> self_;
Marc Slemko67606e52007-06-04 21:01:19 +000066 bool detached_;
Marc Slemko6f038a72006-08-03 18:58:09 +000067
Mark Sleef5f2be42006-09-05 21:05:31 +000068 public:
Marc Slemko3a3b53b2007-05-22 23:59:54 +000069
Marc Slemko67606e52007-06-04 21:01:19 +000070 PthreadThread(int policy, int priority, int stackSize, bool detached, shared_ptr<Runnable> runnable) :
Roger Meier84e4a3c2011-09-16 20:58:44 +000071
72#ifndef _WIN32
Mark Slee2f6404d2006-10-10 01:37:40 +000073 pthread_(0),
Roger Meier84e4a3c2011-09-16 20:58:44 +000074#endif // _WIN32
75
Marc Slemko3a3b53b2007-05-22 23:59:54 +000076 state_(uninitialized),
Mark Slee2f6404d2006-10-10 01:37:40 +000077 policy_(policy),
78 priority_(priority),
Marc Slemko67606e52007-06-04 21:01:19 +000079 stackSize_(stackSize),
80 detached_(detached) {
Marc Slemkofe5ba12e2006-07-20 21:16:27 +000081
82 this->Thread::runnable(runnable);
83 }
Marc Slemko66949872006-07-15 01:52:39 +000084
Marc Slemko67606e52007-06-04 21:01:19 +000085 ~PthreadThread() {
86 /* Nothing references this thread, if is is not detached, do a join
Marc Slemkoa6479032007-06-05 22:20:14 +000087 now, otherwise the thread-id and, possibly, other resources will
Marc Slemko67606e52007-06-04 21:01:19 +000088 be leaked. */
89 if(!detached_) {
90 try {
91 join();
92 } catch(...) {
Marc Slemkoa6479032007-06-05 22:20:14 +000093 // We're really hosed.
Marc Slemko67606e52007-06-04 21:01:19 +000094 }
95 }
96 }
Marc Slemko6f038a72006-08-03 18:58:09 +000097
Marc Slemko66949872006-07-15 01:52:39 +000098 void start() {
Mark Slee2f6404d2006-10-10 01:37:40 +000099 if (state_ != uninitialized) {
Marc Slemko66949872006-07-15 01:52:39 +0000100 return;
101 }
102
Marc Slemko66949872006-07-15 01:52:39 +0000103 pthread_attr_t thread_attr;
Mark Slee2782d6d2007-05-23 04:55:30 +0000104 if (pthread_attr_init(&thread_attr) != 0) {
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000105 throw SystemResourceException("pthread_attr_init failed");
106 }
Aditya Agarwal9dc57402007-03-31 17:45:12 +0000107
Marc Slemkoa6479032007-06-05 22:20:14 +0000108 if(pthread_attr_setdetachstate(&thread_attr,
109 detached_ ?
110 PTHREAD_CREATE_DETACHED :
Marc Slemko67606e52007-06-04 21:01:19 +0000111 PTHREAD_CREATE_JOINABLE) != 0) {
112 throw SystemResourceException("pthread_attr_setdetachstate failed");
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000113 }
Marc Slemko66949872006-07-15 01:52:39 +0000114
115 // Set thread stack size
Mark Slee2782d6d2007-05-23 04:55:30 +0000116 if (pthread_attr_setstacksize(&thread_attr, MB * stackSize_) != 0) {
117 throw SystemResourceException("pthread_attr_setstacksize failed");
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000118 }
Marc Slemko66949872006-07-15 01:52:39 +0000119
120 // Set thread policy
Mark Slee2782d6d2007-05-23 04:55:30 +0000121 if (pthread_attr_setschedpolicy(&thread_attr, policy_) != 0) {
122 throw SystemResourceException("pthread_attr_setschedpolicy failed");
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000123 }
Marc Slemko66949872006-07-15 01:52:39 +0000124
125 struct sched_param sched_param;
Mark Slee2f6404d2006-10-10 01:37:40 +0000126 sched_param.sched_priority = priority_;
Marc Slemko66949872006-07-15 01:52:39 +0000127
128 // Set thread priority
Mark Slee2782d6d2007-05-23 04:55:30 +0000129 if (pthread_attr_setschedparam(&thread_attr, &sched_param) != 0) {
130 throw SystemResourceException("pthread_attr_setschedparam failed");
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000131 }
Marc Slemko66949872006-07-15 01:52:39 +0000132
Mark Sleef5f2be42006-09-05 21:05:31 +0000133 // Create reference
Marc Slemko6f038a72006-08-03 18:58:09 +0000134 shared_ptr<PthreadThread>* selfRef = new shared_ptr<PthreadThread>();
Mark Slee2f6404d2006-10-10 01:37:40 +0000135 *selfRef = self_.lock();
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000136
Marc Slemko67606e52007-06-04 21:01:19 +0000137 state_ = starting;
138
Mark Slee2782d6d2007-05-23 04:55:30 +0000139 if (pthread_create(&pthread_, &thread_attr, threadMain, (void*)selfRef) != 0) {
140 throw SystemResourceException("pthread_create failed");
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000141 }
Marc Slemko66949872006-07-15 01:52:39 +0000142 }
143
144 void join() {
Marc Slemko67606e52007-06-04 21:01:19 +0000145 if (!detached_ && state_ != uninitialized) {
Marc Slemko66949872006-07-15 01:52:39 +0000146 void* ignore;
Marc Slemkoa6479032007-06-05 22:20:14 +0000147 /* XXX
148 If join fails it is most likely due to the fact
149 that the last reference was the thread itself and cannot
150 join. This results in leaked threads and will eventually
151 cause the process to run out of thread resources.
152 We're beyond the point of throwing an exception. Not clear how
153 best to handle this. */
154 detached_ = pthread_join(pthread_, &ignore) == 0;
Marc Slemko66949872006-07-15 01:52:39 +0000155 }
156 }
157
David Reissfbb14ef2008-12-02 02:32:25 +0000158 Thread::id_t getId() {
Roger Meier84e4a3c2011-09-16 20:58:44 +0000159
160#ifndef _WIN32
David Reissfbb14ef2008-12-02 02:32:25 +0000161 return (Thread::id_t)pthread_;
Roger Meier84e4a3c2011-09-16 20:58:44 +0000162#else
163 return (Thread::id_t)pthread_.p;
164#endif // _WIN32
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000165 }
166
Mark Sleef5f2be42006-09-05 21:05:31 +0000167 shared_ptr<Runnable> runnable() const { return Thread::runnable(); }
Marc Slemkofe5ba12e2006-07-20 21:16:27 +0000168
Mark Sleef5f2be42006-09-05 21:05:31 +0000169 void runnable(shared_ptr<Runnable> value) { Thread::runnable(value); }
Marc Slemko66949872006-07-15 01:52:39 +0000170
Marc Slemko6f038a72006-08-03 18:58:09 +0000171 void weakRef(shared_ptr<PthreadThread> self) {
Aditya Agarwal3f234da2007-04-01 01:19:57 +0000172 assert(self.get() == this);
Mark Slee2f6404d2006-10-10 01:37:40 +0000173 self_ = weak_ptr<PthreadThread>(self);
Marc Slemko6f038a72006-08-03 18:58:09 +0000174 }
Marc Slemko66949872006-07-15 01:52:39 +0000175};
176
Marc Slemko8a40a762006-07-19 17:46:50 +0000177void* PthreadThread::threadMain(void* arg) {
Marc Slemko6f038a72006-08-03 18:58:09 +0000178 shared_ptr<PthreadThread> thread = *(shared_ptr<PthreadThread>*)arg;
Marc Slemko6f038a72006-08-03 18:58:09 +0000179 delete reinterpret_cast<shared_ptr<PthreadThread>*>(arg);
180
Mark Sleef5f2be42006-09-05 21:05:31 +0000181 if (thread == NULL) {
Marc Slemko6f038a72006-08-03 18:58:09 +0000182 return (void*)0;
183 }
184
Mark Slee2f6404d2006-10-10 01:37:40 +0000185 if (thread->state_ != starting) {
Marc Slemko8a40a762006-07-19 17:46:50 +0000186 return (void*)0;
187 }
188
David Reissaf296952008-06-10 22:54:40 +0000189#if GOOGLE_PERFTOOLS_REGISTER_THREAD
190 ProfilerRegisterThread();
191#endif
192
Mark Slee2f6404d2006-10-10 01:37:40 +0000193 thread->state_ = starting;
Marc Slemkofe5ba12e2006-07-20 21:16:27 +0000194 thread->runnable()->run();
Mark Slee2f6404d2006-10-10 01:37:40 +0000195 if (thread->state_ != stopping && thread->state_ != stopped) {
196 thread->state_ = stopping;
Marc Slemko8a40a762006-07-19 17:46:50 +0000197 }
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000198
Marc Slemko8a40a762006-07-19 17:46:50 +0000199 return (void*)0;
200}
201
Mark Sleef5f2be42006-09-05 21:05:31 +0000202/**
203 * POSIX Thread factory implementation
204 */
Marc Slemko66949872006-07-15 01:52:39 +0000205class PosixThreadFactory::Impl {
206
Mark Sleef5f2be42006-09-05 21:05:31 +0000207 private:
Mark Slee2f6404d2006-10-10 01:37:40 +0000208 POLICY policy_;
209 PRIORITY priority_;
210 int stackSize_;
211 bool detached_;
Marc Slemko66949872006-07-15 01:52:39 +0000212
Mark Sleef5f2be42006-09-05 21:05:31 +0000213 /**
214 * Converts generic posix thread schedule policy enums into pthread
215 * API values.
216 */
Marc Slemko66949872006-07-15 01:52:39 +0000217 static int toPthreadPolicy(POLICY policy) {
Mark Sleeb9ff32a2006-11-16 01:00:24 +0000218 switch (policy) {
219 case OTHER:
220 return SCHED_OTHER;
221 case FIFO:
222 return SCHED_FIFO;
223 case ROUND_ROBIN:
224 return SCHED_RR;
Marc Slemko66949872006-07-15 01:52:39 +0000225 }
Mark Sleeb9ff32a2006-11-16 01:00:24 +0000226 return SCHED_OTHER;
Marc Slemko66949872006-07-15 01:52:39 +0000227 }
228
Mark Sleef5f2be42006-09-05 21:05:31 +0000229 /**
230 * Converts relative thread priorities to absolute value based on posix
231 * thread scheduler policy
232 *
233 * The idea is simply to divide up the priority range for the given policy
234 * into the correpsonding relative priority level (lowest..highest) and
235 * then pro-rate accordingly.
236 */
Marc Slemko66949872006-07-15 01:52:39 +0000237 static int toPthreadPriority(POLICY policy, PRIORITY priority) {
Marc Slemko66949872006-07-15 01:52:39 +0000238 int pthread_policy = toPthreadPolicy(policy);
David Reisse4ca1792009-05-21 02:28:19 +0000239 int min_priority = 0;
240 int max_priority = 0;
241#ifdef HAVE_SCHED_GET_PRIORITY_MIN
242 min_priority = sched_get_priority_min(pthread_policy);
243#endif
244#ifdef HAVE_SCHED_GET_PRIORITY_MAX
245 max_priority = sched_get_priority_max(pthread_policy);
246#endif
Marc Slemko66949872006-07-15 01:52:39 +0000247 int quanta = (HIGHEST - LOWEST) + 1;
Marc Slemko66949872006-07-15 01:52:39 +0000248 float stepsperquanta = (max_priority - min_priority) / quanta;
249
Mark Slee29050782006-09-29 00:12:30 +0000250 if (priority <= HIGHEST) {
Marc Slemko66949872006-07-15 01:52:39 +0000251 return (int)(min_priority + stepsperquanta * priority);
252 } else {
Marc Slemko66949872006-07-15 01:52:39 +0000253 // should never get here for priority increments.
Marc Slemko66949872006-07-15 01:52:39 +0000254 assert(false);
Marc Slemko66949872006-07-15 01:52:39 +0000255 return (int)(min_priority + stepsperquanta * NORMAL);
256 }
257 }
258
Mark Sleef5f2be42006-09-05 21:05:31 +0000259 public:
Marc Slemko66949872006-07-15 01:52:39 +0000260
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000261 Impl(POLICY policy, PRIORITY priority, int stackSize, bool detached) :
Mark Slee2f6404d2006-10-10 01:37:40 +0000262 policy_(policy),
263 priority_(priority),
264 stackSize_(stackSize),
265 detached_(detached) {}
Marc Slemko66949872006-07-15 01:52:39 +0000266
Mark Sleef5f2be42006-09-05 21:05:31 +0000267 /**
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000268 * Creates a new POSIX thread to run the runnable object
Mark Sleef5f2be42006-09-05 21:05:31 +0000269 *
270 * @param runnable A runnable object
271 */
Marc Slemko6f038a72006-08-03 18:58:09 +0000272 shared_ptr<Thread> newThread(shared_ptr<Runnable> runnable) const {
Marc Slemko67606e52007-06-04 21:01:19 +0000273 shared_ptr<PthreadThread> result = shared_ptr<PthreadThread>(new PthreadThread(toPthreadPolicy(policy_), toPthreadPriority(policy_, priority_), stackSize_, detached_, runnable));
Marc Slemko6f038a72006-08-03 18:58:09 +0000274 result->weakRef(result);
275 runnable->thread(result);
276 return result;
Marc Slemko66949872006-07-15 01:52:39 +0000277 }
278
Marc Slemkoa6479032007-06-05 22:20:14 +0000279 int getStackSize() const { return stackSize_; }
Marc Slemko66949872006-07-15 01:52:39 +0000280
Marc Slemkoa6479032007-06-05 22:20:14 +0000281 void setStackSize(int value) { stackSize_ = value; }
Marc Slemko66949872006-07-15 01:52:39 +0000282
Marc Slemkoa6479032007-06-05 22:20:14 +0000283 PRIORITY getPriority() const { return priority_; }
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000284
Mark Sleef5f2be42006-09-05 21:05:31 +0000285 /**
286 * Sets priority.
287 *
288 * XXX
289 * Need to handle incremental priorities properly.
290 */
Marc Slemkoa6479032007-06-05 22:20:14 +0000291 void setPriority(PRIORITY value) { priority_ = value; }
292
293 bool isDetached() const { return detached_; }
294
295 void setDetached(bool value) { detached_ = value; }
296
Mark Slee98439152007-08-21 02:39:40 +0000297 Thread::id_t getCurrentThreadId() const {
Roger Meier84e4a3c2011-09-16 20:58:44 +0000298
299#ifndef _WIN32
David Reissffff2b32009-09-01 18:03:07 +0000300 return (Thread::id_t)pthread_self();
Roger Meier84e4a3c2011-09-16 20:58:44 +0000301#else
302 return (Thread::id_t)pthread_self().p;
303#endif // _WIN32
304
Mark Slee98439152007-08-21 02:39:40 +0000305 }
Marc Slemkoa6479032007-06-05 22:20:14 +0000306
Marc Slemko66949872006-07-15 01:52:39 +0000307};
308
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000309PosixThreadFactory::PosixThreadFactory(POLICY policy, PRIORITY priority, int stackSize, bool detached) :
Mark Slee2f6404d2006-10-10 01:37:40 +0000310 impl_(new PosixThreadFactory::Impl(policy, priority, stackSize, detached)) {}
Marc Slemko66949872006-07-15 01:52:39 +0000311
Mark Slee2f6404d2006-10-10 01:37:40 +0000312shared_ptr<Thread> PosixThreadFactory::newThread(shared_ptr<Runnable> runnable) const { return impl_->newThread(runnable); }
Marc Slemko66949872006-07-15 01:52:39 +0000313
Marc Slemkoa6479032007-06-05 22:20:14 +0000314int PosixThreadFactory::getStackSize() const { return impl_->getStackSize(); }
Marc Slemko66949872006-07-15 01:52:39 +0000315
Marc Slemkoa6479032007-06-05 22:20:14 +0000316void PosixThreadFactory::setStackSize(int value) { impl_->setStackSize(value); }
Marc Slemko66949872006-07-15 01:52:39 +0000317
Marc Slemkoa6479032007-06-05 22:20:14 +0000318PosixThreadFactory::PRIORITY PosixThreadFactory::getPriority() const { return impl_->getPriority(); }
Marc Slemko66949872006-07-15 01:52:39 +0000319
Marc Slemkoa6479032007-06-05 22:20:14 +0000320void PosixThreadFactory::setPriority(PosixThreadFactory::PRIORITY value) { impl_->setPriority(value); }
Marc Slemko66949872006-07-15 01:52:39 +0000321
Marc Slemkoa6479032007-06-05 22:20:14 +0000322bool PosixThreadFactory::isDetached() const { return impl_->isDetached(); }
323
324void PosixThreadFactory::setDetached(bool value) { impl_->setDetached(value); }
325
326Thread::id_t PosixThreadFactory::getCurrentThreadId() const { return impl_->getCurrentThreadId(); }
Marc Slemko3a3b53b2007-05-22 23:59:54 +0000327
T Jake Lucianib5e62212009-01-31 22:36:20 +0000328}}} // apache::thrift::concurrency