Salome HOME
642718ece14c854abfa87af3a6718ab709de10c6
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.cpp
1 /*
2  * ModuleBase_Operation.cpp
3  *
4  *  Created on: Apr 2, 2014
5  *      Author: sbh
6  */
7
8 #include "ModuleBase_Operation.h"
9
10 #include "ModuleBase_OperationDescription.h"
11 #include "ModuleBase_ModelWidget.h"
12
13 #include <ModelAPI_AttributeDouble.h>
14 #include <ModelAPI_Document.h>
15 #include <ModelAPI_Feature.h>
16 #include <ModelAPI_Data.h>
17 #include <ModelAPI_Document.h>
18 #include <Model_Events.h>
19
20 #include <Events_Loop.h>
21
22 #ifdef _DEBUG
23 #include <QDebug>
24 #endif
25
26 ModuleBase_Operation::ModuleBase_Operation(const QString& theId, QObject* theParent)
27 : ModuleBase_IOperation(theId, theParent)
28 {
29 }
30
31 ModuleBase_Operation::~ModuleBase_Operation()
32 {
33 }
34
35 boost::shared_ptr<ModelAPI_Feature> ModuleBase_Operation::feature() const
36 {
37   return myFeature;
38 }
39
40 void ModuleBase_Operation::storeReal(double theValue)
41 {
42   if(!myFeature){
43     #ifdef _DEBUG
44     qDebug() << "ModuleBase_Operation::storeReal: " <<
45         "trying to store value without opening a transaction.";
46     #endif
47     return;
48   }
49   QString anId = sender()->objectName();
50   boost::shared_ptr<ModelAPI_Data> aData = myFeature->data();
51   boost::shared_ptr<ModelAPI_AttributeDouble> aReal = aData->real(anId.toStdString());
52   aReal->setValue(theValue);
53 }
54
55 void ModuleBase_Operation::storeCustomValue()
56 {
57   if(!myFeature){
58     #ifdef _DEBUG
59     qDebug() << "ModuleBase_Operation::storeCustom: " <<
60         "trying to store value without opening a transaction.";
61     #endif
62     return;
63   }
64
65   ModuleBase_ModelWidget* aCustom = dynamic_cast<ModuleBase_ModelWidget*>(sender());
66   if (aCustom)
67     aCustom->storeValue(myFeature);
68 }
69
70 void ModuleBase_Operation::startOperation()
71 {
72   setFeature(createFeature());
73   //emit callSlot();
74   //commit();
75 }
76
77 void ModuleBase_Operation::stopOperation()
78 {
79 }
80
81 void ModuleBase_Operation::abortOperation()
82 {
83 }
84
85 void ModuleBase_Operation::commitOperation()
86 {
87   if (myFeature) myFeature->execute();
88 }
89
90 boost::shared_ptr<ModelAPI_Feature> ModuleBase_Operation::createFeature(const bool theFlushMessage)
91 {
92   boost::shared_ptr<ModelAPI_Document> aDoc = document();
93   boost::shared_ptr<ModelAPI_Feature> aFeature = aDoc->addFeature(
94                                            getDescription()->operationId().toStdString());
95   if (aFeature) // TODO: generate an error if feature was not created
96     aFeature->execute();
97
98   if (theFlushMessage)
99     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_FEATURE_CREATED));
100   return aFeature;
101 }
102
103 void ModuleBase_Operation::setFeature(boost::shared_ptr<ModelAPI_Feature> theFeature)
104 {
105   myFeature = theFeature;
106 }