mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 22:11:17 +08:00
Progress indication mechanism is refactored to support incrementing progress within multithreaded algorithms. The class Message_ProgressIndicator is only an interface to the user application. It accumulates the progress provided by progress scopes. The counter is protected by mutex for thread-safety. The new class Message_ProgressScope replacing Message_ProgressSentry should be used to advance the progress. The scopes are nested to each other to reflect the nested nature of operations. The new class Message_ProgressRange should be used to pass the progress to sub-scopes. All OCCT algorithms involving progress indication have been updated to new API. Improvements in Draw_ProgressIndicator: - Separate console mode has been added in order to make possible to put the progress into std::cout instead or in addition to the draw interpreter, instead of trigger option "-tclOutput". - Treatment of Ctrl-Break signal has been added. Now any operation can be aborted by Ctrl-C or Ctrl-Break keystroke. Added new test case 'perf fclasses progr_par' for testing of parallel work of the progress.
146 lines
4.5 KiB
C++
146 lines
4.5 KiB
C++
// Created on: 1998-06-03
|
|
// Created by: data exchange team
|
|
// Copyright (c) 1998-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.
|
|
|
|
#ifndef _ShapeFix_HeaderFile
|
|
#define _ShapeFix_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <Standard_Boolean.hxx>
|
|
#include <Standard_Real.hxx>
|
|
|
|
#include <ShapeExtend_BasicMsgRegistrator.hxx>
|
|
#include <Message_ProgressRange.hxx>
|
|
|
|
class TopoDS_Shape;
|
|
class ShapeExtend_BasicMsgRegistrator;
|
|
class ShapeBuild_ReShape;
|
|
class ShapeFix_Root;
|
|
class ShapeFix_EdgeProjAux;
|
|
class ShapeFix_Edge;
|
|
class ShapeFix_Wire;
|
|
class ShapeFix_Face;
|
|
class ShapeFix_FixSmallFace;
|
|
class ShapeFix_FixSmallSolid;
|
|
class ShapeFix_WireVertex;
|
|
class ShapeFix_Wireframe;
|
|
class ShapeFix_FreeBounds;
|
|
class ShapeFix_FaceConnect;
|
|
class ShapeFix_Shell;
|
|
class ShapeFix_Solid;
|
|
class ShapeFix_ShapeTolerance;
|
|
class ShapeFix_Shape;
|
|
class ShapeFix_EdgeConnect;
|
|
class ShapeFix_ComposeShell;
|
|
class ShapeFix_SplitCommonVertex;
|
|
class ShapeFix_WireSegment;
|
|
class ShapeFix_IntersectionTool;
|
|
class ShapeFix_SplitTool;
|
|
|
|
|
|
//! This package provides algorithms for fixing
|
|
//! problematic (violating Open CASCADE requirements) shapes.
|
|
//! Tools from package ShapeAnalysis are used for detecting the problems. The
|
|
//! detecting and fixing is done taking in account various
|
|
//! criteria implemented in BRepCheck package.
|
|
//! Each class of package ShapeFix deals with one
|
|
//! certain type of shapes or with some family of problems.
|
|
class ShapeFix
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
//! Runs SameParameter from BRepLib with these adaptations :
|
|
//! <enforce> forces computations, else they are made only on
|
|
//! Edges with flag SameParameter false
|
|
//! <preci>, if not precised, is taken for each EDge as its own
|
|
//! Tolerance
|
|
//! Returns True when done, False if an exception has been raised
|
|
//! In case of exception anyway, as many edges as possible have
|
|
//! been processed. The passed progress indicator allows user
|
|
//! to consult the current progress stage and abort algorithm
|
|
//! if needed.
|
|
Standard_EXPORT static Standard_Boolean SameParameter
|
|
(const TopoDS_Shape& shape, const Standard_Boolean enforce,
|
|
const Standard_Real preci = 0.0,
|
|
const Message_ProgressRange& theProgress = Message_ProgressRange(),
|
|
const Handle(ShapeExtend_BasicMsgRegistrator)& theMsgReg = 0);
|
|
|
|
//! Runs EncodeRegularity from BRepLib taking into account
|
|
//! shared components of assemblies, so that each component
|
|
//! is processed only once
|
|
Standard_EXPORT static void EncodeRegularity (const TopoDS_Shape& shape, const Standard_Real tolang = 1.0e-10);
|
|
|
|
//! Removes edges which are less than given tolerance from shape
|
|
//! with help of ShapeFix_Wire::FixSmall()
|
|
Standard_EXPORT static TopoDS_Shape RemoveSmallEdges (TopoDS_Shape& shape, const Standard_Real Tolerance, Handle(ShapeBuild_ReShape)& context);
|
|
|
|
//! Fix position of the vertices having tolerance more tnan specified one.;
|
|
Standard_EXPORT static Standard_Boolean FixVertexPosition (TopoDS_Shape& theshape, const Standard_Real theTolerance, const Handle(ShapeBuild_ReShape)& thecontext);
|
|
|
|
//! Calculate size of least edge;
|
|
Standard_EXPORT static Standard_Real LeastEdgeSize (TopoDS_Shape& theshape);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
friend class ShapeFix_Root;
|
|
friend class ShapeFix_EdgeProjAux;
|
|
friend class ShapeFix_Edge;
|
|
friend class ShapeFix_Wire;
|
|
friend class ShapeFix_Face;
|
|
friend class ShapeFix_FixSmallFace;
|
|
friend class ShapeFix_FixSmallSolid;
|
|
friend class ShapeFix_WireVertex;
|
|
friend class ShapeFix_Wireframe;
|
|
friend class ShapeFix_FreeBounds;
|
|
friend class ShapeFix_FaceConnect;
|
|
friend class ShapeFix_Shell;
|
|
friend class ShapeFix_Solid;
|
|
friend class ShapeFix_ShapeTolerance;
|
|
friend class ShapeFix_Shape;
|
|
friend class ShapeFix_EdgeConnect;
|
|
friend class ShapeFix_ComposeShell;
|
|
friend class ShapeFix_SplitCommonVertex;
|
|
friend class ShapeFix_WireSegment;
|
|
friend class ShapeFix_IntersectionTool;
|
|
friend class ShapeFix_SplitTool;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _ShapeFix_HeaderFile
|