Salome HOME
Implementation of Open/Save and Break-Link functionality on SHAPER shapes
[modules/shaper_study.git] / src / StudyData / StudyData_Object.cpp
1 // Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "StudyData_Object.h"
24
25 #include <BRep_Builder.hxx>
26 #include <BRepTools.hxx>
27 #include <BRepBuilderAPI_Copy.hxx>
28
29 StudyData_Object::StudyData_Object(const std::string theFile)
30 {
31   std::istringstream streamBrep(theFile.c_str());
32   BRep_Builder aBuilder;
33   BRepTools::Read(myShape, streamBrep, aBuilder);
34   myTick = 1;
35   myStream = theFile;
36 }
37
38 int StudyData_Object::type() const
39 {
40   if (myShape.IsNull())
41     return 8; // GEOM.SHAPE
42   return (int) myShape.ShapeType();
43 }
44
45 std::string StudyData_Object::shapeStream() const
46 {
47   return myStream;
48 }
49
50 std::string StudyData_Object::oldShapeStream() const
51 {
52   return myOldStream.empty() ? myStream : myOldStream;
53 }
54
55 long long StudyData_Object::shape() const
56 {
57   return ((long long)(&myShape));
58 }
59
60 void StudyData_Object::updateShape(const std::string theFile)
61 {
62   if (myStream == theFile) { // absolutely identical shapes, no need to store
63     return;
64   }
65   // update the current shape
66   std::istringstream streamBrep(theFile.c_str());
67   BRep_Builder aBuilder;
68   myOldShape = myShape;
69   BRepTools::Read(myShape, streamBrep, aBuilder);
70   myTick++;
71   myOldStream = myStream;
72   myStream = theFile;
73 }
74
75 int StudyData_Object::getTick() const
76 {
77   return myTick;
78 }
79
80 void StudyData_Object::setTick(const int theValue)
81 {
82   myTick = theValue;
83 }