Salome HOME
Avoid installing redundant files
[modules/yacs.git] / src / engine / AnyOutputPort.cxx
1 // Copyright (C) 2006-2021  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "AnyOutputPort.hxx"
21 #include "AutoLocker.hxx"
22 #include "Runtime.hxx"
23 #include "Any.hxx"
24
25 //#define _DEVDEBUG_
26 #include "YacsTrace.hxx"
27
28 using namespace std;
29 using namespace YACS::ENGINE;
30
31 AnyOutputPort::AnyOutputPort(const std::string& name, Node *node, TypeCode *type):OutputPort(name,node,type),
32                                                                                   DataPort(name,node,type),Port(node),_data(0)
33 {
34 }
35
36 AnyOutputPort::AnyOutputPort(const AnyOutputPort& other, Node *newHelder):OutputPort(other,newHelder),
37                                                                           DataPort(other,newHelder),
38                                                                           Port(other,newHelder),_data(0)
39 {
40 }
41
42 AnyOutputPort::~AnyOutputPort()
43 {
44   if(_data)
45     _data->decrRef();
46 }
47
48 //! store the current dispatched value
49 void AnyOutputPort::setValue(Any *data) 
50 {
51   YACS::BASES::AutoLocker<YACS::BASES::Mutex> lock(&_mutex);
52   if(_data)
53     _data->decrRef();
54   _data = data; 
55   if(_data)
56     _data->incrRef();
57 }
58
59 OutputPort *AnyOutputPort::clone(Node *newHelder) const
60 {
61   return new AnyOutputPort(*this,newHelder);
62 }
63
64 void AnyOutputPort::put(const void *data)
65 {
66   put((YACS::ENGINE::Any *)data);
67 }
68
69 void AnyOutputPort::put(YACS::ENGINE::Any *data)
70 {
71   setValue(data);
72   OutputPort::put(data);
73 }
74
75 std::string AnyOutputPort::getAsString()
76 {
77   YACS::BASES::AutoLocker<YACS::BASES::Mutex> lock(&_mutex);
78   return getRuntime()->convertNeutralAsString(edGetType(),_data);
79 }