2015-10-28 17:37:17 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-21 20:25:12 +00:00
|
|
|
const constants = require('./constants');
|
|
|
|
const lists = require('./lists');
|
|
|
|
const objects = require('./objects');
|
|
|
|
const results = require('./results');
|
|
|
|
const rpc = require('./rpc');
|
|
|
|
const util = require('./util');
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-21 20:25:12 +00:00
|
|
|
const {keys, propTypes, objectTypes} = constants;
|
2015-10-27 14:48:11 +00:00
|
|
|
const listenersKey = Symbol();
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
// TODO: DATA
|
2015-10-19 23:19:43 +00:00
|
|
|
rpc.registerTypeConverter(propTypes.DATE, (_, info) => new Date(info.value));
|
|
|
|
rpc.registerTypeConverter(propTypes.LIST, lists.create);
|
|
|
|
rpc.registerTypeConverter(propTypes.OBJECT, objects.create);
|
|
|
|
rpc.registerTypeConverter(objectTypes.RESULTS, results.create);
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
class Realm {
|
|
|
|
constructor(config) {
|
|
|
|
let schema = typeof config == 'object' && config.schema;
|
|
|
|
let constructors = {};
|
2015-10-15 01:00:21 +00:00
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2015-10-15 01:00:21 +00:00
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
let realmId = rpc.createRealm(Array.from(arguments));
|
2015-10-15 01:00:21 +00:00
|
|
|
|
2015-10-06 07:52:15 +00:00
|
|
|
objects.registerConstructors(realmId, constructors);
|
2015-10-15 01:00:21 +00:00
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
this[keys.id] = realmId;
|
|
|
|
this[keys.realm] = realmId;
|
2015-10-19 23:19:43 +00:00
|
|
|
this[keys.type] = objectTypes.REALM;
|
2015-10-27 14:48:11 +00:00
|
|
|
this[listenersKey] = [];
|
2015-10-19 22:46:28 +00:00
|
|
|
|
|
|
|
[
|
|
|
|
'path',
|
|
|
|
'schemaVersion',
|
|
|
|
].forEach((name) => {
|
|
|
|
Object.defineProperty(this, name, {get: util.getterForProperty(name)});
|
|
|
|
});
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|
|
|
|
|
2015-10-27 02:18:24 +00:00
|
|
|
addListener(name, callback) {
|
2015-10-15 01:00:21 +00:00
|
|
|
if (typeof callback != 'function') {
|
2015-10-26 23:49:46 +00:00
|
|
|
throw new Error('Realm.addListener must be passed a function!');
|
2015-10-15 01:00:21 +00:00
|
|
|
}
|
2015-10-27 02:18:24 +00:00
|
|
|
if (name != 'change') {
|
|
|
|
throw new Error("Only 'change' notification is supported.");
|
|
|
|
}
|
2015-10-27 14:48:11 +00:00
|
|
|
this[listenersKey].push(callback);
|
2015-10-26 23:49:46 +00:00
|
|
|
}
|
2015-10-15 01:00:21 +00:00
|
|
|
|
2015-10-27 02:18:24 +00:00
|
|
|
removeListener(name, callback) {
|
2015-10-26 23:49:46 +00:00
|
|
|
if (typeof callback != 'function') {
|
|
|
|
throw new Error('Realm.addListener must be passed a function!');
|
|
|
|
}
|
2015-10-27 02:18:24 +00:00
|
|
|
if (name != 'change') {
|
|
|
|
throw new Error("Only 'change' notification is supported.");
|
|
|
|
}
|
2015-10-28 17:21:32 +00:00
|
|
|
|
|
|
|
let index = 0;
|
|
|
|
while ((index = this[listenersKey].indexOf(callback, index)) != -1) {
|
2015-10-27 14:48:11 +00:00
|
|
|
this[listenersKey].splice(index, 1);
|
2015-10-28 17:21:32 +00:00
|
|
|
}
|
2015-10-26 23:49:46 +00:00
|
|
|
}
|
2015-10-15 01:00:21 +00:00
|
|
|
|
2015-10-27 02:18:24 +00:00
|
|
|
removeAllListeners(name) {
|
|
|
|
if (name != undefined && name != 'change') {
|
|
|
|
throw new Error("Only 'change' notification is supported.");
|
|
|
|
}
|
2015-10-27 14:48:11 +00:00
|
|
|
this[listenersKey] = [];
|
2015-10-20 00:28:20 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
write(callback) {
|
2015-10-19 19:06:47 +00:00
|
|
|
let realmId = this[keys.realm];
|
2015-10-08 22:32:14 +00:00
|
|
|
|
|
|
|
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-28 17:21:32 +00:00
|
|
|
util.fireMutationListeners(realmId);
|
2015-10-02 05:56:47 +00:00
|
|
|
throw e;
|
|
|
|
}
|
2015-10-08 22:32:14 +00:00
|
|
|
|
|
|
|
rpc.commitTransaction(realmId);
|
2015-10-15 01:00:21 +00:00
|
|
|
|
2015-10-27 14:48:11 +00:00
|
|
|
for (let callback of this[listenersKey]) {
|
2015-10-26 23:49:46 +00:00
|
|
|
callback(this, 'change');
|
2015-10-15 01:00:21 +00:00
|
|
|
}
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-28 17:21:32 +00:00
|
|
|
// Non-mutating methods:
|
2015-10-19 23:19:43 +00:00
|
|
|
util.createMethods(Realm.prototype, objectTypes.REALM, [
|
2015-10-14 23:06:20 +00:00
|
|
|
'close',
|
2015-10-28 17:21:32 +00:00
|
|
|
'objects',
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Mutating methods:
|
|
|
|
util.createMethods(Realm.prototype, objectTypes.REALM, [
|
2015-10-08 16:43:38 +00:00
|
|
|
'create',
|
|
|
|
'delete',
|
|
|
|
'deleteAll',
|
2015-10-28 17:21:32 +00:00
|
|
|
], true);
|
2015-10-08 16:43:38 +00:00
|
|
|
|
2015-10-19 23:59:04 +00:00
|
|
|
Object.defineProperties(Realm, {
|
|
|
|
Types: {
|
|
|
|
value: Object.freeze(propTypes),
|
|
|
|
},
|
|
|
|
defaultPath: {
|
2015-10-20 22:10:22 +00:00
|
|
|
get: util.getterForProperty('defaultPath'),
|
|
|
|
set: util.setterForProperty('defaultPath'),
|
2015-10-19 23:59:04 +00:00
|
|
|
},
|
|
|
|
clearTestState: {
|
|
|
|
value: rpc.clearTestState,
|
|
|
|
},
|
2015-10-15 10:12:28 +00:00
|
|
|
});
|
|
|
|
|
2015-10-20 22:10:22 +00:00
|
|
|
// The session ID refers to the Realm constructor object in the RPC server.
|
|
|
|
Realm[keys.id] = rpc.createSession();
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
module.exports = Realm;
|