1 window.App = Ember.Application.create();
3 App.Router.map(function () {
4 this.resource('customDashboard', {path: 'dashboard/custom'});
5 this.resource('dashboard', {path: 'dashboard/:name'});
6 this.resource('charts', {path: 'charts'});
7 this.resource('analysis', {path: 'analysis'});
8 this.resource('analysisTask', {path: 'analysis/task/:taskId'});
11 App.DashboardRow = Ember.Object.extend({
19 var cellsInfo = this.get('cellsInfo') || [];
20 var columnCount = this.get('columnCount');
21 while (cellsInfo.length < columnCount)
24 this.set('cells', cellsInfo.map(this._createPane.bind(this)));
26 addPane: function (paneInfo)
28 var pane = this._createPane(paneInfo);
29 this.get('cells').pushObject(pane);
30 this.set('columnCount', this.get('columnCount') + 1);
32 _createPane: function (paneInfo)
34 if (!paneInfo || !paneInfo.length || (!paneInfo[0] && !paneInfo[1]))
37 var pane = App.Pane.create({
38 store: this.get('store'),
39 platformId: paneInfo ? paneInfo[0] : null,
40 metricId: paneInfo ? paneInfo[1] : null,
43 return App.DashboardPaneProxyForPicker.create({content: pane});
47 App.DashboardPaneProxyForPicker = Ember.ObjectProxy.extend({
48 _platformOrMetricIdChanged: function ()
51 App.buildPopup(this.get('store'), 'choosePane', this)
52 .then(function (platforms) { self.set('pickerData', platforms); });
53 }.observes('platformId', 'metricId').on('init'),
54 paneList: function () {
55 return App.encodePrettifiedJSON([[this.get('platformId'), this.get('metricId'), null, null, false]]);
56 }.property('platformId', 'metricId'),
59 App.IndexRoute = Ember.Route.extend({
60 beforeModel: function ()
63 App.Manifest.fetch(this.store).then(function () {
64 self.transitionTo('dashboard', App.Manifest.defaultDashboardName());
69 App.DashboardRoute = Ember.Route.extend({
70 model: function (param)
72 return App.Manifest.fetch(this.store).then(function () {
73 return App.Manifest.dashboardByName(param.name);
78 App.CustomDashboardRoute = Ember.Route.extend({
79 controllerName: 'dashboard',
80 model: function (param)
82 return this.store.createRecord('dashboard', {serialized: param.grid});
84 renderTemplate: function()
86 this.render('dashboard');
90 App.DashboardController = Ember.Controller.extend({
91 queryParams: ['grid', 'numberOfDays'],
97 modelChanged: function ()
99 var dashboard = this.get('model');
103 var headerColumns = dashboard.get('headerColumns');
104 this.set('headerColumns', headerColumns);
105 var columnCount = headerColumns.length;
106 this.set('columnCount', columnCount);
108 var store = this.store;
109 this.set('rows', dashboard.get('rows').map(function (rowParam) {
110 return App.DashboardRow.create({
113 cellsInfo: rowParam.slice(1),
114 columnCount: columnCount,
118 this.set('emptyRow', new Array(columnCount));
119 }.observes('model').on('init'),
121 computeGrid: function()
123 var headers = this.get('headerColumns').map(function (header) { return header.label; });
124 var table = [headers].concat(this.get('rows').map(function (row) {
125 return [row.get('header')].concat(row.get('cells').map(function (pane) {
126 var platformAndMetric = [pane.get('platformId'), pane.get('metricId')];
127 return platformAndMetric[0] || platformAndMetric[1] ? platformAndMetric : [];
130 return JSON.stringify(table);
133 _sharedDomainChanged: function ()
135 var numberOfDays = this.get('numberOfDays');
139 numberOfDays = parseInt(numberOfDays);
140 var present = Date.now();
141 var past = present - numberOfDays * 24 * 3600 * 1000;
142 this.set('since', past);
143 this.set('sharedDomain', [past, present]);
144 }.observes('numberOfDays').on('init'),
147 setNumberOfDays: function (numberOfDays)
149 this.set('numberOfDays', numberOfDays);
151 choosePane: function (param)
153 var pane = param.position;
154 pane.set('platformId', param.platform.get('id'));
155 pane.set('metricId', param.metric.get('id'));
157 addColumn: function ()
159 this.get('headerColumns').pushObject({
160 label: this.get('newColumnHeader'),
161 index: this.get('headerColumns').length,
163 this.get('rows').forEach(function (row) {
166 this.set('newColumnHeader', null);
168 removeColumn: function (index)
170 this.get('headerColumns').removeAt(index);
171 this.get('rows').forEach(function (row) {
172 row.get('cells').removeAt(index);
177 this.get('rows').pushObject(App.DashboardRow.create({
179 header: this.get('newRowHeader'),
180 columnCount: this.get('columnCount'),
182 this.set('newRowHeader', null);
184 removeRow: function (row)
186 this.get('rows').removeObject(row);
188 resetPane: function (pane)
190 pane.set('platformId', null);
191 pane.set('metricId', null);
193 toggleEditMode: function ()
195 this.toggleProperty('editMode');
196 if (this.get('editMode'))
197 this.transitionToRoute('dashboard', 'custom', {name: null, queryParams: {grid: this.computeGrid()}});
199 this.set('grid', this.computeGrid());
206 App.Manifest.fetch(this.get('store'));
210 App.NumberOfDaysControlView = Ember.View.extend({
211 classNames: ['controls'],
212 templateName: 'number-of-days-controls',
213 didInsertElement: function ()
215 this._matchingElements(this._previousNumberOfDaysClass).addClass('active');
217 _numberOfDaysChanged: function ()
219 this._matchingElements(this._previousNumberOfDaysClass).removeClass('active');
221 var newNumberOfDaysClass = 'numberOfDaysIs' + this.get('numberOfDays');
222 this._matchingElements(this._previousNumberOfDaysClass).addClass('active');
223 this._previousNumberOfDaysClass = newNumberOfDaysClass;
224 }.observes('numberOfDays').on('init'),
225 _matchingElements: function (className)
227 var element = this.get('element');
230 return $(element.getElementsByClassName(className));
234 App.StartTimeSliderView = Ember.View.extend({
235 templateName: 'start-time-slider',
236 classNames: ['start-time-slider'],
237 startTime: Date.now() - 7 * 24 * 3600 * 1000,
238 oldestStartTime: null,
239 _numberOfDaysView: null,
241 _startTimeInSlider: null,
242 _currentNumberOfDays: null,
243 _MILLISECONDS_PER_DAY: 24 * 3600 * 1000,
245 didInsertElement: function ()
247 this.oldestStartTime = Date.now() - 365 * 24 * 3600 * 1000;
248 this._slider = $(this.get('element')).find('input');
249 this._numberOfDaysView = $(this.get('element')).find('.numberOfDays');
250 this._sliderRangeChanged();
251 this._slider.change(this._sliderMoved.bind(this));
253 _sliderRangeChanged: function ()
255 var minimumNumberOfDays = 1;
256 var maximumNumberOfDays = this._timeInPastToNumberOfDays(this.get('oldestStartTime'));
257 var precision = 1000; // FIXME: Compute this from maximumNumberOfDays.
258 var slider = this._slider;
259 slider.attr('min', Math.floor(Math.log(Math.max(1, minimumNumberOfDays)) * precision) / precision);
260 slider.attr('max', Math.ceil(Math.log(maximumNumberOfDays) * precision) / precision);
261 slider.attr('step', 1 / precision);
262 this._startTimeChanged();
263 }.observes('oldestStartTime'),
264 _sliderMoved: function ()
266 this._currentNumberOfDays = Math.round(Math.exp(this._slider.val()));
267 this._numberOfDaysView.text(this._currentNumberOfDays);
268 this._startTimeInSlider = this._numberOfDaysToTimeInPast(this._currentNumberOfDays);
269 this.set('startTime', this._startTimeInSlider);
271 _startTimeChanged: function ()
273 var startTime = this.get('startTime');
274 if (startTime == this._startTimeSetBySlider)
276 this._currentNumberOfDays = this._timeInPastToNumberOfDays(startTime);
279 this._numberOfDaysView.text(this._currentNumberOfDays);
280 this._slider.val(Math.log(this._currentNumberOfDays));
281 this._startTimeInSlider = startTime;
283 }.observes('startTime').on('init'),
284 _timeInPastToNumberOfDays: function (timeInPast)
286 return Math.max(1, Math.round((Date.now() - timeInPast) / this._MILLISECONDS_PER_DAY));
288 _numberOfDaysToTimeInPast: function (numberOfDays)
290 return Date.now() - numberOfDays * this._MILLISECONDS_PER_DAY;
294 App.Pane = Ember.Object.extend({
300 selectedPoints: null,
301 hoveredOrSelectedItem: null,
302 showFullYAxis: false,
303 searchCommit: function (repository, keyword) {
305 var repositoryId = repository.get('id');
306 CommitLogs.fetchForTimeRange(repositoryId, null, null, keyword).then(function (commits) {
307 if (self.isDestroyed || !self.get('chartData') || !commits.length)
309 var currentRuns = self.get('chartData').current.series();
310 if (!currentRuns.length)
313 var highlightedItems = {};
315 for (var runIndex = 0; runIndex < currentRuns.length && commitIndex < commits.length; runIndex++) {
316 var measurement = currentRuns[runIndex].measurement;
317 var commitTime = measurement.commitTimeForRepository(repositoryId);
320 if (commits[commitIndex].time <= commitTime) {
321 highlightedItems[measurement.id()] = true;
324 } while (commitIndex < commits.length && commits[commitIndex].time <= commitTime);
328 self.set('highlightedItems', highlightedItems);
330 // FIXME: Report errors
331 this.set('highlightedItems', {});
334 _fetch: function () {
335 var platformId = this.get('platformId');
336 var metricId = this.get('metricId');
337 if (!platformId && !metricId) {
338 this.set('empty', true);
341 this.set('empty', false);
342 this.set('platform', null);
343 this.set('chartData', null);
344 this.set('metric', null);
345 this.set('failure', null);
347 if (!this._isValidId(platformId))
348 this.set('failure', platformId ? 'Invalid platform id:' + platformId : 'Platform id was not specified');
349 else if (!this._isValidId(metricId))
350 this.set('failure', metricId ? 'Invalid metric id:' + metricId : 'Metric id was not specified');
352 var store = this.get('store');
353 var updateChartData = this._updateChartData.bind(this);
354 var handleErrors = this._handleFetchErrors.bind(this, platformId, metricId);
356 App.Manifest.fetchRunsWithPlatformAndMetric(store, platformId, metricId, null, useCache).then(function (result) {
357 updateChartData(result);
358 if (!result.shouldRefetch)
362 App.Manifest.fetchRunsWithPlatformAndMetric(store, platformId, metricId, null, useCache)
363 .then(updateChartData, handleErrors);
365 this.fetchAnalyticRanges();
367 }.observes('platformId', 'metricId').on('init'),
368 _updateChartData: function (result)
370 this.set('platform', result.platform);
371 this.set('metric', result.metric);
372 this.set('chartData', result.data);
373 this._updateMovingAverageAndEnvelope();
375 _handleFetchErrors: function (platformId, metricId, result)
377 console.log(platformId, metricId, result)
378 if (!result || typeof(result) === "string")
379 this.set('failure', 'Failed to fetch the JSON with an error: ' + result);
380 else if (!result.platform)
381 this.set('failure', 'Could not find the platform "' + platformId + '"');
382 else if (!result.metric)
383 this.set('failure', 'Could not find the metric "' + metricId + '"');
385 this.set('failure', 'An internal error');
387 fetchAnalyticRanges: function ()
389 var platformId = this.get('platformId');
390 var metricId = this.get('metricId');
393 .find('analysisTask', {platform: platformId, metric: metricId})
394 .then(function (tasks) {
395 self.set('analyticRanges', tasks.filter(function (task) { return task.get('startRun') && task.get('endRun'); }));
398 _isValidId: function (id)
400 if (typeof(id) == "number")
402 if (typeof(id) == "string")
403 return !!id.match(/^[A-Za-z0-9_]+$/);
406 computeStatus: function (currentPoint, previousPoint)
408 var chartData = this.get('chartData');
409 var diffFromBaseline = this._relativeDifferentToLaterPointInTimeSeries(currentPoint, chartData.baseline);
410 var diffFromTarget = this._relativeDifferentToLaterPointInTimeSeries(currentPoint, chartData.target);
414 var formatter = d3.format('.3p');
416 var smallerIsBetter = chartData.smallerIsBetter;
417 if (diffFromBaseline !== undefined && diffFromBaseline > 0 == smallerIsBetter) {
418 label = formatter(Math.abs(diffFromBaseline)) + ' ' + (smallerIsBetter ? 'above' : 'below') + ' baseline';
420 } else if (diffFromTarget !== undefined && diffFromTarget < 0 == smallerIsBetter) {
421 label = formatter(Math.abs(diffFromTarget)) + ' ' + (smallerIsBetter ? 'below' : 'above') + ' target';
422 className = 'better';
423 } else if (diffFromTarget !== undefined)
424 label = formatter(Math.abs(diffFromTarget)) + ' until target';
426 var valueDelta = previousPoint ? chartData.deltaFormatter(currentPoint.value - previousPoint.value) : null;
428 className: className,
430 currentValue: chartData.formatter(currentPoint.value),
431 valueDelta: valueDelta,
432 relativeDelta: d3.format('+.2p')((currentPoint.value - previousPoint.value) / previousPoint.value),
435 _relativeDifferentToLaterPointInTimeSeries: function (currentPoint, timeSeries)
437 if (!currentPoint || !timeSeries)
440 var referencePoint = timeSeries.findPointAfterTime(currentPoint.time);
444 return (currentPoint.value - referencePoint.value) / referencePoint.value;
446 latestStatus: function ()
448 var chartData = this.get('chartData');
449 if (!chartData || !chartData.current)
452 var lastPoint = chartData.current.lastPoint();
456 return this.computeStatus(lastPoint, chartData.current.previousPoint(lastPoint));
457 }.property('chartData'),
458 updateStatisticsTools: function ()
460 var movingAverageStrategies = Statistics.MovingAverageStrategies.map(this._cloneStrategy.bind(this));
461 this.set('movingAverageStrategies', [{label: 'None'}].concat(movingAverageStrategies));
462 this.set('chosenMovingAverageStrategy', this._configureStrategy(movingAverageStrategies, this.get('movingAverageConfig')));
464 var envelopingStrategies = Statistics.EnvelopingStrategies.map(this._cloneStrategy.bind(this));
465 this.set('envelopingStrategies', [{label: 'None'}].concat(envelopingStrategies));
466 this.set('chosenEnvelopingStrategy', this._configureStrategy(envelopingStrategies, this.get('envelopingConfig')));
468 var anomalyDetectionStrategies = Statistics.AnomalyDetectionStrategy.map(this._cloneStrategy.bind(this));
469 this.set('anomalyDetectionStrategies', anomalyDetectionStrategies);
471 _cloneStrategy: function (strategy)
473 var parameterList = (strategy.parameterList || []).map(function (param) { return Ember.Object.create(param); });
474 return Ember.Object.create({
476 label: strategy.label,
477 description: strategy.description,
478 parameterList: parameterList,
479 execute: strategy.execute,
482 _configureStrategy: function (strategies, config)
484 if (!config || !config[0])
488 var chosenStrategy = strategies.find(function (strategy) { return strategy.id == id });
492 if (chosenStrategy.parameterList) {
493 for (var i = 0; i < chosenStrategy.parameterList.length; i++)
494 chosenStrategy.parameterList[i].value = parseFloat(config[i + 1]);
497 return chosenStrategy;
499 _updateMovingAverageAndEnvelope: function ()
501 var chartData = this.get('chartData');
505 var movingAverageStrategy = this.get('chosenMovingAverageStrategy');
506 this._updateStrategyConfigIfNeeded(movingAverageStrategy, 'movingAverageConfig');
508 var envelopingStrategy = this.get('chosenEnvelopingStrategy');
509 this._updateStrategyConfigIfNeeded(envelopingStrategy, 'envelopingConfig');
511 var anomalyDetectionStrategies = this.get('anomalyDetectionStrategies').filterBy('enabled');
513 chartData.movingAverage = this._computeMovingAverageAndOutliers(chartData, movingAverageStrategy, envelopingStrategy, anomalyDetectionStrategies, anomalies);
514 this.set('highlightedItems', anomalies);
516 _movingAverageOrEnvelopeStrategyDidChange: function () {
517 this._updateMovingAverageAndEnvelope();
519 var newChartData = {};
520 var chartData = this.get('chartData');
523 for (var property in chartData)
524 newChartData[property] = chartData[property];
525 this.set('chartData', newChartData);
527 }.observes('chosenMovingAverageStrategy', 'chosenMovingAverageStrategy.parameterList.@each.value',
528 'chosenEnvelopingStrategy', 'chosenEnvelopingStrategy.parameterList.@each.value',
529 'anomalyDetectionStrategies.@each.enabled'),
530 _computeMovingAverageAndOutliers: function (chartData, movingAverageStrategy, envelopingStrategy, anomalyDetectionStrategies, anomalies)
532 var currentTimeSeriesData = chartData.current.series();
533 var movingAverageIsSetByUser = movingAverageStrategy && movingAverageStrategy.execute;
534 var movingAverageValues = this._executeStrategy(
535 movingAverageIsSetByUser ? movingAverageStrategy : Statistics.MovingAverageStrategies[0], currentTimeSeriesData);
536 if (!movingAverageValues)
539 var envelopeIsSetByUser = envelopingStrategy && envelopingStrategy.execute;
540 var envelopeDelta = this._executeStrategy(envelopeIsSetByUser ? envelopingStrategy : Statistics.EnvelopingStrategies[0],
541 currentTimeSeriesData, [movingAverageValues]);
543 for (var i = 0; i < currentTimeSeriesData.length; i++) {
544 var currentValue = currentTimeSeriesData[i].value;
545 var movingAverageValue = movingAverageValues[i];
546 if (currentValue < movingAverageValue - envelopeDelta || movingAverageValue + envelopeDelta < currentValue)
547 currentTimeSeriesData[i].isOutlier = true;
549 if (!envelopeIsSetByUser)
550 envelopeDelta = null;
552 var isAnomalyArray = new Array(currentTimeSeriesData.length);
553 for (var strategy of anomalyDetectionStrategies) {
554 var anomalyLengths = this._executeStrategy(strategy, currentTimeSeriesData, [movingAverageValues, envelopeDelta]);
555 for (var i = 0; i < currentTimeSeriesData.length; i++)
556 isAnomalyArray[i] = isAnomalyArray[i] || anomalyLengths[i];
558 for (var i = 0; i < isAnomalyArray.length; i++) {
559 if (!isAnomalyArray[i])
561 anomalies[currentTimeSeriesData[i].measurement.id()] = true;
562 while (isAnomalyArray[i] && i < isAnomalyArray.length)
566 if (movingAverageIsSetByUser) {
567 return new TimeSeries(currentTimeSeriesData.map(function (point, index) {
568 var value = movingAverageValues[index];
570 measurement: point.measurement,
573 interval: envelopeDelta !== null ? [value - envelopeDelta, value + envelopeDelta] : null,
578 _executeStrategy: function (strategy, currentTimeSeriesData, additionalArguments)
580 var parameters = (strategy.parameterList || []).map(function (param) {
581 var parsed = parseFloat(param.value);
582 return Math.min(param.max || Infinity, Math.max(param.min || -Infinity, isNaN(parsed) ? 0 : parsed));
584 parameters.push(currentTimeSeriesData.map(function (point) { return point.value }));
585 return strategy.execute.apply(window, parameters.concat(additionalArguments));
587 _updateStrategyConfigIfNeeded: function (strategy, configName)
590 if (strategy && strategy.execute)
591 config = [strategy.id].concat((strategy.parameterList || []).map(function (param) { return param.value; }));
593 if (JSON.stringify(config) != JSON.stringify(this.get(configName)))
594 this.set(configName, config);
596 _updateDetails: function ()
598 var selectedPoints = this.get('selectedPoints');
599 var currentPoint = this.get('hoveredOrSelectedItem');
600 if (!selectedPoints && !currentPoint) {
601 this.set('details', null);
605 var currentMeasurement;
608 previousPoint = currentPoint.series.previousPoint(currentPoint);
610 currentPoint = selectedPoints[selectedPoints.length - 1];
611 previousPoint = selectedPoints[0];
613 var currentMeasurement = currentPoint.measurement;
614 var oldMeasurement = previousPoint ? previousPoint.measurement : null;
616 var formattedRevisions = currentMeasurement.formattedRevisions(oldMeasurement);
617 var revisions = App.Manifest.get('repositories')
618 .filter(function (repository) { return formattedRevisions[repository.get('id')]; })
619 .map(function (repository) {
620 var revision = Ember.Object.create(formattedRevisions[repository.get('id')]);
621 revision['url'] = revision.previousRevision
622 ? repository.urlForRevisionRange(revision.previousRevision, revision.currentRevision)
623 : repository.urlForRevision(revision.currentRevision);
624 revision['name'] = repository.get('name');
625 revision['repository'] = repository;
629 var buildNumber = null;
631 if (!selectedPoints) {
632 buildNumber = currentMeasurement.buildNumber();
633 var builder = App.Manifest.builder(currentMeasurement.builderId());
635 buildURL = builder.urlFromBuildNumber(buildNumber);
638 this.set('details', Ember.Object.create({
639 status: this.computeStatus(currentPoint, previousPoint),
640 buildNumber: buildNumber,
642 buildTime: currentMeasurement.formattedBuildTime(),
643 revisions: revisions,
645 }.observes('hoveredOrSelectedItem', 'selectedPoints'),
648 App.encodePrettifiedJSON = function (plain)
650 function numberIfPossible(string) {
651 return string == parseInt(string) ? parseInt(string) : string;
654 function recursivelyConvertNumberIfPossible(input) {
655 if (input instanceof Array) {
656 return input.map(recursivelyConvertNumberIfPossible);
658 return numberIfPossible(input);
661 return JSON.stringify(recursivelyConvertNumberIfPossible(plain))
662 .replace(/\[/g, '(').replace(/\]/g, ')').replace(/\,/g, '-');
665 App.decodePrettifiedJSON = function (encoded)
667 var parsed = encoded.replace(/\(/g, '[').replace(/\)/g, ']').replace(/\-/g, ',');
669 return JSON.parse(parsed);
670 } catch (exception) {
675 App.ChartsController = Ember.Controller.extend({
676 queryParams: ['paneList', 'zoom', 'since'],
678 _currentEncodedPaneList: null,
684 defaultSince: Date.now() - 7 * 24 * 3600 * 1000,
686 addPane: function (pane)
688 this.panes.unshiftObject(pane);
691 removePane: function (pane)
693 this.panes.removeObject(pane);
696 refreshPanes: function()
698 var paneList = this.get('paneList');
699 if (paneList === this._currentEncodedPaneList)
702 var panes = this._parsePaneList(paneList || '[]');
704 console.log('Failed to parse', jsonPaneList, exception);
707 this.set('panes', panes);
708 this._currentEncodedPaneList = paneList;
709 }.observes('paneList').on('init'),
711 refreshZoom: function()
713 var zoom = this.get('zoom');
715 this.set('sharedZoom', null);
719 zoom = zoom.split('-');
720 var selection = new Array(2);
722 selection[0] = new Date(parseFloat(zoom[0]));
723 selection[1] = new Date(parseFloat(zoom[1]));
725 console.log('Failed to parse the zoom', zoom);
727 this.set('sharedZoom', selection);
729 var startTime = this.get('startTime');
730 if (startTime && startTime > selection[0])
731 this.set('startTime', selection[0]);
733 }.observes('zoom').on('init'),
735 _startTimeChanged: function () {
736 this.set('sharedDomain', [this.get('startTime'), this.get('present')]);
737 this._scheduleQueryStringUpdate();
738 }.observes('startTime'),
740 _sinceChanged: function () {
741 var since = parseInt(this.get('since'));
743 since = this.defaultSince;
744 this.set('startTime', new Date(since));
745 }.observes('since').on('init'),
747 _parsePaneList: function (encodedPaneList)
749 var parsedPaneList = App.decodePrettifiedJSON(encodedPaneList);
753 // FIXME: Don't re-create all panes.
755 return parsedPaneList.map(function (paneInfo) {
756 var timeRange = null;
757 var selectedItem = null;
758 if (paneInfo[2] instanceof Array) {
759 var timeRange = paneInfo[2];
761 timeRange = [new Date(timeRange[0]), new Date(timeRange[1])];
763 console.log("Failed to parse the time range:", timeRange, error);
766 selectedItem = paneInfo[2];
768 return App.Pane.create({
771 platformId: paneInfo[0],
772 metricId: paneInfo[1],
773 selectedItem: selectedItem,
774 timeRange: timeRange,
775 showFullYAxis: paneInfo[3],
776 movingAverageConfig: paneInfo[4],
777 envelopingConfig: paneInfo[5],
782 _serializePaneList: function (panes)
787 return App.encodePrettifiedJSON(panes.map(function (pane) {
789 pane.get('platformId'),
790 pane.get('metricId'),
791 pane.get('timeRange') ? pane.get('timeRange').map(function (date) { return date.getTime() }) : pane.get('selectedItem'),
792 pane.get('showFullYAxis'),
793 pane.get('movingAverageConfig'),
794 pane.get('envelopingConfig'),
799 _scheduleQueryStringUpdate: function ()
801 Ember.run.debounce(this, '_updateQueryString', 1000);
802 }.observes('sharedZoom', 'panes.@each.platform', 'panes.@each.metric', 'panes.@each.selectedItem', 'panes.@each.timeRange',
803 'panes.@each.showFullYAxis', 'panes.@each.movingAverageConfig', 'panes.@each.envelopingConfig'),
805 _updateQueryString: function ()
807 this._currentEncodedPaneList = this._serializePaneList(this.get('panes'));
808 this.set('paneList', this._currentEncodedPaneList);
810 var zoom = undefined;
811 var sharedZoom = this.get('sharedZoom');
812 if (sharedZoom && !App.domainsAreEqual(sharedZoom, this.get('sharedDomain')))
813 zoom = +sharedZoom[0] + '-' + +sharedZoom[1];
814 this.set('zoom', zoom);
816 if (this.get('startTime') - this.defaultSince)
817 this.set('since', this.get('startTime') - 0);
821 addPaneByMetricAndPlatform: function (param)
823 this.addPane(App.Pane.create({
825 platformId: param.platform.get('id'),
826 metricId: param.metric.get('id'),
827 showingDetails: false
836 App.buildPopup(this.store, 'addPaneByMetricAndPlatform').then(function (platforms) {
837 self.set('platforms', platforms);
842 App.buildPopup = function(store, action, position)
844 return App.Manifest.fetch(store).then(function () {
845 return App.Manifest.get('platforms').map(function (platform) {
846 return App.PlatformProxyForPopup.create({content: platform,
847 action: action, position: position});
852 App.PlatformProxyForPopup = Ember.ObjectProxy.extend({
853 children: function ()
855 var platform = this.content;
856 var containsTest = this.content.containsTest.bind(this.content);
857 var action = this.get('action');
858 var position = this.get('position');
859 return App.Manifest.get('topLevelTests')
860 .filter(containsTest)
861 .map(function (test) {
862 return App.TestProxyForPopup.create({content: test, platform: platform, action: action, position: position});
864 }.property('App.Manifest.topLevelTests'),
867 App.TestProxyForPopup = Ember.ObjectProxy.extend({
869 children: function ()
871 var platform = this.get('platform');
872 var action = this.get('action');
873 var position = this.get('position');
875 var childTests = this.get('childTests')
876 .filter(function (test) { return platform.containsTest(test); })
877 .map(function (test) {
878 return App.TestProxyForPopup.create({content: test, platform: platform, action: action, position: position});
881 var metrics = this.get('metrics')
882 .filter(function (metric) { return platform.containsMetric(metric); })
883 .map(function (metric) {
884 var aggregator = metric.get('aggregator');
887 actionArgument: {platform: platform, metric: metric, position:position},
888 label: metric.get('label')
892 if (childTests.length && metrics.length)
893 metrics.push({isSeparator: true});
895 return metrics.concat(childTests);
896 }.property('childTests', 'metrics'),
899 App.domainsAreEqual = function (domain1, domain2) {
900 return (!domain1 && !domain2) || (domain1 && domain2 && !(domain1[0] - domain2[0]) && !(domain1[1] - domain2[1]));
903 App.PaneController = Ember.ObjectController.extend({
905 sharedTime: Ember.computed.alias('parentController.sharedTime'),
906 sharedSelection: Ember.computed.alias('parentController.sharedSelection'),
909 toggleDetails: function()
911 this.toggleProperty('showingDetails');
915 this.parentController.removePane(this.get('model'));
917 toggleBugsPane: function ()
919 if (this.toggleProperty('showingAnalysisPane')) {
920 this.set('showingSearchPane', false);
921 this.set('showingStatPane', false);
924 createAnalysisTask: function ()
926 var name = this.get('newAnalysisTaskName');
927 var points = this.get('selectedPoints');
928 Ember.assert('The analysis name should not be empty', name);
929 Ember.assert('There should be at least two points in the range', points && points.length >= 2);
931 var newWindow = window.open();
933 App.AnalysisTask.create(name, points[0].measurement, points[points.length - 1].measurement).then(function (data) {
934 // FIXME: Update the UI to show the new analysis task.
935 var url = App.Router.router.generate('analysisTask', data['taskId']);
936 newWindow.location.href = '#' + url;
937 self.get('model').fetchAnalyticRanges();
938 }, function (error) {
940 if (error === 'DuplicateAnalysisTask') {
941 // FIXME: Duplicate this error more gracefully.
946 toggleSearchPane: function ()
948 if (!App.Manifest.repositoriesWithReportedCommits)
950 var model = this.get('model');
951 if (!model.get('commitSearchRepository'))
952 model.set('commitSearchRepository', App.Manifest.repositoriesWithReportedCommits[0]);
953 if (this.toggleProperty('showingSearchPane')) {
954 this.set('showingAnalysisPane', false);
955 this.set('showingStatPane', false);
958 searchCommit: function () {
959 var model = this.get('model');
960 model.searchCommit(model.get('commitSearchRepository'), model.get('commitSearchKeyword'));
962 toggleStatPane: function ()
964 if (this.toggleProperty('showingStatPane')) {
965 this.set('showingSearchPane', false);
966 this.set('showingAnalysisPane', false);
969 zoomed: function (selection)
971 this.set('mainPlotDomain', selection ? selection : this.get('overviewDomain'));
972 Ember.run.debounce(this, 'propagateZoom', 100);
975 _detailsChanged: function ()
977 this.set('showingAnalysisPane', false);
978 }.observes('details'),
979 _overviewSelectionChanged: function ()
981 var overviewSelection = this.get('overviewSelection');
982 if (App.domainsAreEqual(overviewSelection, this.get('mainPlotDomain')))
984 this.set('mainPlotDomain', overviewSelection || this.get('overviewDomain'));
985 Ember.run.debounce(this, 'propagateZoom', 100);
986 }.observes('overviewSelection'),
987 _sharedDomainChanged: function ()
989 var newDomain = this.get('parentController').get('sharedDomain');
990 if (App.domainsAreEqual(newDomain, this.get('overviewDomain')))
992 this.set('overviewDomain', newDomain);
993 if (!this.get('overviewSelection'))
994 this.set('mainPlotDomain', newDomain);
995 }.observes('parentController.sharedDomain').on('init'),
996 propagateZoom: function ()
998 this.get('parentController').set('sharedZoom', this.get('mainPlotDomain'));
1000 _sharedZoomChanged: function ()
1002 var newSelection = this.get('parentController').get('sharedZoom');
1003 if (App.domainsAreEqual(newSelection, this.get('mainPlotDomain')))
1005 this.set('mainPlotDomain', newSelection || this.get('overviewDomain'));
1006 this.set('overviewSelection', newSelection);
1007 }.observes('parentController.sharedZoom').on('init'),
1008 _updateCanAnalyze: function ()
1010 var points = this.get('model').get('selectedPoints');
1011 this.set('cannotAnalyze', !this.get('newAnalysisTaskName') || !points || points.length < 2);
1012 }.observes('newAnalysisTaskName', 'model.selectedPoints'),
1015 App.AnalysisRoute = Ember.Route.extend({
1016 model: function () {
1017 return this.store.findAll('analysisTask').then(function (tasks) {
1018 return Ember.Object.create({'tasks': tasks});
1023 App.AnalysisTaskRoute = Ember.Route.extend({
1024 model: function (param)
1026 return this.store.find('analysisTask', param.taskId);
1030 App.AnalysisTaskController = Ember.Controller.extend({
1031 label: Ember.computed.alias('model.name'),
1032 platform: Ember.computed.alias('model.platform'),
1033 metric: Ember.computed.alias('model.metric'),
1034 details: Ember.computed.alias('pane.details'),
1037 possibleRepetitionCounts: [1, 2, 3, 4, 5, 6],
1038 _taskUpdated: function ()
1040 var model = this.get('model');
1044 App.Manifest.fetch(this.store).then(this._fetchedManifest.bind(this));
1045 this.set('pane', App.Pane.create({
1047 platformId: model.get('platform').get('id'),
1048 metricId: model.get('metric').get('id'),
1052 model.get('testGroups').then(function (groups) {
1053 self.set('testGroupPanes', groups.map(function (group) { return App.TestGroupPane.create({content: group}); }));
1055 }.observes('model', 'model.testGroups').on('init'),
1056 _fetchedManifest: function ()
1058 var trackerIdToBugNumber = {};
1059 this.get('model').get('bugs').forEach(function (bug) {
1060 trackerIdToBugNumber[bug.get('bugTracker').get('id')] = bug.get('number');
1063 this.set('bugTrackers', App.Manifest.get('bugTrackers').map(function (bugTracker) {
1064 var bugNumber = trackerIdToBugNumber[bugTracker.get('id')];
1065 return Ember.ObjectProxy.create({
1066 content: bugTracker,
1067 bugNumber: bugNumber,
1068 editedBugNumber: bugNumber,
1072 _chartDataChanged: function ()
1074 var pane = this.get('pane');
1078 var chartData = pane.get('chartData');
1082 var currentTimeSeries = chartData.current;
1083 if (!currentTimeSeries)
1084 return null; // FIXME: Report an error.
1086 var start = currentTimeSeries.findPointByMeasurementId(this.get('model').get('startRun'));
1087 var end = currentTimeSeries.findPointByMeasurementId(this.get('model').get('endRun'));
1089 return null; // FIXME: Report an error.
1091 var highlightedItems = {};
1092 highlightedItems[start.measurement.id()] = true;
1093 highlightedItems[end.measurement.id()] = true;
1095 var formatedPoints = currentTimeSeries.seriesBetweenPoints(start, end).map(function (point, index) {
1097 id: point.measurement.id(),
1098 measurement: point.measurement,
1099 label: 'Point ' + (index + 1),
1100 value: chartData.formatWithUnit(point.value),
1104 var margin = (end.time - start.time) * 0.1;
1105 this.set('highlightedItems', highlightedItems);
1106 this.set('overviewEndPoints', [start, end]);
1107 this.set('analysisPoints', formatedPoints);
1109 var overviewDomain = [start.time - margin, +end.time + margin];
1111 var testGroupPanes = this.get('testGroupPanes');
1112 if (testGroupPanes) {
1113 testGroupPanes.setEach('overviewPane', pane);
1114 testGroupPanes.setEach('overviewDomain', overviewDomain);
1117 this.set('overviewDomain', overviewDomain);
1118 }.observes('pane.chartData'),
1119 updateRootConfigurations: function ()
1121 var analysisPoints = this.get('analysisPoints');
1122 if (!analysisPoints)
1124 var repositoryToRevisions = {};
1125 analysisPoints.forEach(function (point, pointIndex) {
1126 var revisions = point.measurement.formattedRevisions();
1127 for (var repositoryId in revisions) {
1128 if (!repositoryToRevisions[repositoryId])
1129 repositoryToRevisions[repositoryId] = new Array(analysisPoints.length);
1130 var revision = revisions[repositoryId];
1131 repositoryToRevisions[repositoryId][pointIndex] = {
1132 label: point.label + ': ' + revision.label,
1133 value: revision.currentRevision,
1139 this.get('model').get('triggerable').then(function (triggerable) {
1143 self.set('configurations', ['A', 'B']);
1144 self.set('rootConfigurations', triggerable.get('acceptedRepositories').map(function (repository) {
1145 var repositoryId = repository.get('id');
1146 var options = [{value: ' ', label: 'None'}].concat(repositoryToRevisions[repositoryId]);
1147 return Ember.Object.create({
1148 repository: repository,
1149 name: repository.get('name'),
1151 Ember.Object.create({name: 'A[' + repositoryId + ']',
1153 selection: options[1]}),
1154 Ember.Object.create({name: 'B[' + repositoryId + ']',
1156 selection: options[options.length - 1]}),
1161 }.observes('analysisPoints'),
1163 associateBug: function (bugTracker, bugNumber)
1165 var model = this.get('model');
1166 this.store.createRecord('bug',
1167 {task: this.get('model'), bugTracker: bugTracker.get('content'), number: bugNumber}).save().then(function () {
1168 // FIXME: Should we notify the user?
1169 }, function (error) {
1170 alert('Failed to associate the bug: ' + error);
1173 createTestGroup: function (name, repetitionCount)
1176 this.get('rootConfigurations').map(function (root) {
1177 roots[root.get('name')] = root.get('sets').map(function (item) { return item.get('selection').value; });
1179 App.TestGroup.create(this.get('model'), name, roots, repetitionCount).then(function () {
1180 }, function (error) {
1181 alert('Failed to create a new test group:' + error);
1184 toggleShowRequestList: function (configuration)
1186 configuration.toggleProperty('showRequestList');
1189 _updateRootsBySelectedPoints: function ()
1191 var rootConfigurations = this.get('rootConfigurations');
1192 var pane = this.get('pane');
1193 if (!rootConfigurations || !pane)
1197 var selectedPoints = pane.get('selectedPoints');
1198 if (selectedPoints && selectedPoints.length >= 2)
1199 rootSetPoints = [selectedPoints[0], selectedPoints[selectedPoints.length - 1]];
1201 rootSetPoints = this.get('overviewEndPoints');
1205 rootConfigurations.forEach(function (root) {
1206 root.get('sets').forEach(function (set, setIndex) {
1207 if (setIndex >= rootSetPoints.length)
1209 var targetRevision = rootSetPoints[setIndex].measurement.revisionForRepository(root.get('repository').get('id'));
1212 selectedOption = set.get('options').find(function (option) { return option.value == targetRevision; });
1213 set.set('selection', selectedOption || sets[i].get('options')[0]);
1217 }.observes('pane.selectedPoints'),
1220 App.TestGroupPane = Ember.ObjectProxy.extend({
1221 _populate: function ()
1223 var buildRequests = this.get('buildRequests');
1224 var testResults = this.get('testResults');
1225 if (!buildRequests || !testResults)
1228 var repositories = this._computeRepositoryList();
1229 this.set('repositories', repositories);
1231 var requestsByRooSet = this._groupRequestsByConfigurations(buildRequests);
1233 var configurations = [];
1235 var range = {min: Infinity, max: -Infinity};
1236 for (var rootSetId in requestsByRooSet) {
1237 var configLetter = String.fromCharCode('A'.charCodeAt(0) + index++);
1238 configurations.push(this._createConfigurationSummary(requestsByRooSet[rootSetId], configLetter, range));
1241 var margin = 0.1 * (range.max - range.min);
1242 range.max += margin;
1243 range.min -= margin;
1245 this.set('configurations', configurations);
1246 }.observes('testResults', 'buildRequests'),
1247 _updateReferenceChart: function ()
1249 var configurations = this.get('configurations');
1250 var chartData = this.get('overviewPane') ? this.get('overviewPane').get('chartData') : null;
1251 if (!configurations || !chartData || this.get('referenceChart'))
1254 var currentTimeSeries = chartData.current;
1255 if (!currentTimeSeries)
1258 var repositories = this.get('repositories');
1259 var highlightedItems = {};
1260 var failedToFindPoint = false;
1261 configurations.forEach(function (config) {
1263 config.get('rootSet').get('roots').forEach(function (root) {
1264 revisions[root.get('repository').get('id')] = root.get('revision');
1266 var point = currentTimeSeries.findPointByRevisions(revisions);
1268 failedToFindPoint = true;
1271 highlightedItems[point.measurement.id()] = true;
1273 if (failedToFindPoint)
1276 this.set('referenceChart', {
1278 highlightedItems: highlightedItems,
1280 }.observes('configurations', 'overviewPane.chartData'),
1281 _computeRepositoryList: function ()
1283 var specifiedRepositories = new Ember.Set();
1284 (this.get('rootSets') || []).forEach(function (rootSet) {
1285 (rootSet.get('roots') || []).forEach(function (root) {
1286 specifiedRepositories.add(root.get('repository'));
1289 var reportedRepositories = new Ember.Set();
1290 var testResults = this.get('testResults');
1291 (this.get('buildRequests') || []).forEach(function (request) {
1292 var point = testResults.current.findPointByBuild(request.get('build'));
1296 var revisionByRepositoryId = point.measurement.formattedRevisions();
1297 for (var repositoryId in revisionByRepositoryId) {
1298 var repository = App.Manifest.repository(repositoryId);
1299 if (!specifiedRepositories.contains(repository))
1300 reportedRepositories.add(repository);
1303 return specifiedRepositories.sortBy('name').concat(reportedRepositories.sortBy('name'));
1305 _groupRequestsByConfigurations: function (requests, repositoryList)
1307 var rootSetIdToRequests = {};
1308 var testGroup = this;
1309 requests.forEach(function (request) {
1310 var rootSetId = request.get('rootSet').get('id');
1311 if (!rootSetIdToRequests[rootSetId])
1312 rootSetIdToRequests[rootSetId] = [];
1313 rootSetIdToRequests[rootSetId].push(request);
1315 return rootSetIdToRequests;
1317 _createConfigurationSummary: function (buildRequests, configLetter, range)
1319 var repositories = this.get('repositories');
1320 var testResults = this.get('testResults');
1321 var requests = buildRequests.map(function (originalRequest) {
1322 var point = testResults.current.findPointByBuild(originalRequest.get('build'));
1323 var revisionByRepositoryId = point ? point.measurement.formattedRevisions() : {};
1324 return Ember.ObjectProxy.create({
1325 content: originalRequest,
1326 revisionList: repositories.map(function (repository, index) {
1327 return (revisionByRepositoryId[repository.get('id')] || {label:null}).label;
1329 value: point ? point.value : null,
1331 formattedValue: point ? testResults.formatWithUnit(point.value) : null,
1332 buildLabel: point ? 'Build ' + point.measurement.buildNumber() : null,
1336 var rootSet = requests ? requests[0].get('rootSet') : null;
1337 var summaryRevisions = repositories.map(function (repository, index) {
1338 var revision = rootSet ? rootSet.revisionForRepository(repository) : null;
1340 return requests[0].get('revisionList')[index];
1341 return Measurement.formatRevisionRange(revision).label;
1344 requests.forEach(function (request) {
1345 var revisionList = request.get('revisionList');
1346 repositories.forEach(function (repository, index) {
1347 if (revisionList[index] == summaryRevisions[index])
1348 revisionList[index] = null;
1352 var valuesInConfig = requests.mapBy('value').filter(function (value) { return typeof(value) === 'number' && !isNaN(value); });
1353 var sum = Statistics.sum(valuesInConfig);
1354 var ciDelta = Statistics.confidenceIntervalDelta(0.95, valuesInConfig.length, sum, Statistics.squareSum(valuesInConfig));
1355 var mean = sum / valuesInConfig.length;
1357 range.min = Math.min(range.min, Statistics.min(valuesInConfig));
1358 range.max = Math.max(range.max, Statistics.max(valuesInConfig));
1359 if (ciDelta && !isNaN(ciDelta)) {
1360 range.min = Math.min(range.min, mean - ciDelta);
1361 range.max = Math.max(range.max, mean + ciDelta);
1364 var summary = Ember.Object.create({
1366 configLetter: configLetter,
1367 revisionList: summaryRevisions,
1368 formattedValue: isNaN(mean) ? null : testResults.formatWithDeltaAndUnit(mean, ciDelta),
1370 confidenceIntervalDelta: ciDelta,
1372 statusLabel: App.BuildRequest.aggregateStatuses(requests),
1375 return Ember.Object.create({summary: summary, items: requests, rootSet: rootSet});
1379 App.BoxPlotComponent = Ember.Component.extend({
1380 classNames: ['box-plot'],
1384 didInsertElement: function ()
1386 var element = this.get('element');
1387 var svg = d3.select(element).append('svg')
1388 .attr('viewBox', '0 0 100 20')
1389 .attr('preserveAspectRatio', 'none')
1390 .style({width: '100%', height: '100%'});
1392 this._percentageRect = svg
1398 .attr('class', 'percentage');
1400 this._deltaRect = svg
1406 .attr('class', 'delta')
1407 .attr('opacity', 0.5)
1410 _updateBars: function ()
1412 if (!this._percentageRect || typeof(this._percentage) !== 'number' || isNaN(this._percentage))
1415 this._percentageRect.attr('width', this._percentage);
1416 if (typeof(this._delta) === 'number' && !isNaN(this._delta)) {
1417 this._deltaRect.attr('x', this._percentage - this._delta);
1418 this._deltaRect.attr('width', this._delta * 2);
1421 valueChanged: function ()
1423 var range = this.get('range');
1424 var value = this.get('value');
1425 if (!range || !value)
1427 var scalingFactor = 100 / (range.max - range.min);
1428 var percentage = (value - range.min) * scalingFactor;
1429 this._percentage = percentage;
1430 this._delta = this.get('delta') * scalingFactor;
1432 }.observes('value', 'range').on('init'),