83 lines
2.6 KiB
C++
83 lines
2.6 KiB
C++
/*
|
||
* Copyright (c) 2016 The ZLToolKit project authors. All Rights Reserved.
|
||
*
|
||
* This file is part of ZLToolKit(https://github.com/ZLMediaKit/ZLToolKit).
|
||
*
|
||
* Use of this source code is governed by MIT license that can be found in the
|
||
* LICENSE file in the root of the source tree. All contributing project authors
|
||
* may be found in the AUTHORS file in the root of the source tree.
|
||
*/
|
||
|
||
#ifndef UTIL_WORKTHREADPOOL_H_
|
||
#define UTIL_WORKTHREADPOOL_H_
|
||
|
||
#include <memory>
|
||
#include "Poller/EventPoller.h"
|
||
|
||
namespace toolkit {
|
||
|
||
class WorkThreadPool : public std::enable_shared_from_this<WorkThreadPool>, public TaskExecutorGetterImp {
|
||
public:
|
||
using Ptr = std::shared_ptr<WorkThreadPool>;
|
||
|
||
~WorkThreadPool() override = default;
|
||
|
||
/**
|
||
* 获取单例
|
||
* Get the singleton instance
|
||
|
||
* [AUTO-TRANSLATED:c8852589]
|
||
*/
|
||
static WorkThreadPool &Instance();
|
||
|
||
/**
|
||
* 设置EventPoller个数,在WorkThreadPool单例创建前有效
|
||
* 在不调用此方法的情况下,默认创建thread::hardware_concurrency()个EventPoller实例
|
||
* @param size EventPoller个数,如果为0则为thread::hardware_concurrency()
|
||
* Set the number of EventPoller instances, effective before the WorkThreadPool singleton is created
|
||
* If this method is not called, the default is to create thread::hardware_concurrency() EventPoller instances
|
||
* @param size The number of EventPoller instances, if 0 then use thread::hardware_concurrency()
|
||
|
||
* [AUTO-TRANSLATED:bb236d87]
|
||
*/
|
||
static void setPoolSize(size_t size = 0);
|
||
|
||
/**
|
||
* 内部创建线程是否设置cpu亲和性,默认设置cpu亲和性
|
||
* Whether to set CPU affinity when creating internal threads, CPU affinity is set by default
|
||
|
||
* [AUTO-TRANSLATED:46941c9f]
|
||
*/
|
||
static void enableCpuAffinity(bool enable);
|
||
|
||
/**
|
||
* 获取第一个实例
|
||
* @return
|
||
* Get the first instance
|
||
* @return
|
||
|
||
* [AUTO-TRANSLATED:a76aad3b]
|
||
*/
|
||
EventPoller::Ptr getFirstPoller();
|
||
|
||
/**
|
||
* 根据负载情况获取轻负载的实例
|
||
* 如果优先返回当前线程,那么会返回当前线程
|
||
* 返回当前线程的目的是为了提高线程安全性
|
||
* @return
|
||
* Get a lightly loaded instance based on the load situation
|
||
* If priority is given to the current thread, it will return the current thread
|
||
* The purpose of returning the current thread is to improve thread safety
|
||
* @return
|
||
|
||
* [AUTO-TRANSLATED:1282b772]
|
||
*/
|
||
EventPoller::Ptr getPoller();
|
||
|
||
protected:
|
||
WorkThreadPool();
|
||
};
|
||
|
||
} /* namespace toolkit */
|
||
#endif /* UTIL_WORKTHREADPOOL_H_ */
|