1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/Interface/Interface_ShareTool.hxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

143 lines
5.2 KiB
C++

// Created on: 1993-02-02
// Created by: Christian CAILLET
// 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.
#ifndef _Interface_ShareTool_HeaderFile
#define _Interface_ShareTool_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Handle.hxx>
#include <Standard_Boolean.hxx>
#include <Standard_Integer.hxx>
#include <Standard_Type.hxx>
class Interface_HGraph;
class Standard_DomainError;
class Interface_InterfaceError;
class Interface_InterfaceModel;
class Interface_GeneralLib;
class Interface_GTool;
class Interface_Protocol;
class Interface_Graph;
class Interface_EntityIterator;
class Standard_Transient;
class Message_Messenger;
//! Builds the Graph of Dependancies, from the General Service
//! "Shared" -> builds for each Entity of a Model, the Shared and
//! Sharing Lists, and gives access to them.
//! Allows to complete with Implied References (which are not
//! regarded as Shared Entities, but are nevertheless Referenced),
//! this can be usefull for Reference Checking
class Interface_ShareTool
{
public:
DEFINE_STANDARD_ALLOC
//! Creates a ShareTool from a Model and builds all required data,
//! by calling the General Service Library and Modules
//! (GeneralLib given as an argument)
Standard_EXPORT Interface_ShareTool(const Handle(Interface_InterfaceModel)& amodel, const Interface_GeneralLib& lib);
//! Same a above, but GeneralLib is detained by a GTool
Standard_EXPORT Interface_ShareTool(const Handle(Interface_InterfaceModel)& amodel, const Handle(Interface_GTool)& gtool);
//! Same a above, but GeneralLib is defined through a Protocol
//! Protocol is used to build the working library
Standard_EXPORT Interface_ShareTool(const Handle(Interface_InterfaceModel)& amodel, const Handle(Interface_Protocol)& protocol);
//! Same as above, but works with the GTool of the Model
Standard_EXPORT Interface_ShareTool(const Handle(Interface_InterfaceModel)& amodel);
//! Creates a ShareTool from an already defined Graph
//! Remark that the data of the Graph are copied
Standard_EXPORT Interface_ShareTool(const Interface_Graph& agraph);
//! Completes the Graph by Adding Implied References. Hence, they
//! are considered as Sharing References in all the other queries
Standard_EXPORT Interface_ShareTool(const Handle(Interface_HGraph)& ahgraph);
//! Returns the Model used for Creation (directly or for Graph)
Standard_EXPORT Handle(Interface_InterfaceModel) Model() const;
//! Returns the data used by the ShareTool to work
//! Can then be used directly (read only)
Standard_EXPORT const Interface_Graph& Graph() const;
//! Returns the Entities which are not Shared (their Sharing List
//! is empty) in the Model
Standard_EXPORT Interface_EntityIterator RootEntities() const;
//! Returns True if <ent> is Shared by other Entities in the Model
Standard_EXPORT Standard_Boolean IsShared (const Handle(Standard_Transient)& ent) const;
//! Returns the List of Entities Shared by a given Entity <ent>
Standard_EXPORT Interface_EntityIterator Shareds (const Handle(Standard_Transient)& ent) const;
//! Returns the List of Entities Sharing a given Entity <ent>
Standard_EXPORT Interface_EntityIterator Sharings (const Handle(Standard_Transient)& ent) const;
//! Returns the count of Sharing Entities of an Entity, which
//! are Kind of a given Type
Standard_EXPORT Standard_Integer NbTypedSharings (const Handle(Standard_Transient)& ent, const Handle(Standard_Type)& atype) const;
//! Returns the Sharing Entity of an Entity, which is Kind of a
//! given Type. Allows to access a Sharing Entity of a given type
//! when there is one and only one (current case)
Standard_EXPORT Handle(Standard_Transient) TypedSharing (const Handle(Standard_Transient)& ent, const Handle(Standard_Type)& atype) const;
//! Returns the complete list of entities shared by <ent> at any
//! level, including <ent> itself
//! If <ent> is the Model, considers the concatenation of
//! AllShared for each root
//! If <rootlast> is True (D), the list starts with lower level
//! entities and ends by the root. Else, the root is first and
//! the lower level entities are at end
Standard_EXPORT Interface_EntityIterator All (const Handle(Standard_Transient)& ent, const Standard_Boolean rootlast = Standard_True) const;
//! Utility method which Prints the content of an iterator
//! (by their Numbers)
Standard_EXPORT void Print (const Interface_EntityIterator& iter, const Handle(Message_Messenger)& S) const;
protected:
private:
Handle(Interface_HGraph) theHGraph;
};
#endif // _Interface_ShareTool_HeaderFile