2016-02-18 19:59:34 +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.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
2015-10-28 17:37:17 +00:00
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-21 20:25:12 +00:00
|
|
|
const constants = require('./constants');
|
|
|
|
const util = require('./util');
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-21 20:25:12 +00:00
|
|
|
const {keys} = constants;
|
|
|
|
const registeredConstructors = {};
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
module.exports = {
|
|
|
|
create,
|
|
|
|
registerConstructors,
|
|
|
|
};
|
2015-10-02 05:56:47 +00:00
|
|
|
|
|
|
|
function create(realmId, info) {
|
|
|
|
let schema = info.schema;
|
2015-10-06 07:52:15 +00:00
|
|
|
let constructor = (registeredConstructors[realmId] || {})[schema.name];
|
2015-10-02 05:56:47 +00:00
|
|
|
let object = constructor ? Object.create(constructor.prototype) : {};
|
|
|
|
|
2015-10-19 19:06:47 +00:00
|
|
|
object[keys.realm] = realmId;
|
|
|
|
object[keys.id] = info.id;
|
|
|
|
object[keys.type] = info.type;
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-11-03 05:54:05 +00:00
|
|
|
schema.properties.forEach((name) => {
|
2015-11-25 18:48:51 +00:00
|
|
|
Object.defineProperty(object, name, {
|
|
|
|
enumerable: true,
|
2015-10-19 22:26:42 +00:00
|
|
|
get: util.getterForProperty(name),
|
|
|
|
set: util.setterForProperty(name),
|
2015-11-25 18:48:51 +00:00
|
|
|
});
|
2015-11-06 00:10:52 +00:00
|
|
|
});
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2016-02-18 19:09:51 +00:00
|
|
|
if (constructor) {
|
|
|
|
let result = constructor.call(object);
|
|
|
|
if (result != null && result != object) {
|
|
|
|
throw new Error('Realm object constructor must not return another value');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2015-10-06 07:52:15 +00:00
|
|
|
function registerConstructors(realmId, constructors) {
|
|
|
|
registeredConstructors[realmId] = constructors;
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|