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
|
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-debug" project.
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
#include "command_line.hpp"
#include <winapi/debug.hpp>
#include <boost/program_options.hpp>
#include <exception>
#include <iostream>
#include <string>
#include <vector>
namespace {
class EnumSymbols : public SettingsParser {
public:
explicit EnumSymbols(int argc, char** argv) : SettingsParser{argc, argv} {
namespace po = boost::program_options;
visible.add_options()("pdb",
po::value<std::vector<std::string>>(&pdbs)->value_name("PATH"),
"load a PDB file");
visible.add_options()(
"functions",
po::value<winapi::symbol::Tag>(&tag)->implicit_value(function_tag)->zero_tokens(),
"only list functions");
visible.add_options()(
"mask", po::value<std::string>(&symbol_mask)->value_name("MASK"), "symbol mask");
}
const char* get_short_description() const override {
return "[-h|--help] [--pdb PATH]... [--functions] [--mask MASK]";
}
std::vector<std::string> pdbs;
bool type_specified() const { return tag != reserved_tag; }
winapi::Symbol::Type get_type() const { return static_cast<winapi::Symbol::Type>(tag); }
std::string get_mask() const { return symbol_mask; }
private:
static constexpr auto reserved_tag =
static_cast<winapi::symbol::Tag>(winapi::Symbol::Type::RESERVED);
static constexpr auto function_tag =
static_cast<winapi::symbol::Tag>(winapi::Symbol::Type::Function);
winapi::symbol::Tag tag = reserved_tag;
std::string symbol_mask{winapi::DbgHelp::all_symbols};
};
constexpr winapi::symbol::Tag EnumSymbols::reserved_tag;
constexpr winapi::symbol::Tag EnumSymbols::function_tag;
} // namespace
int main(int argc, char* argv[]) {
try {
EnumSymbols settings{argc, argv};
try {
settings.parse(argc, argv);
} catch (const boost::program_options::error& e) {
settings.usage_error(e);
return 1;
}
if (settings.exit_with_usage) {
settings.usage();
return 0;
}
const auto dbghelp = winapi::DbgHelp::post_mortem();
for (const auto& pdb : settings.pdbs) {
const auto id = dbghelp.load_pdb(pdb);
dbghelp.enum_symbols(id, settings.get_mask(), [&](const winapi::SymbolInfo& symbol) {
if (!settings.type_specified() || settings.get_type() == symbol.get_type())
std::cout << symbol.get_name() << '\n';
});
}
} catch (const std::exception& e) {
std::cerr << "error: " << e.what() << '\n';
return 1;
}
return 0;
}
|