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-30 03:24:27 +02:00
|
|
|
var when = require("when");
|
2018-03-23 09:18:56 +01:00
|
|
|
|
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(){
|
|
|
|
return when.resolve();
|
|
|
|
};
|
|
|
|
|
|
|
|
Memory.prototype.close = function(){
|
|
|
|
return when.resolve();
|
|
|
|
};
|
|
|
|
|
2018-05-24 14:42:40 +02:00
|
|
|
Memory.prototype.get = function(scope, key) {
|
|
|
|
if(!this.data[scope]){
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
return util.getMessageProperty(this.data[scope],key);
|
|
|
|
};
|
|
|
|
|
|
|
|
Memory.prototype.set =function(scope, key, value) {
|
|
|
|
if(!this.data[scope]){
|
|
|
|
this.data[scope] = {};
|
2018-03-23 09:18:56 +01:00
|
|
|
}
|
2018-05-24 14:42:40 +02:00
|
|
|
util.setMessageProperty(this.data[scope],key,value);
|
|
|
|
};
|
|
|
|
|
|
|
|
Memory.prototype.keys = function(scope){
|
|
|
|
if(!this.data[scope]){
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
if (scope !== "global") {
|
|
|
|
return Object.keys(this.data[scope]);
|
|
|
|
} else {
|
|
|
|
return Object.keys(this.data[scope]).filter(function (key) {
|
2018-06-01 04:44:45 +02:00
|
|
|
return key !== "set" && key !== "get" && key !== "keys" && key !== "setAsync" && key !== "getAsync" && key !== "keysAsync";
|
2018-05-24 14:42:40 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-06-01 04:44:45 +02:00
|
|
|
Memory.prototype.getAsync = function(scope, key) {
|
|
|
|
return when.resolve(this.get(scope, key));
|
|
|
|
};
|
|
|
|
|
|
|
|
Memory.prototype.setAsync =function(scope, key, value) {
|
|
|
|
return when.resolve(this.set(scope, key, value));
|
|
|
|
};
|
|
|
|
|
|
|
|
Memory.prototype.keysAsync = function(scope){
|
|
|
|
return when.resolve(this.keys(scope));
|
|
|
|
};
|
|
|
|
|
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(":");
|
|
|
|
if(!activeNodes.includes(idParts[0])){
|
|
|
|
delete this.data[id];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2018-05-24 14:42:40 +02:00
|
|
|
Memory.prototype.setGlobalContext= function(seed){
|
|
|
|
this.data["global"] = seed;
|
2018-03-23 09:18:56 +01:00
|
|
|
};
|
|
|
|
|
2018-05-24 14:42:40 +02:00
|
|
|
module.exports = function(config){
|
|
|
|
return new Memory(config);
|
|
|
|
};
|