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) {
|
2017-09-01 15:12:06 +00:00
|
|
|
let syncSession;
|
|
|
|
let promise = new Promise((resolve, reject) => {
|
|
|
|
realmConstructor._waitForDownload(config,
|
|
|
|
(session) => {
|
|
|
|
syncSession = session;
|
|
|
|
},
|
|
|
|
(error) => {
|
|
|
|
if (error) {
|
2017-09-08 16:56:08 +00:00
|
|
|
setTimeout(() => { reject(error); }, 1);
|
2017-07-18 08:28:33 +00:00
|
|
|
}
|
2017-09-01 15:12:06 +00:00
|
|
|
else {
|
|
|
|
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-09-01 15:12:06 +00:00
|
|
|
|
|
|
|
promise.progress = (callback) => {
|
|
|
|
if (syncSession) {
|
|
|
|
syncSession.addProgressNotification('download', 'forCurrentlyOutstandingWork', callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
};
|
|
|
|
|
|
|
|
return promise;
|
2017-05-06 23:26:14 +00:00
|
|
|
},
|
|
|
|
|
2017-09-01 15:12:06 +00:00
|
|
|
openAsync(config, progressCallback, callback) {
|
2017-08-24 18:01:12 +00:00
|
|
|
const message = "Realm.openAsync is now deprecated in favor of Realm.open. This function will be removed in future versions.";
|
|
|
|
(console.warn || console.log).call(console, message);
|
|
|
|
|
2017-09-01 15:12:06 +00:00
|
|
|
if (!callback) {
|
|
|
|
callback = progressCallback;
|
|
|
|
progressCallback = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
realmConstructor._waitForDownload(config,
|
|
|
|
(syncSession) => {
|
|
|
|
if (progressCallback) {
|
|
|
|
syncSession.addProgressNotification('download', 'forCurrentlyOutstandingWork', progressCallback);;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(error) => {
|
2017-05-11 20:54:29 +00:00
|
|
|
if (error) {
|
2017-09-08 16:56:08 +00:00
|
|
|
setTimeout(() => { callback(error); }, 1);
|
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) {
|
2017-08-24 18:01:12 +00:00
|
|
|
setTimeout(() => { callback(e); }, 1);
|
2017-07-17 21:16:25 +00:00
|
|
|
}
|
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);
|
2017-08-14 13:05:52 +00:00
|
|
|
|
|
|
|
if (realmConstructor.Sync._setFeatureToken) {
|
|
|
|
realmConstructor.Sync.setFeatureToken = function(featureToken) {
|
2017-09-01 09:53:52 +00:00
|
|
|
if (typeof featureToken !== 'string' && !(featureToken instanceof String)) {
|
2017-08-14 13:05:52 +00:00
|
|
|
throw new Error("featureToken should be a string");
|
|
|
|
}
|
|
|
|
|
|
|
|
realmConstructor.Sync._setFeatureToken(featureToken.trim());
|
|
|
|
}
|
|
|
|
|
2017-08-15 09:32:26 +00:00
|
|
|
//enable deprecated setAccessToken
|
2017-08-14 13:05:52 +00:00
|
|
|
realmConstructor.Sync.setAccessToken = realmConstructor.Sync.setFeatureToken;
|
|
|
|
}
|
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
|
|
|
}
|