问题标签 [boost-intrusive]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++ - 如何从已经存在的遗留列表创建 boost::intrusive::list?
我有这样的遗留结构:
以及与这样的列表一起使用的遗留代码。如何从中创建 boost::intrusive::list,例如,我可以使用旧的 C 代码和 boost::list 添加元素?我可以编写节点特征:
但这仅允许您创建一个新的,我只想从旧的创建一种视图。有可能吗?还是我应该找到另一个库/写它?
我想获得的代码示例:
c++ - 关于如何跟踪 boost::intrusive_ptr 的想法
我使用boost::intrusive_ptr
了很多来保持某些类的实例处于活动状态。在某些时候,我的程序希望所有boost::intrusive_ptr
s 都已被删除,以便释放底层对象。
我最近似乎经常遇到的一个问题是,并非所有对象都boost::intrusive_ptr
被删除并且所述对象仍然“活着”。这是一个错误。
我需要能够检测到这些指针在哪里。获取创建它们的源文件/行号列表就足够了(例如,如果调试输出告诉我在此处创建的指针仍然存在:
其中 m_ptr 是 aboost::intrusive_ptr<Foo>
和/或boost::intrusive<Foo const>
然后我可以弄清楚仍然没有被破坏的指针是Foo::m_ptr
;)。
当然,在这种情况下,m_ptr
之前已经创建了 - 甚至可能已分配。所以这里重要的不是跟踪的构造函数,boost::intrusive_ptr
而是引用计数(最后)增加的地方。
上面的赋值函数如下所示:
因此,这个复制从 rhs 构造一个临时对象,增加 rhs 指向的对象的引用计数,然后将其交换,*this
以便临时对象现在指向*this
之前指向的对象,当前对象指向 rhs 指向的对象。最后,临时对象被破坏,导致*this
指向的引用计数减少。
因此,从 中获取调用地址intrusive_ptr_add_ref
需要展开堆栈两次(如果不是三次),可能取决于优化级别。
因此,我认为无法避免boost::intrusive_ptr
用我自己的类替换,比如说utils::intrusive_ptr
,它将实现上述功能,如下所示:
它用于[[gnu::noinline]]
确保__builtin_return_address(0)
返回当前函数的返回地址。这个返回地址被传递给构造函数来注册它(返回地址可以很容易地转换为稍后的调用位置,即在打印仍然存在的指针列表时)。
同时需要删除存储的位置rhs
。在我看来,确保这一点的最佳方法是将位置逐字存储在其intrusive_ptr
本身中。然后,该位置也将被交换swap
并因此在离开此范围时被破坏。
现有intrusive_ptr
s 的注册可以通过它们的地址来完成:每个构造函数都有一个地址(其this
指针),该地址将是唯一的,并且可以用作映射中的键。销毁后,此密钥将被再次删除。
这样,使用地图,就有一个所有现有intrusive_ptr
对象的列表,这些对象存储自己的位置。
我的推理在这里正确吗?还是有其他方法可以做到这一点?
编辑:
我添加了一个新类,它基本上是 boost::intrusive_ptr 的副本,但去掉了任何 boost 并且只支持 c++17(及更高版本)。我还没有编译它,但这应该作为基础(?)。见https://github.com/CarloWood/ai-utils/blob/master/intrusive_ptr.h
c++ - ISO C++ 委员会不接受任何当前 C++ 标准的侵入式指针和容器的理由是什么?
似乎我使用的每个高性能和低延迟平台都使用侵入式指针和容器来管理其对象的生命周期。游戏引擎、交易系统、航空电子设备等。
20 多年来,boost 已经提供了侵入式指针,并且侵入式/平面容器也被广泛使用(例如 google 密集哈希图)。
如果 C++ 是一种面向性能的语言,那么 ISO C++ 委员会将所有侵入性指针和容器提案搁置或拒绝进入 C++ 标准的当前理由是什么,即使它们是实现极低延迟的最广泛使用的工具之一?
c++ - Check for end-of-list in boost::intrusive::list without container?
I'm getting started with Boost.Intrusive, specifically interested in the doubly-linked list (boost::intrusive::list
).
This would be trivial to do in a "hand-rolled" linked list, but so far I can't find a Boost equivalent:
Given a node that belongs to a list, how do I check to see if it represents the end of the list, without needing the owning container.
In a hand-made list, this would be as simple as checking if the "next" pointer is NULL.
With boost::intrusive::list
, there is the s_iterator_to
function, which converts a plain node to an iterator. And you can check that against mylist.end()
, which gives the desired result, but it requires a reference to the list container itself.
I also note that using operator++
on such an iterator simply produces a garbage value once it is moved past the end — no error or assert from Boost.