mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Code has been updated to remove no-op casts and implicit casts to Standard_Boolean. Places of inproper use of Standard_Boolean instead of Standard_Integer have been corrected: - Bnd_Box, Bnd_Box2d Bit flags are now defined as private enum - HLRAlgo_BiPoint, HLRAlgo_EdgesBlock, HLRBRep_EdgeData, HLRBRep_FaceData Bit flags are now defined as enum - HLRAlgo_EdgeStatus, HLRBRep_BiPnt2D, HLRBRep_BiPoint Bit flags are now defined as bool fields - HLRAlgo_PolyData Bit flags are now defined as Standard_Integer - OSD_DirectoryIterator, OSD_FileIterator Boolean flag is now defined as Standard_Boolean - ShapeAnalysis_Surface::SurfaceNewton() now returns Standard_Integer (values 0, 1 or 3) - ChFi2d_FilletAlgo now uses TColStd_SequenceOfBoolean instead of TColStd_SequenceOfInteger for storing boolean flags Method IFSelect_Dispatch::PacketsCount() has been dropped from interface. ShapeFix_Solid::Status() has been fixed to decode requested status instead of returning integer value. TopOpeBRepBuild_Builder1 now defines map storing Standard_Boolean values instead of Standard_Integer. Persistence for Standard_Boolean type has been corrected to keep backward compatibility: - BinMDataStd, BinTools, FSD_BinaryFile Broken Draw Harness commands vdisplaymode and verasemode have been removed. BRepMesh_FastDiscretFace::initDataStructure() - workaround old gcc limitations BRepMesh_IncrementalMesh::clear() - avoid ambiguity
171 lines
6.4 KiB
C++
171 lines
6.4 KiB
C++
// Created on: 2007-08-22
|
|
// Created by: Sergey ZARITCHNY
|
|
// Copyright (c) 2007-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
|
|
#include <CDM_MessageDriver.hxx>
|
|
#include <NCollection_LocalArray.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TColStd_HPackedMapOfInteger.hxx>
|
|
#include <TColStd_MapIteratorOfPackedMapOfInteger.hxx>
|
|
#include <TColStd_PackedMapOfInteger.hxx>
|
|
#include <TDataStd_IntPackedMap.hxx>
|
|
#include <TDF_Attribute.hxx>
|
|
#include <XmlMDataStd.hxx>
|
|
#include <XmlMDataStd_IntPackedMapDriver.hxx>
|
|
#include <XmlMDF_ADriver.hxx>
|
|
#include <XmlObjMgt.hxx>
|
|
#include <XmlObjMgt_Persistent.hxx>
|
|
#include <XmlObjMgt_RRelocationTable.hxx>
|
|
#include <XmlObjMgt_SRelocationTable.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(XmlMDataStd_IntPackedMapDriver,XmlMDF_ADriver)
|
|
IMPLEMENT_DOMSTRING (IntPackedMapSize, "mapsize")
|
|
IMPLEMENT_DOMSTRING (IsDeltaOn, "delta")
|
|
//=======================================================================
|
|
//function : XmlMDataStd_IntPackedMapDriver
|
|
//purpose : Constructor
|
|
//=======================================================================
|
|
|
|
XmlMDataStd_IntPackedMapDriver::XmlMDataStd_IntPackedMapDriver
|
|
(const Handle(CDM_MessageDriver)& theMsgDriver)
|
|
: XmlMDF_ADriver (theMsgDriver, STANDARD_TYPE(TDataStd_IntPackedMap)->Name())
|
|
{}
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty()
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(TDF_Attribute) XmlMDataStd_IntPackedMapDriver::NewEmpty () const
|
|
{
|
|
return (new TDataStd_IntPackedMap());
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste()
|
|
//purpose : persistent -> transient (retrieve)
|
|
//=======================================================================
|
|
Standard_Boolean XmlMDataStd_IntPackedMapDriver::Paste
|
|
(const XmlObjMgt_Persistent& theSource,
|
|
const Handle(TDF_Attribute)& theTarget,
|
|
XmlObjMgt_RRelocationTable& ) const
|
|
{
|
|
Handle(TDataStd_IntPackedMap) aPackedMap =
|
|
Handle(TDataStd_IntPackedMap)::DownCast(theTarget);
|
|
if(!aPackedMap.IsNull()) {
|
|
Standard_Integer aSize;
|
|
const XmlObjMgt_Element& anElement = theSource;
|
|
XmlObjMgt_DOMString aSizeDStr = anElement.getAttribute(::IntPackedMapSize());
|
|
if(aSizeDStr == NULL)
|
|
aSize = 0;
|
|
else if (!aSizeDStr.GetInteger(aSize)) {
|
|
TCollection_ExtendedString aMessageString =
|
|
TCollection_ExtendedString("Cannot retrieve the Map size"
|
|
" for IntPackedMap attribute as \"")
|
|
+ aSize + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
Handle(TColStd_HPackedMapOfInteger) aHMap = new TColStd_HPackedMapOfInteger ();
|
|
Standard_Boolean Ok = Standard_True;
|
|
if(aSize) {
|
|
Standard_CString aValueString =
|
|
Standard_CString(XmlObjMgt::GetStringValue(anElement).GetString());
|
|
// Handle(TColStd_HPackedMapOfInteger) aHMap = new TColStd_HPackedMapOfInteger ();
|
|
for (Standard_Integer i = 1; i <= aSize; i++) {
|
|
Standard_Integer aValue;
|
|
if (!XmlObjMgt::GetInteger(aValueString, aValue)) {
|
|
Ok = Standard_False; break;
|
|
}
|
|
if(!aHMap->ChangeMap().Add( aValue )) {
|
|
Ok = Standard_False; break;
|
|
}
|
|
}
|
|
if(!Ok) {
|
|
TCollection_ExtendedString aMessageString =
|
|
TCollection_ExtendedString("Cannot retrieve integer member"
|
|
" for IntPackedMap attribute as \"")
|
|
+ aValueString + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
if(aPackedMap->ChangeMap(aHMap))
|
|
Ok = Standard_True;
|
|
}
|
|
if(Ok) {
|
|
Standard_Boolean aDelta(Standard_False);
|
|
|
|
if(XmlMDataStd::DocumentVersion() > 2) {
|
|
Standard_Integer aDeltaValue;
|
|
if (!anElement.getAttribute(::IsDeltaOn()).GetInteger(aDeltaValue))
|
|
{
|
|
TCollection_ExtendedString aMessageString =
|
|
TCollection_ExtendedString("Cannot retrieve the isDelta value"
|
|
" for IntPackedMap attribute as \"")
|
|
+ aDeltaValue + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
else
|
|
aDelta = aDeltaValue != 0;
|
|
}
|
|
#ifdef OCCT_DEBUG
|
|
else if(XmlMDataStd::DocumentVersion() == -1)
|
|
cout << "Current DocVersion field is not initialized. " <<endl;
|
|
#endif
|
|
aPackedMap->SetDelta(aDelta);
|
|
return Standard_True;
|
|
}
|
|
}
|
|
WriteMessage("error retrieving Map for type TDataStd_IntPackedMap");
|
|
return Standard_False;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste()
|
|
//purpose : transient -> persistent (store)
|
|
//=======================================================================
|
|
void XmlMDataStd_IntPackedMapDriver::Paste (const Handle(TDF_Attribute)& theSource,
|
|
XmlObjMgt_Persistent& theTarget,
|
|
XmlObjMgt_SRelocationTable& ) const
|
|
{
|
|
Handle(TDataStd_IntPackedMap) aS = Handle(TDataStd_IntPackedMap)::DownCast(theSource);
|
|
if (aS.IsNull()) {
|
|
WriteMessage ("IntPackedMapDriver:: The source attribute is Null.");
|
|
return;
|
|
}
|
|
|
|
Standard_Integer aSize = (aS->IsEmpty()) ? 0 : aS->Extent();
|
|
theTarget.Element().setAttribute(::IntPackedMapSize(), aSize);
|
|
theTarget.Element().setAttribute(::IsDeltaOn(), aS->GetDelta() ? 1 : 0);
|
|
|
|
if(aSize)
|
|
{
|
|
// Allocation of 12 chars for each integer including the space.
|
|
// An example: -2 147 483 648
|
|
Standard_Integer iChar = 0;
|
|
NCollection_LocalArray<Standard_Character> str(12 * aSize + 1);
|
|
|
|
TColStd_MapIteratorOfPackedMapOfInteger anIt(aS->GetMap());
|
|
for(;anIt.More();anIt.Next())
|
|
{
|
|
const Standard_Integer intValue = anIt.Key();
|
|
iChar += Sprintf(&(str[iChar]), "%d ", intValue);
|
|
}
|
|
|
|
// No occurrence of '&', '<' and other irregular XML characters
|
|
XmlObjMgt::SetStringValue (theTarget, (Standard_Character*)str, Standard_True);
|
|
}
|
|
}
|