Episodio

Herramientas de desfragmentación n.º 170 : depurador: scripting de JavaScript

En este episodio de Defrag Tools, Andrew Richards habla con Andy Luhrs y Bill Messmer del equipo de Herramientas de depuración para Windows . Hablamos sobre las nuevas capacidades de extensibilidad y scripting de JavaScript en WinDbg disponibles en WDK y la compilación 14951 del SDK y versiones posteriores.

Bill ha aprovechado el modelo de objetos del depurador anteriormente en estos episodios:

Escala de tiempo:

[00:00] Bienvenida e introducción
[00:24] Nueva eliminación del SDK
[00:29] Por qué JavaScript
[02:07] Nuevos comandos
[03:50] Visual Studio Code
Ejemplo de [04:00]: Hola mundo
[07:15] Espacios de nombres predeterminados del depurador
Ejemplo de [09:07] Impresión de todos los subprocesos
Ejemplo de [10:26] Punto de interrupción condicional
[18:13] 'g' contra 'gc' – Andrew estaba bien! 'gc' reanuda la ejecución de la misma manera que se inició. Por lo tanto, si alcanza "p" y, a continuación, alcanza un punto de interrupción condicional que tiene "gc" en él, el "gc" simplemente finalizará su inicial "p".
Ejemplo de [20:40] Pilas únicas
Ejemplo de [34:40] Adición

¿Preguntas y comentarios? Envíenos un correo electrónico a defragtools@microsoft.com.

Documentos de MSDN de JavaScript:

Ejemplo de pilas únicas (la derecha):

"use strict";

clase __stackEntry { constructor(frameString) { this.threads = []; this.frameString = frameString; this.children = new Map(); }

display(indent) 
{
    for (var child of this.children.values())
    {
        host.diagnostics.debugLog(indent, child.frameString, " [Threads In Branch: ");
        for (var thread of child.threads)
        {
            host.diagnostics.debugLog(thread.Id, " ");
        }
        host.diagnostics.debugLog("]\n");
        child.display(indent + "    ");
    }
}

}

class __stackMap { constructor(process) { this.__process = process; this.__root = new __stackEntry(""); this.build(); }

build()
{
    for (var thread of this.__process.Threads)
    {
        var current = this.__root;
        var frameNum = 0;

        var frameCount = thread.Stack.Frames.Count();
        for (var frameNum = frameCount - 1; frameNum >= 0; --frameNum) {
            var frame = thread.Stack.Frames[frameNum];
            var frameString = frame.toString();
            if (current.children.has(frameString)) {
                current = current.children.get(frameString);
                current.threads.push(thread);
            }
            else {
                var newEntry = new __stackEntry(frameString);
                current.children.set(frameString, newEntry);
                current = newEntry;
                current.threads.push(thread);
            }
        }
    }
}

findEntry(thread)
{
    var current = this.__root;
    var frameCount = thread.Stack.Frames.Count();
    for (var frameNum = frameCount - 1; frameNum >= 0; --frameNum)
    {
        var frame = thread.Stack.Frames[frameNum];
        var frameString = frame.toString();
        if (!current.children.has(frameString))
        {
            return null;
        }
        current = current.children.get(frameString);
    }
    return current;
}

display()
{
    this.__root.display("");
}

}

clase __threadSameStacks { constructor(thread) { this.__thread = thread; }

getDimensionality()
{
    return 1;
}

getValueAt(idx)
{
    for (var idxVal of this)
    {
        var tid = idxVal[Symbol.indicies][0];
        if (idxVal[Symbol.indicies][0] == idx && tid != this.__thread.Id)
        {
            return idxVal.value;
        }
    }
    return undefined;
}

*[Symbol.iterator]()
{
    var context = this.__thread.hostContext;
    var session = host.namespace.Debugger.Sessions.getValueAt(context);
    var process = session.Processes.getValueAt(context);
    var map = new __stackMap(process);
    var entry = map.findEntry(this.__thread);
    if (entry != null)
    {
        for (var sharingThread of entry.threads)
        {
            if (sharingThread.Id != this.__thread.Id)
            {
                yield new host.indexedValue(sharingThread, [sharingThread.Id]);
            }
        }
    }
}

}

clase __threadExtension { get IdenticalStacks() { return new __threadSameStacks(this); } }

function invokeScript() { var map = new __stackMap(host.currentProcess); map.display(); }

function initializeScript() { return [new host.namedModelParent(__threadExtension, "Debugger.Models.Thread")]; }