Salome HOME
Revert "Synchronize adm files"
[modules/yacs.git] / src / engine / AnyOutputPort.cxx
1 // Copyright (C) 2006-2014  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 "Any.hxx"
22 #include "Runtime.hxx"
23
24 //#define _DEVDEBUG_
25 #include "YacsTrace.hxx"
26
27 using namespace std;
28 using namespace YACS::ENGINE;
29
30 AnyOutputPort::AnyOutputPort(const std::string& name, Node *node, TypeCode *type):OutputPort(name,node,type),
31                                                                                   DataPort(name,node,type),Port(node),_data(0)
32 {
33 }
34
35 AnyOutputPort::AnyOutputPort(const AnyOutputPort& other, Node *newHelder):OutputPort(other,newHelder),
36                                                                           DataPort(other,newHelder),
37                                                                           Port(other,newHelder),_data(0)
38 {
39 }
40
41 AnyOutputPort::~AnyOutputPort()
42 {
43   if(_data)
44     _data->decrRef();
45 }
46
47 //! store the current dispatched value
48 void AnyOutputPort::setValue(Any *data) 
49 {
50   YACS::BASES::Lock lock(&_mutex);
51   if(_data)
52     _data->decrRef();
53   _data = data; 
54   if(_data)
55     _data->incrRef();
56 }
57
58 OutputPort *AnyOutputPort::clone(Node *newHelder) const
59 {
60   return new AnyOutputPort(*this,newHelder);
61 }
62
63 void AnyOutputPort::put(const void *data) throw(ConversionException)
64 {
65   put((YACS::ENGINE::Any *)data);
66 }
67
68 void AnyOutputPort::put(YACS::ENGINE::Any *data) throw(ConversionException)
69 {
70   setValue(data);
71   OutputPort::put(data);
72 }
73
74 std::string AnyOutputPort::getAsString()
75 {
76   YACS::BASES::Lock lock(&_mutex);
77   return getRuntime()->convertNeutralAsString(edGetType(),_data);
78 }