2017-07-13 00:02:10 +10:00
|
|
|
#pragma once
|
|
|
|
#include <nx/IKernelCapabilityHandler.h>
|
|
|
|
#include <nx/HandleTableSizeEntry.h>
|
|
|
|
|
|
|
|
namespace nx
|
|
|
|
{
|
|
|
|
class HandleTableSizeHandler :
|
|
|
|
public IKernelCapabilityHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
HandleTableSizeHandler();
|
|
|
|
|
2018-06-24 23:01:16 +08:00
|
|
|
void operator=(const HandleTableSizeHandler& other);
|
2017-07-13 00:02:10 +10:00
|
|
|
bool operator==(const HandleTableSizeHandler& other) const;
|
|
|
|
bool operator!=(const HandleTableSizeHandler& other) const;
|
|
|
|
|
|
|
|
// kernel capabilty list in/out
|
2018-06-29 12:24:39 +08:00
|
|
|
void importKernelCapabilityList(const fnd::List<KernelCapabilityEntry>& caps);
|
|
|
|
void exportKernelCapabilityList(fnd::List<KernelCapabilityEntry>& caps) const;
|
2017-07-13 00:02:10 +10:00
|
|
|
void clear();
|
|
|
|
bool isSet() const;
|
|
|
|
|
|
|
|
// variables
|
2018-03-22 13:26:22 +08:00
|
|
|
uint16_t getHandleTableSize() const;
|
|
|
|
void setHandleTableSize(uint16_t size);
|
2017-07-13 00:02:10 +10:00
|
|
|
|
|
|
|
private:
|
|
|
|
const std::string kModuleName = "HANDLE_TABLE_SIZE_HANDLER";
|
|
|
|
static const size_t kMaxKernelCapNum = 1;
|
|
|
|
|
|
|
|
bool mIsSet;
|
|
|
|
HandleTableSizeEntry mEntry;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|