2018-03-23 09:18:56 +01:00
|
|
|
/**
|
|
|
|
* 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");
|
|
|
|
|
2018-05-24 14:42:40 +02:00
|
|
|
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-05-24 14:42:40 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-06-26 04:36:37 +02:00
|
|
|
Memory.prototype.set =function(scope, key, value, callback) {
|
2018-05-24 14:42:40 +02:00
|
|
|
if(!this.data[scope]){
|
|
|
|
this.data[scope] = {};
|
2018-03-23 09:18:56 +01:00
|
|
|
}
|
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-05-24 14:42:40 +02:00
|
|
|
};
|
|
|
|
|
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);
|
2018-05-24 14:42:40 +02:00
|
|
|
} else {
|
2018-06-26 04:36:37 +02:00
|
|
|
return values;
|
2018-05-24 14:42:40 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Memory.prototype.delete = function(scope){
|
|
|
|
delete this.data[scope];
|
2018-05-30 08:23:34 +02:00
|
|
|
return Promise.resolve();
|
2018-05-24 14:42:40 +02:00
|
|
|
};
|
|
|
|
|
2018-05-30 08:23:34 +02:00
|
|
|
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){
|
2018-05-30 08:23:34 +02:00
|
|
|
delete this.data[id];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2018-07-03 12:29:45 +02:00
|
|
|
Memory.prototype._export = function() {
|
|
|
|
return this.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-24 14:42:40 +02:00
|
|
|
module.exports = function(config){
|
|
|
|
return new Memory(config);
|
2018-07-02 16:21:13 +02:00
|
|
|
};
|