/*----------------------------------------------------------------------------*/ /* Copyright (c) 2016-2019 FIRST. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of */ /* the project. */ /*----------------------------------------------------------------------------*/ #pragma once #include #include #include #include #include "hal/Types.h" #include "hal/handles/HandlesInternal.h" namespace hal { /** * The LimitedClassedHandleResource class is a way to track handles. This * version * allows a limited number of handles that are allocated sequentially. * * @tparam THandle The Handle Type (Must be typedefed from HAL_Handle) * @tparam TStruct The struct type held by this resource * @tparam size The number of resources allowed to be allocated * @tparam enumValue The type value stored in the handle * */ template class LimitedClassedHandleResource : public HandleBase { friend class LimitedClassedHandleResourceTest; public: LimitedClassedHandleResource() = default; LimitedClassedHandleResource(const LimitedClassedHandleResource&) = delete; LimitedClassedHandleResource& operator=(const LimitedClassedHandleResource&) = delete; THandle Allocate(std::shared_ptr toSet); std::shared_ptr Get(THandle handle); void Free(THandle handle); void ResetHandles() override; private: std::array, size> m_structures; std::array m_handleMutexes; wpi::mutex m_allocateMutex; }; template THandle LimitedClassedHandleResource::Allocate( std::shared_ptr toSet) { // globally lock to loop through indices std::scoped_lock lock(m_allocateMutex); for (int16_t i = 0; i < size; i++) { if (m_structures[i] == nullptr) { // if a false index is found, grab its specific mutex // and allocate it. std::scoped_lock lock(m_handleMutexes[i]); m_structures[i] = toSet; return static_cast(createHandle(i, enumValue, m_version)); } } return HAL_kInvalidHandle; } template std::shared_ptr LimitedClassedHandleResource::Get( THandle handle) { // get handle index, and fail early if index out of range or wrong handle int16_t index = getHandleTypedIndex(handle, enumValue, m_version); if (index < 0 || index >= size) { return nullptr; } std::scoped_lock lock(m_handleMutexes[index]); // return structure. Null will propogate correctly, so no need to manually // check. return m_structures[index]; } template void LimitedClassedHandleResource::Free( THandle handle) { // get handle index, and fail early if index out of range or wrong handle int16_t index = getHandleTypedIndex(handle, enumValue, m_version); if (index < 0 || index >= size) return; // lock and deallocated handle std::scoped_lock allocateLock(m_allocateMutex); std::scoped_lock handleLock(m_handleMutexes[index]); m_structures[index].reset(); } template void LimitedClassedHandleResource::ResetHandles() { { std::scoped_lock allocateLock(m_allocateMutex); for (int i = 0; i < size; i++) { std::scoped_lock handleLock(m_handleMutexes[i]); m_structures[i].reset(); } } HandleBase::ResetHandles(); } } // namespace hal