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');
354 App.Manifest.fetchRunsWithPlatformAndMetric(this.get('store'), platformId, metricId, null, useCache)
355 .then(function (result) {
356 self._didFetchRuns(result);
357 if (result.shouldRefetch)
359 }, this._handleFetchErrors.bind(this, platformId, metricId));
360 this.fetchAnalyticRanges();
362 }.observes('platformId', 'metricId').on('init'),
363 refetchRuns: function () {
364 var platform = this.get('platform');
365 var metric = this.get('metric');
366 Ember.assert('refetchRuns should be called only after platform and metric are resolved', platform && metric);
368 var useCache = false;
369 App.Manifest.fetchRunsWithPlatformAndMetric(this.get('store'), platform.get('id'), metric.get('id'), null, useCache)
370 .then(this._didFetchRuns.bind(this), this._handleFetchErrors.bind(this, platform.get('id'), metric.get('id')));
372 _didFetchRuns: function (result)
374 this.set('platform', result.platform);
375 this.set('metric', result.metric);
376 this._setNewChartData(result.data);
378 _setNewChartData: function (chartData)
380 var newChartData = {};
381 for (var property in chartData)
382 newChartData[property] = chartData[property];
384 var showOutlier = this.get('showOutlier');
385 newChartData.showOutlier(showOutlier);
386 this.set('chartData', newChartData);
387 this._updateMovingAverageAndEnvelope();
389 if (!this.get('anomalyDetectionStrategies').filterBy('enabled').length)
390 this._highlightPointsMarkedAsOutlier(newChartData);
392 _highlightPointsMarkedAsOutlier: function (newChartData)
394 var data = newChartData.current.series();
396 for (var i = 0; i < data.length; i++) {
397 if (data[i].measurement.markedOutlier())
398 items[data[i].measurement.id()] = true;
401 this.set('highlightedItems', items);
403 _handleFetchErrors: function (platformId, metricId, result)
405 if (!result || typeof(result) === "string")
406 this.set('failure', 'Failed to fetch the JSON with an error: ' + result);
407 else if (!result.platform)
408 this.set('failure', 'Could not find the platform "' + platformId + '"');
409 else if (!result.metric)
410 this.set('failure', 'Could not find the metric "' + metricId + '"');
412 this.set('failure', 'An internal error');
414 fetchAnalyticRanges: function ()
416 var platformId = this.get('platformId');
417 var metricId = this.get('metricId');
420 .find('analysisTask', {platform: platformId, metric: metricId})
421 .then(function (tasks) {
422 self.set('analyticRanges', tasks.filter(function (task) { return task.get('startRun') && task.get('endRun'); }));
425 _isValidId: function (id)
427 if (typeof(id) == "number")
429 if (typeof(id) == "string")
430 return !!id.match(/^[A-Za-z0-9_]+$/);
433 computeStatus: function (currentPoint, previousPoint)
435 var chartData = this.get('chartData');
436 var diffFromBaseline = this._relativeDifferentToLaterPointInTimeSeries(currentPoint, chartData.baseline);
437 var diffFromTarget = this._relativeDifferentToLaterPointInTimeSeries(currentPoint, chartData.target);
441 var formatter = d3.format('.3p');
443 var smallerIsBetter = chartData.smallerIsBetter;
444 if (diffFromBaseline !== undefined && diffFromBaseline > 0 == smallerIsBetter) {
445 label = formatter(Math.abs(diffFromBaseline)) + ' ' + (smallerIsBetter ? 'above' : 'below') + ' baseline';
447 } else if (diffFromTarget !== undefined && diffFromTarget < 0 == smallerIsBetter) {
448 label = formatter(Math.abs(diffFromTarget)) + ' ' + (smallerIsBetter ? 'below' : 'above') + ' target';
449 className = 'better';
450 } else if (diffFromTarget !== undefined)
451 label = formatter(Math.abs(diffFromTarget)) + ' until target';
453 var valueDelta = null;
454 var relativeDelta = null;
456 valueDelta = chartData.deltaFormatter(currentPoint.value - previousPoint.value);
457 relativeDelta = d3.format('+.2p')((currentPoint.value - previousPoint.value) / previousPoint.value);
460 className: className,
462 currentValue: chartData.formatter(currentPoint.value),
463 valueDelta: valueDelta,
464 relativeDelta: relativeDelta,
467 _relativeDifferentToLaterPointInTimeSeries: function (currentPoint, timeSeries)
469 if (!currentPoint || !timeSeries)
472 var referencePoint = timeSeries.findPointAfterTime(currentPoint.time);
476 return (currentPoint.value - referencePoint.value) / referencePoint.value;
478 latestStatus: function ()
480 var chartData = this.get('chartData');
481 if (!chartData || !chartData.current)
484 var lastPoint = chartData.current.lastPoint();
488 return this.computeStatus(lastPoint, chartData.current.previousPoint(lastPoint));
489 }.property('chartData'),
490 updateStatisticsTools: function ()
492 var movingAverageStrategies = Statistics.MovingAverageStrategies.map(this._cloneStrategy.bind(this));
493 this.set('movingAverageStrategies', [{label: 'None'}].concat(movingAverageStrategies));
494 this.set('chosenMovingAverageStrategy', this._configureStrategy(movingAverageStrategies, this.get('movingAverageConfig')));
496 var envelopingStrategies = Statistics.EnvelopingStrategies.map(this._cloneStrategy.bind(this));
497 this.set('envelopingStrategies', [{label: 'None'}].concat(envelopingStrategies));
498 this.set('chosenEnvelopingStrategy', this._configureStrategy(envelopingStrategies, this.get('envelopingConfig')));
500 var anomalyDetectionStrategies = Statistics.AnomalyDetectionStrategy.map(this._cloneStrategy.bind(this));
501 this.set('anomalyDetectionStrategies', anomalyDetectionStrategies);
503 _cloneStrategy: function (strategy)
505 var parameterList = (strategy.parameterList || []).map(function (param) { return Ember.Object.create(param); });
506 return Ember.Object.create({
508 label: strategy.label,
509 description: strategy.description,
510 parameterList: parameterList,
511 execute: strategy.execute,
514 _configureStrategy: function (strategies, config)
516 if (!config || !config[0])
520 var chosenStrategy = strategies.find(function (strategy) { return strategy.id == id });
524 if (chosenStrategy.parameterList) {
525 for (var i = 0; i < chosenStrategy.parameterList.length; i++)
526 chosenStrategy.parameterList[i].value = parseFloat(config[i + 1]);
529 return chosenStrategy;
531 _updateMovingAverageAndEnvelope: function ()
533 var chartData = this.get('chartData');
537 var movingAverageStrategy = this.get('chosenMovingAverageStrategy');
538 this._updateStrategyConfigIfNeeded(movingAverageStrategy, 'movingAverageConfig');
540 var envelopingStrategy = this.get('chosenEnvelopingStrategy');
541 this._updateStrategyConfigIfNeeded(envelopingStrategy, 'envelopingConfig');
543 var anomalyDetectionStrategies = this.get('anomalyDetectionStrategies').filterBy('enabled');
545 chartData.movingAverage = this._computeMovingAverageAndOutliers(chartData, movingAverageStrategy, envelopingStrategy, anomalyDetectionStrategies, anomalies);
546 this.set('highlightedItems', anomalies);
548 _movingAverageOrEnvelopeStrategyDidChange: function () {
549 var chartData = this.get('chartData');
552 this._setNewChartData(chartData);
553 }.observes('chosenMovingAverageStrategy', 'chosenMovingAverageStrategy.parameterList.@each.value',
554 'chosenEnvelopingStrategy', 'chosenEnvelopingStrategy.parameterList.@each.value',
555 'anomalyDetectionStrategies.@each.enabled'),
556 _computeMovingAverageAndOutliers: function (chartData, movingAverageStrategy, envelopingStrategy, anomalyDetectionStrategies, anomalies)
558 var currentTimeSeriesData = chartData.current.series();
559 var movingAverageIsSetByUser = movingAverageStrategy && movingAverageStrategy.execute;
560 var movingAverageValues = this._executeStrategy(
561 movingAverageIsSetByUser ? movingAverageStrategy : Statistics.MovingAverageStrategies[0], currentTimeSeriesData);
562 if (!movingAverageValues)
565 var envelopeIsSetByUser = envelopingStrategy && envelopingStrategy.execute;
566 var envelopeDelta = this._executeStrategy(envelopeIsSetByUser ? envelopingStrategy : Statistics.EnvelopingStrategies[0],
567 currentTimeSeriesData, [movingAverageValues]);
569 for (var i = 0; i < currentTimeSeriesData.length; i++) {
570 var currentValue = currentTimeSeriesData[i].value;
571 var movingAverageValue = movingAverageValues[i];
572 if (currentValue < movingAverageValue - envelopeDelta || movingAverageValue + envelopeDelta < currentValue)
573 currentTimeSeriesData[i].isOutlier = true;
575 if (!envelopeIsSetByUser)
576 envelopeDelta = null;
578 var isAnomalyArray = new Array(currentTimeSeriesData.length);
579 for (var strategy of anomalyDetectionStrategies) {
580 var anomalyLengths = this._executeStrategy(strategy, currentTimeSeriesData, [movingAverageValues, envelopeDelta]);
581 for (var i = 0; i < currentTimeSeriesData.length; i++)
582 isAnomalyArray[i] = isAnomalyArray[i] || anomalyLengths[i];
584 for (var i = 0; i < isAnomalyArray.length; i++) {
585 if (!isAnomalyArray[i])
587 anomalies[currentTimeSeriesData[i].measurement.id()] = true;
588 while (isAnomalyArray[i] && i < isAnomalyArray.length)
592 if (movingAverageIsSetByUser) {
593 return new TimeSeries(currentTimeSeriesData.map(function (point, index) {
594 var value = movingAverageValues[index];
596 measurement: point.measurement,
599 interval: envelopeDelta !== null ? [value - envelopeDelta, value + envelopeDelta] : null,
604 _executeStrategy: function (strategy, currentTimeSeriesData, additionalArguments)
606 var parameters = (strategy.parameterList || []).map(function (param) {
607 var parsed = parseFloat(param.value);
608 return Math.min(param.max || Infinity, Math.max(param.min || -Infinity, isNaN(parsed) ? 0 : parsed));
610 parameters.push(currentTimeSeriesData.map(function (point) { return point.value }));
611 return strategy.execute.apply(window, parameters.concat(additionalArguments));
613 _updateStrategyConfigIfNeeded: function (strategy, configName)
616 if (strategy && strategy.execute)
617 config = [strategy.id].concat((strategy.parameterList || []).map(function (param) { return param.value; }));
619 if (JSON.stringify(config) != JSON.stringify(this.get(configName)))
620 this.set(configName, config);
622 _updateDetails: function ()
624 var selectedPoints = this.get('selectedPoints');
625 var currentPoint = this.get('hoveredOrSelectedItem');
626 if (!selectedPoints && !currentPoint) {
627 this.set('details', null);
631 var currentMeasurement;
634 previousPoint = currentPoint.series.previousPoint(currentPoint);
636 currentPoint = selectedPoints[selectedPoints.length - 1];
637 previousPoint = selectedPoints[0];
639 var currentMeasurement = currentPoint.measurement;
640 var oldMeasurement = previousPoint ? previousPoint.measurement : null;
642 var formattedRevisions = currentMeasurement.formattedRevisions(oldMeasurement);
643 var revisions = App.Manifest.get('repositories')
644 .filter(function (repository) { return formattedRevisions[repository.get('id')]; })
645 .map(function (repository) {
646 var revision = Ember.Object.create(formattedRevisions[repository.get('id')]);
647 revision['url'] = revision.previousRevision
648 ? repository.urlForRevisionRange(revision.previousRevision, revision.currentRevision)
649 : repository.urlForRevision(revision.currentRevision);
650 revision['name'] = repository.get('name');
651 revision['repository'] = repository;
655 var buildNumber = null;
657 if (!selectedPoints) {
658 buildNumber = currentMeasurement.buildNumber();
659 var builder = App.Manifest.builder(currentMeasurement.builderId());
661 buildURL = builder.urlFromBuildNumber(buildNumber);
664 this.set('details', Ember.Object.create({
665 status: this.computeStatus(currentPoint, previousPoint),
666 buildNumber: buildNumber,
668 buildTime: currentMeasurement.formattedBuildTime(),
669 revisions: revisions,
671 }.observes('hoveredOrSelectedItem', 'selectedPoints'),
674 App.encodePrettifiedJSON = function (plain)
676 function numberIfPossible(string) {
677 return string == parseInt(string) ? parseInt(string) : string;
680 function recursivelyConvertNumberIfPossible(input) {
681 if (input instanceof Array) {
682 return input.map(recursivelyConvertNumberIfPossible);
684 return numberIfPossible(input);
687 return JSON.stringify(recursivelyConvertNumberIfPossible(plain))
688 .replace(/\[/g, '(').replace(/\]/g, ')').replace(/\,/g, '-');
691 App.decodePrettifiedJSON = function (encoded)
693 var parsed = encoded.replace(/\(/g, '[').replace(/\)/g, ']').replace(/\-/g, ',');
695 return JSON.parse(parsed);
696 } catch (exception) {
701 App.ChartsController = Ember.Controller.extend({
702 queryParams: ['paneList', 'zoom', 'since'],
704 _currentEncodedPaneList: null,
710 defaultSince: Date.now() - 7 * 24 * 3600 * 1000,
712 addPane: function (pane)
714 this.panes.unshiftObject(pane);
717 removePane: function (pane)
719 this.panes.removeObject(pane);
722 refreshPanes: function()
724 var paneList = this.get('paneList');
725 if (paneList === this._currentEncodedPaneList)
728 var panes = this._parsePaneList(paneList || '[]');
730 console.log('Failed to parse', jsonPaneList, exception);
733 this.set('panes', panes);
734 this._currentEncodedPaneList = paneList;
735 }.observes('paneList').on('init'),
737 refreshZoom: function()
739 var zoom = this.get('zoom');
741 this.set('sharedZoom', null);
745 zoom = zoom.split('-');
746 var selection = new Array(2);
748 selection[0] = new Date(parseFloat(zoom[0]));
749 selection[1] = new Date(parseFloat(zoom[1]));
751 console.log('Failed to parse the zoom', zoom);
753 this.set('sharedZoom', selection);
755 var startTime = this.get('startTime');
756 if (startTime && startTime > selection[0])
757 this.set('startTime', selection[0]);
759 }.observes('zoom').on('init'),
761 _startTimeChanged: function () {
762 this.set('sharedDomain', [this.get('startTime'), this.get('present')]);
763 this._scheduleQueryStringUpdate();
764 }.observes('startTime'),
766 _sinceChanged: function () {
767 var since = parseInt(this.get('since'));
769 since = this.defaultSince;
770 this.set('startTime', new Date(since));
771 }.observes('since').on('init'),
773 _parsePaneList: function (encodedPaneList)
775 var parsedPaneList = App.decodePrettifiedJSON(encodedPaneList);
779 // FIXME: Don't re-create all panes.
781 return parsedPaneList.map(function (paneInfo) {
782 var timeRange = null;
783 var selectedItem = null;
784 if (paneInfo[2] instanceof Array) {
785 var timeRange = paneInfo[2];
787 timeRange = [new Date(timeRange[0]), new Date(timeRange[1])];
789 console.log("Failed to parse the time range:", timeRange, error);
792 selectedItem = paneInfo[2];
794 return App.Pane.create({
797 platformId: paneInfo[0],
798 metricId: paneInfo[1],
799 selectedItem: selectedItem,
800 timeRange: timeRange,
801 showFullYAxis: paneInfo[3],
802 movingAverageConfig: paneInfo[4],
803 envelopingConfig: paneInfo[5],
808 _serializePaneList: function (panes)
813 return App.encodePrettifiedJSON(panes.map(function (pane) {
815 pane.get('platformId'),
816 pane.get('metricId'),
817 pane.get('timeRange') ? pane.get('timeRange').map(function (date) { return date.getTime() }) : pane.get('selectedItem'),
818 pane.get('showFullYAxis'),
819 pane.get('movingAverageConfig'),
820 pane.get('envelopingConfig'),
825 _scheduleQueryStringUpdate: function ()
827 Ember.run.debounce(this, '_updateQueryString', 1000);
828 }.observes('sharedZoom', 'panes.@each.platform', 'panes.@each.metric', 'panes.@each.selectedItem', 'panes.@each.timeRange',
829 'panes.@each.showFullYAxis', 'panes.@each.movingAverageConfig', 'panes.@each.envelopingConfig'),
831 _updateQueryString: function ()
833 this._currentEncodedPaneList = this._serializePaneList(this.get('panes'));
834 this.set('paneList', this._currentEncodedPaneList);
836 var zoom = undefined;
837 var sharedZoom = this.get('sharedZoom');
838 if (sharedZoom && !App.domainsAreEqual(sharedZoom, this.get('sharedDomain')))
839 zoom = +sharedZoom[0] + '-' + +sharedZoom[1];
840 this.set('zoom', zoom);
842 if (this.get('startTime') - this.defaultSince)
843 this.set('since', this.get('startTime') - 0);
847 addPaneByMetricAndPlatform: function (param)
849 this.addPane(App.Pane.create({
851 platformId: param.platform.get('id'),
852 metricId: param.metric.get('id'),
853 showingDetails: false
862 App.buildPopup(this.store, 'addPaneByMetricAndPlatform').then(function (platforms) {
863 self.set('platforms', platforms);
868 App.buildPopup = function(store, action, position)
870 return App.Manifest.fetch(store).then(function () {
871 return App.Manifest.get('platforms').map(function (platform) {
872 return App.PlatformProxyForPopup.create({content: platform,
873 action: action, position: position});
878 App.PlatformProxyForPopup = Ember.ObjectProxy.extend({
879 children: function ()
881 var platform = this.content;
882 var containsTest = this.content.containsTest.bind(this.content);
883 var action = this.get('action');
884 var position = this.get('position');
885 return App.Manifest.get('topLevelTests')
886 .filter(containsTest)
887 .map(function (test) {
888 return App.TestProxyForPopup.create({content: test, platform: platform, action: action, position: position});
890 }.property('App.Manifest.topLevelTests'),
893 App.TestProxyForPopup = Ember.ObjectProxy.extend({
895 children: function ()
897 var platform = this.get('platform');
898 var action = this.get('action');
899 var position = this.get('position');
901 var childTests = this.get('childTests')
902 .filter(function (test) { return platform.containsTest(test); })
903 .map(function (test) {
904 return App.TestProxyForPopup.create({content: test, platform: platform, action: action, position: position});
907 var metrics = this.get('metrics')
908 .filter(function (metric) { return platform.containsMetric(metric); })
909 .map(function (metric) {
910 var aggregator = metric.get('aggregator');
913 actionArgument: {platform: platform, metric: metric, position:position},
914 label: metric.get('label')
918 if (childTests.length && metrics.length)
919 metrics.push({isSeparator: true});
921 return metrics.concat(childTests);
922 }.property('childTests', 'metrics'),
925 App.domainsAreEqual = function (domain1, domain2) {
926 return (!domain1 && !domain2) || (domain1 && domain2 && !(domain1[0] - domain2[0]) && !(domain1[1] - domain2[1]));
929 App.PaneController = Ember.ObjectController.extend({
931 sharedTime: Ember.computed.alias('parentController.sharedTime'),
932 sharedSelection: Ember.computed.alias('parentController.sharedSelection'),
935 toggleDetails: function()
937 this.toggleProperty('showingDetails');
941 this.parentController.removePane(this.get('model'));
943 toggleBugsPane: function ()
945 if (this.toggleProperty('showingAnalysisPane')) {
946 this.set('showingSearchPane', false);
947 this.set('showingStatPane', false);
950 toggleShowOutlier: function ()
952 var pane = this.get('model');
953 pane.toggleProperty('showOutlier');
954 var chartData = pane.get('chartData');
957 pane._setNewChartData(chartData);
959 createAnalysisTask: function ()
961 var name = this.get('newAnalysisTaskName');
962 var points = this.get('selectedPoints');
963 Ember.assert('The analysis name should not be empty', name);
964 Ember.assert('There should be at least two points in the range', points && points.length >= 2);
966 var newWindow = window.open();
968 App.AnalysisTask.create(name, points[0].measurement, points[points.length - 1].measurement).then(function (data) {
969 // FIXME: Update the UI to show the new analysis task.
970 var url = App.Router.router.generate('analysisTask', data['taskId']);
971 newWindow.location.href = '#' + url;
972 self.get('model').fetchAnalyticRanges();
973 }, function (error) {
975 if (error === 'DuplicateAnalysisTask') {
976 // FIXME: Duplicate this error more gracefully.
981 toggleSearchPane: function ()
983 if (!App.Manifest.repositoriesWithReportedCommits)
985 var model = this.get('model');
986 if (!model.get('commitSearchRepository'))
987 model.set('commitSearchRepository', App.Manifest.repositoriesWithReportedCommits[0]);
988 if (this.toggleProperty('showingSearchPane')) {
989 this.set('showingAnalysisPane', false);
990 this.set('showingStatPane', false);
993 searchCommit: function () {
994 var model = this.get('model');
995 model.searchCommit(model.get('commitSearchRepository'), model.get('commitSearchKeyword'));
997 toggleStatPane: function ()
999 if (this.toggleProperty('showingStatPane')) {
1000 this.set('showingSearchPane', false);
1001 this.set('showingAnalysisPane', false);
1004 zoomed: function (selection)
1006 this.set('mainPlotDomain', selection ? selection : this.get('overviewDomain'));
1008 this.set('overviewSelection', selection);
1009 Ember.run.debounce(this, 'propagateZoom', 100);
1012 _overviewSelectionChanged: function ()
1014 var overviewSelection = this.get('overviewSelection');
1015 if (App.domainsAreEqual(overviewSelection, this.get('mainPlotDomain')))
1017 this.set('mainPlotDomain', overviewSelection || this.get('overviewDomain'));
1018 Ember.run.debounce(this, 'propagateZoom', 100);
1019 }.observes('overviewSelection'),
1020 _sharedDomainChanged: function ()
1022 var newDomain = this.get('parentController').get('sharedDomain');
1023 if (App.domainsAreEqual(newDomain, this.get('overviewDomain')))
1025 this.set('overviewDomain', newDomain);
1026 if (!this.get('overviewSelection'))
1027 this.set('mainPlotDomain', newDomain);
1028 }.observes('parentController.sharedDomain').on('init'),
1029 propagateZoom: function ()
1031 this.get('parentController').set('sharedZoom', this.get('mainPlotDomain'));
1033 _sharedZoomChanged: function ()
1035 var newSelection = this.get('parentController').get('sharedZoom');
1036 if (App.domainsAreEqual(newSelection, this.get('mainPlotDomain')))
1038 this.set('mainPlotDomain', newSelection || this.get('overviewDomain'));
1039 this.set('overviewSelection', newSelection);
1040 }.observes('parentController.sharedZoom').on('init'),
1041 _updateCanAnalyze: function ()
1043 var pane = this.get('model');
1044 var points = pane.get('selectedPoints');
1045 this.set('cannotAnalyze', !this.get('newAnalysisTaskName') || !points || points.length < 2);
1046 this.set('cannotMarkOutlier', !!points || !this.get('selectedItem'));
1048 var selectedMeasurement = this.selectedMeasurement();
1049 this.set('selectedItemIsMarkedOutlier', selectedMeasurement && selectedMeasurement.markedOutlier());
1051 }.observes('newAnalysisTaskName', 'model.selectedPoints', 'model.selectedItem').on('init'),
1052 selectedMeasurement: function () {
1053 var chartData = this.get('model').get('chartData');
1054 var selectedItem = this.get('selectedItem');
1055 if (!chartData || !selectedItem)
1057 var point = chartData.current.findPointByMeasurementId(selectedItem);
1058 Ember.assert('selectedItem should always be in the current chart data', point);
1059 return point.measurement;
1061 showOutlierTitle: function ()
1063 return this.get('showOutlier') ? 'Hide outliers' : 'Show outliers';
1064 }.property('showOutlier'),
1065 _selectedItemIsMarkedOutlierDidChange: function ()
1067 var selectedMeasurement = this.selectedMeasurement();
1068 if (!selectedMeasurement)
1070 var selectedItemIsMarkedOutlier = this.get('selectedItemIsMarkedOutlier');
1071 if (selectedMeasurement.markedOutlier() == selectedItemIsMarkedOutlier)
1073 var pane = this.get('model');
1074 selectedMeasurement.setMarkedOutlier(!!selectedItemIsMarkedOutlier).then(function () {
1076 }, function (error) {
1079 }.observes('selectedItemIsMarkedOutlier'),
1082 App.AnalysisRoute = Ember.Route.extend({
1083 model: function () {
1084 return this.store.findAll('analysisTask').then(function (tasks) {
1085 return Ember.Object.create({'tasks': tasks});
1090 App.AnalysisTaskRoute = Ember.Route.extend({
1091 model: function (param)
1093 return this.store.find('analysisTask', param.taskId);
1097 App.AnalysisTaskController = Ember.Controller.extend({
1098 label: Ember.computed.alias('model.name'),
1099 platform: Ember.computed.alias('model.platform'),
1100 metric: Ember.computed.alias('model.metric'),
1101 details: Ember.computed.alias('pane.details'),
1104 possibleRepetitionCounts: [1, 2, 3, 4, 5, 6],
1105 _taskUpdated: function ()
1107 var model = this.get('model');
1111 App.Manifest.fetch(this.store).then(this._fetchedManifest.bind(this));
1112 this.set('pane', App.Pane.create({
1114 platformId: model.get('platform').get('id'),
1115 metricId: model.get('metric').get('id'),
1119 model.get('testGroups').then(function (groups) {
1120 self.set('testGroupPanes', groups.map(function (group) { return App.TestGroupPane.create({content: group}); }));
1122 }.observes('model', 'model.testGroups').on('init'),
1123 _fetchedManifest: function ()
1125 var trackerIdToBugNumber = {};
1126 this.get('model').get('bugs').forEach(function (bug) {
1127 trackerIdToBugNumber[bug.get('bugTracker').get('id')] = bug.get('number');
1130 this.set('bugTrackers', App.Manifest.get('bugTrackers').map(function (bugTracker) {
1131 var bugNumber = trackerIdToBugNumber[bugTracker.get('id')];
1132 return Ember.ObjectProxy.create({
1133 content: bugTracker,
1134 bugNumber: bugNumber,
1135 editedBugNumber: bugNumber,
1139 _chartDataChanged: function ()
1141 var pane = this.get('pane');
1145 var chartData = pane.get('chartData');
1149 var currentTimeSeries = chartData.current;
1150 if (!currentTimeSeries)
1151 return null; // FIXME: Report an error.
1153 var start = currentTimeSeries.findPointByMeasurementId(this.get('model').get('startRun'));
1154 var end = currentTimeSeries.findPointByMeasurementId(this.get('model').get('endRun'));
1156 return null; // FIXME: Report an error.
1158 var highlightedItems = {};
1159 highlightedItems[start.measurement.id()] = true;
1160 highlightedItems[end.measurement.id()] = true;
1162 var formatedPoints = currentTimeSeries.seriesBetweenPoints(start, end).map(function (point, index) {
1164 id: point.measurement.id(),
1165 measurement: point.measurement,
1166 label: 'Point ' + (index + 1),
1167 value: chartData.formatWithUnit(point.value),
1171 var margin = (end.time - start.time) * 0.1;
1172 this.set('highlightedItems', highlightedItems);
1173 this.set('overviewEndPoints', [start, end]);
1174 this.set('analysisPoints', formatedPoints);
1176 var overviewDomain = [start.time - margin, +end.time + margin];
1178 var testGroupPanes = this.get('testGroupPanes');
1179 if (testGroupPanes) {
1180 testGroupPanes.setEach('overviewPane', pane);
1181 testGroupPanes.setEach('overviewDomain', overviewDomain);
1184 this.set('overviewDomain', overviewDomain);
1185 }.observes('pane.chartData'),
1186 updateRootConfigurations: function ()
1188 var analysisPoints = this.get('analysisPoints');
1189 if (!analysisPoints)
1191 var repositoryToRevisions = {};
1192 analysisPoints.forEach(function (point, pointIndex) {
1193 var revisions = point.measurement.formattedRevisions();
1194 for (var repositoryId in revisions) {
1195 if (!repositoryToRevisions[repositoryId])
1196 repositoryToRevisions[repositoryId] = new Array(analysisPoints.length);
1197 var revision = revisions[repositoryId];
1198 repositoryToRevisions[repositoryId][pointIndex] = {
1199 label: point.label + ': ' + revision.label,
1200 value: revision.currentRevision,
1206 this.get('model').get('triggerable').then(function (triggerable) {
1210 self.set('configurations', ['A', 'B']);
1211 self.set('rootConfigurations', triggerable.get('acceptedRepositories').map(function (repository) {
1212 var repositoryId = repository.get('id');
1213 var options = [{label: 'None'}].concat((repositoryToRevisions[repositoryId] || []).map(function (option, index) {
1214 if (!option || !option['value'])
1215 return {value: '', label: analysisPoints[index].label + ': None'};
1218 return Ember.Object.create({
1219 repository: repository,
1220 name: repository.get('name'),
1222 Ember.Object.create({name: 'A[' + repositoryId + ']',
1224 selection: options[1]}),
1225 Ember.Object.create({name: 'B[' + repositoryId + ']',
1227 selection: options[options.length - 1]}),
1232 }.observes('analysisPoints'),
1234 associateBug: function (bugTracker, bugNumber)
1236 var model = this.get('model');
1237 this.store.createRecord('bug',
1238 {task: this.get('model'), bugTracker: bugTracker.get('content'), number: bugNumber}).save().then(function () {
1239 // FIXME: Should we notify the user?
1240 }, function (error) {
1241 alert('Failed to associate the bug: ' + error);
1244 createTestGroup: function (name, repetitionCount)
1246 var analysisTask = this.get('model');
1247 if (analysisTask.get('testGroups').isAny('name', name)) {
1248 alert('Cannot create two test groups of the same name.');
1253 var rootConfigurations = this.get('rootConfigurations').toArray();
1254 for (var root of rootConfigurations) {
1255 var sets = root.get('sets');
1256 var hasSelection = function (item) { return item.get('selection') && item.get('selection').value; };
1257 if (!sets.any(hasSelection))
1259 if (!sets.every(hasSelection)) {
1260 alert('Only some configuration specifies ' + root.get('name'));
1263 roots[root.get('name')] = sets.map(function (item) { return item.get('selection').value; });
1266 App.TestGroup.create(analysisTask, name, roots, repetitionCount).then(function () {
1267 }, function (error) {
1268 alert('Failed to create a new test group:' + error);
1271 toggleShowRequestList: function (configuration)
1273 configuration.toggleProperty('showRequestList');
1276 _updateRootsBySelectedPoints: function ()
1278 var rootConfigurations = this.get('rootConfigurations');
1279 var pane = this.get('pane');
1280 if (!rootConfigurations || !pane)
1284 var selectedPoints = pane.get('selectedPoints');
1285 if (selectedPoints && selectedPoints.length >= 2)
1286 rootSetPoints = [selectedPoints[0], selectedPoints[selectedPoints.length - 1]];
1288 rootSetPoints = this.get('overviewEndPoints');
1292 rootConfigurations.forEach(function (root) {
1293 root.get('sets').forEach(function (set, setIndex) {
1294 if (setIndex >= rootSetPoints.length)
1296 var targetRevision = rootSetPoints[setIndex].measurement.revisionForRepository(root.get('repository').get('id'));
1299 selectedOption = set.get('options').find(function (option) { return option.value == targetRevision; });
1300 set.set('selection', selectedOption || set.get('options')[0]);
1304 }.observes('pane.selectedPoints'),
1307 App.TestGroupPane = Ember.ObjectProxy.extend({
1308 _populate: function ()
1310 var buildRequests = this.get('buildRequests');
1311 var testResults = this.get('testResults');
1312 if (!buildRequests || !testResults)
1315 var repositories = this._computeRepositoryList();
1316 this.set('repositories', repositories);
1318 var requestsByRooSet = this._groupRequestsByConfigurations(buildRequests);
1320 var configurations = [];
1322 var range = {min: Infinity, max: -Infinity};
1323 for (var rootSetId in requestsByRooSet) {
1324 var configLetter = String.fromCharCode('A'.charCodeAt(0) + index++);
1325 configurations.push(this._createConfigurationSummary(requestsByRooSet[rootSetId], configLetter, range));
1328 var margin = 0.1 * (range.max - range.min);
1329 range.max += margin;
1330 range.min -= margin;
1332 this.set('configurations', configurations);
1333 }.observes('testResults', 'buildRequests'),
1334 _updateReferenceChart: function ()
1336 var configurations = this.get('configurations');
1337 var chartData = this.get('overviewPane') ? this.get('overviewPane').get('chartData') : null;
1338 if (!configurations || !chartData || this.get('referenceChart'))
1341 var currentTimeSeries = chartData.current;
1342 if (!currentTimeSeries)
1345 var repositories = this.get('repositories');
1346 var highlightedItems = {};
1347 var failedToFindPoint = false;
1348 configurations.forEach(function (config) {
1350 config.get('rootSet').get('roots').forEach(function (root) {
1351 revisions[root.get('repository').get('id')] = root.get('revision');
1353 var point = currentTimeSeries.findPointByRevisions(revisions);
1355 failedToFindPoint = true;
1358 highlightedItems[point.measurement.id()] = true;
1360 if (failedToFindPoint)
1363 this.set('referenceChart', {
1365 highlightedItems: highlightedItems,
1367 }.observes('configurations', 'overviewPane.chartData'),
1368 _computeRepositoryList: function ()
1370 var specifiedRepositories = new Ember.Set();
1371 (this.get('rootSets') || []).forEach(function (rootSet) {
1372 (rootSet.get('roots') || []).forEach(function (root) {
1373 specifiedRepositories.add(root.get('repository'));
1376 var reportedRepositories = new Ember.Set();
1377 var testResults = this.get('testResults');
1378 (this.get('buildRequests') || []).forEach(function (request) {
1379 var point = testResults.current.findPointByBuild(request.get('build'));
1383 var revisionByRepositoryId = point.measurement.formattedRevisions();
1384 for (var repositoryId in revisionByRepositoryId) {
1385 var repository = App.Manifest.repository(repositoryId);
1386 if (!specifiedRepositories.contains(repository))
1387 reportedRepositories.add(repository);
1390 return specifiedRepositories.sortBy('name').concat(reportedRepositories.sortBy('name'));
1392 _groupRequestsByConfigurations: function (requests, repositoryList)
1394 var rootSetIdToRequests = {};
1395 var testGroup = this;
1396 requests.forEach(function (request) {
1397 var rootSetId = request.get('rootSet').get('id');
1398 if (!rootSetIdToRequests[rootSetId])
1399 rootSetIdToRequests[rootSetId] = [];
1400 rootSetIdToRequests[rootSetId].push(request);
1402 return rootSetIdToRequests;
1404 _createConfigurationSummary: function (buildRequests, configLetter, range)
1406 var repositories = this.get('repositories');
1407 var testResults = this.get('testResults');
1408 var requests = buildRequests.map(function (originalRequest) {
1409 var point = testResults.current.findPointByBuild(originalRequest.get('build'));
1410 var revisionByRepositoryId = point ? point.measurement.formattedRevisions() : {};
1411 return Ember.ObjectProxy.create({
1412 content: originalRequest,
1413 revisionList: repositories.map(function (repository, index) {
1414 return (revisionByRepositoryId[repository.get('id')] || {label:null}).label;
1416 value: point ? point.value : null,
1418 formattedValue: point ? testResults.formatWithUnit(point.value) : null,
1419 buildLabel: point ? 'Build ' + point.measurement.buildNumber() : null,
1423 var rootSet = requests ? requests[0].get('rootSet') : null;
1424 var summaryRevisions = repositories.map(function (repository, index) {
1425 var revision = rootSet ? rootSet.revisionForRepository(repository) : null;
1427 return requests[0].get('revisionList')[index];
1428 return Measurement.formatRevisionRange(revision).label;
1431 requests.forEach(function (request) {
1432 var revisionList = request.get('revisionList');
1433 repositories.forEach(function (repository, index) {
1434 if (revisionList[index] == summaryRevisions[index])
1435 revisionList[index] = null;
1439 var valuesInConfig = requests.mapBy('value').filter(function (value) { return typeof(value) === 'number' && !isNaN(value); });
1440 var sum = Statistics.sum(valuesInConfig);
1441 var ciDelta = Statistics.confidenceIntervalDelta(0.95, valuesInConfig.length, sum, Statistics.squareSum(valuesInConfig));
1442 var mean = sum / valuesInConfig.length;
1444 range.min = Math.min(range.min, Statistics.min(valuesInConfig));
1445 range.max = Math.max(range.max, Statistics.max(valuesInConfig));
1446 if (ciDelta && !isNaN(ciDelta)) {
1447 range.min = Math.min(range.min, mean - ciDelta);
1448 range.max = Math.max(range.max, mean + ciDelta);
1451 var summary = Ember.Object.create({
1453 configLetter: configLetter,
1454 revisionList: summaryRevisions,
1455 formattedValue: isNaN(mean) ? null : testResults.formatWithDeltaAndUnit(mean, ciDelta),
1457 confidenceIntervalDelta: ciDelta,
1459 statusLabel: App.BuildRequest.aggregateStatuses(requests),
1462 return Ember.Object.create({summary: summary, items: requests, rootSet: rootSet});
1466 App.BoxPlotComponent = Ember.Component.extend({
1467 classNames: ['box-plot'],
1471 didInsertElement: function ()
1473 var element = this.get('element');
1474 var svg = d3.select(element).append('svg')
1475 .attr('viewBox', '0 0 100 20')
1476 .attr('preserveAspectRatio', 'none')
1477 .style({width: '100%', height: '100%'});
1479 this._percentageRect = svg
1485 .attr('class', 'percentage');
1487 this._deltaRect = svg
1493 .attr('class', 'delta')
1494 .attr('opacity', 0.5)
1497 _updateBars: function ()
1499 if (!this._percentageRect || typeof(this._percentage) !== 'number' || isNaN(this._percentage))
1502 this._percentageRect.attr('width', this._percentage);
1503 if (typeof(this._delta) === 'number' && !isNaN(this._delta)) {
1504 this._deltaRect.attr('x', this._percentage - this._delta);
1505 this._deltaRect.attr('width', this._delta * 2);
1508 valueChanged: function ()
1510 var range = this.get('range');
1511 var value = this.get('value');
1512 if (!range || !value)
1514 var scalingFactor = 100 / (range.max - range.min);
1515 var percentage = (value - range.min) * scalingFactor;
1516 this._percentage = percentage;
1517 this._delta = this.get('delta') * scalingFactor;
1519 }.observes('value', 'range').on('init'),