[lldb-vscode] improve modules request
authorWalter Erquinigo <a20012251@gmail.com>
Mon, 4 Jan 2021 22:05:42 +0000 (14:05 -0800)
committerWalter Erquinigo <a20012251@gmail.com>
Thu, 21 Jan 2021 21:18:50 +0000 (13:18 -0800)
commit39239f9b5666bebb059fa562badeffb9f1c3afab
tree2a4e76223c6a2f823044f27cbee943b24123e123
parent39db5753f993abcc4289dd165e8297a4e28f4b0a
[lldb-vscode] improve modules request

lldb-vsdode was communicating the list of modules to the IDE with events, which in practice ended up having some drawbacks
- when debugging large targets, the number of these events were easily 10k, which polluted the messages being transmitted, which caused the following: a harder time debugging the messages, a lag after terminated the process because of these messages being processes (this could easily take several seconds). The latter was specially bad, as users were complaining about it even when they didn't check the modules view.
- these events were rarely used, as users only check the modules view when something is wrong and they try to debug things.

After getting some feedback from users, we realized that it's better to not used events but make this simply a request and is triggered by users whenever they needed.

This diff achieves that and does some small clean up in the existing code.

Differential Revision: https://reviews.llvm.org/D94033
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
lldb/test/API/tools/lldb-vscode/module/TestVSCode_module.py
lldb/tools/lldb-vscode/VSCode.cpp
lldb/tools/lldb-vscode/lldb-vscode.cpp