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

Side by Side Diff: chrome/browser/resources/media_internals/media_internals.js

Issue 7972028: Display active media players on chrome://media-internals. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: forgot some changes Created 9 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 <include src="cache_entry.js"/> 5 <include src="cache_entry.js"/>
6 <include src="disjoint_range_set.js"/>
7 <include src="event_list.js"/>
6 <include src="item_store.js"/> 8 <include src="item_store.js"/>
7 <include src="disjoint_range_set.js"/> 9 <include src="media_player.js"/>
10 <include src="metrics.js"/>
11 <include src="util.js"/>
8 12
9 cr.define('media', function() { 13 cr.define('media', function() {
14 'use strict';
10 15
11 // Stores information on open audio streams, referenced by id. 16 // Stores information on open audio streams, referenced by id.
12 var audioStreams = new media.ItemStore; 17 var audioStreams = new media.ItemStore;
13 18
19 // Active media players, indexed by 'render_id:player_id'.
20 var mediaPlayers = {};
21
14 // Cached files indexed by key and source id. 22 // Cached files indexed by key and source id.
15 var cacheEntriesByKey = {}; 23 var cacheEntriesByKey = {};
16 var cacheEntries = {}; 24 var cacheEntries = {};
17 25
18 // Map of event source -> url. 26 // Map of event source -> url.
19 var requestURLs = {}; 27 var requestURLs = {};
20 28
21 // Constants passed to us from Chrome. 29 // Constants passed to us from Chrome.
22 var eventTypes = {}; 30 var eventTypes = {};
23 var eventPhases = {}; 31 var eventPhases = {};
24 32
25 // The <div>s on the page in which to display information. 33 // The <div>s on the page in which to display information.
26 var audioStreamDiv; 34 var audioStreamDiv;
27 var cacheDiv; 35 var cacheDiv;
28 36
37 // A timer used to limit the rate of redrawing the Media Players section.
38 var redrawTimer = null;
39
29 /** 40 /**
30 * Initialize variables and ask MediaInternals for all its data. 41 * Initialize variables and ask MediaInternals for all its data.
31 */ 42 */
32 initialize = function() { 43 function initialize() {
33 audioStreamDiv = document.getElementById('audio-streams'); 44 audioStreamDiv = document.getElementById('audio-streams');
34 cacheDiv = document.getElementById('cache-entries'); 45 cacheDiv = document.getElementById('cache-entries');
46
35 // Get information about all currently active media. 47 // Get information about all currently active media.
36 chrome.send('getEverything'); 48 chrome.send('getEverything');
37 }; 49 }
38 50
39 /** 51 /**
40 * Write the set of audio streams to the DOM. 52 * Write the set of audio streams to the DOM.
41 */ 53 */
42 printAudioStreams = function() { 54 function printAudioStreams() {
43 55
44 /** 56 /**
45 * Render a single stream as a <li>. 57 * Render a single stream as a <li>.
46 * @param {Object} stream The stream to render. 58 * @param {Object} stream The stream to render.
47 * @return {HTMLElement} A <li> containing the stream information. 59 * @return {HTMLElement} A <li> containing the stream information.
48 */ 60 */
49 printStream = function(stream) { 61 function printStream(stream) {
50 var out = document.createElement('li'); 62 var out = document.createElement('li');
51 out.id = stream.id; 63 out.id = stream.id;
52 out.className = 'audio-stream'; 64 out.className = 'audio-stream';
53 out.setAttribute('status', stream.status); 65 out.setAttribute('status', stream.status);
54 66
55 out.textContent += 'Audio stream ' + stream.id.split('.')[1]; 67 out.textContent += 'Audio stream ' + stream.id.split('.')[1];
56 out.textContent += ' is ' + (stream.playing ? 'playing' : 'paused'); 68 out.textContent += ' is ' + (stream.playing ? 'playing' : 'paused');
57 out.textContent += ' at ' + Math.round(stream.volume * 100) + '% volume.'; 69 out.textContent += ' at ' + Math.round(stream.volume * 100) + '% volume.';
58 return out; 70 return out;
59 }; 71 }
60 72
61 var out = document.createElement('ul'); 73 var out = document.createElement('ul');
62 audioStreams.map(printStream).forEach(function(s) { 74 audioStreams.map(printStream).forEach(function(s) {
63 out.appendChild(s) 75 out.appendChild(s)
64 }); 76 });
65 77
66 audioStreamDiv.textContent = ''; 78 audioStreamDiv.textContent = '';
67 audioStreamDiv.appendChild(out); 79 audioStreamDiv.appendChild(out);
68 }; 80 }
81
82 /**
83 * Redraw each MediaPlayer.
84 */
85 function printMediaPlayers() {
86 for (var id in mediaPlayers) {
87 mediaPlayers[id].redraw();
88 }
89 redrawTimer = null;
90 }
69 91
70 /** 92 /**
71 * Write the set of sparse CacheEntries to the DOM. 93 * Write the set of sparse CacheEntries to the DOM.
72 */ 94 */
73 printSparseCacheEntries = function() { 95 function printSparseCacheEntries() {
74 var out = document.createElement('ul'); 96 var out = document.createElement('ul');
75 for (var key in cacheEntriesByKey) { 97 for (var key in cacheEntriesByKey) {
76 if (cacheEntriesByKey[key].sparse) 98 if (cacheEntriesByKey[key].sparse)
77 out.appendChild(cacheEntriesByKey[key].toListItem()); 99 out.appendChild(cacheEntriesByKey[key].toListItem());
78 } 100 }
79 101
80 cacheDiv.textContent = ''; 102 cacheDiv.textContent = '';
81 cacheDiv.appendChild(out); 103 cacheDiv.appendChild(out);
82 }; 104 }
83 105
84 /** 106 /**
85 * Receiving data for an audio stream. 107 * Receiving data for an audio stream.
86 * Add it to audioStreams and update the page. 108 * Add it to audioStreams and update the page.
87 * @param {Object} stream JSON representation of an audio stream. 109 * @param {Object} stream JSON representation of an audio stream.
88 */ 110 */
89 addAudioStream = function(stream) { 111 function addAudioStream(stream) {
90 audioStreams.addItem(stream); 112 audioStreams.addItem(stream);
91 printAudioStreams(); 113 printAudioStreams();
92 }; 114 }
93 115
94 /** 116 /**
95 * Receiving all data. 117 * Receiving all data.
96 * Add it all to the appropriate stores and update the page. 118 * Add it all to the appropriate stores and update the page.
97 * @param {Object} stuff JSON containing lists of data. 119 * @param {Object} stuff JSON containing lists of data.
98 * @param {Object} stuff.audio_streams A dictionary of audio streams. 120 * @param {Object} stuff.audio_streams A dictionary of audio streams.
99 */ 121 */
100 onReceiveEverything = function(stuff) { 122 function onReceiveEverything(stuff) {
101 audioStreams.addItems(stuff.audio_streams); 123 audioStreams.addItems(stuff.audio_streams);
102 printAudioStreams(); 124 printAudioStreams();
103 }; 125 }
104 126
105 /** 127 /**
106 * Removing an item from the appropriate store. 128 * Removing an item from the appropriate store.
107 * @param {string} id The id of the item to be removed, in the format 129 * @param {string} id The id of the item to be removed, in the format
108 * "item_type.identifying_info". 130 * "item_type.identifying_info".
109 */ 131 */
110 onItemDeleted = function(id) { 132 function onItemDeleted(id) {
111 var type = id.split('.')[0]; 133 var type = id.split('.')[0];
112 switch (type) { 134 switch (type) {
113 case 'audio_streams': 135 case 'audio_streams':
114 audioStreams.removeItem(id); 136 audioStreams.removeItem(id);
115 printAudioStreams(); 137 printAudioStreams();
116 break; 138 break;
117 } 139 }
118 }; 140 }
141
142 /**
143 * A render process has ended, delete any media players associated with it.
144 * @param {number} renderer The id of the render process.
145 */
146 function onRendererTerminated(renderer) {
147 for (var key in mediaPlayers) {
148 if (mediaPlayers[key].renderer == renderer) {
149 document.getElementById('media-players').removeChild(mediaPlayers[key]);
150 delete mediaPlayers[key];
151 break;
152 }
153 }
154 printMediaPlayers();
155 }
119 156
120 /** 157 /**
121 * Receiving net events. 158 * Receiving net events.
122 * Update cache information and update that section of the page. 159 * Update cache information and update that section of the page.
123 * @param {Array} updates A list of net events that have occurred. 160 * @param {Array} updates A list of net events that have occurred.
124 */ 161 */
125 onNetUpdate = function(updates) { 162 function onNetUpdate(updates) {
126 updates.forEach(function(update) { 163 updates.forEach(function(update) {
127 var id = update.source.id; 164 var id = update.source.id;
128 if (!cacheEntries[id]) 165 if (!cacheEntries[id])
129 cacheEntries[id] = new media.CacheEntry; 166 cacheEntries[id] = new media.CacheEntry;
130 167
131 switch (eventPhases[update.phase] + '.' + eventTypes[update.type]) { 168 switch (eventPhases[update.phase] + '.' + eventTypes[update.type]) {
132 case 'PHASE_BEGIN.DISK_CACHE_ENTRY_IMPL': 169 case 'PHASE_BEGIN.DISK_CACHE_ENTRY_IMPL':
133 var key = update.params.key; 170 var key = update.params.key;
134 171
135 // Merge this source with anything we already know about this key. 172 // Merge this source with anything we already know about this key.
(...skipping 23 matching lines...) Expand all
159 break; 196 break;
160 197
161 case 'PHASE_NONE.HTTP_TRANSACTION_READ_RESPONSE_HEADERS': 198 case 'PHASE_NONE.HTTP_TRANSACTION_READ_RESPONSE_HEADERS':
162 // Record the total size of the file if this was a range request. 199 // Record the total size of the file if this was a range request.
163 var range = /content-range:\s*bytes\s*\d+-\d+\/(\d+)/i.exec( 200 var range = /content-range:\s*bytes\s*\d+-\d+\/(\d+)/i.exec(
164 update.params.headers); 201 update.params.headers);
165 var key = requestURLs[update.source.id]; 202 var key = requestURLs[update.source.id];
166 delete requestURLs[update.source.id]; 203 delete requestURLs[update.source.id];
167 if (range && key) { 204 if (range && key) {
168 if (!cacheEntriesByKey[key]) { 205 if (!cacheEntriesByKey[key]) {
169 cacheEntriesByKey[key] = new CacheEntry; 206 cacheEntriesByKey[key] = new media.CacheEntry;
170 cacheEntriesByKey[key].key = key; 207 cacheEntriesByKey[key].key = key;
171 } 208 }
172 cacheEntriesByKey[key].size = range[1]; 209 cacheEntriesByKey[key].size = range[1];
173 } 210 }
174 break; 211 break;
175 } 212 }
176 }); 213 });
177 214
178 printSparseCacheEntries(); 215 printSparseCacheEntries();
179 }; 216 }
180 217
181 /** 218 /**
182 * Receiving values for constants. Store them for later use. 219 * Receiving values for constants. Store them for later use.
183 * @param {Object} constants A dictionary of constants. 220 * @param {Object} constants A dictionary of constants.
184 * @param {Object} constants.eventTypes A dictionary of event name -> int. 221 * @param {Object} constants.eventTypes A dictionary of event name -> int.
185 * @param {Object} constants.eventPhases A dictionary of event phase -> int. 222 * @param {Object} constants.eventPhases A dictionary of event phase -> int.
186 */ 223 */
187 onReceiveConstants = function(constants) { 224 function onReceiveConstants(constants) {
188 var events = constants.eventTypes; 225 var events = constants.eventTypes;
189 for (var e in events) 226 for (var e in events) {
190 eventTypes[events[e]] = e; 227 eventTypes[events[e]] = e;
228 }
191 229
192 var phases = constants.eventPhases; 230 var phases = constants.eventPhases;
193 for (var p in phases) 231 for (var p in phases) {
194 eventPhases[phases[p]] = p; 232 eventPhases[phases[p]] = p;
195 }; 233 }
234 }
235
236 /**
237 * Receiving notification of a media event.
238 * @param {Object} event The json representation of a MediaLogEvent.
239 */
240 function onMediaEvent(event) {
241 var source = event.renderer + ':' + event.player;
242 var item = mediaPlayers[source] ||
243 new media.MediaPlayer({id: source, renderer: event.renderer});
244 mediaPlayers[source] = item;
245 item.addEvent(event);
246
247 // Both media and net events could provide the size of the file.
248 // Media takes priority, but keep the size in both places synchronized.
249 if (cacheEntriesByKey[item.properties.url]) {
250 item.properties.total_bytes = item.properties.total_bytes ||
251 cacheEntriesByKey[item.properties.url].size;
252 cacheEntriesByKey[item.properties.url].size = item.properties.total_bytes;
253 }
254
255 // Events tend to arrive in groups; don't redraw the page too often.
256 if (!redrawTimer)
257 redrawTimer = setTimeout(printMediaPlayers, 50);
258 }
196 259
197 return { 260 return {
198 initialize: initialize, 261 initialize: initialize,
199 addAudioStream: addAudioStream, 262 addAudioStream: addAudioStream,
263 cacheEntriesByKey: cacheEntriesByKey,
200 onReceiveEverything: onReceiveEverything, 264 onReceiveEverything: onReceiveEverything,
201 onItemDeleted: onItemDeleted, 265 onItemDeleted: onItemDeleted,
266 onRendererTerminated: onRendererTerminated,
202 onNetUpdate: onNetUpdate, 267 onNetUpdate: onNetUpdate,
203 onReceiveConstants: onReceiveConstants, 268 onReceiveConstants: onReceiveConstants,
269 onMediaEvent: onMediaEvent
204 }; 270 };
205 }); 271 });
206 272
207 /** 273 /**
208 * Initialize everything once we have access to the DOM. 274 * Initialize everything once we have access to the DOM.
209 */ 275 */
210 window.onload = function() { 276 window.addEventListener("DOMContentLoaded", function() {
arv (Not doing code reviews) 2011/10/18 20:50:07 Use single quotes Use document since that is the
scherkus (not reviewing) 2011/10/19 00:19:43 Done.
211 media.initialize(); 277 media.initialize();
212 }; 278 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698