mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-05-06 09:40:48 +05:00
SALOME::GenericObj : Destroy() -> UnRegister()
This commit is contained in:
parent
33b02426f0
commit
8f50d474d5
@ -695,7 +695,7 @@ void AdvancedGUI_PipeTShapeDlg::DisplayPreview(const bool activate, const bool u
|
|||||||
GEOM::GEOM_Object_var obj = *it;
|
GEOM::GEOM_Object_var obj = *it;
|
||||||
displayPreview(obj, true, activate, false, lineWidth, displayMode, color);
|
displayPreview(obj, true, activate, false, lineWidth, displayMode, color);
|
||||||
if (toRemoveFromEngine)
|
if (toRemoveFromEngine)
|
||||||
obj->Destroy();
|
obj->UnRegister();
|
||||||
}
|
}
|
||||||
HexMeshCheckBox->setChecked(hexMeshState);
|
HexMeshCheckBox->setChecked(hexMeshState);
|
||||||
} catch (const SALOME::SALOME_Exception& e) {
|
} catch (const SALOME::SALOME_Exception& e) {
|
||||||
|
@ -115,7 +115,7 @@ GEOMBase_Helper::~GEOMBase_Helper()
|
|||||||
if (myDisplayer)
|
if (myDisplayer)
|
||||||
delete myDisplayer;
|
delete myDisplayer;
|
||||||
if ( !CORBA::is_nil( myOperation ) )
|
if ( !CORBA::is_nil( myOperation ) )
|
||||||
myOperation->Destroy();
|
myOperation->UnRegister();
|
||||||
}
|
}
|
||||||
|
|
||||||
//================================================================
|
//================================================================
|
||||||
@ -278,7 +278,7 @@ void GEOMBase_Helper::displayPreview( const bool activate,
|
|||||||
GEOM::GEOM_Object_var obj=*it;
|
GEOM::GEOM_Object_var obj=*it;
|
||||||
displayPreview( obj, true, activate, false, lineWidth, displayMode, color );
|
displayPreview( obj, true, activate, false, lineWidth, displayMode, color );
|
||||||
if ( toRemoveFromEngine )
|
if ( toRemoveFromEngine )
|
||||||
obj->Destroy();
|
obj->UnRegister();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -536,7 +536,7 @@ void GEOMBase_Helper::addInStudy( GEOM::GEOM_Object_ptr theObj, const char* theN
|
|||||||
// Each dialog is responsible for this method implementation,
|
// Each dialog is responsible for this method implementation,
|
||||||
// default implementation does nothing
|
// default implementation does nothing
|
||||||
restoreSubShapes(aStudyDS, aSO);
|
restoreSubShapes(aStudyDS, aSO);
|
||||||
aSO->Destroy();
|
aSO->UnRegister();
|
||||||
}
|
}
|
||||||
|
|
||||||
//================================================================
|
//================================================================
|
||||||
@ -845,7 +845,7 @@ bool GEOMBase_Helper::onAccept( const bool publish, const bool useTransaction )
|
|||||||
// obj has been published in study. Its refcount has been incremented.
|
// obj has been published in study. Its refcount has been incremented.
|
||||||
// It is safe to decrement its refcount
|
// It is safe to decrement its refcount
|
||||||
// so that it will be destroyed when the entry in study will be removed
|
// so that it will be destroyed when the entry in study will be removed
|
||||||
obj->Destroy();
|
obj->UnRegister();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -37,7 +37,7 @@ namespace GEOM
|
|||||||
This class can be used in conjunction with the references to the CORBA objects which
|
This class can be used in conjunction with the references to the CORBA objects which
|
||||||
interfaces are inherited from the SALOME::GenericObj CORBA interface.
|
interfaces are inherited from the SALOME::GenericObj CORBA interface.
|
||||||
|
|
||||||
The smart pointer class automatically invokes Register() / Destroy() functions of th
|
The smart pointer class automatically invokes Register() / UnRegister() functions of th
|
||||||
interface in order to prevent memory leaks and other such problems caused by improper
|
interface in order to prevent memory leaks and other such problems caused by improper
|
||||||
usage of the CORBA references.
|
usage of the CORBA references.
|
||||||
|
|
||||||
@ -89,10 +89,10 @@ namespace GEOM
|
|||||||
}
|
}
|
||||||
|
|
||||||
//! Decrement counter for the object.
|
//! Decrement counter for the object.
|
||||||
void Destroy()
|
void UnRegister()
|
||||||
{
|
{
|
||||||
if ( !CORBA::is_nil( this->myObject ) ) {
|
if ( !CORBA::is_nil( this->myObject ) ) {
|
||||||
this->myObject->Destroy();
|
this->myObject->UnRegister();
|
||||||
this->myObject = TInterface::_nil();
|
this->myObject = TInterface::_nil();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -119,13 +119,13 @@ namespace GEOM
|
|||||||
//! Destroy pointer and remove the reference to the object.
|
//! Destroy pointer and remove the reference to the object.
|
||||||
~GenericObjPtr()
|
~GenericObjPtr()
|
||||||
{
|
{
|
||||||
this->Destroy();
|
this->UnRegister();
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Assign object to reference and remove reference to an old object.
|
//! Assign object to reference and remove reference to an old object.
|
||||||
GenericObjPtr& operator=( TInterfacePtr theObject )
|
GenericObjPtr& operator=( TInterfacePtr theObject )
|
||||||
{
|
{
|
||||||
this->Destroy();
|
this->UnRegister();
|
||||||
this->myObject = TInterface::_duplicate( theObject );
|
this->myObject = TInterface::_duplicate( theObject );
|
||||||
this->Register();
|
this->Register();
|
||||||
return *this;
|
return *this;
|
||||||
@ -134,7 +134,7 @@ namespace GEOM
|
|||||||
//! Assign object to reference and remove reference to an old object.
|
//! Assign object to reference and remove reference to an old object.
|
||||||
GenericObjPtr& operator=( const GenericObjPtr& thePointer )
|
GenericObjPtr& operator=( const GenericObjPtr& thePointer )
|
||||||
{
|
{
|
||||||
this->Destroy();
|
this->UnRegister();
|
||||||
this->myObject = thePointer.myObject;
|
this->myObject = thePointer.myObject;
|
||||||
this->Register();
|
this->Register();
|
||||||
return *this;
|
return *this;
|
||||||
@ -184,7 +184,7 @@ namespace GEOM
|
|||||||
//! Initialize pointer to the given generic object reference and take ownership on it.
|
//! Initialize pointer to the given generic object reference and take ownership on it.
|
||||||
void take( TInterfacePtr theObject )
|
void take( TInterfacePtr theObject )
|
||||||
{
|
{
|
||||||
this->Destroy();
|
this->UnRegister();
|
||||||
this->myObject = TInterface::_duplicate( theObject );
|
this->myObject = TInterface::_duplicate( theObject );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -209,7 +209,7 @@ namespace GEOM
|
|||||||
//! Nullify pointer.
|
//! Nullify pointer.
|
||||||
void nullify()
|
void nullify()
|
||||||
{
|
{
|
||||||
this->Destroy();
|
this->UnRegister();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -160,7 +160,7 @@ GEOMToolsGUI_MarkerDlg::GEOMToolsGUI_MarkerDlg( QWidget* parent )
|
|||||||
|
|
||||||
GEOMToolsGUI_MarkerDlg::~GEOMToolsGUI_MarkerDlg()
|
GEOMToolsGUI_MarkerDlg::~GEOMToolsGUI_MarkerDlg()
|
||||||
{
|
{
|
||||||
myOperation->Destroy();
|
myOperation->UnRegister();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GEOMToolsGUI_MarkerDlg::setStandardMarker( GEOM::marker_type type, GEOM::marker_size size )
|
void GEOMToolsGUI_MarkerDlg::setStandardMarker( GEOM::marker_type type, GEOM::marker_size size )
|
||||||
|
@ -181,11 +181,11 @@ SALOMEDS::SObject_ptr GEOM_Gen_i::PublishInStudy(SALOMEDS::Study_ptr theStudy,
|
|||||||
anAttr = aStudyBuilder->FindOrCreateAttribute(aFather, "AttributeName");
|
anAttr = aStudyBuilder->FindOrCreateAttribute(aFather, "AttributeName");
|
||||||
SALOMEDS::AttributeName_var aName = SALOMEDS::AttributeName::_narrow(anAttr);
|
SALOMEDS::AttributeName_var aName = SALOMEDS::AttributeName::_narrow(anAttr);
|
||||||
aName->SetValue("Geometry");
|
aName->SetValue("Geometry");
|
||||||
aName->Destroy();
|
aName->UnRegister();
|
||||||
anAttr = aStudyBuilder->FindOrCreateAttribute(aFather, "AttributePixMap");
|
anAttr = aStudyBuilder->FindOrCreateAttribute(aFather, "AttributePixMap");
|
||||||
SALOMEDS::AttributePixMap_var aPixMap=SALOMEDS::AttributePixMap::_narrow(anAttr);
|
SALOMEDS::AttributePixMap_var aPixMap=SALOMEDS::AttributePixMap::_narrow(anAttr);
|
||||||
aPixMap->SetPixMap("ICON_OBJBROWSER_Geometry");
|
aPixMap->SetPixMap("ICON_OBJBROWSER_Geometry");
|
||||||
aPixMap->Destroy();
|
aPixMap->UnRegister();
|
||||||
aStudyBuilder->DefineComponentInstance(aFather, (GEOM::GEOM_Gen_var)GEOM_Gen::_this());
|
aStudyBuilder->DefineComponentInstance(aFather, (GEOM::GEOM_Gen_var)GEOM_Gen::_this());
|
||||||
}
|
}
|
||||||
if (aFather->_is_nil()) return aResultSO;
|
if (aFather->_is_nil()) return aResultSO;
|
||||||
@ -341,7 +341,7 @@ SALOMEDS::SObject_ptr GEOM_Gen_i::PublishInStudy(SALOMEDS::Study_ptr theStudy,
|
|||||||
}
|
}
|
||||||
aResultSO->SetAttrString("AttributeString",aVars.ToCString());
|
aResultSO->SetAttrString("AttributeString",aVars.ToCString());
|
||||||
|
|
||||||
aFather->Destroy();
|
aFather->UnRegister();
|
||||||
|
|
||||||
//Set a name of the GEOM object
|
//Set a name of the GEOM object
|
||||||
aShape->SetName(theName);
|
aShape->SetName(theName);
|
||||||
@ -616,7 +616,7 @@ CORBA::Boolean GEOM_Gen_i::CanCopy(SALOMEDS::SObject_ptr theObject) {
|
|||||||
SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
|
SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
|
||||||
|
|
||||||
CORBA::String_var aString=anIOR->Value();
|
CORBA::String_var aString=anIOR->Value();
|
||||||
anIOR->Destroy();
|
anIOR->UnRegister();
|
||||||
CORBA::Object_var anObj = _orb->string_to_object(aString);
|
CORBA::Object_var anObj = _orb->string_to_object(aString);
|
||||||
GEOM::GEOM_Object_var anObject = GEOM::GEOM_Object::_narrow(anObj);
|
GEOM::GEOM_Object_var anObject = GEOM::GEOM_Object::_narrow(anObj);
|
||||||
// If the object is null one it can't be copied: return false
|
// If the object is null one it can't be copied: return false
|
||||||
@ -705,7 +705,7 @@ SALOMEDS::SObject_ptr GEOM_Gen_i::PasteInto(const SALOMEDS::TMPFile& theStream,
|
|||||||
SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
|
SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
|
||||||
CORBA::String_var objStr = _orb->object_to_string(obj);
|
CORBA::String_var objStr = _orb->object_to_string(obj);
|
||||||
anIOR->SetValue(objStr.in());
|
anIOR->SetValue(objStr.in());
|
||||||
anIOR->Destroy();
|
anIOR->UnRegister();
|
||||||
|
|
||||||
// Return the created in the Study SObject
|
// Return the created in the Study SObject
|
||||||
return aNewSO._retn();
|
return aNewSO._retn();
|
||||||
@ -740,7 +740,7 @@ SALOMEDS::SObject_ptr GEOM_Gen_i::AddInStudy (SALOMEDS::Study_ptr theStudy,
|
|||||||
SALOMEDS::SObject_var aFatherSO = theStudy->FindObjectIOR(IOR.in());
|
SALOMEDS::SObject_var aFatherSO = theStudy->FindObjectIOR(IOR.in());
|
||||||
if(aFatherSO->_is_nil()) return aResultSO._retn();
|
if(aFatherSO->_is_nil()) return aResultSO._retn();
|
||||||
aResultSO = aStudyBuilder->NewObject(aFatherSO);
|
aResultSO = aStudyBuilder->NewObject(aFatherSO);
|
||||||
aFatherSO->Destroy();
|
aFatherSO->UnRegister();
|
||||||
//aStudyBuilder->Addreference(aResultSO, aResultSO);
|
//aStudyBuilder->Addreference(aResultSO, aResultSO);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -760,8 +760,8 @@ SALOMEDS::SObject_ptr GEOM_Gen_i::AddInStudy (SALOMEDS::Study_ptr theStudy,
|
|||||||
if(aSO->_is_nil()) continue;
|
if(aSO->_is_nil()) continue;
|
||||||
SALOMEDS::SObject_var aSubSO = aStudyBuilder->NewObject(aResultSO);
|
SALOMEDS::SObject_var aSubSO = aStudyBuilder->NewObject(aResultSO);
|
||||||
aStudyBuilder->Addreference(aSubSO, aSO);
|
aStudyBuilder->Addreference(aSubSO, aSO);
|
||||||
aSO->Destroy();
|
aSO->UnRegister();
|
||||||
aSubSO->Destroy();
|
aSubSO->UnRegister();
|
||||||
}
|
}
|
||||||
|
|
||||||
return aResultSO._retn();
|
return aResultSO._retn();
|
||||||
@ -793,7 +793,7 @@ GEOM::ListOfGO* GEOM_Gen_i::RestoreSubShapesO (SALOMEDS::Study_ptr theStudy,
|
|||||||
|
|
||||||
aParts = RestoreSubShapes(theStudy, theObject, aSO, theArgs,
|
aParts = RestoreSubShapes(theStudy, theObject, aSO, theArgs,
|
||||||
theFindMethod, theInheritFirstArg, theAddPrefix);
|
theFindMethod, theInheritFirstArg, theAddPrefix);
|
||||||
if (!CORBA::is_nil(aSO)) aSO->Destroy();
|
if (!CORBA::is_nil(aSO)) aSO->UnRegister();
|
||||||
return aParts._retn();
|
return aParts._retn();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -823,7 +823,7 @@ GEOM::ListOfGO* GEOM_Gen_i::RestoreGivenSubShapesO (SALOMEDS::Study_ptr theS
|
|||||||
|
|
||||||
aParts = RestoreGivenSubShapes(theStudy, theObject, aSO, theArgs,
|
aParts = RestoreGivenSubShapes(theStudy, theObject, aSO, theArgs,
|
||||||
theFindMethod, theInheritFirstArg, theAddPrefix);
|
theFindMethod, theInheritFirstArg, theAddPrefix);
|
||||||
if (!CORBA::is_nil(aSO)) aSO->Destroy();
|
if (!CORBA::is_nil(aSO)) aSO->UnRegister();
|
||||||
return aParts._retn();
|
return aParts._retn();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -954,7 +954,7 @@ GEOM::ListOfGO* GEOM_Gen_i::RestoreSubShapes(SALOMEDS::Study_ptr theStudy,
|
|||||||
theObject->SetMarkerTexture(aList[0]->GetMarkerTexture());
|
theObject->SetMarkerTexture(aList[0]->GetMarkerTexture());
|
||||||
}
|
}
|
||||||
|
|
||||||
anArgSO->Destroy();
|
anArgSO->UnRegister();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Get interface, containing method, which we will use to reconstruct sub-shapes
|
// Get interface, containing method, which we will use to reconstruct sub-shapes
|
||||||
@ -1179,7 +1179,7 @@ GEOM::ListOfGO* GEOM_Gen_i::RestoreSubShapes(SALOMEDS::Study_ptr theStudy,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} // try to build from published parts
|
} // try to build from published parts
|
||||||
anArgSO->Destroy();
|
anArgSO->UnRegister();
|
||||||
}
|
}
|
||||||
} // process arguments
|
} // process arguments
|
||||||
}
|
}
|
||||||
@ -1545,7 +1545,7 @@ GEOM::ListOfGO* GEOM_Gen_i::RestoreGivenSubShapes(SALOMEDS::Study_ptr theStu
|
|||||||
theObject->SetMarkerTexture(aList[0]->GetMarkerTexture());
|
theObject->SetMarkerTexture(aList[0]->GetMarkerTexture());
|
||||||
}
|
}
|
||||||
|
|
||||||
anArgSO->Destroy();
|
anArgSO->UnRegister();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Get interface, containing method, which we will use to reconstruct sub-shapes
|
// Get interface, containing method, which we will use to reconstruct sub-shapes
|
||||||
@ -1719,7 +1719,7 @@ GEOM::ListOfGO* GEOM_Gen_i::RestoreGivenSubShapes(SALOMEDS::Study_ptr theStu
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} // try to build from published parts
|
} // try to build from published parts
|
||||||
anArgSO->Destroy();
|
anArgSO->UnRegister();
|
||||||
}
|
}
|
||||||
} // process arguments
|
} // process arguments
|
||||||
}
|
}
|
||||||
@ -2418,12 +2418,12 @@ char* GEOM_Gen_i::getObjectInfo(CORBA::Long studyId, const char* entry)
|
|||||||
if (!aSObj->_is_nil() && aSObj->FindAttribute(anAttr, "AttributeIOR")) {
|
if (!aSObj->_is_nil() && aSObj->FindAttribute(anAttr, "AttributeIOR")) {
|
||||||
SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
|
SALOMEDS::AttributeIOR_var anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
|
||||||
CORBA::String_var aVal = anIOR->Value();
|
CORBA::String_var aVal = anIOR->Value();
|
||||||
anIOR->Destroy();
|
anIOR->UnRegister();
|
||||||
CORBA::Object_var anObject = aStudy->ConvertIORToObject(aVal);
|
CORBA::Object_var anObject = aStudy->ConvertIORToObject(aVal);
|
||||||
aGeomObject = GEOM::GEOM_Object::_narrow(anObject);
|
aGeomObject = GEOM::GEOM_Object::_narrow(anObject);
|
||||||
}
|
}
|
||||||
if (!aSObj->_is_nil() )
|
if (!aSObj->_is_nil() )
|
||||||
aSObj->Destroy();
|
aSObj->UnRegister();
|
||||||
|
|
||||||
const char* aTypeInfo = "Object";
|
const char* aTypeInfo = "Object";
|
||||||
if ( !aGeomObject->_is_nil() ) {
|
if ( !aGeomObject->_is_nil() ) {
|
||||||
|
@ -71,11 +71,11 @@ GEOM_Superv_i::~GEOM_Superv_i()
|
|||||||
{
|
{
|
||||||
MESSAGE("GEOM_Superv_i::~GEOM_Superv_i");
|
MESSAGE("GEOM_Superv_i::~GEOM_Superv_i");
|
||||||
if (!CORBA::is_nil(myBasicOp))
|
if (!CORBA::is_nil(myBasicOp))
|
||||||
myBasicOp->Destroy();
|
myBasicOp->UnRegister();
|
||||||
if (!CORBA::is_nil(myBoolOp))
|
if (!CORBA::is_nil(myBoolOp))
|
||||||
myBoolOp->Destroy();
|
myBoolOp->UnRegister();
|
||||||
if (!CORBA::is_nil(my3DPrimOp))
|
if (!CORBA::is_nil(my3DPrimOp))
|
||||||
my3DPrimOp->Destroy();
|
my3DPrimOp->UnRegister();
|
||||||
delete name_service;
|
delete name_service;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -311,7 +311,7 @@ void OperationGUI_PartitionDlg::SelectionIntoArgument()
|
|||||||
GEOM::ListOfLong_var intList;
|
GEOM::ListOfLong_var intList;
|
||||||
GEOM::ListOfDouble_var dblList;
|
GEOM::ListOfDouble_var dblList;
|
||||||
GEOM::GEOM_IKindOfShape::shape_kind kind = mOp->KindOfShape( myListTools[0].in(), intList.out(), dblList.out() );
|
GEOM::GEOM_IKindOfShape::shape_kind kind = mOp->KindOfShape( myListTools[0].in(), intList.out(), dblList.out() );
|
||||||
mOp->Destroy();
|
mOp->UnRegister();
|
||||||
if ( kind < GEOM::GEOM_IKindOfShape::DISK_CIRCLE || kind > GEOM::GEOM_IKindOfShape::PLANAR ) {
|
if ( kind < GEOM::GEOM_IKindOfShape::DISK_CIRCLE || kind > GEOM::GEOM_IKindOfShape::PLANAR ) {
|
||||||
myListTools.length( 0 );
|
myListTools.length( 0 );
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user