Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / composer / src / src / libraries / model / descriptors / RecordServicePath.js
diff --git a/skyquake/plugins/composer/src/src/libraries/model/descriptors/RecordServicePath.js b/skyquake/plugins/composer/src/src/libraries/model/descriptors/RecordServicePath.js
new file mode 100644 (file)
index 0000000..8c43f10
--- /dev/null
@@ -0,0 +1,98 @@
+/*
+ * 
+ *   Copyright 2016 RIFT.IO 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.
+ *
+ */
+/**
+ * Created by onvelocity on 11/23/15.
+ */
+
+'use strict';
+
+import _ from 'lodash'
+import DescriptorModel from '../DescriptorModel'
+import RspConnectionPointRef from './RspConnectionPointRef'
+import DescriptorModelFactory from '../DescriptorModelFactory'
+import DescriptorModelMetaFactory from '../DescriptorModelMetaFactory'
+
+export default class RecordServicePath extends DescriptorModel {
+
+       static get type() {
+               return 'rsp';
+       }
+
+       static get className() {
+               return 'RecordServicePath';
+       }
+
+       constructor(model, parent) {
+               super(model, parent);
+               this.type = 'rsp';
+               this.uiState['qualified-type'] = 'nsd.vnffgd.rsp';
+               this.className = 'RecordServicePath';
+       }
+
+       get vnfdConnectionPointRef() {
+               if (!this.model['vnfd-connection-point-ref']) {
+                       this.model['vnfd-connection-point-ref'] = [];
+               }
+               return this.model['vnfd-connection-point-ref'].map(d => DescriptorModelFactory.newRspConnectionPointRef(d, this));
+       }
+
+       set vnfdConnectionPointRef(obj) {
+               this.updateModelList('vnfd-connection-point-ref', obj, RspConnectionPointRef);
+       }
+
+       createVnfdConnectionPointRef(connectionPoint) {
+               let ref;
+               if (DescriptorModelFactory.isConnectionPoint(connectionPoint)) {
+                       ref = connectionPoint.toRspConnectionPointRef();
+               } else {
+                       const model = DescriptorModelMetaFactory.createModelInstanceForType('nsd.vnffgd.rsp.vnfd-connection-point-ref');
+                       ref = new RspConnectionPointRef(model, this);
+               }
+               this.vnfdConnectionPointRef = ref;
+               return ref;
+       }
+
+       get connectionPoints() {
+               return this.vnfdConnectionPointRef;
+       }
+       remove() {
+               return this.parent.removeRecordServicePath(this);
+       }
+
+       /**
+        * Remove all connection points refs associate with this vnfd.
+        *
+        * @param vnfdIndex
+        */
+       removeVnfdConnectionPointRefForVnfdIndex(vnfdIndex) {
+               if (typeof vnfdIndex !== 'undefined') {
+                       const len = this.vnfdConnectionPointRef.length;
+                       this.vnfdConnectionPointRef = this.vnfdConnectionPointRef.filter(d => d.vnfdIndex !== vnfdIndex);
+                       return len !== this.vnfdConnectionPointRef.length;
+               }
+       }
+
+       removeRspConnectionPointRef(child) {
+               return this.removeModelListItem('vnfdConnectionPointRef', child);
+       }
+
+       createClassifier() {
+               this.parent.createClassifierForRecordServicePath(this);
+       }
+
+}