node-red/red/runtime/nodes/context/memory.js

115 lines
2.7 KiB
JavaScript
Raw Normal View History

/**
* Copyright JS Foundation and other contributors, http://js.foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
var util = require("../../util");
function Memory(config){
this.data = {};
}
2018-05-30 03:24:27 +02:00
Memory.prototype.open = function(){
2018-06-20 12:50:55 +02:00
return Promise.resolve();
2018-05-30 03:24:27 +02:00
};
Memory.prototype.close = function(){
2018-06-20 12:50:55 +02:00
return Promise.resolve();
2018-05-30 03:24:27 +02:00
};
2018-06-26 04:36:37 +02:00
Memory.prototype.get = function(scope, key, callback) {
var value;
try{
if(this.data[scope]){
value = util.getMessageProperty(this.data[scope], key);
}
}catch(err){
if(callback){
callback(err);
}else{
throw err;
}
}
if(callback){
callback(null, value);
} else {
return value;
}
};
2018-06-26 04:36:37 +02:00
Memory.prototype.set =function(scope, key, value, callback) {
if(!this.data[scope]){
this.data[scope] = {};
}
2018-06-26 04:36:37 +02:00
try{
util.setMessageProperty(this.data[scope],key,value);
}catch(err){
if(callback){
callback(err);
}else{
throw err;
}
}
if(callback){
callback(null);
}
};
2018-06-26 04:36:37 +02:00
Memory.prototype.keys = function(scope, callback){
var values = [];
try{
if(this.data[scope]){
if (scope !== "global") {
values = Object.keys(this.data[scope]);
} else {
values = Object.keys(this.data[scope]).filter(function (key) {
return key !== "set" && key !== "get" && key !== "keys";
});
}
}
}catch(err){
if(callback){
callback(err);
}else{
throw err;
}
2018-06-20 12:50:55 +02:00
}
2018-06-26 04:36:37 +02:00
if(callback){
callback(null, values);
} else {
2018-06-26 04:36:37 +02:00
return values;
}
};
Memory.prototype.delete = function(scope){
delete this.data[scope];
return Promise.resolve();
};
Memory.prototype.clean = function(activeNodes){
for(var id in this.data){
if(this.data.hasOwnProperty(id) && id !== "global"){
var idParts = id.split(":");
2018-06-06 11:46:32 +02:00
if(activeNodes.indexOf(idParts[0]) === -1){
delete this.data[id];
}
}
}
return Promise.resolve();
}
module.exports = function(config){
return new Memory(config);
};