123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- "use strict";
- module.exports = OneOf;
-
-
- var ReflectionObject = require("./object");
- ((OneOf.prototype = Object.create(ReflectionObject.prototype)).constructor = OneOf).className = "OneOf";
-
- var Field = require("./field"),
- util = require("./util");
-
-
- function OneOf(name, fieldNames, options, comment) {
- if (!Array.isArray(fieldNames)) {
- options = fieldNames;
- fieldNames = undefined;
- }
- ReflectionObject.call(this, name, options);
-
-
- if (!(fieldNames === undefined || Array.isArray(fieldNames)))
- throw TypeError("fieldNames must be an Array");
-
-
-
- this.oneof = fieldNames || [];
-
-
-
- this.fieldsArray = [];
-
-
-
- this.comment = comment;
- }
-
-
-
-
- OneOf.fromJSON = function fromJSON(name, json) {
- return new OneOf(name, json.oneof, json.options, json.comment);
- };
-
-
- OneOf.prototype.toJSON = function toJSON(toJSONOptions) {
- var keepComments = toJSONOptions ? Boolean(toJSONOptions.keepComments) : false;
- return util.toObject([
- "options" , this.options,
- "oneof" , this.oneof,
- "comment" , keepComments ? this.comment : undefined
- ]);
- };
-
-
- function addFieldsToParent(oneof) {
- if (oneof.parent)
- for (var i = 0; i < oneof.fieldsArray.length; ++i)
- if (!oneof.fieldsArray[i].parent)
- oneof.parent.add(oneof.fieldsArray[i]);
- }
-
-
- OneOf.prototype.add = function add(field) {
-
-
- if (!(field instanceof Field))
- throw TypeError("field must be a Field");
-
- if (field.parent && field.parent !== this.parent)
- field.parent.remove(field);
- this.oneof.push(field.name);
- this.fieldsArray.push(field);
- field.partOf = this;
- addFieldsToParent(this);
- return this;
- };
-
-
- OneOf.prototype.remove = function remove(field) {
-
-
- if (!(field instanceof Field))
- throw TypeError("field must be a Field");
-
- var index = this.fieldsArray.indexOf(field);
-
-
- if (index < 0)
- throw Error(field + " is not a member of " + this);
-
- this.fieldsArray.splice(index, 1);
- index = this.oneof.indexOf(field.name);
-
-
- if (index > -1)
- this.oneof.splice(index, 1);
-
- field.partOf = null;
- return this;
- };
-
-
- OneOf.prototype.onAdd = function onAdd(parent) {
- ReflectionObject.prototype.onAdd.call(this, parent);
- var self = this;
-
- for (var i = 0; i < this.oneof.length; ++i) {
- var field = parent.get(this.oneof[i]);
- if (field && !field.partOf) {
- field.partOf = self;
- self.fieldsArray.push(field);
- }
- }
-
- addFieldsToParent(this);
- };
-
-
- OneOf.prototype.onRemove = function onRemove(parent) {
- for (var i = 0, field; i < this.fieldsArray.length; ++i)
- if ((field = this.fieldsArray[i]).parent)
- field.parent.remove(field);
- ReflectionObject.prototype.onRemove.call(this, parent);
- };
-
-
-
-
- OneOf.d = function decorateOneOf() {
- var fieldNames = new Array(arguments.length),
- index = 0;
- while (index < arguments.length)
- fieldNames[index] = arguments[index++];
- return function oneOfDecorator(prototype, oneofName) {
- util.decorateType(prototype.constructor)
- .add(new OneOf(oneofName, fieldNames));
- Object.defineProperty(prototype, oneofName, {
- get: util.oneOfGetter(fieldNames),
- set: util.oneOfSetter(fieldNames)
- });
- };
- };
|