mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
159 lines
6.0 KiB
C++
159 lines
6.0 KiB
C++
// Created by: CKY / Contract Toubro-Larsen
|
|
// Copyright (c) 1993-1999 Matra Datavision
|
|
// Copyright (c) 1999-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 <IGESData_DirChecker.hxx>
|
|
#include <IGESData_Dump.hxx>
|
|
#include <IGESData_IGESDumper.hxx>
|
|
#include <IGESData_IGESReaderData.hxx>
|
|
#include <IGESData_IGESWriter.hxx>
|
|
#include <IGESData_ParamReader.hxx>
|
|
#include <IGESDefs_MacroDef.hxx>
|
|
#include <IGESDefs_ToolMacroDef.hxx>
|
|
#include <Interface_Check.hxx>
|
|
#include <Interface_CopyTool.hxx>
|
|
#include <Interface_EntityIterator.hxx>
|
|
#include <Interface_HArray1OfHAsciiString.hxx>
|
|
#include <Interface_ShareTool.hxx>
|
|
#include <Message_Messenger.hxx>
|
|
#include <TCollection_HAsciiString.hxx>
|
|
|
|
IGESDefs_ToolMacroDef::IGESDefs_ToolMacroDef() {}
|
|
|
|
void IGESDefs_ToolMacroDef::ReadOwnParams(const Handle(IGESDefs_MacroDef)& ent,
|
|
const Handle(IGESData_IGESReaderData)& /* IR */,
|
|
IGESData_ParamReader& PR) const
|
|
{
|
|
// Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
|
|
|
|
Handle(TCollection_HAsciiString) macro;
|
|
Standard_Integer entityTypeID;
|
|
Handle(Interface_HArray1OfHAsciiString) langStatements;
|
|
Handle(TCollection_HAsciiString) endMacro;
|
|
|
|
PR.ReadText(PR.Current(), "MACRO", macro); // szv#4:S4163:12Mar99 `st=` not needed
|
|
|
|
// clang-format off
|
|
PR.ReadInteger(PR.Current(), "Entity Type ID", entityTypeID); //szv#4:S4163:12Mar99 `st=` not needed
|
|
// clang-format on
|
|
|
|
Standard_Integer tempCurrent = PR.CurrentNumber();
|
|
// Counting the no. of language statements.
|
|
Standard_Integer nbval; // svv Jan 10 2000 : porting on DEC
|
|
for (nbval = 0; PR.CurrentNumber() != PR.NbParams();
|
|
nbval++, PR.SetCurrentNumber(PR.CurrentNumber() + 1))
|
|
;
|
|
|
|
PR.SetCurrentNumber(tempCurrent);
|
|
if (nbval > 0)
|
|
langStatements = new Interface_HArray1OfHAsciiString(1, nbval);
|
|
else
|
|
PR.AddFail("Number of Lang. Stats. : Not Positive");
|
|
|
|
if (!langStatements.IsNull())
|
|
{
|
|
for (Standard_Integer i = 1; i <= nbval; i++)
|
|
{
|
|
Handle(TCollection_HAsciiString) langStat;
|
|
// st = PR.ReadText(PR.Current(), "Language Statement", langStat); //szv#4:S4163:12Mar99 moved
|
|
// in if
|
|
if (PR.ReadText(PR.Current(), "Language Statement", langStat))
|
|
langStatements->SetValue(i, langStat);
|
|
}
|
|
}
|
|
|
|
PR.ReadText(PR.Current(), "END MACRO", endMacro); // szv#4:S4163:12Mar99 `st=` not needed
|
|
|
|
DirChecker(ent).CheckTypeAndForm(PR.CCheck(), ent);
|
|
ent->Init(macro, entityTypeID, langStatements, endMacro);
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::WriteOwnParams(const Handle(IGESDefs_MacroDef)& ent,
|
|
IGESData_IGESWriter& IW) const
|
|
{
|
|
IW.Send(ent->MACRO());
|
|
IW.Send(ent->EntityTypeID());
|
|
Standard_Integer upper = ent->NbStatements();
|
|
for (Standard_Integer i = 1; i <= upper; i++)
|
|
IW.Send(ent->LanguageStatement(i));
|
|
IW.Send(ent->ENDMACRO());
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnShared(const Handle(IGESDefs_MacroDef)& /* ent */,
|
|
Interface_EntityIterator& /* iter */) const
|
|
{
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnCopy(const Handle(IGESDefs_MacroDef)& another,
|
|
const Handle(IGESDefs_MacroDef)& ent,
|
|
Interface_CopyTool& /* TC */) const
|
|
{
|
|
|
|
Handle(TCollection_HAsciiString) macro = new TCollection_HAsciiString(another->MACRO());
|
|
Standard_Integer entityTypeID = another->EntityTypeID();
|
|
Handle(TCollection_HAsciiString) endMacro = new TCollection_HAsciiString(another->ENDMACRO());
|
|
Handle(Interface_HArray1OfHAsciiString) langStatements;
|
|
Standard_Integer nbval = another->NbStatements();
|
|
langStatements = new Interface_HArray1OfHAsciiString(1, nbval);
|
|
|
|
for (Standard_Integer i = 1; i <= nbval; i++)
|
|
{
|
|
Handle(TCollection_HAsciiString) langStat =
|
|
new TCollection_HAsciiString(another->LanguageStatement(i));
|
|
langStatements->SetValue(i, langStat);
|
|
}
|
|
ent->Init(macro, entityTypeID, langStatements, endMacro);
|
|
}
|
|
|
|
IGESData_DirChecker IGESDefs_ToolMacroDef::DirChecker(
|
|
const Handle(IGESDefs_MacroDef)& /* ent */) const
|
|
{
|
|
IGESData_DirChecker DC(306, 0);
|
|
DC.Structure(IGESData_DefVoid);
|
|
DC.LineFont(IGESData_DefVoid);
|
|
DC.LineWeight(IGESData_DefVoid);
|
|
DC.Color(IGESData_DefVoid);
|
|
DC.BlankStatusIgnored();
|
|
DC.SubordinateStatusRequired(0);
|
|
DC.UseFlagRequired(2);
|
|
DC.HierarchyStatusIgnored();
|
|
return DC;
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnCheck(const Handle(IGESDefs_MacroDef)& /* ent */,
|
|
const Interface_ShareTool&,
|
|
Handle(Interface_Check)& /* ach */) const
|
|
{
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnDump(const Handle(IGESDefs_MacroDef)& ent,
|
|
const IGESData_IGESDumper& /* dumper */,
|
|
Standard_OStream& S,
|
|
const Standard_Integer level) const
|
|
{
|
|
S << "IGESDefs_MacroDef\n"
|
|
<< "MACRO : ";
|
|
IGESData_DumpString(S, ent->MACRO());
|
|
S << "\n"
|
|
<< "Entity Type ID : " << ent->EntityTypeID() << "\n"
|
|
<< "Language Statement : ";
|
|
IGESData_DumpStrings(S, level, 1, ent->NbStatements(), ent->LanguageStatement);
|
|
S << "END MACRO : ";
|
|
IGESData_DumpString(S, ent->ENDMACRO());
|
|
S << std::endl;
|
|
}
|