blob: 9fafe7283a36379271078a9284f9b1093a9f6f1a [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to you 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.
*/
var App = require('app');
App.FlumeService = App.Service.extend({
version: DS.attr('string'),
nodes: DS.hasMany('App.FlumeNode'),
channelsCount: function () {
var nodes = this.get('nodes');
var count = 0;
nodes.forEach(function (node) {
count += node.get('channelsCount');
});
return count;
}.property('nodes.@each.channelsCount'),
sourcesCount: function () {
var nodes = this.get('nodes');
var count = 0;
nodes.forEach(function (node) {
count += node.get('sourcesCount');
});
return count;
}.property('nodes.@each.sourcesCount'),
sinksCount: function () {
var nodes = this.get('nodes');
var count = 0;
nodes.forEach(function (node) {
count += node.get('sinksCount');
});
return count;
}.property('nodes.@each.sinksCount')
});
App.FlumeNode = DS.Model.extend({
host: DS.belongsTo('App.Host'),
/**
* A comma separated list of channels.
*/
channels: DS.attr('string'),
/**
* A comma separated list of sources.
*/
sources: DS.attr('string'),
/**
* A comma separated list of sinks.
*/
sinks: DS.attr('string'),
channelsCount: function () {
var channels = this.get('channels');
if (!channels) {
return 0;
} else {
return channels.split(',').length;
}
}.property('channels'),
sourcesCount: function () {
var sources = this.get('sources');
if (!sources) {
return 0;
} else {
return sources.split(',').length;
}
}.property('sources'),
sinksCount: function () {
var sinks = this.get('sinks');
if (!sinks) {
return 0;
} else {
return sinks.split(',').length;
}
}.property('sinks')
});
App.FlumeService.FIXTURES = [];
App.FlumeNode.FIXTURES = [];