<div dir="ltr">There's was never meant to be any order matching between the VTK port numbers and input ports provided by pqPipelineFilter. The latter indeed used a map internally using the property  name as the key for the map (hence the change in order).<div><br></div><div>If there's a convincing reason to preserve it, we can surely fix it, however.</div><div><br></div><div>Utkarsh</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 2, 2017 at 4:08 PM, Maxim Torgonskiy <span dir="ltr"><<a href="mailto:kriolog@gmail.com" target="_blank">kriolog@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello,<div><br></div><div>It seems that there's a bug in pqPipelineFilter::<wbr>getInputPortName(int). I have a vtk filter which has 3 inputs and when I try to access the inputs with pqPipelineFilter the function getInputPortName doesn't respect their order:</div><div><br></div><div>.xml :</div><div><div><?xml version="1.0"?></div><div><ServerManagerConfiguration></div><div>  <ProxyGroup name="filters"></div><div>    <SourceProxy class="Dummy" name="Dummy"></div><div>      <InputProperty</div><div>        name="Zero"</div><div>        port_index="0"</div><div>        command="SetInputConnection"></div><div>        <ProxyGroupDomain name="groups"></div><div>          <Group name="sources"/></div><div>          <Group name="filters"/></div><div>        </ProxyGroupDomain></div><div>        <DataTypeDomain name="input_type"></div><div>          <DataType value="vtkPolyData"/></div><div>        </DataTypeDomain></div><div>      </InputProperty></div><div>      <InputProperty</div><div>        name="One"</div><div>        port_index="1"</div><div>        optional="1"</div><div>        command="SetInputConnection"></div><div>        <ProxyGroupDomain name="groups"></div><div>          <Group name="sources"/></div><div>          <Group name="filters"/></div><div>        </ProxyGroupDomain></div><div>        <DataTypeDomain name="input_type"></div><div>          <DataType value="vtkPointSet"/></div><div>        </DataTypeDomain></div><div>      </InputProperty></div><div>      <InputProperty</div><div>        name="Two"</div><div>        port_index="2"</div><div>        optional="1"</div><div>        command="SetInputConnection"></div><div>        <ProxyGroupDomain name="groups"></div><div>          <Group name="sources"/></div><div>          <Group name="filters"/></div><div>        </ProxyGroupDomain></div><div>        <DataTypeDomain name="input_type"></div><div>          <DataType value="vtkPolyData"/></div><div>        </DataTypeDomain></div><div>      </InputProperty></div><div>    </SourceProxy></div><div>  </ProxyGroup></div><div></ServerManagerConfiguration></div></div><div><br></div><div>.cxx :</div><div><div>int Dummy::RequestData(</div><div>  vtkInformation *vtkNotUsed(info),</div><div>  vtkInformationVector **inputVector,</div><div>  vtkInformationVector *outputVector)</div><div>{</div><div>  pqPipelineFilter* self_pqfilter = qobject_cast<pqPipelineFilter*<wbr>>(pqActiveObjects::instance().<wbr>activeSource());</div><div>  Q_ASSERT(self_pqfilter);</div><div><br></div><div>  for(int i = 0; i < GetNumberOfInputPorts(); ++i)</div><div>    qDebug() << self_pqfilter-><wbr>getInputPortName(i);</div><div><br></div><div>  return 1;</div><div>}</div></div><div><br></div><div>output :</div><div>"One"<br></div><div>"Two"</div><div>"Zero"</div><div><br></div><div><br></div><div>A minimal reproducible example is attached.<br></div><div> </div><div>Regards,</div><div>Maxim</div><div><br></div></div>
<br>______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=Paraview-developers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>Paraview-developers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/paraview-developers" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/paraview-<wbr>developers</a><br>
<br></blockquote></div><br></div>