513f08e691
- aggiornamento versione - utilizzate le nostre librerie esterne libzip e zlib e non quelle incluse in lib3mf.
135 lines
4.8 KiB
C++
135 lines
4.8 KiB
C++
/*++
|
|
|
|
Copyright (C) 2023 3MF Consortium
|
|
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without modification,
|
|
are permitted provided that the following conditions are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
#include <Common/Platform/NMR_SAL.h>
|
|
#include <Model/Classes/NMR_ModelImplicitNode.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Model/Classes/NMR_ModelFunction.h"
|
|
|
|
namespace NMR
|
|
{
|
|
using ImplicitNodes = std::vector<PModelImplicitNode>;
|
|
using PImplicitNodes = std::shared_ptr<ImplicitNodes>;
|
|
|
|
namespace implicit
|
|
{
|
|
class NodeTypes;
|
|
}
|
|
|
|
// Extract node name (before the first dot) from a node identifier
|
|
std::string extractNodeName(const ImplicitIdentifier& sIdentifier);
|
|
|
|
// Extract port name (after the first dot) from a node identifier
|
|
std::string extractPortName(const ImplicitIdentifier& sIdentifier);
|
|
|
|
// Concatenate node name and port name to a reference identifier
|
|
ImplicitIdentifier makeReferenceIdentifier(
|
|
const ImplicitIdentifier& sNodeIdentifier,
|
|
const ImplicitIdentifier& sPortIdentifier);
|
|
|
|
class CModelImplicitFunction : public CModelFunction
|
|
{
|
|
private:
|
|
ImplicitIdentifier m_identifier;
|
|
PImplicitNodes m_nodes;
|
|
static const implicit::NodeTypes m_nodeTypes;
|
|
|
|
CModelImplicitNode* findNode(
|
|
const ImplicitIdentifier& sIdentifier) const;
|
|
|
|
public:
|
|
CModelImplicitFunction(_In_ const ModelResourceID sID,
|
|
_In_ CModel* pModel);
|
|
|
|
// Copy constructor
|
|
CModelImplicitFunction(const CModelImplicitFunction& other) = default;
|
|
|
|
// Copy assignment operator
|
|
CModelImplicitFunction& operator=(const CModelImplicitFunction& other) =
|
|
default;
|
|
|
|
ImplicitIdentifier const& getIdentifier() const;
|
|
void setIdentifier(ImplicitIdentifier const& identifier);
|
|
|
|
PModelImplicitNode addNode(const Lib3MF::eImplicitNodeType eNodeType,
|
|
const Lib3MF::eImplicitNodeConfiguration eConfiguration,
|
|
const std::string& sIdentifier,
|
|
const std::string& sDisplayName,
|
|
const std::string& sTag);
|
|
|
|
PModelImplicitNode addNode(const Lib3MF::eImplicitNodeType eNodeType, const Lib3MF::eImplicitNodeConfiguration eConfiguration);
|
|
|
|
PImplicitNodes getNodes() const;
|
|
|
|
void addLink(const ImplicitIdentifier& sSourceNodeIdentifier,
|
|
const ImplicitIdentifier& sTargetNodeIdentifier);
|
|
|
|
void addLink(PModelImplicitPort pSourcePort, PModelImplicitPort pTargetPort);
|
|
|
|
implicit::NodeTypes const& getNodeTypes() const;
|
|
|
|
void removeNode(const ImplicitIdentifier& sIdentifier);
|
|
|
|
void clear() override;
|
|
|
|
/**
|
|
* @brief Replaces a resource ID with a new one.
|
|
*
|
|
* This function replaces all occurrences of the old resource ID with
|
|
* the new one.
|
|
*
|
|
* @param sOldID The old resource ID to replace.
|
|
* @param sNewID The new resource ID to use.
|
|
*/
|
|
void replaceResourceID(const ModelResourceID sOldID,
|
|
const ModelResourceID sNewID);
|
|
|
|
/**
|
|
* @brief Topologically sorts the implicit function tree.
|
|
*
|
|
* This function performs a topological sort on the implicit function
|
|
* tree, ensuring that parent nodes are always evaluated before their
|
|
* children.
|
|
*
|
|
*/
|
|
void sortNodesTopologically();
|
|
|
|
PModelImplicitPort findPort(const ImplicitIdentifier& sIdentifier) const;
|
|
|
|
ResourceDependencies getDependencies() override;
|
|
};
|
|
|
|
using PModelImplicitFunction = std::shared_ptr<CModelImplicitFunction>;
|
|
} // namespace NMR
|