123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- /**
- * 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 validator = require('utils/validator');
- App.ConfigProperties = Ember.ArrayProxy.extend({
- content: require('data/config_properties').configProperties
- });
- App.ServiceConfig = Ember.Object.extend({
- serviceName: '',
- configCategories: [],
- configs: null,
- errorCount: function () {
- var masterErrors = this.get('configs').filterProperty('isValid', false).filterProperty('isVisible', true).get('length');
- var slaveErrors = 0;
- this.get('configCategories').forEach(function(_category){
- slaveErrors += _category.get('slaveErrorCount');
- },this);
- return masterErrors + slaveErrors;
- }.property('configs.@each.isValid', 'configs.@each.isVisible', 'configCategories.@each.slaveErrorCount')
- });
- App.ServiceConfigCategory = Ember.Object.extend({
- name: null,
- slaveConfigs: null,
- primaryName: function () {
- switch (this.get('name')) {
- case 'DataNode':
- return 'DATANODE';
- break;
- case 'TaskTracker':
- return 'TASKTRACKER';
- break;
- case 'RegionServer':
- return 'HBASE_REGIONSERVER';
- }
- }.property('name'),
- isForMasterComponent: function () {
- var masterServices = [ 'NameNode', 'SNameNode', 'JobTracker', 'HBase Master', 'Oozie Master',
- 'Hive Metastore', 'WebHCat Server', 'ZooKeeper Server', 'Nagios', 'Ganglia' ];
- return (masterServices.contains(this.get('name')));
- }.property('name'),
- isForSlaveComponent: function () {
- return this.get('name') === 'DataNode' || this.get('name') === 'TaskTracker' ||
- this.get('name') === 'RegionServer';
- }.property('name'),
- slaveErrorCount: function () {
- var length = 0;
- if (this.get('slaveConfigs.groups')) {
- this.get('slaveConfigs.groups').forEach(function (_group) {
- length += _group.get('errorCount');
- }, this);
- }
- return length;
- }.property('slaveConfigs.groups.@each.errorCount')
- });
- App.SlaveConfigs = Ember.Object.extend({
- componentName: null,
- displayName: null,
- hosts: null,
- groups: null
- });
- App.Group = Ember.Object.extend({
- name: null,
- hostNames: null,
- properties: null,
- errorCount: function () {
- if (this.get('properties')) {
- return this.get('properties').filterProperty('isValid', false).filterProperty('isVisible', true).get('length');
- }
- }.property('properties.@each.isValid', 'properties.@each.isVisible')
- });
- App.ServiceConfigProperty = Ember.Object.extend({
- id: '', //either 'puppet var' or 'site property'
- name: '',
- displayName: '',
- value: '',
- defaultValue: '',
- defaultDirectory: '',
- description: '',
- displayType: 'string', // string, digits, number, directories, custom
- unit: '',
- category: 'General',
- isRequired: true, // by default a config property is required
- isReconfigurable: true, // by default a config property is reconfigurable
- isEditable: true, // by default a config property is editable
- isVisible: true,
- errorMessage: '',
- serviceConfig: null, // points to the parent App.ServiceConfig object
- filename: '',
- init: function () {
- if (this.get('id') === 'puppet var') {
- this.set('value', this.get('defaultValue'));
- }
- // TODO: remove mock data
- },
- initialValue: function () {
- var masterComponentHostsInDB = App.db.getMasterComponentHosts();
- //console.log("value in initialvalue: " + JSON.stringify(masterComponentHostsInDB));
- var hostsInfo = App.db.getHosts(); // which we are setting in installerController in step3.
- var slaveComponentHostsInDB = App.db.getSlaveComponentHosts();
- var isOnlyFirstOneNeeded = true;
- switch (this.get('name')) {
- case 'namenode_host':
- var temp = masterComponentHostsInDB.findProperty('component', 'NAMENODE');
- this.set('value', temp.hostName);
- break;
- case 'snamenode_host':
- this.set('value', masterComponentHostsInDB.findProperty('component', 'SECONDARY_NAMENODE').hostName);
- break;
- case 'datanode_hosts':
- this.set('value', slaveComponentHostsInDB.findProperty('componentName', 'DATANODE').hosts.mapProperty('hostName'));
- break;
- case 'jobtracker_host':
- this.set('value', masterComponentHostsInDB.findProperty('component', 'JOBTRACKER').hostName);
- break;
- case 'tasktracker_hosts':
- this.set('value', slaveComponentHostsInDB.findProperty('componentName', 'TASKTRACKER').hosts.mapProperty('hostName'));
- break;
- case 'hbasemaster_host':
- this.set('value', masterComponentHostsInDB.findProperty('component', 'HBASE_MASTER').hostName);
- break;
- case 'regionserver_hosts':
- this.set('value', slaveComponentHostsInDB.findProperty('componentName', 'HBASE_REGIONSERVER').hosts.mapProperty('hostName'));
- break;
- case 'hivemetastore_host':
- this.set('value', masterComponentHostsInDB.findProperty('component', 'HIVE_SERVER').hostName);
- break;
- case 'hive_ambari_host':
- this.set('value', masterComponentHostsInDB.findProperty('component', 'HIVE_SERVER').hostName);
- break;
- case 'oozieserver_host':
- this.set('value', masterComponentHostsInDB.findProperty('component', 'OOZIE_SERVER').hostName);
- break;
- case 'oozie_ambari_host':
- this.set('value', masterComponentHostsInDB.findProperty('component', 'OOZIE_SERVER').hostName);
- break;
- case 'zookeeperserver_hosts':
- this.set('value', masterComponentHostsInDB.filterProperty('component', 'ZOOKEEPER_SERVER').mapProperty('hostName'));
- break;
- case 'dfs_name_dir':
- case 'dfs_data_dir':
- case 'mapred_local_dir':
- this.unionAllMountPoints(!isOnlyFirstOneNeeded);
- break;
- case 'fs_checkpoint_dir':
- case 'zk_data_dir':
- case 'oozie_data_dir':
- this.unionAllMountPoints(isOnlyFirstOneNeeded);
- break;
- }
- },
-
- unionAllMountPoints: function (isOnlyFirstOneNeeded) {
- var hostname = '';
- var mountPointsPerHost = [];
- var mountPointAsRoot;
- var masterComponentHostsInDB = App.db.getMasterComponentHosts();
- var slaveComponentHostsInDB = App.db.getSlaveComponentHosts();
- var hostsInfo = App.db.getHosts(); // which we are setting in installerController in step3.
- App.Host.find().forEach(function(item){
- if(!hostsInfo[item.get('id')]){
- hostsInfo[item.get('id')] = {
- name: item.get('id'),
- cpu: item.get('cpu'),
- memory: item.get('memory'),
- disk_info: item.get('diskInfo'),
- bootStatus: "REGISTERED",
- isInstalled: true
- };
- }
- });
- var temp = '';
- var setOfHostNames = [];
- switch (this.get('name')) {
- case 'dfs_name_dir':
- var components = masterComponentHostsInDB.filterProperty('component', 'NAMENODE');
- components.forEach(function (component) {
- setOfHostNames.push(component.hostName);
- }, this);
- break;
- case 'fs_checkpoint_dir':
- var components = masterComponentHostsInDB.filterProperty('component', 'SECONDARY_NAMENODE');
- components.forEach(function (component) {
- setOfHostNames.push(component.hostName);
- }, this);
- break;
- case 'dfs_data_dir':
- temp = slaveComponentHostsInDB.findProperty('componentName', 'DATANODE');
- temp.hosts.forEach(function (host) {
- setOfHostNames.push(host.hostName);
- }, this);
- break;
- case 'mapred_local_dir':
- temp = slaveComponentHostsInDB.findProperty('componentName', 'TASKTRACKER');
- temp.hosts.forEach(function (host) {
- setOfHostNames.push(host.hostName);
- }, this);
- break;
- case 'zk_data_dir':
- var components = masterComponentHostsInDB.filterProperty('component', 'ZOOKEEPER_SERVER');
- components.forEach(function (component) {
- setOfHostNames.push(component.hostName);
- }, this);
- break;
- case 'oozie_data_dir':
- var components = masterComponentHostsInDB.filterProperty('component', 'OOZIE_SERVER');
- components.forEach(function (component) {
- setOfHostNames.push(component.hostName);
- }, this);
- break;
- }
- // In Add Host Wizard, if we did not select this slave component for any host, then we don't process any further.
- if (setOfHostNames.length === 0) {
- return;
- }
- var allMountPoints = [];
- for (var i = 0; i < setOfHostNames.length; i++) {
- hostname = setOfHostNames[i];
- mountPointsPerHost = hostsInfo[hostname].disk_info;
- mountPointAsRoot = mountPointsPerHost.findProperty('mountpoint', '/');
- mountPointsPerHost = mountPointsPerHost.filter(function (mPoint) {
- return !(['/', '/home', '/boot'].contains(mPoint.mountpoint) || ['devtmpfs', 'tmpfs', 'vboxsf'].contains(mPoint.type));
- });
- mountPointsPerHost.forEach(function (mPoint) {
- if( !allMountPoints.findProperty("mountpoint", mPoint.mountpoint)) {
- allMountPoints.push(mPoint);
- }
- }, this);
- }
- if (allMountPoints.length == 0) {
- allMountPoints.push(mountPointAsRoot);
- }
- this.set('value', '');
- if (!isOnlyFirstOneNeeded) {
- allMountPoints.forEach(function (eachDrive) {
- var mPoint = this.get('value');
- if (!mPoint) {
- mPoint = "";
- }
- if (eachDrive.mountpoint === "/") {
- mPoint += this.get('defaultDirectory') + "\n";
- } else {
- mPoint += eachDrive.mountpoint + this.get('defaultDirectory') + "\n";
- }
- this.set('value', mPoint);
- this.set('defaultValue', mPoint);
- }, this);
- } else {
- var mPoint = allMountPoints[0].mountpoint;
- if (mPoint === "/") {
- mPoint = this.get('defaultDirectory') + "\n";
- } else {
- mPoint = mPoint + this.get('defaultDirectory') + "\n";
- }
- this.set('value', mPoint);
- this.set('defaultValue', mPoint);
- }
- },
- isValid: function () {
- return this.get('errorMessage') === '';
- }.property('errorMessage'),
- viewClass: function () {
- switch (this.get('displayType')) {
- case 'checkbox':
- return App.ServiceConfigCheckbox;
- case 'password':
- return App.ServiceConfigPasswordField;
- case 'combobox':
- return App.ServiceConfigComboBox;
- case 'radio button':
- return App.ServiceConfigRadioButtons;
- break;
- case 'directories':
- return App.ServiceConfigTextArea;
- break;
- case 'custom':
- return App.ServiceConfigBigTextArea;
- case 'masterHost':
- return App.ServiceConfigMasterHostView;
- case 'masterHosts':
- return App.ServiceConfigMasterHostsView;
- case 'slaveHosts':
- return App.ServiceConfigSlaveHostsView;
- default:
- if (this.get('unit')) {
- return App.ServiceConfigTextFieldWithUnit;
- } else {
- return App.ServiceConfigTextField;
- }
- }
- }.property('displayType'),
- validate: function () {
- var value = this.get('value');
- var isError = false;
- if (typeof value === 'string' && value.trim().length === 0) {
- if (this.get('isRequired')) {
- this.set('errorMessage', 'This is required');
- isError = true;
- } else {
- return;
- }
- }
- if (!isError) {
- switch (this.get('displayType')) {
- case 'int':
- if (!validator.isValidInt(value)) {
- this.set('errorMessage', 'Must contain digits only');
- isError = true;
- }
- break;
- case 'float':
- if (!validator.isValidFloat(value)) {
- this.set('errorMessage', 'Must be a valid number');
- isError = true;
- }
- break;
- case 'checkbox':
- break;
- case 'directories':
- if (!validator.isValidDir(value)) {
- this.set('errorMessage', 'Must be a slash at the start');
- isError = true;
- }
- break;
- case 'directory':
- if (!validator.isValidDir(value)) {
- this.set('errorMessage', 'Must be a slash at the start');
- isError = true;
- }
- break;
- case 'custom':
- break;
- case 'user':
- if (!validator.isValidUserName(value)) {
- this.set('errorMessage', Em.I18n.t('users.userName.validationFail'));
- }
- isError = true;
- break;
- case 'email':
- if (!validator.isValidEmail(value)) {
- this.set('errorMessage', 'Must be a valid email address');
- isError = true;
- }
- break;
- case 'password':
- // retypedPassword is set by the retypePasswordView child view of App.ServiceConfigPasswordField
- if (value !== this.get('retypedPassword')) {
- this.set('errorMessage', 'Passwords do not match');
- isError = true;
- }
- }
- }
- if (!isError) {
- this.set('errorMessage', '');
- }
- }.observes('value', 'retypedPassword')
- });
|