-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
268 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* Copyright 2013-2019 Homegear GmbH | ||
* | ||
* Homegear is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Homegear 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Homegear. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* In addition, as a special exception, the copyright holders give | ||
* permission to link the code of portions of this program with the | ||
* OpenSSL library under certain conditions as described in each | ||
* individual source file, and distribute linked combinations | ||
* including the two. | ||
* You must obey the GNU General Public License in all respects | ||
* for all of the code used other than OpenSSL. If you modify | ||
* file(s) with this exception, you may extend this exception to your | ||
* version of the file(s), but you are not obligated to do so. If you | ||
* do not wish to do so, delete this exception statement from your | ||
* version. If you delete this exception statement from all source | ||
* files in the program, then also delete it here. | ||
*/ | ||
|
||
#include "Factory.h" | ||
#include "MyNode.h" | ||
#include "../config.h" | ||
|
||
Flows::INode* MyFactory::createNode(std::string path, std::string nodeNamespace, std::string type, const std::atomic_bool* frontendConnected) | ||
{ | ||
return new MyNode::MyNode(path, nodeNamespace, type, frontendConnected); | ||
} | ||
|
||
Flows::NodeFactory* getFactory() | ||
{ | ||
return (Flows::NodeFactory*) (new MyFactory); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* Copyright 2013-2019 Homegear GmbH | ||
* | ||
* Homegear is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Homegear 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Homegear. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* In addition, as a special exception, the copyright holders give | ||
* permission to link the code of portions of this program with the | ||
* OpenSSL library under certain conditions as described in each | ||
* individual source file, and distribute linked combinations | ||
* including the two. | ||
* You must obey the GNU General Public License in all respects | ||
* for all of the code used other than OpenSSL. If you modify | ||
* file(s) with this exception, you may extend this exception to your | ||
* version of the file(s), but you are not obligated to do so. If you | ||
* do not wish to do so, delete this exception statement from your | ||
* version. If you delete this exception statement from all source | ||
* files in the program, then also delete it here. | ||
*/ | ||
|
||
#ifndef FACTORY_H | ||
#define FACTORY_H | ||
|
||
#include <homegear-node/NodeFactory.h> | ||
#include "MyNode.h" | ||
|
||
class MyFactory : Flows::NodeFactory | ||
{ | ||
public: | ||
virtual Flows::INode* createNode(std::string path, std::string nodeNamespace, std::string type, const std::atomic_bool* frontendConnected); | ||
}; | ||
|
||
extern "C" Flows::NodeFactory* getFactory(); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* Copyright 2013-2019 Homegear GmbH | ||
* | ||
* Homegear is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Homegear 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Homegear. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* In addition, as a special exception, the copyright holders give | ||
* permission to link the code of portions of this program with the | ||
* OpenSSL library under certain conditions as described in each | ||
* individual source file, and distribute linked combinations | ||
* including the two. | ||
* You must obey the GNU General Public License in all respects | ||
* for all of the code used other than OpenSSL. If you modify | ||
* file(s) with this exception, you may extend this exception to your | ||
* version of the file(s), but you are not obligated to do so. If you | ||
* do not wish to do so, delete this exception statement from your | ||
* version. If you delete this exception statement from all source | ||
* files in the program, then also delete it here. | ||
*/ | ||
|
||
#include <homegear-base/Variable.h> | ||
#include "MyNode.h" | ||
|
||
namespace MyNode | ||
{ | ||
|
||
MyNode::MyNode(std::string path, std::string nodeNamespace, std::string type, const std::atomic_bool* frontendConnected) : Flows::INode(path, nodeNamespace, type, frontendConnected) | ||
{ | ||
} | ||
|
||
MyNode::~MyNode() | ||
{ | ||
} | ||
|
||
bool MyNode::init(Flows::PNodeInfo info) | ||
{ | ||
return true; | ||
} | ||
|
||
void MyNode::input(const Flows::PNodeInfo info, uint32_t index, const Flows::PVariable message) | ||
{ | ||
try | ||
{ | ||
Flows::PVariable outputMessage = std::make_shared<Flows::Variable>(Flows::VariableType::tStruct); | ||
Flows::PVariable payload = std::make_shared<Flows::Variable>(); | ||
*payload = *(message->structValue->at("payload")); | ||
outputMessage->structValue->emplace("payload", std::move(payload)); | ||
output(0, outputMessage); | ||
} | ||
catch(const std::exception& ex) | ||
{ | ||
_out->printEx(__FILE__, __LINE__, __PRETTY_FUNCTION__, ex.what()); | ||
} | ||
catch(...) | ||
{ | ||
_out->printEx(__FILE__, __LINE__, __PRETTY_FUNCTION__); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* Copyright 2013-2019 Homegear GmbH | ||
* | ||
* Homegear is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Homegear 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Homegear. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* In addition, as a special exception, the copyright holders give | ||
* permission to link the code of portions of this program with the | ||
* OpenSSL library under certain conditions as described in each | ||
* individual source file, and distribute linked combinations | ||
* including the two. | ||
* You must obey the GNU General Public License in all respects | ||
* for all of the code used other than OpenSSL. If you modify | ||
* file(s) with this exception, you may extend this exception to your | ||
* version of the file(s), but you are not obligated to do so. If you | ||
* do not wish to do so, delete this exception statement from your | ||
* version. If you delete this exception statement from all source | ||
* files in the program, then also delete it here. | ||
*/ | ||
|
||
#ifndef MYNODE_H_ | ||
#define MYNODE_H_ | ||
|
||
#include <homegear-node/INode.h> | ||
|
||
namespace MyNode | ||
{ | ||
|
||
class MyNode: public Flows::INode | ||
{ | ||
public: | ||
MyNode(std::string path, std::string nodeNamespace, std::string type, const std::atomic_bool* frontendConnected); | ||
virtual ~MyNode(); | ||
|
||
virtual bool init(Flows::PNodeInfo info); | ||
private: | ||
virtual void input(const Flows::PNodeInfo info, uint32_t index, const Flows::PVariable message); | ||
}; | ||
|
||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"parsers/strip.hni": { | ||
"strip": { | ||
"label": { | ||
"name": "Name" | ||
}, | ||
"paletteHelp": "<p>Creates a copy of the <code>$message</code> object only keeping the <code>payload</code>.</p>", | ||
"help": "This node creates a copy of the <code>$message</code> object only keeping the <code>payload</code>.", | ||
"input1Description": "Any message object.", | ||
"output1Description": "A copy of the input message object only containing <code>payload</code>." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<script type="text/x-homegear"> | ||
{ | ||
"name": "strip", | ||
"readableName": "Strip", | ||
"version": "0.0.1", | ||
"maxThreadCount": 0 | ||
} | ||
</script> | ||
<script type="text/x-red" data-template-name="strip"> | ||
<div class="form-row"> | ||
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="strip.label.name"></span></label> | ||
<input type="text" id="node-input-name" data-i18n="[placeholder]strip.label.name"> | ||
</div> | ||
</script> | ||
<script type="text/javascript"> | ||
RED.nodes.registerType('strip', { | ||
category: 'parsers', | ||
namespace: 'parsers', | ||
color:"#DEBD5C", | ||
defaults: { | ||
name: {value:""} | ||
}, | ||
inputs:1, | ||
inputInfo: [ | ||
{ | ||
types: ["any"] | ||
} | ||
], | ||
outputs:1, | ||
outputInfo: [ | ||
{ | ||
types: ["any"] | ||
} | ||
], | ||
icon: "join.png", | ||
label: function() { | ||
return this.name||"strip"; | ||
}, | ||
labelStyle: function() { | ||
return this.name?"node_label_italic":""; | ||
} | ||
}); | ||
</script> |