| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*
- *
- * Copyright 2015 gRPC authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
- #ifndef GRPC_INTERNAL_CPP_DYNAMIC_THREAD_POOL_H
- #define GRPC_INTERNAL_CPP_DYNAMIC_THREAD_POOL_H
- #include <condition_variable>
- #include <list>
- #include <memory>
- #include <mutex>
- #include <queue>
- #include <thread>
- #include <grpc++/support/config.h>
- #include "src/cpp/server/thread_pool_interface.h"
- namespace grpc {
- class DynamicThreadPool final : public ThreadPoolInterface {
- public:
- explicit DynamicThreadPool(int reserve_threads);
- ~DynamicThreadPool();
- void Add(const std::function<void()>& callback) override;
- private:
- class DynamicThread {
- public:
- DynamicThread(DynamicThreadPool* pool);
- ~DynamicThread();
- private:
- DynamicThreadPool* pool_;
- std::unique_ptr<std::thread> thd_;
- void ThreadFunc();
- };
- std::mutex mu_;
- std::condition_variable cv_;
- std::condition_variable shutdown_cv_;
- bool shutdown_;
- std::queue<std::function<void()>> callbacks_;
- int reserve_threads_;
- int nthreads_;
- int threads_waiting_;
- std::list<DynamicThread*> dead_threads_;
- void ThreadFunc();
- static void ReapThreads(std::list<DynamicThread*>* tlist);
- };
- } // namespace grpc
- #endif // GRPC_INTERNAL_CPP_DYNAMIC_THREAD_POOL_H
|