Version: 9.16.0
AnyOutputPort.cxx
Go to the documentation of this file.
1// Copyright (C) 2006-2026 CEA, EDF
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
28using namespace std;
29using namespace YACS::ENGINE;
30
31AnyOutputPort::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
36AnyOutputPort::AnyOutputPort(const AnyOutputPort& other, Node *newHelder):OutputPort(other,newHelder),
37 DataPort(other,newHelder),
38 Port(other,newHelder),_data(0)
39{
40}
41
43{
44 if(_data)
45 _data->decrRef();
46}
47
50{
52 if(_data)
53 _data->decrRef();
54 _data = data;
55 if(_data)
56 _data->incrRef();
57}
58
60{
61 return new AnyOutputPort(*this,newHelder);
62}
63
64void AnyOutputPort::put(const void *data)
65{
66 put((YACS::ENGINE::Any *)data);
67}
68
70{
71 setValue(data);
72 OutputPort::put(data);
73}
74
76{
79}
YACS::BASES::Mutex _mutex
virtual void put(const void *data)
OutputPort * clone(Node *newHelder) const
virtual void setValue(Any *data)
store the current dispatched value
AnyOutputPort(const std::string &name, Node *node, TypeCode *type)
virtual std::string getAsString()
returns port value as a string that can be used in a GUI for example
: Interface for management of storage of data formated dynamically in its TypeCode....
Definition: Any.hxx:79
TypeCode * edGetType() const
Definition: DataPort.hxx:53
Base class for all nodes.
Definition: Node.hxx:70
virtual void put(const void *data)
Definition: OutputPort.cxx:66
Base class for all ports.
Definition: Port.hxx:43
virtual std::string convertNeutralAsString(TypeCode *type, Any *data)
Convert a YACS::ENGINE::Any object to a string to be used in GUI for example.
Definition: Runtime.cxx:369
Base class for all type objects.
Definition: TypeCode.hxx:68
YACSLIBENGINE_EXPORT Runtime * getRuntime()
Definition: Runtime.cxx:61