2016-10-10 14:17:05 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-01-31 21:56:09 +00:00
|
|
|
let getOwnPropertyDescriptors = Object.getOwnPropertyDescriptors || function(obj) {
|
|
|
|
return Object.getOwnPropertyNames(obj).reduce(function (descriptors, name) {
|
|
|
|
descriptors[name] = Object.getOwnPropertyDescriptor(obj, name);
|
|
|
|
return descriptors;
|
|
|
|
}, {});
|
|
|
|
};
|
|
|
|
|
2017-02-02 01:41:11 +00:00
|
|
|
function setConstructorOnPrototype(klass) {
|
|
|
|
if (klass.prototype.constructor !== klass) {
|
|
|
|
Object.defineProperty(klass.prototype, 'constructor', { value: klass, configurable: true, writable: true });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 14:17:05 +00:00
|
|
|
module.exports = function(realmConstructor) {
|
|
|
|
// Add the specified Array methods to the Collection prototype.
|
|
|
|
Object.defineProperties(realmConstructor.Collection.prototype, require('./collection-methods'));
|
|
|
|
|
2017-02-02 01:41:11 +00:00
|
|
|
setConstructorOnPrototype(realmConstructor.Collection);
|
|
|
|
setConstructorOnPrototype(realmConstructor.List);
|
|
|
|
setConstructorOnPrototype(realmConstructor.Results);
|
|
|
|
setConstructorOnPrototype(realmConstructor.Object);
|
|
|
|
|
2017-05-06 23:26:14 +00:00
|
|
|
//Add async open API
|
|
|
|
Object.defineProperties(realmConstructor, getOwnPropertyDescriptors({
|
|
|
|
open(config) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-05-11 20:22:28 +00:00
|
|
|
realmConstructor._waitForDownload(config, (error) => {
|
2017-05-06 23:26:14 +00:00
|
|
|
if (error) {
|
2017-05-11 22:41:04 +00:00
|
|
|
reject(error);
|
2017-05-06 23:26:14 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 15:25:39 +00:00
|
|
|
try {
|
|
|
|
let syncedRealm = new this(config);
|
|
|
|
//FIXME: RN hangs here. Remove when node's makeCallback alternative is implemented
|
|
|
|
setTimeout(() => { resolve(syncedRealm); }, 1);
|
|
|
|
} catch (e) {
|
|
|
|
reject(e);
|
|
|
|
}
|
2017-05-06 23:26:14 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-05-11 20:54:29 +00:00
|
|
|
openAsync(config, callback) {
|
|
|
|
realmConstructor._waitForDownload(config, (error) => {
|
|
|
|
if (error) {
|
2017-05-11 22:41:04 +00:00
|
|
|
callback(error);
|
2017-05-11 20:54:29 +00:00
|
|
|
}
|
2017-07-17 21:16:25 +00:00
|
|
|
else {
|
|
|
|
try {
|
|
|
|
let syncedRealm = new this(config);
|
|
|
|
//FIXME: RN hangs here. Remove when node's makeCallback alternative is implemented
|
|
|
|
setTimeout(() => { callback(null, syncedRealm); }, 1);
|
|
|
|
} catch (e) {
|
|
|
|
callback(e);
|
|
|
|
}
|
2017-07-11 15:25:39 +00:00
|
|
|
}
|
2017-05-11 20:54:29 +00:00
|
|
|
});
|
|
|
|
},
|
2017-05-06 23:26:14 +00:00
|
|
|
}));
|
|
|
|
|
2016-10-10 14:17:05 +00:00
|
|
|
// Add sync methods
|
|
|
|
if (realmConstructor.Sync) {
|
2017-01-31 21:56:09 +00:00
|
|
|
let userMethods = require('./user-methods');
|
|
|
|
Object.defineProperties(realmConstructor.Sync.User, getOwnPropertyDescriptors(userMethods.static));
|
|
|
|
Object.defineProperties(realmConstructor.Sync.User.prototype, getOwnPropertyDescriptors(userMethods.instance));
|
2017-02-08 12:36:43 +00:00
|
|
|
Object.defineProperty(realmConstructor.Sync.User, '_realmConstructor', { value: realmConstructor });
|
2017-01-31 21:56:09 +00:00
|
|
|
|
2016-10-24 22:12:12 +00:00
|
|
|
realmConstructor.Sync.AuthError = require('./errors').AuthError;
|
2016-10-25 22:04:58 +00:00
|
|
|
|
2017-06-14 10:54:47 +00:00
|
|
|
if (realmConstructor.Sync.removeAllListeners) {
|
|
|
|
process.on('exit', realmConstructor.Sync.removeAllListeners);
|
2016-11-20 18:34:13 +00:00
|
|
|
process.on('SIGINT', function () {
|
2017-06-14 10:54:47 +00:00
|
|
|
realmConstructor.Sync.removeAllListeners();
|
2016-11-20 18:34:13 +00:00
|
|
|
process.exit(2);
|
|
|
|
});
|
|
|
|
process.on('uncaughtException', function(e) {
|
2017-06-14 10:54:47 +00:00
|
|
|
realmConstructor.Sync.removeAllListeners();
|
2016-11-21 23:33:37 +00:00
|
|
|
/* eslint-disable no-console */
|
2016-11-20 18:34:13 +00:00
|
|
|
console.log(e.stack);
|
|
|
|
process.exit(99);
|
|
|
|
});
|
2016-10-25 22:04:58 +00:00
|
|
|
}
|
2017-02-02 01:41:11 +00:00
|
|
|
|
|
|
|
setConstructorOnPrototype(realmConstructor.Sync.User);
|
|
|
|
setConstructorOnPrototype(realmConstructor.Sync.Session);
|
2016-10-10 14:17:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Remove this now useless object.
|
|
|
|
var types = Object.freeze({
|
|
|
|
'BOOL': 'bool',
|
|
|
|
'INT': 'int',
|
|
|
|
'FLOAT': 'float',
|
|
|
|
'DOUBLE': 'double',
|
|
|
|
'STRING': 'string',
|
|
|
|
'DATE': 'date',
|
|
|
|
'DATA': 'data',
|
|
|
|
'OBJECT': 'object',
|
|
|
|
'LIST': 'list',
|
|
|
|
});
|
|
|
|
Object.defineProperty(realmConstructor, 'Types', {
|
|
|
|
get: function() {
|
|
|
|
if (typeof console != 'undefined') {
|
|
|
|
/* global console */
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
var stack = new Error().stack.split("\n").slice(2).join("\n");
|
|
|
|
var msg = '`Realm.Types` is deprecated! Please specify the type name as lowercase string instead!\n'+stack;
|
|
|
|
if (console.warn != undefined) {
|
|
|
|
console.warn(msg);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.log(msg);
|
|
|
|
}
|
|
|
|
/* eslint-enable no-console */
|
|
|
|
}
|
|
|
|
return types;
|
|
|
|
},
|
|
|
|
configurable: true
|
|
|
|
});
|
2017-03-22 12:52:41 +00:00
|
|
|
}
|