具有给定的类 C 分配和释放函数的shared_ptr

发布于 2025-01-12 07:59:17 字数 243 浏览 1 评论 0原文

我得到了某个库的 API(准确地说是 nng) 它有一个类似 C 的接口,用于分配和取消分配消息对象:

int nng_msg_alloc(nng_msg **, size_t);
void nng_msg_free(nng_msg *);

我正在尝试为该库创建一个 C++ 接口。 我想创建一个 nng_msg 对象的shared_ptr,但我在实现上遇到了困难。 如何将分配器和解除分配器传递给共享对象?

I was given an API for some library (nng to be exact)
it has a C-like interface for allocating and deallocating a message object:

int nng_msg_alloc(nng_msg **, size_t);
void nng_msg_free(nng_msg *);

I'm trying to create a C++ interface for the library.
I would like to create a shared_ptr of a nng_msg object, but I'm struggling with the implementation.
How do i pass the allocator and deallocator to the shared object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小巷里的女流氓 2025-01-19 07:59:17

您只需将分配的指针和自定义删除器传递给 std::shared_ptr ,例如:

std::shared_ptr<nng_msg> new_nng_msg(std::size_t size) {
    nng_msg* ptr;
    auto res = nng_msg_alloc(&ptr, size);

    // example error handling, adjust as appropriate
    if(res != 0)
        throw std::bad_alloc{};

    return {ptr, nng_msg_free};
}

You only have to pass the allocated pointer and the custom deleter to std::shared_ptr, for example:

std::shared_ptr<nng_msg> new_nng_msg(std::size_t size) {
    nng_msg* ptr;
    auto res = nng_msg_alloc(&ptr, size);

    // example error handling, adjust as appropriate
    if(res != 0)
        throw std::bad_alloc{};

    return {ptr, nng_msg_free};
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文