import EFICAS_ORB__POA
+
+import SALOMEDS__POA
+
import SALOME_ComponentPy
+
+
+
+
+class SALOME_DriverPy_i(SALOMEDS__POA.Driver):
+ """
+ Python implementation of generic SALOMEDS driver.
+ Should be inherited by any Python module's engine
+ to provide persistence mechanism.
+ """
+ def __init__ (self, componentDataType):
+ print "SALOME_DriverPy.__init__: ",componentDataType
+ self._ComponentDataType = componentDataType
+
+ def IORToLocalPersistentID(self, theSObject, IORString, isMultiFile, isASCII):
+ return theSObject.GetID()
+
+ def LocalPersistentIDToIOR(self, theSObject, PersistentID, isMultiFile, isASCII):
+ return ""
+
+ def ComponentDataType(self):
+ return self._ComponentDataType
+
+ def Save(self, theComponent, theURL, isMultiFile):
+ return 'Rien'
+
+ def SaveASCII(self, theComponent, theURL, isMultiFile):
+ return self.Save(theComponent, theURL, isMultiFile)
+
+ def Load(self, theComponent, theStream, theURL, isMultiFile):
+ return 1
+
+ def LoadASCII(self, theComponent, theStream, theURL, isMultiFile):
+ return self.Load(theComponent, theStream, theURL, isMultiFile)
+
+ def Close(self, theComponent):
+ pass
+
+ def CanPublishInStudy(self, theIOR):
+ return 0
+
+ def PublishInStudy(self, theStudy, theSObject, theObject, theName):
+ return None
+
+ def CanCopy(self, theObject):
+ return 0
+
+
+
class EFICAS(EFICAS_ORB__POA.EFICAS_Gen,
- SALOME_ComponentPy.SALOME_ComponentPy_i):
+ SALOME_ComponentPy.SALOME_ComponentPy_i,
+ SALOME_DriverPy_i ):
"""
Pour etre un composant SALOME cette classe Python
doit avoir le nom du composant et heriter de la
print "EFICAS.__init__: ",containerName,' ',instanceName
SALOME_ComponentPy.SALOME_ComponentPy_i.__init__(self, orb, poa,
contID, containerName,instanceName, interfaceName, 0 )
+ SALOME_DriverPy_i.__init__( self, 'OTHER' )
# On stocke dans l'attribut _naming_service, une reference sur
# le Naming Service CORBA
self._naming_service=SALOME_ComponentPy.SALOME_NamingServicePy_i(self._orb)
+
+
\ No newline at end of file