Episódio

Defrag Tools #170 - Depurador - JavaScript Scripting

Neste episódio do Defrag Tools, Andrew Richards conversa com Andy Luhrs e Bill Messmer da equipe de Ferramentas de Depuração para Windows. Falamos sobre as novas habilidades de extensibilidade e script JavaScript no WinDbg disponíveis no WDK e SDK build 14951 e mais recente.

Bill aproveitou o modelo de objeto do depurador anteriormente nestes episódios:

Linha do tempo:

[00:00] Boas-vindas e introduções
[00:24] Nova queda do SDK
[00:29] Porquê JavaScript
[02:07] Novos comandos
[03:50] Código do Visual Studio
[04:00] Exemplo - Hello World
[07:15] Namespaces padrão do depurador
[09:07] Exemplo - Imprimir todos os tópicos
[10:26] Exemplo - Ponto de interrupção condicional
[18:13] 'g' vs. 'gc' – André estava certo! 'GC' retoma a execução da mesma forma que começou. Então, se você apertar 'p' e, em seguida, acertar um ponto de interrupção condicional que tenha 'gc' nele, o 'gc' apenas terminará seu 'p' inicial.
[20:40] Exemplo - Pilhas exclusivas
[34:40] Exemplo - Adição

Dúvidas/Comentários? Envie o email para defragtools@microsoft.com

Documentos do MSDN JavaScript:

Exemplo de pilhas exclusivas (o correto):

"uso estrito";

class __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 + "    ");
    }
}

}

classe __stackMap { construtor(processo) { this.__process = processo; this.__root = novo __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("");
}

}

class __threadSameStacks { construtor(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]);
            }
        }
    }
}

}

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

função invokeScript() { var map = new __stackMap(host.currentProcess); map.display(); }

função initializeScript() { return [new host.namedModelParent(__threadExtension, "Debugger.Models.Thread")]; }