123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- /**
- * 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');
- var stringUtils = require('utils/string_utils');
- App.WizardStep4Controller = Em.ArrayController.extend({
- name: 'wizardStep4Controller',
- content: [],
- isSubmitDisabled:function(){
- return this.filterProperty('isSelected', true).filterProperty('isInstalled', false).length === 0;
- }.property("@each.isSelected"),
- /**
- * Check whether all properties are selected
- */
- isAll: function () {
- return this.filterProperty('canBeSelected', true).everyProperty('isSelected', true);
- }.property('@each.isSelected'),
- /**
- * Check whether none properties(minimum) are selected
- */
- isMinimum: function () {
- return this.filterProperty('isDisabled', false).everyProperty('isSelected', false);
- }.property('@each.isSelected'),
- /**
- * Update hidden services. Make them to have the same status as master ones.
- */
- checkDependencies: function () {
- var hbase = this.findProperty('serviceName', 'HBASE');
- var zookeeper = this.findProperty('serviceName', 'ZOOKEEPER');
- var hive = this.findProperty('serviceName', 'HIVE');
- var hcatalog = this.findProperty('serviceName', 'HCATALOG');
- var webhcat = this.findProperty('serviceName', 'WEBHCAT');
- var yarn = this.findProperty('serviceName', 'YARN');
- var mapreduce2 = this.findProperty('serviceName', 'MAPREDUCE2');
- var oozie = this.findProperty('serviceName', 'OOZIE');
- var falcon = this.findProperty('serviceName', 'FALCON');
- // prevent against getting error when not all elements have been loaded yet
- if (hbase && zookeeper && hive && hcatalog && webhcat) {
- if (yarn && mapreduce2) {
- mapreduce2.set('isSelected', yarn.get('isSelected'));
- }
- hcatalog.set('isSelected', hive.get('isSelected'));
- webhcat.set('isSelected', hive.get('isSelected'));
- }
- }.observes('@each.isSelected'),
- /**
- * Onclick handler for <code>select all</code> link
- */
- selectAll: function () {
- this.filterProperty('canBeSelected', true).setEach('isSelected', true);
- },
- /**
- * onclick handler for <code>select minimum</code> link
- */
- selectMinimum: function () {
- this.filterProperty('isDisabled', false).setEach('isSelected', false);
- },
- /**
- * Check whether we should turn on <code>serviceName</code> service according to selected <code>dependentServices</code>
- * @param serviceName checked service
- * @param dependentServices list of dependent services
- * @returns {boolean}
- */
- needAddService: function(serviceName, dependentServices) {
- if (!(dependentServices instanceof Array)) {
- dependentServices = [dependentServices];
- }
- if (this.findProperty('serviceName', serviceName) && this.findProperty('serviceName', serviceName).get('isSelected') === false) {
- var ds = this.filter(function (item) {
- return dependentServices.contains(item.get('serviceName')) && item.get('isSelected');
- });
- return (ds.get('length') > 0);
- }
- return false;
- },
- /**
- * Check whether we should turn on <code>Oozie</code> service
- * @return {Boolean}
- */
- needToAddOozie: function () {
- return this.needAddService('OOZIE', ['FALCON']);
- },
- /**
- * Check whether we should turn on <code>MapReduce</code> service
- * @return {Boolean}
- */
- needToAddMapReduce: function () {
- return this.needAddService('MAPREDUCE', ['PIG', 'OOZIE', 'HIVE']);
- },
- /**
- * Check whether we should turn on <code>MapReduce2</code> service
- * @return {Boolean}
- */
- needToAddYarnMapReduce2: function() {
- return this.needAddService('YARN', ['PIG', 'OOZIE', 'HIVE','TEZ']);
- },
- /**
- * Check whether we should turn on <code>Tez</code> service
- * @return {Boolean}
- */
- needToAddTez: function() {
- return this.needAddService('TEZ', ['YARN']);
- },
- /**
- * Check whether we should turn on <code>ZooKeeper</code> service
- * @return {Boolean}
- */
- needToAddZooKeeper: function() {
- return this.needAddService('ZOOKEEPER', ['HBASE','HIVE','WEBHCAT','STORM']);
- },
- /**
- * Check whether we should turn on <code>ZooKeeper</code> service (on 2.x stack)
- * @returns {Boolean}
- */
- needToAddZooKeeperOnStack2x: function() {
- return this.findProperty('serviceName', 'ZOOKEEPER') && this.findProperty('serviceName', 'ZOOKEEPER').get('isSelected') === false;
- },
- /**
- * Check whether we should turn on <code>HDFS or GLUSTERFS</code> service
- * @return {Boolean}
- */
- noDFSs: function () {
- return (this.findProperty('serviceName', 'HDFS').get('isSelected') === false &&
- (!this.findProperty('serviceName', 'GLUSTERFS') || this.findProperty('serviceName', 'GLUSTERFS').get('isSelected') === false));
- },
- /**
- * Check if multiple distributed file systems were selected
- * @return {Boolean}
- */
- multipleDFSs: function () {
- return (this.findProperty('serviceName', 'HDFS').get('isSelected') === true &&
- (this.findProperty('serviceName', 'GLUSTERFS') && this.findProperty('serviceName', 'GLUSTERFS').get('isSelected') === true));
- },
- /**
- * Check do we have any monitoring service turned on
- * @return {Boolean}
- */
- gangliaOrNagiosNotSelected: function () {
- return (this.findProperty('serviceName', 'GANGLIA').get('isSelected') === false || this.findProperty('serviceName', 'NAGIOS').get('isSelected') === false);
- },
- /**
- * Check whether user turned on monitoring service and go to next step
- */
- validateMonitoring: function () {
- if (this.gangliaOrNagiosNotSelected()) {
- this.monitoringCheckPopup();
- } else {
- App.router.send('next');
- }
- },
- /**
- * Onclick handler for <code>Next</code> button
- */
- submit: function () {
- if(!this.get("isSubmitDisabled")) {
- if (this.needToAddMapReduce()) {
- this.mapReduceCheckPopup();
- }
- else {
- if (this.noDFSs()) {
- this.needToAddHDFSPopup();
- }
- else {
- if (this.needToAddYarnMapReduce2()) {
- this.mapReduce2CheckPopup();
- }
- else {
- if ((!App.get('isHadoop2Stack') && this.needToAddZooKeeper()) || (App.get('isHadoop2Stack') && this.needToAddZooKeeperOnStack2x())) {
- this.zooKeeperCheckPopup();
- }
- else {
- if (this.multipleDFSs()) {
- this.multipleDFSPopup();
- }
- else {
- if(this.needToAddOozie()) {
- this.oozieCheckPopup();
- }
- else if (this.needToAddTez()) {
- this.tezCheckPopup();
- }
- else {
- this.validateMonitoring();
- }
- }
- }
- }
- }
- }
- }
- },
-
- /**
- * Select/deselect services
- * @param services array of objects
- * <code>
- * [
- * {
- * service: 'HDFS',
- * selected: true
- * },
- * ....
- * ]
- * </code>
- * @param i18nSuffix
- */
- needToAddServicePopup: function(services, i18nSuffix) {
- if (!(services instanceof Array)) {
- services = [services];
- }
- var self = this;
- App.ModalPopup.show({
- header: Em.I18n.t('installer.step4.' + i18nSuffix + '.popup.header'),
- body: Em.I18n.t('installer.step4.' + i18nSuffix + '.popup.body'),
- onPrimary: function () {
- services.forEach(function(service) {
- self.findProperty('serviceName', service.serviceName).set('isSelected', service.selected);
- });
- this.hide();
- self.submit();
- }
- });
- },
- multipleDFSPopup: function() {
- var services = [
- {serviceName: 'HDFS', selected: true},
- {serviceName: 'GLUSTERFS', selected: false}
- ];
- this.needToAddServicePopup(services, 'multipleDFS');
- },
- needToAddHDFSPopup: function() {
- this.needToAddServicePopup({serviceName:'HDFS', selected: true}, 'hdfsCheck');
- },
- mapReduceCheckPopup: function () {
- this.needToAddServicePopup({serviceName:'MAPREDUCE', selected: true}, 'mapreduceCheck');
- },
- mapReduce2CheckPopup: function () {
- this.needToAddServicePopup({serviceName:'YARN', selected:true}, 'yarnCheck');
- },
- tezCheckPopup: function() {
- this.needToAddServicePopup({serviceName:'TEZ', selected: true}, 'tezCheck');
- },
- zooKeeperCheckPopup: function () {
- this.needToAddServicePopup({serviceName:'ZOOKEEPER', selected: true}, 'zooKeeperCheck');
- },
- oozieCheckPopup: function () {
- this.needToAddServicePopup({serviceName:'OOZIE', selected: true}, 'oozieCheck');
- },
- monitoringCheckPopup: function () {
- App.ModalPopup.show({
- header: Em.I18n.t('installer.step4.monitoringCheck.popup.header'),
- body: Em.I18n.t('installer.step4.monitoringCheck.popup.body'),
- onPrimary: function () {
- this.hide();
- App.router.send('next');
- }
- });
- }
- });
|