copy wangle back into folly
[folly.git] / folly / wangle / concurrent / NamedThreadFactory.h
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <atomic>
20 #include <string>
21 #include <thread>
22
23 #include <folly/wangle/concurrent/ThreadFactory.h>
24 #include <folly/Conv.h>
25 #include <folly/Range.h>
26 #include <folly/ThreadName.h>
27
28 namespace folly { namespace wangle {
29
30 class NamedThreadFactory : public ThreadFactory {
31  public:
32   explicit NamedThreadFactory(folly::StringPiece prefix)
33     : prefix_(prefix.str()), suffix_(0) {}
34
35   std::thread newThread(Func&& func) override {
36     auto thread = std::thread(std::move(func));
37     folly::setThreadName(
38         thread.native_handle(),
39         folly::to<std::string>(prefix_, suffix_++));
40     return thread;
41   }
42
43   void setNamePrefix(folly::StringPiece prefix) {
44     prefix_ = prefix.str();
45   }
46
47   std::string getNamePrefix() {
48     return prefix_;
49   }
50
51  private:
52   std::string prefix_;
53   std::atomic<uint64_t> suffix_;
54 };
55
56 }} // folly::wangle