2015-10-02 05:56:47 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-06 19:36:56 +00:00
|
|
|
let lists = require('./lists');
|
|
|
|
let objects = require('./objects');
|
2015-10-08 00:08:19 +00:00
|
|
|
let results = require('./results');
|
2015-10-06 19:36:56 +00:00
|
|
|
let rpc = require('./rpc');
|
|
|
|
let types = require('./types');
|
2015-10-08 08:52:37 +00:00
|
|
|
let util = require('./util');
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-08 08:52:37 +00:00
|
|
|
let realmKey = util.realmKey;
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
// TODO: DATA
|
|
|
|
rpc.registerTypeConverter(types.DATE, (_, info) => new Date(info.value));
|
|
|
|
rpc.registerTypeConverter(types.LIST, lists.create);
|
|
|
|
rpc.registerTypeConverter(types.OBJECT, objects.create);
|
2015-10-08 17:22:52 +00:00
|
|
|
rpc.registerTypeConverter('ObjectTypesRESULTS', results.create);
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
class Realm {
|
|
|
|
constructor(config) {
|
|
|
|
let schema = typeof config == 'object' && config.schema;
|
|
|
|
let constructors = {};
|
|
|
|
|
|
|
|
for (let i = 0, len = schema ? schema.length : 0; i < len; i++) {
|
|
|
|
let item = schema[i];
|
|
|
|
let proto = item.prototype;
|
|
|
|
|
2015-10-06 19:36:56 +00:00
|
|
|
if (proto && proto.schema) {
|
2015-10-02 05:56:47 +00:00
|
|
|
schema.splice(i, 1, proto.schema);
|
|
|
|
constructors[proto.schema.name] = item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let realmId = this[realmKey] = rpc.createRealm(config);
|
|
|
|
|
2015-10-06 07:52:15 +00:00
|
|
|
objects.registerConstructors(realmId, constructors);
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
addNotification(callback) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
write(callback) {
|
2015-10-08 22:32:14 +00:00
|
|
|
let realmId = this[realmKey];
|
|
|
|
|
|
|
|
if (!realmId) {
|
|
|
|
throw new TypeError('write method was not called on a Realm object!');
|
|
|
|
}
|
|
|
|
if (typeof callback != 'function') {
|
2015-10-02 05:56:47 +00:00
|
|
|
throw new TypeError('Realm.write() must be passed a function!');
|
2015-10-08 22:32:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rpc.beginTransaction(realmId);
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
try {
|
|
|
|
callback();
|
|
|
|
} catch (e) {
|
2015-10-08 22:32:14 +00:00
|
|
|
rpc.cancelTransaction(realmId);
|
2015-10-02 05:56:47 +00:00
|
|
|
throw e;
|
|
|
|
}
|
2015-10-08 22:32:14 +00:00
|
|
|
|
|
|
|
rpc.commitTransaction(realmId);
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-08 16:43:38 +00:00
|
|
|
[
|
|
|
|
'create',
|
|
|
|
'delete',
|
|
|
|
'deleteAll',
|
2015-10-08 17:04:50 +00:00
|
|
|
'objects',
|
2015-10-08 16:43:38 +00:00
|
|
|
].forEach(function(name) {
|
|
|
|
Object.defineProperty(Realm.prototype, name, {
|
|
|
|
value: function() {
|
|
|
|
let realmId = this[realmKey];
|
|
|
|
|
|
|
|
if (!realmId) {
|
|
|
|
throw new TypeError(name + ' method was not called on a Realm object!');
|
|
|
|
}
|
|
|
|
|
|
|
|
return rpc.callRealmMethod(realmId, name, Array.from(arguments));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
Object.defineProperty(Realm, 'Types', {value: types});
|
|
|
|
|
|
|
|
module.exports = Realm;
|