loopback-datasource-juggler/lib/adapters/riak.js

127 lines
3.4 KiB
JavaScript
Raw Normal View History

2011-10-01 15:51:51 +00:00
/**
* Module dependencies
*/
2011-10-08 17:11:26 +00:00
var riak= require('riak-js');
2011-10-01 15:51:51 +00:00
exports.initialize = function initializeSchema(schema, callback) {
2011-10-08 17:11:26 +00:00
var config = {
host = schema.settings.host || '127.0.0.1',
port = schema.settings.port || 8098
};
2011-10-01 15:51:51 +00:00
2011-10-08 17:11:26 +00:00
schema.client = riak_lib.getClient(config);
2011-10-01 15:51:51 +00:00
schema.adapter = new BridgeToRedis(schema.client);
};
function BridgeToRedis(client) {
this._models = {};
this.client = client;
}
BridgeToRedis.prototype.define = function (descr) {
2011-10-08 17:11:26 +00:00
this._models[descr.model.modelName] = descr;
2011-10-01 15:51:51 +00:00
};
BridgeToRedis.prototype.save = function (model, data, callback) {
2011-10-08 17:11:26 +00:00
this.client.hmset(model + ':' + data.id, data, callback);
2011-10-01 15:51:51 +00:00
};
BridgeToRedis.prototype.create = function (model, data, callback) {
2011-10-08 17:11:26 +00:00
this.client.incr(model + ':id', function (err, id) {
2011-10-01 15:51:51 +00:00
data.id = id;
this.save(model, data, function (err) {
if (callback) {
callback(err, id);
}
});
}.bind(this));
};
BridgeToRedis.prototype.exists = function (model, id, callback) {
this.client.exists(model + ':' + id, function (err, exists) {
if (callback) {
callback(err, exists);
}
});
};
BridgeToRedis.prototype.find = function find(model, id, callback) {
this.client.hgetall(model + ':' + id, function (err, data) {
if (data && data.id) {
data.id = id;
} else {
data = null;
}
callback(err, data);
});
};
BridgeToRedis.prototype.destroy = function destroy(model, id, callback) {
this.client.del(model + ':' + id, function (err) {
callback(err);
});
};
BridgeToRedis.prototype.all = function all(model, filter, callback) {
2011-10-08 17:11:26 +00:00
this.client.keys(model + ':*', function (err, keys) {
2011-10-01 15:51:51 +00:00
if (err) {
return callback(err, []);
}
var query = keys.map(function (key) {
return ['hgetall', key];
});
2011-10-08 17:11:26 +00:00
this.client.multi(query).exec(function (err, replies) {
2011-10-01 15:51:51 +00:00
callback(err, filter ? replies.filter(applyFilter(filter)) : replies);
});
2011-10-08 17:11:26 +00:00
}.bind(this));
2011-10-01 15:51:51 +00:00
};
function applyFilter(filter) {
if (typeof filter === 'function') {
return filter;
}
var keys = Object.keys(filter);
return function (obj) {
var pass = true;
keys.forEach(function (key) {
if (!test(filter[key], obj[key])) {
pass = false;
}
});
return pass;
}
function test(example, value) {
if (typeof value === 'string' && example && example.constructor.name === 'RegExp') {
return value.match(example);
}
// not strict equality
return example == value;
}
}
BridgeToRedis.prototype.destroyAll = function destroyAll(model, callback) {
this.client.keys(model + ':*', function (err, keys) {
if (err) {
return callback(err, []);
}
var query = keys.map(function (key) {
return ['del', key];
});
this.client.multi(query).exec(function (err, replies) {
callback(err);
});
}.bind(this));
};
BridgeToRedis.prototype.count = function count(model, callback) {
this.client.keys(model + ':*', function (err, keys) {
callback(err, err ? null : keys.length);
});
};
BridgeToRedis.prototype.updateAttributes = function updateAttrs(model, id, data, cb) {
this.client.hmset(model + ':' + id, data, cb);
};