<publish name="myService" > <data name="count" type="int" /> <data name="selected" type="bool" /> </publish>We could have in the Python script:
def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") countValue = service["count"] selectedState = service["selected"]
dict
type.<publish name="myService" > <data name="myStruct" type="struct" /> </publish>and:
<types> <simpleType name="int" desc="the base int type" baseType="int" /> <simpleType name="bool" baseType="bool" /> <structType name="struct"> <field name="count" type="bool" /> <field name="selected" type="int" /> </structType> </types>
myStruct
fields. We could have in the Python script:def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") myStruct = service["myStruct"] countValue = myStruct["count"] selectedState = myStruct["selected"]
myStruct
fields. We could have in the Python script:def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") myStruct = service["myStruct"] myStruct["count"] = 2 myStruct["selected"] = TrueAs a structure is a Python
dict
, we could also perform:def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") myStruct = {'count': 2, 'selected': True} service["myStruct"] = myStruct
list
type.<publish name="myService" > <data name="myArray" type="array" /> </publish>and:
<types> <simpleType name="int" desc="the base int type" baseType="int" /> <arraytType name="array" type="int" /> </types>
myArray
elements. We could have in the Python script:def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") myArray = service["myArray"] firstValue = myArray[0]
myArray
elements. We could have in the Python script:def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") myArray = service["myArray"] myArray[0] = 2As an array is a Python
list
, we could also perform:def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") myArray = [1, 2, 3] service["myArray"] = myArray
dict
type.
<publish name="myService" > <data name="myMap" type="map" /> </publish>and:
<types> <simpleType name="string" baseType="string" /> <simpleType name="int" baseType="int" /> <mapType name="map" keyType="string" valueType="int" /> </types>
myMap
elements. We could have in the Python script:def subscribe(self, pythonUtils): service = pythonUtils.getService("myService") myMap = service["myMap"] for key, v in myMap.items(): # do something with the values
Copyright 2017-2020 Dassault Aviation. All Rights Reserved. Documentation and source under the LGPL v3 licence