// Copyright (c) 1999-2012 OPEN CASCADE SAS // // The content of this file is subject to the Open CASCADE Technology Public // License Version 6.5 (the "License"). You may not use the content of this file // except in compliance with the License. Please obtain a copy of the License // at http://www.opencascade.org and read it completely before using this file. // // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France. // // The Original Code and all software distributed under the License is // distributed on an "AS IS" basis, without warranty of any kind, and the // Initial Developer hereby disclaims all such warranties, including without // limitation, any warranties of merchantability, fitness for a particular // purpose or non-infringement. Please see the License for the specific terms // and conditions governing the rights and limitations under the License. #include #include #include #include #include #include #include #include #include #include #include #include //======================================================================= //function : MDataXtd_ConstraintStorageDriver //purpose : //======================================================================= MDataXtd_ConstraintStorageDriver::MDataXtd_ConstraintStorageDriver(const Handle(CDM_MessageDriver)& theMsgDriver):MDF_ASDriver(theMsgDriver) { } //======================================================================= //function : VersionNumber //purpose : //======================================================================= Standard_Integer MDataXtd_ConstraintStorageDriver::VersionNumber() const { return 0; } //======================================================================= //function : SourceType //purpose : //======================================================================= Handle(Standard_Type) MDataXtd_ConstraintStorageDriver::SourceType() const { return STANDARD_TYPE (TDataXtd_Constraint); } //======================================================================= //function : NewEmpty //purpose : //======================================================================= Handle(PDF_Attribute) MDataXtd_ConstraintStorageDriver::NewEmpty() const { return new PDataXtd_Constraint; } //======================================================================= //function : Paste //purpose : //======================================================================= void MDataXtd_ConstraintStorageDriver::Paste ( const Handle(TDF_Attribute)& Source, const Handle(PDF_Attribute)& Target, const Handle(MDF_SRelocationTable)& RelocTable) const { Handle(TDataXtd_Constraint) S = Handle(TDataXtd_Constraint)::DownCast (Source); Handle(PDataXtd_Constraint) T = Handle(PDataXtd_Constraint)::DownCast (Target); Handle(PDataStd_Real) TValue; Handle(TDataStd_Real) Value = S->GetValue (); if (!Value.IsNull ()) { if (!RelocTable->HasRelocation (Value, TValue )) { Standard_NoSuchObject::Raise("MDataXtd_ConstraintStorageDriver::Paste"); } T->Set (TValue); } Standard_Integer NbGeom = S->NbGeometries (); if (NbGeom >= 1) { Handle(PDF_HAttributeArray1) PGeometries = new PDF_HAttributeArray1 (1, NbGeom); for (Standard_Integer i = 1; i <= NbGeom; i++) { Handle(PDF_Attribute) PG; if (!S->GetGeometry (i).IsNull()) { if(!RelocTable->HasRelocation (S->GetGeometry (i), PG)) { Standard_NoSuchObject::Raise("MDataXtd_ConstraintStorageDriver::Paste"); } } PGeometries->SetValue (i,PG); } T->SetGeometries (PGeometries); } Handle(TNaming_NamedShape) TPlane = S->GetPlane(); Handle(PNaming_NamedShape) PPlane; if (!TPlane.IsNull()) { if (!RelocTable->HasRelocation (TPlane, PPlane )) { Standard_NoSuchObject::Raise("MDataXtd_ConstraintStorageDriver::Paste"); } T->SetPlane(PPlane); } T->SetType (MDataXtd::ConstraintTypeToInteger(S->GetType ())); T->Verified(S->Verified()); T->Inverted(S->Inverted()); T->Reversed(S->Reversed()); }