mirror of
https://github.com/microsoft/DirectXTex.git
synced 2025-07-09 11:40:14 +02:00
113 lines
3.7 KiB
C++
113 lines
3.7 KiB
C++
//-------------------------------------------------------------------------------------
|
|
// scoped.h
|
|
//
|
|
// Utility header with helper classes for exception-safe handling of resources
|
|
//
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
//-------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include <cassert>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include <tuple>
|
|
|
|
#ifndef _WIN32
|
|
#include <cstdlib>
|
|
|
|
struct aligned_deleter { void operator()(void* p) noexcept { free(p); } };
|
|
|
|
using ScopedAlignedArrayFloat = std::unique_ptr<float[], aligned_deleter>;
|
|
|
|
inline ScopedAlignedArrayFloat make_AlignedArrayFloat(uint64_t count)
|
|
{
|
|
uint64_t size = sizeof(float) * count;
|
|
size = (size + 15u) & ~0xF;
|
|
if (size > static_cast<uint64_t>(UINT32_MAX))
|
|
return nullptr;
|
|
|
|
auto ptr = aligned_alloc(16, static_cast<size_t>(size));
|
|
return ScopedAlignedArrayFloat(static_cast<float*>(ptr));
|
|
}
|
|
|
|
using ScopedAlignedArrayXMVECTOR = std::unique_ptr<DirectX::XMVECTOR[], aligned_deleter>;
|
|
|
|
inline ScopedAlignedArrayXMVECTOR make_AlignedArrayXMVECTOR(uint64_t count)
|
|
{
|
|
uint64_t size = sizeof(DirectX::XMVECTOR) * count;
|
|
if (size > static_cast<uint64_t>(UINT32_MAX))
|
|
return nullptr;
|
|
auto ptr = aligned_alloc(16, static_cast<size_t>(size));
|
|
return ScopedAlignedArrayXMVECTOR(static_cast<DirectX::XMVECTOR*>(ptr));
|
|
}
|
|
|
|
#else // WIN32
|
|
//---------------------------------------------------------------------------------
|
|
#include <malloc.h>
|
|
|
|
struct aligned_deleter { void operator()(void* p) noexcept { _aligned_free(p); } };
|
|
|
|
using ScopedAlignedArrayFloat = std::unique_ptr<float[], aligned_deleter>;
|
|
|
|
inline ScopedAlignedArrayFloat make_AlignedArrayFloat(uint64_t count)
|
|
{
|
|
const uint64_t size = sizeof(float) * count;
|
|
if (size > static_cast<uint64_t>(UINT32_MAX))
|
|
return nullptr;
|
|
auto ptr = _aligned_malloc(static_cast<size_t>(size), 16);
|
|
return ScopedAlignedArrayFloat(static_cast<float*>(ptr));
|
|
}
|
|
|
|
using ScopedAlignedArrayXMVECTOR = std::unique_ptr<DirectX::XMVECTOR[], aligned_deleter>;
|
|
|
|
inline ScopedAlignedArrayXMVECTOR make_AlignedArrayXMVECTOR(uint64_t count)
|
|
{
|
|
const uint64_t size = sizeof(DirectX::XMVECTOR) * count;
|
|
if (size > static_cast<uint64_t>(UINT32_MAX))
|
|
return nullptr;
|
|
auto ptr = _aligned_malloc(static_cast<size_t>(size), 16);
|
|
return ScopedAlignedArrayXMVECTOR(static_cast<DirectX::XMVECTOR*>(ptr));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------
|
|
struct handle_closer { void operator()(HANDLE h) noexcept { assert(h != INVALID_HANDLE_VALUE); if (h) CloseHandle(h); } };
|
|
|
|
using ScopedHandle = std::unique_ptr<void, handle_closer>;
|
|
|
|
inline HANDLE safe_handle(HANDLE h) noexcept { return (h == INVALID_HANDLE_VALUE) ? nullptr : h; }
|
|
|
|
//---------------------------------------------------------------------------------
|
|
struct find_closer { void operator()(HANDLE h) noexcept { assert(h != INVALID_HANDLE_VALUE); if (h) FindClose(h); } };
|
|
|
|
using ScopedFindHandle = std::unique_ptr<void, find_closer>;
|
|
|
|
//---------------------------------------------------------------------------------
|
|
class auto_delete_file
|
|
{
|
|
public:
|
|
auto_delete_file(HANDLE hFile) noexcept : m_handle(hFile) {}
|
|
|
|
auto_delete_file(const auto_delete_file&) = delete;
|
|
auto_delete_file& operator=(const auto_delete_file&) = delete;
|
|
|
|
~auto_delete_file()
|
|
{
|
|
if (m_handle)
|
|
{
|
|
FILE_DISPOSITION_INFO info = {};
|
|
info.DeleteFile = TRUE;
|
|
std::ignore = SetFileInformationByHandle(m_handle, FileDispositionInfo, &info, sizeof(info));
|
|
}
|
|
}
|
|
|
|
void clear() noexcept { m_handle = nullptr; }
|
|
|
|
private:
|
|
HANDLE m_handle;
|
|
};
|
|
|
|
#endif // WIN32
|