Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4074)

Unified Diff: dashboard/ui/endure_js/common.js

Issue 12094074: Support Chrome Endure graphs in perf dashboard. (Closed) Base URL: https://git.chromium.org/git/chromium/tools/perf.git@master
Patch Set: updated Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | dashboard/ui/endure_js/coordinates.js » ('j') | dashboard/ui/endure_js/coordinates.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/ui/endure_js/common.js
diff --git a/dashboard/ui/endure_js/common.js b/dashboard/ui/endure_js/common.js
new file mode 100644
index 0000000000000000000000000000000000000000..96399dc550188c7232c8e2c38af575eb4df33cea
--- /dev/null
+++ b/dashboard/ui/endure_js/common.js
@@ -0,0 +1,89 @@
+/*
+ Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file.
+*/
+
+/**
+ * @fileoverview Common methods for performance-plotting Javascript.
alias of yukishiino 2013/01/31 10:57:11 I'd recommend a different file name for this file.
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Because it's a fork of dashboard/ui/js/common.js,
+ */
+
+/**
+ * Fetches a URL asynchronously and invokes a callback when complete.
+ *
+ * @param {string} url URL to fetch.
+ * @param {Function(string, string)} callback The function to invoke when the
alias of yukishiino 2013/01/31 10:57:11 {Function(string, ?string)} since |error| can be n
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
+ * results of the URL fetch are complete. The function should accept two
+ * strings representing the URL data, and any errors, respectively.
+ */
+function Fetch(url, callback) {
+ var r = new XMLHttpRequest();
+ r.open('GET', url, true);
+ r.setRequestHeader('pragma', 'no-cache');
+ r.setRequestHeader('cache-control', 'no-cache');
+
+ r.onreadystatechange = function() {
+ if (r.readyState == 4) {
+ var text = r.responseText;
+ var error;
alias of yukishiino 2013/01/31 10:57:11 Better to initialize |error| with null, otherwise
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
+ if (r.status != 200)
+ error = url + ': ' + r.status + ': ' + r.statusText;
+ else if (!text)
+ error = url + ': null response';
+ callback(text, error);
+ }
+ }
+
+ r.send(null);
+}
+
+/**
+ * Parses the parameters of the current page's URL.
+ *
+ * @return {Object} An object with properties given by the parameters specified
alias of yukishiino 2013/01/31 10:57:11 {Object.<string, (string|number)>}
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
+ * in the URL's query string.
+ */
+function ParseParams() {
+ var result = new Object();
alias of yukishiino 2013/01/31 10:57:11 var result = {}; is the same in effect, and more o
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
+
+ var query = window.location.search.substring(1)
alias of yukishiino 2013/01/31 10:57:11 missing semi-colon.
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
+ if (query.charAt(query.length - 1) == '/')
+ query = query.substring(0, query.length - 1) // Strip trailing slash.
alias of yukishiino 2013/01/31 10:57:11 if (query.slice(-1) == '/') { query = query.slic
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
+ var s = query.split('&');
+
+ for (i = 0; i < s.length; ++i) {
+ var v = s[i].split('=');
alias of yukishiino 2013/01/31 10:57:11 This code does not handle '=' in the value correct
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Hmm, I thought to fix it, but stopped it not to ha
+ var key = v[0];
+ var value = unescape(v[1]);
alias of yukishiino 2013/01/31 10:57:11 escape/unescape are obsolete. Use encodeURICompone
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Stopped to fix it in the same reason above.
+ result[key] = value;
+ }
+
+ if ('history' in result) {
+ result['history'] = parseInt(result['history']);
+ result['history'] = Math.max(result['history'], 2);
+ }
+ if ('rev' in result) {
+ result['rev'] = parseInt(result['rev']);
+ result['rev'] = Math.max(result['rev'], -1);
alias of yukishiino 2013/01/31 10:57:11 Why -1? Can rev be negative? By the way, if 'rev
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 I'm not sure. What do you think, Dennis?
dennis_jeffrey 2013/02/05 02:48:28 I don't think "rev" should ever be negative from t
Dai Mikurube (NOT FULLTIME) 2013/02/05 06:31:49 Removed the statement.
+ }
+
+ return result;
+}
+
+/**
+ * Creates the URL constructed from the current pathname and the given params.
+ *
+ * @param {Object} An object containing parameters for a URL query string.
alias of yukishiino 2013/01/31 10:57:11 {Object.<string, (string|number)>}
alias of yukishiino 2013/01/31 10:57:11 Missing parameter name.
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 Done.
+ * @return {string} The URL constructed from the given params.
+ */
+function MakeURL(params) {
+ var url = window.location.pathname;
+ var sep = '?';
+ for (p in params) {
+ if (!p)
alias of yukishiino 2013/01/31 10:57:11 Shouldn't reach here. For "for (p in params)", p m
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 We may want to remove it. What do you think, Denn
dennis_jeffrey 2013/02/05 02:48:28 Yes, if it's true that p will never be null or und
Dai Mikurube (NOT FULLTIME) 2013/02/05 06:31:49 Applied the change below.
+ continue;
+ url += sep + p + '=' + params[p];
alias of yukishiino 2013/01/31 10:57:11 You'd better use encodeURIComponent() for values.
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:14:13 What do you think, Dennis?
dennis_jeffrey 2013/02/05 02:48:28 I think this sounds good, as long as we make sure
Dai Mikurube (NOT FULLTIME) 2013/02/05 06:31:49 Replaced with the code by Yuki.
+ sep = '&';
+ }
+ return url;
+}
« no previous file with comments | « no previous file | dashboard/ui/endure_js/coordinates.js » ('j') | dashboard/ui/endure_js/coordinates.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698