-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathremotenode.cpp
117 lines (101 loc) · 3.71 KB
/
remotenode.cpp
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
/*
* MIT License
*
* Copyright (c) 2021 ApiGear
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "remotenode.h"
#include "remoteregistry.h"
#include "iobjectsource.h"
#include "core/protocol.h"
namespace ApiGear { namespace ObjectLink {
RemoteNode::RemoteNode(RemoteRegistry& registry)
: m_registry(registry)
{
}
void RemoteNode::setNodeId(unsigned long id){
m_nodeId = id;
}
std::shared_ptr<RemoteNode> RemoteNode::createRemoteNode(RemoteRegistry& registry)
{
auto node = std::shared_ptr<RemoteNode>(new RemoteNode(registry));
node->setNodeId(registry.registerNode(node));
return node;
}
RemoteNode::~RemoteNode()
{
m_registry.unregisterNode(m_nodeId);
}
void RemoteNode::handleLink(const std::string& objectId)
{
static const std::string handleLinkLog = "handleLink name: ";
emitLog(LogLevel::Info, handleLinkLog, objectId);
auto source = m_registry.getSource(objectId).lock();
if(source) {
m_registry.addNodeForSource(m_nodeId, objectId);
source->olinkLinked(objectId, this);
nlohmann::json props = source->olinkCollectProperties();
emitWrite(Protocol::initMessage(objectId, props));
} else {
static const std::string noLinkToSourceLog = "no source to link: ";
emitLog(LogLevel::Warning, noLinkToSourceLog, objectId);
}
}
void RemoteNode::handleUnlink(const std::string& objectId)
{
auto source = m_registry.getSource(objectId).lock();
if(source) {
source->olinkUnlinked(objectId);
m_registry.removeNodeFromSource(m_nodeId, objectId);
}
}
void RemoteNode::handleSetProperty(const std::string& propertyId, const nlohmann::json& value)
{
auto objectId = ApiGear::ObjectLink::Name::getObjectId(propertyId);
auto source = m_registry.getSource(objectId).lock();
if(source) {
source->olinkSetProperty(propertyId, value);
}
}
void RemoteNode::handleInvoke(unsigned int requestId, const std::string& methodId, const nlohmann::json& args)
{
auto objectId = ApiGear::ObjectLink::Name::getObjectId(methodId);
auto source = m_registry.getSource(objectId).lock();
if(source) {
nlohmann::json value = source->olinkInvoke(methodId, args);
emitWrite(Protocol::invokeReplyMessage(requestId, methodId, value));
}
}
void RemoteNode::notifyPropertyChange(const std::string& propertyId, const nlohmann::json& value)
{
emitWrite(Protocol::propertyChangeMessage(propertyId, value));
}
void RemoteNode::notifySignal(const std::string& signalId, const nlohmann::json& args)
{
emitWrite(Protocol::signalMessage(signalId, args));
}
RemoteRegistry& RemoteNode::registry()
{
return m_registry;
}
unsigned long RemoteNode::getNodeId() const {
return m_nodeId;
}
} } // Apigear::ObjectLink