View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0033788 | Open CASCADE | OCCT:Data Exchange | public | 2024-08-05 09:54 | 2024-08-10 13:53 |
Reporter | Assigned To | bugmaster | |||
Priority | normal | Severity | minor | ||
Status | verified | Resolution | fixed | ||
Target Version | 7.8.1 | Fixed in Version | 7.9.0 | ||
Summary | 0033788: Data Exchange, DE Wrapper - Shape Healing configuration node | ||||
Description | Need to create a new class to keep Shape healing details as a base class inherited from DE_ConfigurationNode. New class will be used as a parent for STEP, IGES, HOOPS, DXF, Parasolid Configuration Nodes component. Current task is create a Healing parameters in separated classes and define specific class enumeration for them. (3 possible value: -1, 0, 1). Needs to decide need we these 3 or just bool. This issue is not about deep integration of using this classes. Result for that issue is only update existed classes’s parent and create new class to inherit from. The new class should be close for example to STEPCafControl_ConfigurationNode. The main idea is keep ShapeHealing parameters. But additionally needs to be able to extract information from StaticInteface with with some method. Task to upgrade ShapeHealing logic is separated and will be created based on current implementation. | ||||
Tags | No tags attached. | ||||
Test case number | none | ||||
|
Branch CR33788 has been created by ichesnokova. SHA-1: 74a953d4fc194e19c653f8d15422781d0710ef84 Detailed log of new commits: Author: ichesnok Date: Sun Aug 4 20:53:36 2024 +0100 0033788: Data Exchange, DE Wrapper - Shape Healing configuration node DE_ShapeFixConfigurationNode parent class added for STEP, IGES, XT, DXF configuration nodes. DE_ShapeFixParameters class added for shape healing parameters storage. |
|
Dear dpasukhi, please review CR33788 branches. |
|
In that case better to avoid creating a new dependency. Better to avoid lining TKXDEBase, that means we will not need to reset parameters from Static_Interface for now. Additionally, no needs to variables that keep information about format or other deteails to be used for Static_interface. Probably for now better to not touch any other ConfigNodes. Create only single one and do not use it inside that ticket. Please remove PROD branch and revert you changes for STEP and IGES |
|
Branch CR33788 has been updated forcibly by ichesnokova. SHA-1: af1d06fd35c829d3da45e15e09949649072d75a6 |
|
Dear dpasukhi, please review CR33788 branch again |
|
DE_ShapeFixParameters -> convert to struct without cxx and any constructors. No needs for any overriding methods and other options //! Creates new provider for the own format //! @return new created provider Standard_EXPORT virtual Handle(DE_Provider) BuildProvider() Standard_OVERRIDE; //! Gets CAD format name of associated provider //! @return provider CAD format Standard_EXPORT virtual TCollection_AsciiString GetFormat() const Standard_OVERRIDE; //! Gets provider's vendor name of associated provider //! @return provider's vendor name Standard_EXPORT virtual TCollection_AsciiString GetVendor() const Standard_OVERRIDE; //! Gets list of supported file extensions //! @return list of extensions Standard_EXPORT virtual TColStd_ListOfAsciiString GetExtensions() const Standard_OVERRIDE; Only that methods are necessary: //! Initializes all field by default Standard_EXPORT DE_ShapeFixConfigurationNode(); //! Copies values of all fields //! @param[in] theConfigurationNode object to copy Standard_EXPORT DE_ShapeFixConfigurationNode(const Handle(DE_ShapeFixConfigurationNode)& theConfigurationNode); //! Updates values according the resource //! @param[in] theResource input resource to use //! @return True if Load was successful Standard_EXPORT virtual bool Load(const Handle(DE_ConfigurationContext)& theResource) Standard_OVERRIDE; //! Writes configuration to the string //! @return result resource string Standard_EXPORT virtual TCollection_AsciiString Save() const Standard_OVERRIDE; //! Copies values of all fields //! @return new object with the same field values Standard_EXPORT virtual Handle(DE_ConfigurationNode) Copy() const Standard_OVERRIDE; As for a Load or Save. Needs to realize reading and saving operation. But when you writing a type of operation. Needs to use a GetVendor and GetFormat as a methods calls. I mean, need to implement full support of dump and read ShapeHealing parameters. If you need to increase estimation - please do. But write a reason - for example, needs extra time to implement dump functionality of parameters |
|
Branch CR33788 has been updated forcibly by ichesnokova. SHA-1: 59c9e9c246709cd69f8a087c62f8dca85432c051 |
|
Branch CR33788 has been updated forcibly by ichesnokova. SHA-1: 1fda511007b65cba23812900f0f4664df5ea7e4f |
|
Remarks were fixed, please review. |
|
Branch CR33788 has been updated forcibly by ichesnokova. SHA-1: cd71828ab31ecbfdeb131ebb42cfa3830cc2ea28 |
|
Dear There are some small remarks. Big remark. Load not consistent with Save. Your commands are not same. Needs to have the equal parameters name for both operation. 176 aResult += "!\n"; 177 aResult += "!Defines the maximum allowable tolerance\n"; 178 aResult += "!Default value: 1.e-6. Available values: any real positive (non null) value\n"; 179 aResult += aScope + "Tolerance3d :\t " + HealingParameters.Tolerance3d + "\n"; 180 aResult += "!\n"; VS 57 HealingParameters.MaxTolerance3d = theResource->RealVal("max.tolerance3d", HealingParameters.MaxTolerance3d, aScope); max.tolerance3d != Tolerance3d Separator is not necessary, please remove the next lines (I start them from !!!!!: 165 TCollection_AsciiString DE_ShapeFixConfigurationNode::Save() const 166 { 167 TCollection_AsciiString aResult; !!!!!!!!!! 168 aResult += "!*****************************************************************************\n"; !!!!!!!!!! 169 aResult = aResult + "!Configuration Node " + " Vendor: " + GetVendor() + " Format: " + GetFormat() + "\n"; 170 TCollection_AsciiString aScope = THE_CONFIGURATION_SCOPE() + "." + GetFormat() + "." + GetVendor() + ".healing"; Needs to inherit from "unsigned char" 22 //! Enum, classifying a type of value for parameters 23 enum class FixValue : char 24 { Looks like string not need anymore 15 #define _DE_ShapeFixParameters_HeaderFile 16 17 #include <TCollection_AsciiString.hxx> 18 19 //! Struct for shape healing parameters storage Recommended to use single style of commenting (especially not overuse articles in the development comments) Comments should be consistent 25 FixOrNot = -1, //!< procedure will be called or not called, depending on the situation 26 NotFix = 0, //!< the procedure is not executed 27 Fix = 1 //!< the procedure is executed anyway Order of includes is not correct // Header 17 #include <DE_ConfigurationNode.hxx> 18 #include <TColStd_ListOfAsciiString.hxx> 19 #include <DE_ShapeFixParameters.hxx> // Source 16 #include <DE_PluginHolder.hxx> 17 #include <DE_Wrapper.hxx> 18 #include <DE_ConfigurationContext.hxx> |
|
Branch CR33788 has been updated forcibly by ichesnokova. SHA-1: 10d3a2a7c33b0581fe0c253714c1629e5b083f08 |
|
Branch CR33788 has been updated forcibly by ichesnokova. SHA-1: 4f3f1809f9a12c59795c2e131d568f3968e1fc09 |
|
Remarks were fixed. @dpasukhi, please review branch. |
|
Dear There are a few short remarks: Please update you git message to avoid format specific data. Please update commit message accordingly your changes. I feel that name is not matched with the goal of enum. I recommend to rename into FixMode or any other, I'm welcome to discussion. To rename enum it will be enough to click RMB(ПКМ) and choose rename and it will rename anything related with this enum name. 20 //! Enum, classifying a type of value for parameters 21 enum class FixValue : char |
|
Branch CR33788 has been updated forcibly by ichesnokova. SHA-1: 43615194ad2f27c3168deb049c29ed7642c1a4b0 |
|
Dear bugmaster, please integrate OCCT: CR33788 PROD: - |
Date Modified | Username | Field | Change |
---|---|---|---|
2024-08-05 09:54 |
|
New Issue | |
2024-08-05 09:54 |
|
Assigned To | => ichesnokova |
2024-08-05 10:20 | git | Note Added: 0116363 | |
2024-08-05 10:46 |
|
Assigned To | ichesnokova => dpasukhi |
2024-08-05 10:46 |
|
Status | new => resolved |
2024-08-05 10:46 |
|
Note Added: 0116365 | |
2024-08-06 12:34 | dpasukhi | Assigned To | dpasukhi => ichesnokova |
2024-08-06 12:34 | dpasukhi | Status | resolved => assigned |
2024-08-06 12:34 | dpasukhi | Note Added: 0116376 | |
2024-08-06 12:36 | dpasukhi | Note Edited: 0116376 | |
2024-08-06 12:37 | dpasukhi | Note Edited: 0116376 | |
2024-08-06 12:37 | dpasukhi | Project | Internal => Open CASCADE |
2024-08-07 12:48 | git | Note Added: 0116404 | |
2024-08-07 12:59 |
|
Assigned To | ichesnokova => dpasukhi |
2024-08-07 12:59 |
|
Status | assigned => resolved |
2024-08-07 12:59 |
|
Note Added: 0116405 | |
2024-08-07 15:16 | dpasukhi | Note Added: 0116406 | |
2024-08-07 15:16 | dpasukhi | Assigned To | dpasukhi => ichesnokova |
2024-08-07 15:16 | dpasukhi | Status | resolved => assigned |
2024-08-08 12:52 | git | Note Added: 0116419 | |
2024-08-08 12:56 | git | Note Added: 0116420 | |
2024-08-08 12:58 |
|
Assigned To | ichesnokova => dpasukhi |
2024-08-08 12:58 |
|
Status | assigned => resolved |
2024-08-08 12:58 |
|
Note Added: 0116421 | |
2024-08-08 16:51 | git | Note Added: 0116427 | |
2024-08-08 21:01 | dpasukhi | Assigned To | dpasukhi => ichesnokova |
2024-08-08 21:01 | dpasukhi | Status | resolved => assigned |
2024-08-08 21:01 | dpasukhi | Note Added: 0116446 | |
2024-08-09 10:29 | git | Note Added: 0116465 | |
2024-08-09 10:31 | git | Note Added: 0116466 | |
2024-08-09 10:33 |
|
Assigned To | ichesnokova => dpasukhi |
2024-08-09 10:33 |
|
Status | assigned => resolved |
2024-08-09 10:33 |
|
Note Added: 0116467 | |
2024-08-09 11:28 | dpasukhi | Note Added: 0116468 | |
2024-08-09 11:29 | dpasukhi | Assigned To | dpasukhi => ichesnokova |
2024-08-09 11:29 | dpasukhi | Status | resolved => assigned |
2024-08-09 11:29 | dpasukhi | Note Edited: 0116468 | |
2024-08-09 11:46 | git | Note Added: 0116469 | |
2024-08-09 12:19 |
|
Assigned To | ichesnokova => dpasukhi |
2024-08-09 12:19 |
|
Status | assigned => resolved |
2024-08-09 12:20 | dpasukhi | Assigned To | dpasukhi => bugmaster |
2024-08-09 12:20 | dpasukhi | Status | resolved => reviewed |
2024-08-09 12:20 | dpasukhi | Note Added: 0116473 | |
2024-08-10 13:53 | dpasukhi | Status | reviewed => verified |
2024-08-10 13:53 | dpasukhi | Resolution | open => fixed |
2024-08-10 13:53 | dpasukhi | Fixed in Version | => 7.9.0 |
2024-08-10 13:53 | dpasukhi | Test case number | => none |