mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-05 11:24:17 +03:00
135 lines
5.4 KiB
C++
Executable File
135 lines
5.4 KiB
C++
Executable File
// Created on: 2007-03-30
|
|
// Created by: Michael SAZONOV
|
|
// Copyright (c) 2007-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.
|
|
|
|
// The original implementation Copyright: (C) RINA S.p.A
|
|
|
|
#include <XmlTObjDrivers_IntSparseArrayDriver.hxx>
|
|
#include <CDM_MessageDriver.hxx>
|
|
#include <TDF_Attribute.hxx>
|
|
#include <XmlObjMgt_Persistent.hxx>
|
|
#include <TObj_TIntSparseArray.hxx>
|
|
#include <TObj_Assistant.hxx>
|
|
#include <TCollection_AsciiString.hxx>
|
|
#include <TDF_Tool.hxx>
|
|
|
|
IMPLEMENT_STANDARD_HANDLE(XmlTObjDrivers_IntSparseArrayDriver,XmlMDF_ADriver)
|
|
IMPLEMENT_STANDARD_RTTIEXT(XmlTObjDrivers_IntSparseArrayDriver,XmlMDF_ADriver)
|
|
|
|
#define ITEM_ID "itemId_"
|
|
#define ITEM_VALUE "itemValue_"
|
|
|
|
//=======================================================================
|
|
//function : XmlTObjDrivers_IntSparseArrayDriver
|
|
//purpose : constructor
|
|
//=======================================================================
|
|
|
|
XmlTObjDrivers_IntSparseArrayDriver::XmlTObjDrivers_IntSparseArrayDriver
|
|
(const Handle(CDM_MessageDriver)& theMessageDriver)
|
|
: XmlMDF_ADriver( theMessageDriver, NULL)
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty
|
|
//purpose : Creates a new attribute
|
|
//=======================================================================
|
|
|
|
Handle(TDF_Attribute) XmlTObjDrivers_IntSparseArrayDriver::NewEmpty() const
|
|
{
|
|
return new TObj_TIntSparseArray;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : Retrieve. Translate the contents of <theSource> and put it
|
|
// into <theTarget>.
|
|
//=======================================================================
|
|
|
|
Standard_Boolean XmlTObjDrivers_IntSparseArrayDriver::Paste
|
|
(const XmlObjMgt_Persistent& theSource,
|
|
const Handle(TDF_Attribute)& theTarget,
|
|
XmlObjMgt_RRelocationTable&) const
|
|
{
|
|
const XmlObjMgt_Element& anElement = theSource;
|
|
Handle(TObj_TIntSparseArray) aTarget =
|
|
Handle(TObj_TIntSparseArray)::DownCast(theTarget);
|
|
|
|
// get pairs (ID, value) while ID != 0
|
|
Standard_Integer i = 1;
|
|
TCollection_AsciiString anItemID;
|
|
TCollection_AsciiString anIdStr = TCollection_AsciiString( ITEM_ID ) +
|
|
TCollection_AsciiString( i );
|
|
anItemID = anElement.getAttribute( anIdStr.ToCString() );
|
|
while( anItemID.IsIntegerValue() && anItemID.IntegerValue() != 0 )
|
|
{
|
|
TCollection_AsciiString aStrIndex = TCollection_AsciiString( ITEM_VALUE ) +
|
|
TCollection_AsciiString( i );
|
|
TCollection_AsciiString anItemValue = anElement.getAttribute( aStrIndex.ToCString() );
|
|
if ( anItemValue.IsIntegerValue() )
|
|
{
|
|
// store the value in the target array
|
|
aTarget->SetDoBackup (Standard_False);
|
|
aTarget->SetValue (anItemID.IntegerValue(), anItemValue.IntegerValue());
|
|
aTarget->SetDoBackup (Standard_True);
|
|
}
|
|
i++;
|
|
}
|
|
return Standard_True;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : Store. Translate the contents of <theSource> and put it
|
|
// into <theTarget>
|
|
//=======================================================================
|
|
|
|
void XmlTObjDrivers_IntSparseArrayDriver::Paste
|
|
(const Handle(TDF_Attribute)& theSource,
|
|
XmlObjMgt_Persistent& theTarget,
|
|
XmlObjMgt_SRelocationTable&) const
|
|
{
|
|
Handle(TObj_TIntSparseArray) aSource =
|
|
Handle(TObj_TIntSparseArray)::DownCast (theSource);
|
|
|
|
// put only non-null values as pairs (ID, value)
|
|
// terminate the list by ID=0
|
|
TObj_TIntSparseArray::Iterator anIt = aSource->GetIterator();
|
|
Standard_Integer i = 1;
|
|
for ( ; anIt.More() ; anIt.Next() )
|
|
{
|
|
Standard_Integer aValue = anIt.Value();
|
|
if (aValue == 0)
|
|
continue;
|
|
TCollection_AsciiString anIdStr = TCollection_AsciiString( ITEM_ID ) +
|
|
TCollection_AsciiString( i );
|
|
TCollection_AsciiString aStrIndex = TCollection_AsciiString( ITEM_VALUE ) +
|
|
TCollection_AsciiString( i );
|
|
theTarget.Element().setAttribute( anIdStr.ToCString(), anIt.Index() );
|
|
theTarget.Element().setAttribute( aStrIndex.ToCString(), anIt.Value() );
|
|
i++;
|
|
}
|
|
// write last item
|
|
TCollection_AsciiString anIdStr = TCollection_AsciiString( ITEM_ID ) +
|
|
TCollection_AsciiString( i );
|
|
TCollection_AsciiString aStrIndex = TCollection_AsciiString( ITEM_VALUE ) +
|
|
TCollection_AsciiString( i );
|
|
theTarget.Element().setAttribute( anIdStr.ToCString(), 0 );
|
|
theTarget.Element().setAttribute( aStrIndex.ToCString(), 0 );
|
|
}
|