1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
/*
Copyright (C) 2000 Stefan Westerfeld
stefan@space.twc.de
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef FLOWSYSTEM_H
#define FLOWSYSTEM_H
#include "arts_export.h"
#include "object.h"
#include "common.h"
/*
* BC - Status (2002-03-08): ScheduleNode, FlowSystem, FlowSystem_impl,
* RemoteScheduleNode
*
* Heavy interactions with generated and hand-written code, flowsystem binding
* and whatever. DO KEEP COMPATIBLE. Do not change the underlying IDL MODEL.
* d ptrs available.
*/
namespace Arts {
class Object_skel;
class Object_stub;
class RemoteScheduleNode;
class ScheduleNodePrivate;
class ARTS_EXPORT ScheduleNode
{
private:
Object_base *_nodeObject;
ScheduleNodePrivate *d; // unused
public:
ScheduleNode(Object_base *object);
virtual ~ScheduleNode();
Object nodeObject();
// check if this is a remote schedule node
virtual RemoteScheduleNode *remoteScheduleNode();
// other casts
virtual void *cast(const std::string& target);
// internal interface against Object_skel
typedef bool (*QueryInitStreamFunc)(Object_skel *object,
const std::string& name);
virtual void initStream(const std::string& name, void *ptr, long flags) = 0;
// interface against node implementation
virtual void requireFlow() = 0;
virtual void virtualize(const std::string& port, ScheduleNode *implNode,
const std::string& implPort) = 0;
virtual void devirtualize(const std::string& port, ScheduleNode *implNode,
const std::string& implPort) = 0;
// interface to modify the node from outside
virtual void start() = 0;
virtual void stop() = 0;
virtual void connect(const std::string& port, ScheduleNode *remoteNode,
const std::string& remotePort) = 0;
virtual void disconnect(const std::string& port, ScheduleNode *remoteNode,
const std::string& remotePort) = 0;
// constant values
virtual void setFloatValue(const std::string& port, float value) = 0;
};
class RemoteScheduleNodePrivate;
class ARTS_EXPORT RemoteScheduleNode : public ScheduleNode
{
private:
RemoteScheduleNodePrivate *d; // unused
public:
RemoteScheduleNode(Object_stub *stub);
RemoteScheduleNode *remoteScheduleNode();
// internal interface against Object_skel
void initStream(const std::string& name, void *ptr, long flags);
// interface against node implementation
void requireFlow();
virtual void virtualize(const std::string& port, ScheduleNode *implNode,
const std::string& implPort);
virtual void devirtualize(const std::string& port, ScheduleNode *implNode,
const std::string& implPort);
// interface to modify the node from outside
void start();
void stop();
void connect(const std::string& port, ScheduleNode *remoteNode,
const std::string& remotePort);
void disconnect(const std::string& port, ScheduleNode *remoteNode,
const std::string& remotePort);
// constant values
void setFloatValue(const std::string& port, float value);
};
class FlowSystem_impl_private;
class FlowSystem_impl :virtual public FlowSystem_skel
{
private:
FlowSystem_impl_private *d;
public:
virtual ScheduleNode *addObject(Object_skel *object) = 0;
virtual void removeObject(ScheduleNode *node) = 0;
virtual bool suspendable() = 0;
virtual bool suspended() = 0;
virtual void suspend() = 0;
virtual void restart() = 0;
};
}
#endif
|