如何(暂时)使用natvis对CPtrList条目进行类型转换?

时间:2018-01-17 15:55:57

标签: c++ stl natvis

我正在使用基于STL的C ++解决方案,而且我正在使用CPtrList集合。

我这里有一个包含void *条目的CPtrList集合,我想使用natvis文件自动对它们进行类型转换。

目前,我的natvis看起来如下:

<Type Name="CList&lt;*,*&gt;">
  <AlternativeType Name="CObList"></AlternativeType>
  <AlternativeType Name="CPtrList"></AlternativeType>
  <AlternativeType Name="CStringList"></AlternativeType>
  <AlternativeType Name="CTypedPtrList&lt;*,*&gt;"></AlternativeType>
  <DisplayString>{{iets anders Count = {m_nCount}}}</DisplayString>
  <Expand>
    <Item Name="Count">m_nCount</Item>
    <LinkedListItems>
      <Size>m_nCount</Size>
      <HeadPointer>m_pNodeHead</HeadPointer>
      <NextPointer>pNext</NextPointer>
      <ValueNode>data</ValueNode>
    </LinkedListItems>
  </Expand>
</Type>

因此,我的CPtrList的条目如下所示:

0x<something>      void *
0x<something else> void *
...

我希望将这些条目分类为:

<information>      CElement::SL_SET_PARAMETER*
<information else> CElement::SL_SET_PARAMETER*

一旦我知道如何完成这项工作,我就可以添加一个&#34; SL_SET_PARAMETER&#34;在我的natvis中输入并决定如何显示它,但因此我首先需要向natvis解释每个CPtrList条目应该被转换为&#34; SL_SET_PARAMETER&#34;对象

有人知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

您必须使用<CustomListItems>标记(有关详细信息,请参阅MS documentation中的 CustomListItems扩展项)。这是显示类型的最通用规范,它允许局部变量和循环。

他们在文档中使用的示例如下:

<Type Name="ATL::CAtlMap&lt;*,*,*,*&gt;">  
    <AlternativeType Name="ATL::CMapToInterface&lt;*,*,*&gt;"/>  
    <AlternativeType Name="ATL::CMapToAutoPtr&lt;*,*,*&gt;"/>  
    <DisplayString>{{Count = {m_nElements}}}</DisplayString>  
    <Expand>  
      <CustomListItems MaxItemsPerView="5000" ExcludeView="Test">  
        <Variable Name="iBucket" InitialValue="-1" />  
        <Variable Name="pBucket" InitialValue="m_ppBins == nullptr ? nullptr : *m_ppBins" />  
        <Variable Name="iBucketIncrement" InitialValue="-1" />  

        <Size>m_nElements</Size>  
        <Exec>pBucket = nullptr</Exec>  
        <Loop>  
          <If Condition="pBucket == nullptr">  
            <Exec>iBucket++</Exec>  
            <Exec>iBucketIncrement = __findnonnull(m_ppBins + iBucket, m_nBins - iBucket)</Exec>  
            <Break Condition="iBucketIncrement == -1" />  
            <Exec>iBucket += iBucketIncrement</Exec>  
            <Exec>pBucket = m_ppBins[iBucket]</Exec>  
          </If>  
          <Item>pBucket,na</Item>  
          <Exec>pBucket = pBucket->m_pNext</Exec>  
        </Loop>  
      </CustomListItems>  
    </Expand>  
</Type>  

它唯一的小问题是,如果你从一个监视窗口复制它创建的表达式,它看起来就像一个数字被转换为你想要的类型的指针,而不是像一个漂亮的数组,如语法和因此,如果内存位置移动,将导致它不被更新。如果您引用包含对象的父对象,这不是什么大问题,只是讨厌。