1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
|
====================
Web Console remoting
====================
Introduction
************
This document describes the way Web Console remoting works. The Web Console is split between a client with its user interface, and the server which has listeners for all the things that happen in the tab. For communication between the server and the client we use the `Remote Debugging Protocol <https://wiki.mozilla.org/Remote_Debugging_Protocol>`_. This architecture allows you to connect a Web Console client instance to a server running on B2G, Fennec or some other Firefox instance.
To better understand the architecture of the Web Console we recommend learning about the `debugger architecture <https://wiki.mozilla.org/Debugger_Architecture>`_.
The ``WebConsoleActor`` and the ``WebConsoleClient``
****************************************************
The ``WebConsoleActor`` lives in `dbg-webconsole-actors.js <http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/webconsole/dbg-webconsole-actors.js>`_, in the `toolkit/devtools/webconsole <http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/webconsole/>`_ folder.
The ``WebConsoleClient`` lives in `WebConsoleClient.jsm <http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/webconsole/WebConsoleClient.jsm/>`_ (in `toolkit/devtools/webconsole <http://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/webconsole/>`_) and it is used by the Web Console when working with the Web Console actor.
To see how the debugger is used in the Web Console code, look in `browser/devtools/webconsole/webconsole.js <http://mxr.mozilla.org/mozilla-central/source/browser/devtools/webconsole/webconsole.js/>`_, and search for ``WebConsoleConnectionProxy``.
The new Web Console actors are:
- The ``WebConsoleActor`` allows JS evaluation, autocomplete, start/stop listeners, etc.
- The ``NetworkEventActor`` is used for each new network request. The client can request further network event details - like response body or request headers.
To attach to the ``WebConsoleActor``, follow these steps:
.. code-block:: javascript
connectToServer() // the usual
listTabs()
pickTheTabYouWant()
debuggerClient.attachConsole(tab.consoleActor, listeners, onAttachConsole)
The ``listeners`` argument is an array which specifies listeners you want to start in the web console. These can be: page errors, ``window.console`` API messages, network activity, and file activity. For example:
.. code-block:: javascript
["PageError", "ConsoleAPI", "FileActivity"]
.. note::
The Web Console actor does not start any listeners by default. The client has the option to start each listener when needed. This approach allows for lower resource usage on the server - this is a potential issue if the server runs on devices with fewer resources.
The ``onAttachConsole`` callback receives a new instance of the ``WebConsoleClient`` object. This object provides methods that abstract away protocol packets, things like ``startListeners(), stopListeners()``, etc.
Protocol packets look as follows:
.. code-block:: javascript
{
"to": "root",
"type": "listTabs"
}
{
"from": "root",
"consoleActor": "conn0.console9",
"selected": 2,
"tabs": [
{
"actor": "conn0.tab2",
"consoleActor": "conn0.console7",
"title": "",
"url": "https://tbpl.mozilla.org/?tree=Fx-Team"
},
// ...
]
}
Notice that the ``consoleActor`` is also available as a **global actor**. When you attach to the global ``consoleActor`` you receive all of the network requests, page errors, and the other events from all of the tabs and windows, including chrome errors and network events. This actor is used for the Browser Console implementation and for debugging remote Firefox/B2G instances.
``startListeners(listeners, onResponse)``
-----------------------------------------
The new ``startListeners`` packet:
.. code-block:: javascript
{
"to": "conn0.console9",
"type": "startListeners",
"listeners": [
"PageError",
"ConsoleAPI",
"FileActivity"
]
}
The reply is:
.. code-block:: javascript
{
"startedListeners": [
"PageError",
"ConsoleAPI",
"FileActivity"
],
"from": "conn0.console9"
}
The reply tells which listeners were started.
Tab navigation
--------------
To listen to the tab navigation events you also need to attach to the tab actor for the given tab. The ``tabNavigated`` notification comes from tab actors.
When page navigation starts the following packet is sent from the tab actor:
.. code-block::
{
"from": tabActor,
"type": "tabNavigated",
"state": "start",
"url": newURL,
}
When navigation stops the following packet is sent:
.. code-block::
{
"from": tabActor,
"type": "tabNavigated",
"state": "stop",
"url": newURL,
"title": newTitle,
}
``getCachedMessages(types, onResponse)``
----------------------------------------
The ``webConsoleClient.getCachedMessages(types, onResponse)`` method sends the following packet to the server:
.. code-block:: json
{
"to": "conn0.console9",
"type": "getCachedMessages",
"messageTypes": [
"PageError",
"ConsoleAPI"
]
}
The ``getCachedMessages`` packet allows one to retrieve the cached messages from before the Web Console was open. You can only get cached messages for page errors and console API calls. The reply looks like this:
.. code-block::
{
"messages": [ ... ],
"from": "conn0.console9"
}
Each message in the array is of the same type as when we send typical page errors and console API calls. These will be explained in the following sections of this document.
Page errors
***********
Page errors come from the ``nsIConsoleService``. Each allowed page error is an ``nsIScriptError`` object.
The ``pageError`` packet is:
.. code-block:: json
{
"from": "conn0.console9",
"type": "pageError",
"pageError": {
"errorMessage": "ReferenceError: foo is not defined",
"sourceName": "http://localhost/~mihai/mozilla/test.js",
"lineText": "",
"lineNumber": 6,
"columnNumber": 0,
"category": "content javascript",
"timeStamp": 1347294508210,
"error": false,
"warning": false,
"exception": true,
"strict": false,
"private": false,
}
}
The packet is similar to ``nsIScriptError`` - for simplicity. We only removed several unneeded properties and changed how flags work.
The ``private`` flag tells if the error comes from a private window/tab.
The ``errorMessage`` and ``lineText`` properties can be long string actor grips if the string is very long.
Console API messages
********************
The `window.console API <https://developer.mozilla.org/en-US/docs/Web/API/console>`_ calls send internal messages throughout Gecko which allow us to do whatever we want for each call. The Web Console actor sends these messages to the remote debugging client.
We use the ``ObjectActor`` from `dbg-script-actors.js <https://mxr.mozilla.org/mozilla-central/source/toolkit/devtools/debugger/server/dbg-script-actors.js>`_ without a ``ThreadActor``, to avoid slowing down the page scripts - the debugger deoptimizes JavaScript execution in the target page. The `lifetime of object actors <https://wiki.mozilla.org/Remote_Debugging_Protocol#Grip_Lifetimes>`_ in the Web Console is different than the lifetime of these objects in the debugger - which is usually per pause or per thread. The Web Console manages the lifetime of ``ObjectActors`` manually.
Console API messages come through the ``nsIObserverService`` - the console object implementation lives in `dom/base/ConsoleAPI.js <http://mxr.mozilla.org/mozilla-central/source/dom/base/ConsoleAPI.js>`_.
For each console message we receive in the server, we send the following ``consoleAPICall`` packet to the client:
.. code-block:: json
{
"from": "conn0.console9",
"type": "consoleAPICall",
"message": {
"level": "error",
"filename": "http://localhost/~mihai/mozilla/test.html",
"lineNumber": 149,
"functionName": "",
"timeStamp": 1347302713771,
"private": false,
"arguments": [
"error omg aloha ",
{
"type": "object",
"className": "HTMLBodyElement",
"actor": "conn0.consoleObj20"
},
" 960 739 3.141592653589793 %a",
"zuzu",
{ "type": "null" },
{ "type": "undefined" }
]
}
}
Similar to how we send the page errors, here we send the actual console event received from the ``nsIObserverService``. We change the ``arguments`` array - we create ``ObjectActor`` instances for each object passed as an argument - and, lastly, we remove some unneeded properties (like window IDs). In the case of long strings we use the ``LongStringActor``. The Web Console can then inspect the arguments.
The ``private`` flag tells if the console API call comes from a private window/tab.
We have small variations for the object, depending on the console API call method - just like there are small differences in the console event object received from the observer service. To see these differences please look in the Console API implementation: `dom/base/ConsoleAPI.js <http://mxr.mozilla.org/mozilla-central/source/dom/base/ConsoleAPI.js>`_.
JavaScript evaluation
---------------------
The ``evaluateJS`` request and response packets
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The Web Console client provides the ``evaluateJS(requestId, string, onResponse)`` method which sends the following packet:
.. code-block:: json
{
"to": "conn0.console9",
"type": "evaluateJS",
"text": "document",
"bindObjectActor": null,
"frameActor": null,
"url": null,
"selectedNodeActor": null,
}
The ``bindObjectActor`` property is an optional ``ObjectActor`` ID that points to a ``Debugger.Object``. This option allows you to bind ``_self`` to the ``Debugger.Object`` of the given object actor, during string evaluation. See ``evalInGlobalWithBindings()`` for information about bindings.
.. note::
The variable view needs to update objects and it does so by binding ``_self`` to the ``Debugger.Object`` of the ``ObjectActor`` that is being viewed. As such, variable view sends strings like these for evaluation:
.. code-block:: javascript
_self["prop"] = value;
The ``frameActor`` property is an optional ``FrameActor`` ID. The FA holds a reference to a ``Debugger.Frame``. This option allows you to evaluate the string in the frame of the given FA.
The ``url`` property is an optional URL to evaluate the script as. The default source URL for evaluation is "debugger eval code".
The ``selectedNodeActor`` property is an optional ``NodeActor`` ID, which is used to indicate which node is currently selected in the Inspector, if any. This ``NodeActor`` can then be referred to by the ``$0`` JSTerm helper.
The response packet:
.. code-block:: json
{
"from": "conn0.console9",
"input": "document",
"result": {
"type": "object",
"className": "HTMLDocument",
"actor": "conn0.consoleObj20"
"extensible": true,
"frozen": false,
"sealed": false
},
"timestamp": 1347306273605,
"exception": null,
"exceptionMessage": null,
"helperResult": null
}
- ``exception`` holds the JSON-ification of the exception thrown during evaluation.
- ``exceptionMessage`` holds the ``exception.toString()`` result.
- ``result`` has the result ``ObjectActor`` instance.
- ``helperResult`` is anything that might come from a JSTerm helper result, JSON stuff (not content objects!).
Autocomplete and more
---------------------
The ``autocomplete`` request packet:
.. code-block:: json
{
"to": "conn0.console9",
"type": "autocomplete",
"text": "d",
"cursor": 1
}
The response packet:
.. code-block:: json
{
"from": "conn0.console9",
"matches": [
"decodeURI",
"decodeURIComponent",
"defaultStatus",
"devicePixelRatio",
"disableExternalCapture",
"dispatchEvent",
"doMyXHR",
"document",
"dump"
],
"matchProp": "d"
}
There's also the ``clearMessagesCache`` request packet that has no response. This clears the console API calls cache and should clear the page errors cache - see `bug 717611 <https://bugzilla.mozilla.org/show_bug.cgi?id=717611>`_.
An alternate version is ``clearMessagesCacheAsync``, which does exactly the same thing but resolves when the cache was actually cleared.
Network logging
***************
The ``networkEvent`` packet
---------------------------
Whenever a new network request starts being logged the ``networkEvent`` packet is sent:
.. code-block:: json
{
"from": "conn0.console10",
"type": "networkEvent",
"eventActor": {
"actor": "conn0.netEvent14",
"startedDateTime": "2012-09-17T19:50:03.699Z",
"url": "http://localhost/~mihai/mozilla/test2.css",
"method": "GET"
"isXHR": false,
"private": false
}
}
This packet is used to inform the Web Console of a new network event. For each request a new ``NetworkEventActor`` instance is created. The ``isXHR`` flag indicates if the request was initiated via an `XMLHttpRequest <https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest>`_ instance, that is: the ``nsIHttpChannel``'s notification is of an ``nsIXMLHttpRequest`` interface.
The ``private`` flag tells if the network request comes from a private window/tab.
The ``NetworkEventActor``
-------------------------
The new network event actor stores further request and response information.
The ``networkEventUpdate`` packet
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The Web Console UI needs to be kept up-to-date when changes happen, when new stuff is added. The new ``networkEventUpdate`` packet is sent for this purpose. Examples:
.. code-block::
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "requestHeaders",
"headers": 10,
"headersSize": 425
},
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "requestCookies",
"cookies": 0
},
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "requestPostData",
"dataSize": 1024,
"discardRequestBody": false
},
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "responseStart",
"response": {
"httpVersion": "HTTP/1.1",
"status": "304",
"statusText": "Not Modified",
"headersSize": 194,
"discardResponseBody": true
}
},
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "eventTimings",
"totalTime": 1
},
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "responseHeaders",
"headers": 6,
"headersSize": 194
},
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "responseCookies",
"cookies": 0
},
{
"from": "conn0.netEvent14",
"type": "networkEventUpdate",
"updateType": "responseContent",
"mimeType": "text/css",
"contentSize": 0,
"discardResponseBody": true
}
Actual headers, cookies, and bodies are not sent.
The ``getRequestHeaders`` and other packets
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To get more details about a network event you can use the following packet requests (and replies).
The ``getRequestHeaders`` packet:
.. code-block::
{
"to": "conn0.netEvent15",
"type": "getRequestHeaders"
}
{
"from": "conn0.netEvent15",
"headers": [
{
"name": "Host",
"value": "localhost"
}, ...
],
"headersSize": 350
}
The ``getRequestCookies`` packet:
.. code-block:: json
{
"to": "conn0.netEvent15",
"type": "getRequestCookies"
}
{
"from": "conn0.netEvent15",
"cookies": []
}
The ``getResponseHeaders`` packet:
.. code-block::
{
"to": "conn0.netEvent15",
"type": "getResponseHeaders"
}
{
"from": "conn0.netEvent15",
"headers": [
{
"name": "Date",
"value": "Mon, 17 Sep 2012 20:05:27 GMT"
}, ...
],
"headersSize": 320
}
The ``getResponseCookies`` packet:
.. code-block:: json
{
"to": "conn0.netEvent15",
"type": "getResponseCookies"
}
{
"from": "conn0.netEvent15",
"cookies": []
}
.. note::
For all of the header and cookie values in the above packets we use `LongStringActor grips <https://wiki.mozilla.org/Remote_Debugging_Protocol#Objects>`_ when the value is very long. This helps us avoid using too much of the network bandwidth.
The ``getRequestPostData`` packet:
.. code-block::
{
"to": "conn0.netEvent15",
"type": "getRequestPostData"
}
{
"from": "conn0.netEvent15",
"postData": { text: "foobar" },
"postDataDiscarded": false
}
The ``getResponseContent`` packet:
.. code-block:: json
{
"to": "conn0.netEvent15",
"type": "getResponseContent"
}
{
"from": "conn0.netEvent15",
"content": {
"mimeType": "text/css",
"text": "\n@import \"test.css\";\n\n.foobar { color: green }\n\n"
},
"contentDiscarded": false
}
The request and response content text value is most commonly sent using a ``LongStringActor`` grip. For very short request/response bodies we send the raw text.
.. note::
For non-text response types we send the content in base64 encoding (again, most likely a ``LongStringActor`` grip). To tell the difference just check if ``response.content.encoding == "base64"``.
The ``getEventTimings`` packet:
.. code-block:: json
{
"to": "conn0.netEvent15",
"type": "getEventTimings"
}
{
"from": "conn0.netEvent15",
"timings": {
"blocked": 0,
"dns": 0,
"connect": 0,
"send": 0,
"wait": 16,
"receive": 0
},
"totalTime": 16
}
The ``fileActivity`` packet
---------------------------
When a file load is observed the following ``fileActivity`` packet is sent to the client:
.. code-block:: json
{
"from": "conn0.console9",
"type": "fileActivity",
"uri": "file:///home/mihai/public_html/mozilla/test2.css"
}
History
*******
Protocol changes by Firefox version:
- Firefox 18: initial version.
- Firefox 19: `bug <https://bugzilla.mozilla.org/show_bug.cgi?id=787981>`_ - added ``LongStringActor`` usage in several places.
- Firefox 20: `bug <https://bugzilla.mozilla.org/show_bug.cgi?id=792062>`_ - removed ``locationChanged`` packet and updated the ``tabNavigated`` packet for tab actors.
- Firefox 23: `bug <https://bugzilla.mozilla.org/show_bug.cgi?id=783499>`_ - removed the ``WebConsoleObjectActor``. Now the Web Console uses the JavaScript debugger API and the ``ObjectActor``.
- Firefox 23: added the ``bindObjectActor`` and ``frameActor`` options to the ``evaluateJS`` request packet.
- Firefox 24: new ``private`` flags for the console actor notifications, `bug <https://bugzilla.mozilla.org/show_bug.cgi?id=874061>`_. Also added the ``lastPrivateContextExited`` notification for the global console actor.
- Firefox 24: new ``isXHR`` flag for the ``networkEvent`` notification, `bug <https://bugzilla.mozilla.org/show_bug.cgi?id=859046>`_.
- Firefox 24: removed the ``message`` property from the ``pageError`` packet notification, `bug <https://bugzilla.mozilla.org/show_bug.cgi?id=877773>`_. The ``lineText`` and ``errorMessage`` properties can be long string actors now.
- Firefox 25: added the ``url`` option to the ``evaluateJS`` request packet.
Conclusions
***********
As of this writing, this document is a dense summary of the work we did in `bug 768096 <https://bugzilla.mozilla.org/show_bug.cgi?id=768096>`_ and subsequent changes. We try to keep this document up-to-date. We hope this is helpful for you.
If you make changes to the Web Console server please update this document. Thank you!
|