mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add callback handling to memory plugin
This commit is contained in:
parent
f2fa26fb07
commit
cce7ac09d0
@ -28,31 +28,68 @@ Memory.prototype.close = function(){
|
||||
return Promise.resolve();
|
||||
};
|
||||
|
||||
Memory.prototype.get = function(scope, key) {
|
||||
if(!this.data[scope]){
|
||||
return undefined;
|
||||
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;
|
||||
}
|
||||
return util.getMessageProperty(this.data[scope],key);
|
||||
};
|
||||
|
||||
Memory.prototype.set =function(scope, key, value) {
|
||||
Memory.prototype.set =function(scope, key, value, callback) {
|
||||
if(!this.data[scope]){
|
||||
this.data[scope] = {};
|
||||
}
|
||||
try{
|
||||
util.setMessageProperty(this.data[scope],key,value);
|
||||
}catch(err){
|
||||
if(callback){
|
||||
callback(err);
|
||||
}else{
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
if(callback){
|
||||
callback(null);
|
||||
}
|
||||
};
|
||||
|
||||
Memory.prototype.keys = function(scope){
|
||||
if(!this.data[scope]){
|
||||
return [];
|
||||
}
|
||||
Memory.prototype.keys = function(scope, callback){
|
||||
var values = [];
|
||||
try{
|
||||
if(this.data[scope]){
|
||||
if (scope !== "global") {
|
||||
return Object.keys(this.data[scope]);
|
||||
values = Object.keys(this.data[scope]);
|
||||
} else {
|
||||
return Object.keys(this.data[scope]).filter(function (key) {
|
||||
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;
|
||||
}
|
||||
}
|
||||
if(callback){
|
||||
callback(null, values);
|
||||
} else {
|
||||
return values;
|
||||
}
|
||||
};
|
||||
|
||||
Memory.prototype.delete = function(scope){
|
||||
|
Loading…
Reference in New Issue
Block a user