tests/ethercat/wago_sanyo/ethercat@etherlab/master@EthercatNode/config.xml
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Fri, 10 Aug 2018 17:45:33 +0300
changeset 2278 a3ac46366b86
parent 2165 02a2b5dee5e3
permissions -rw-r--r--
Dirty fix for error '_object_has_no_attribute_'getSlave' in EtherCAT extension

traceback:
File "/home/developer/WorkData/PLC/beremiz/beremiz/IDEFrame.py", line 1433, in OnPouSelectedChanged
window.RefreshView()
File "/home/developer/WorkData/PLC/beremiz/beremiz/etherlab/ConfigEditor.py", line 837, in RefreshView
self.RefreshProcessVariables()
File "/home/developer/WorkData/PLC/beremiz/beremiz/etherlab/ConfigEditor.py", line 886, in RefreshProcessVariables
slaves = self.Controler.GetSlaves(**self.CurrentNodesFilter)
File "/home/developer/WorkData/PLC/beremiz/beremiz/etherlab/EthercatMaster.py", line 341, in GetSlaves
for slave in self.Config.getConfig().getSlave():
<type 'exceptions.AttributeError'>:_'lxml.etree._Element'_object_has_no_attribute_'getSlave'

Steps to reproduce problem:

- Add new EtherCAT master
- Add new EthercatNode to the master
- double click on


this is looks like dirty hack to fix strange problem with initial[0]
changing its type after returning from _init_ method to lxml.etree._Element
As a result all methods generated by class factory are lost.

For example, in function initMethod initial[0].__class__ points to
xmlclass.xmlclass.Config. After map(self.append, initial)
self.Config.__class__ is 'xmlclass.xmlclass.Config' as well.
But after returning from initMethod (_init) in CreateElement
self.Config.__class__ has changed to lxml.etree._Element.


I've noticed similar behavior if copy/deepcopy is used for any child
of etree.ElementBase. See simple example below.
[-------------------------------------------------------------]
#!/usr/bin/python

from __future__ import print_function
from lxml import etree
import copy

class DefaultElementClass(etree.ElementBase):
def getLocalTag(self):
return etree.QName(self.tag).localname


def printInformation(x):
print(x, x.__class__, "getLocalTag" in dir(x))


a = DefaultElementClass()
printInformation(a)

#
printInformation(copy.copy(a))
printInformation(copy.deepcopy(a))
[-------------------------------------------------------------]
2033
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     2
<EtherCATConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="EtherCATInfo.xsd">
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     3
  <Config>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     4
    <Master>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     5
      <Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     6
        <Name></Name>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     7
        <Destination>00</Destination>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     8
        <Source>00</Source>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
     9
      </Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    10
    </Master>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    11
    <Slave>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    12
      <Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    13
        <Name>EK1100</Name>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    14
        <PhysAddr>0</PhysAddr>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    15
        <AutoIncAddr>0</AutoIncAddr>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    16
        <Physics></Physics>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    17
        <VendorId>2</VendorId>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    18
        <ProductCode>72100946</ProductCode>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    19
        <RevisionNo>65536</RevisionNo>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    20
        <SerialNo>0</SerialNo>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    21
      </Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    22
    </Slave>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    23
    <Slave>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    24
      <Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    25
        <Name>EL1088</Name>
2041
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    26
        <PhysAddr>1</PhysAddr>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    27
        <AutoIncAddr>0</AutoIncAddr>
2033
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    28
        <Physics></Physics>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    29
        <VendorId>2</VendorId>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    30
        <ProductCode>71315538</ProductCode>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    31
        <RevisionNo>1048576</RevisionNo>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    32
        <SerialNo>0</SerialNo>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    33
      </Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    34
    </Slave>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    35
    <Slave>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    36
      <Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    37
        <Name>EL2088</Name>
2041
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    38
        <PhysAddr>2</PhysAddr>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    39
        <AutoIncAddr>0</AutoIncAddr>
2033
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    40
        <Physics></Physics>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    41
        <VendorId>2</VendorId>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    42
        <ProductCode>136851538</ProductCode>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    43
        <RevisionNo>1048576</RevisionNo>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    44
        <SerialNo>0</SerialNo>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    45
      </Info>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    46
    </Slave>
2041
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    47
    <Slave>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    48
      <Info>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    49
        <Name>SanyoDenki RS2 EtherCAT</Name>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    50
        <PhysAddr>3</PhysAddr>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    51
        <AutoIncAddr>1</AutoIncAddr>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    52
        <Physics></Physics>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    53
        <VendorId>441</VendorId>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    54
        <ProductCode>2</ProductCode>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    55
        <RevisionNo>0</RevisionNo>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    56
        <SerialNo>0</SerialNo>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    57
      </Info>
ce3727171207 Defining all slaves as Etherlab master subplugin instead of editing them in an editor with vertical notebook
laurent
parents: 2033
diff changeset
    58
    </Slave>
2033
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    59
  </Config>
1c64b84c0609 Added test directory
Edouard Tisserant
parents:
diff changeset
    60
</EtherCATConfig>