зеркало из https://github.com/mozilla/pjs.git
277 строки
8.3 KiB
JavaScript
277 строки
8.3 KiB
JavaScript
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is The JavaScript Debugger.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications Corporation.
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Robert Ginda, <rginda@netscape.com>, original author
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
function initDev()
|
|
{
|
|
var cmdary =
|
|
[["dumpcontexts", cmdDumpContexts, CMD_CONSOLE | CMD_NO_HELP],
|
|
["dumpfilters", cmdDumpFilters, CMD_CONSOLE | CMD_NO_HELP],
|
|
["dumpprofile", cmdDumpProfile, CMD_CONSOLE | CMD_NO_HELP],
|
|
["dumptree", cmdDumpTree, CMD_CONSOLE | CMD_NO_HELP],
|
|
["dumpscripts", cmdDumpScripts, CMD_CONSOLE | CMD_NO_HELP],
|
|
["reloadui", cmdReloadUI, CMD_CONSOLE | CMD_NO_HELP],
|
|
["sync-debug", cmdSyncDebug, CMD_CONSOLE | CMD_NO_HELP],
|
|
["test", cmdTest, CMD_CONSOLE | CMD_NO_HELP],
|
|
["testargs", cmdTestArgs, CMD_CONSOLE | CMD_NO_HELP],
|
|
["testargs1", cmdTestArgs, CMD_CONSOLE | CMD_NO_HELP],
|
|
["testfilters", cmdTestFilters, CMD_CONSOLE | CMD_NO_HELP],
|
|
["treetest", cmdTreeTest, CMD_CONSOLE | CMD_NO_HELP],
|
|
|
|
["multialias", "help pref; help props", CMD_CONSOLE | CMD_NO_HELP]];
|
|
|
|
|
|
console.commandManager.defineCommands (cmdary);
|
|
|
|
if (!("devState" in console.pluginState))
|
|
{
|
|
console.prefManager.addPref ("dbgContexts", false);
|
|
console.prefManager.addPref ("dbgDispatch", false);
|
|
console.prefManager.addPref ("dbgRealize", false);
|
|
}
|
|
|
|
console.pluginState.devState = true;
|
|
|
|
dispatch ("sync-debug");
|
|
|
|
return "Venkman development functions loaded OK.";
|
|
}
|
|
|
|
function cmdDumpContexts()
|
|
{
|
|
console.contexts = new Array();
|
|
var i = 0;
|
|
|
|
var enumer = {
|
|
enumerateContext: function _ec (context) {
|
|
if (!context.isValid)
|
|
{
|
|
dd("enumerate got invalid context");
|
|
}
|
|
else
|
|
{
|
|
var v = context.globalObject.getWrappedValue();
|
|
var title = "<n/a>";
|
|
if (v instanceof Object &&
|
|
"document" in v)
|
|
{
|
|
title = v.document.title;
|
|
}
|
|
|
|
dd ("enumerateContext: Index " + i +
|
|
", Version " + context.version +
|
|
", Options " + context.options +
|
|
", Private " + context.privateData +
|
|
", Tag " + context.tag +
|
|
", Title " + title +
|
|
", Scripts Enabled " +
|
|
context.scriptsEnabled);
|
|
}
|
|
console.contexts[i++] = context;
|
|
}
|
|
};
|
|
|
|
console.jsds.enumerateContexts(enumer);
|
|
return true;
|
|
}
|
|
|
|
function cmdDumpFilters()
|
|
{
|
|
console.filters = new Array();
|
|
var i = 0;
|
|
|
|
var enumer = {
|
|
enumerateFilter: function enum_f (filter) {
|
|
dd (i + ": " + filter.globalObject +
|
|
" '" + filter.urlPattern + "' " + filter.flags);
|
|
console.filters[i++] = filter;
|
|
}
|
|
};
|
|
|
|
console.jsds.enumerateFilters (enumer);
|
|
}
|
|
|
|
function cmdDumpProfile(e)
|
|
{
|
|
var list = console.getProfileSummary();
|
|
for (var i = 0; i < list.length; ++i)
|
|
dd(list[i].str);
|
|
}
|
|
|
|
function cmdDumpTree(e)
|
|
{
|
|
if (!e.depth)
|
|
e.depth = 0;
|
|
dd(e.tree + ":\n" + tov_formatBranch (eval(e.tree), "", e.depth));
|
|
}
|
|
|
|
function cmdDumpScripts(e)
|
|
{
|
|
var nl;
|
|
|
|
if ("frames" in console)
|
|
{
|
|
frame = getCurrentFrame();
|
|
var targetWindow = frame.executionContext.globalObject.getWrappedValue();
|
|
nl = targetWindow.document.getElementsByTagName("script");
|
|
}
|
|
else
|
|
{
|
|
nl = document.getElementsByTagName("script");
|
|
}
|
|
|
|
for (var i = 0; i < nl.length; ++i)
|
|
dd("src: " + nl.item(i).getAttribute ("src"));
|
|
}
|
|
|
|
function cmdReloadUI()
|
|
{
|
|
if ("frames" in console)
|
|
{
|
|
display (MSG_NOTE_NOSTACK, MT_ERROR);
|
|
return;
|
|
}
|
|
|
|
var bs = Components.classes["@mozilla.org/intl/stringbundle;1"];
|
|
bs = bs.createInstance(Components.interfaces.nsIStringBundleService);
|
|
bs.flushBundles();
|
|
window.location.href = window.location.href;
|
|
}
|
|
|
|
function cmdSyncDebug()
|
|
{
|
|
if (eval(console.prefs["dbgContexts"]))
|
|
console.dbgContexts = true;
|
|
else
|
|
delete console.dbgContexts;
|
|
|
|
if (eval(console.prefs["dbgDispatch"]))
|
|
console.dbgDispatch = true;
|
|
else
|
|
delete console.dbgDispatch;
|
|
|
|
if (eval(console.prefs["dbgRealize"]))
|
|
console.dbgRealize = true;
|
|
else
|
|
delete console.dbgRealize;
|
|
}
|
|
|
|
function cmdTest(e)
|
|
{
|
|
function f()
|
|
{
|
|
g();
|
|
h();
|
|
};
|
|
|
|
function g() {};
|
|
function h() {};
|
|
|
|
dd("start {");
|
|
for (var i = 0; i < 50000; ++i)
|
|
f();
|
|
|
|
dd("} stop");
|
|
}
|
|
|
|
function cmdTestArgs (e)
|
|
{
|
|
display (dumpObjectTree(e));
|
|
}
|
|
|
|
function cmdTestFilters ()
|
|
{
|
|
var filter1 = {
|
|
globalObject: null,
|
|
flags: jsdIFilter.FLAG_ENABLED,
|
|
urlPattern: "1",
|
|
startLine: 0,
|
|
endLine: 0
|
|
};
|
|
var filter2 = {
|
|
globalObject: null,
|
|
flags: jsdIFilter.FLAG_ENABLED,
|
|
urlPattern: "*2",
|
|
startLine: 0,
|
|
endLine: 0
|
|
};
|
|
var filter3 = {
|
|
globalObject: null,
|
|
flags: jsdIFilter.FLAG_ENABLED,
|
|
urlPattern: "3*",
|
|
startLine: 0,
|
|
endLine: 0
|
|
};
|
|
var filter4 = {
|
|
globalObject: null,
|
|
flags: jsdIFilter.FLAG_ENABLED,
|
|
urlPattern: "*4*",
|
|
startLine: 0,
|
|
endLine: 0
|
|
};
|
|
|
|
dd ("append f3 into an empty list.");
|
|
console.jsds.appendFilter (filter3);
|
|
console.jsds.GC();
|
|
dd("insert f1 at the top");
|
|
console.jsds.insertFilter (filter1, null);
|
|
console.jsds.GC();
|
|
dd("insert f2 after f1");
|
|
console.jsds.insertFilter (filter2, filter1);
|
|
console.jsds.GC();
|
|
dd("swap f4 in, f3 out");
|
|
console.jsds.swapFilters (filter3, filter4);
|
|
console.jsds.GC();
|
|
dd("append f3");
|
|
console.jsds.appendFilter (filter3);
|
|
console.jsds.GC();
|
|
dd("swap f4 and f3");
|
|
console.jsds.swapFilters (filter3, filter4);
|
|
console.jsds.GC();
|
|
|
|
dumpFilters();
|
|
}
|
|
|
|
|
|
function cmdTreeTest()
|
|
{
|
|
var w = openDialog("chrome://venkman/content/tests/tree.xul", "", "");
|
|
}
|
|
|
|
initDev();
|