gpt4 book ai didi

c++ - 句柄而不是指针的引用计数

转载 作者:搜寻专家 更新时间:2023-10-31 02:20:05 25 4
gpt4 key购买 nike

C++11 引入了像 std::shared_ptr 这样的智能指针。该类存储一个指针和一个引用计数器。当引用计数器归零时,将调用回调(删除器)。我的问题是 C++11 是否有一种简单的方法可以在没有指针的情况下使用 std::shared_ptr 的引用计数器。

我使用一个 c 风格的库,它给我一个整数作为句柄。我想创建一个类来包装句柄。我想避免使用 std::shared_ptr 进行间接访问,同时我希望使用某种类型的引用计数在不再需要时关闭句柄。如果您可以分别使用 createHandledestroyHandle 创建和销毁句柄,我认为它可能如下所示:

class WrapperClass
{
public:
WrapperClass() :
mHandle(createHandle(), &destroyHandle)
{
}
private:
shared_data<int> mHandle;
}

class WrapperClass
{
public:
WrapperClass() :
mHandle(createHandle()),
mRefCount([this](){destroyHandle(mHandle);})
{
}
private:
int mHandle;
reference_counter mRefCount;
}

另一个问题是我不确定是否可以使用像 const 这样的工作说明符。我的意思是,不使用强制转换就无法删除 const 说明符。我看不出有什么办法。

最佳答案

通过一些预防措施,您可以尝试使用原始的 shared_ptr 来完成此任务:

#include <iostream>
#include <memory>

int create_handle() {
std::cout << "alloc\n";
return 42;
}

void delete_handle(int handle)
{
std::cout << "delete " << handle << "\n";
}


class Wrapper
{
public:
Wrapper():
_d(Wrapper::create_handle(), &Wrapper::delete_handle)
{}

int value()
{
return reinterpret_cast<uintptr_t>(_d.get());
}

private:
std::shared_ptr<void> _d;

static void* create_handle()
{
static_assert(sizeof(create_handle()) <= sizeof(void*), "can't fit");
static_assert(alignof(create_handle()) <= sizeof(void*), "can't align");
return reinterpret_cast<void*>(static_cast<uintptr_t>(::create_handle()));
}

static void delete_handle(void* handle)
{
return ::delete_handle(reinterpret_cast<unintptr_t>(handle));
}
};

int main()
{
Wrapper w;
std :: cout << w.value();
}

我相信您必须确定您的句柄可以表示为指针(匹配大小和对齐)。然后你可以应用 reinterpret_cast 黑魔法。因为您基本上只是将 int 转换为指针并使用重新解释转换回来,但从不取消引用指针,所以它应该是安全的

关于c++ - 句柄而不是指针的引用计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33089102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com