Commit 5fc667db authored by captainwong's avatar captainwong

fix process

parent 7655fd40
......@@ -122,8 +122,8 @@ struct ProcessInfo {
template <typename JsonValue>
JsonValue toJson() const {
JsonValue v;
v["name"] = u16_to_mbcs(name);
v["path"] = u16_to_mbcs(path);
v["name"] = utf16_to_mbcs(name);
v["path"] = utf16_to_mbcs(path);
v["pid"] = (size_t)pid;
v["ppid"] = (size_t)ppid;
v["thread_count"] = (size_t)thread_count;
......@@ -133,8 +133,8 @@ struct ProcessInfo {
auto& ms = v["modules"];
for (const auto& m : modules) {
JsonValue jm;
jm["name"] = u16_to_mbcs(m.name);
jm["path"] = u16_to_mbcs(m.path);
jm["name"] = utf16_to_mbcs(m.name);
jm["path"] = utf16_to_mbcs(m.path);
jm["pid"] = (size_t)m.pid;
jm["base_address"] = (size_t)m.base_address;
jm["base_size"] = (size_t)m.base_size;
......
......@@ -12,11 +12,25 @@ int main(int argc, char *argv[])
QCoreApplication a(argc, argv);
auto pinfos = jlib::win32::getProcessesInfo([](const std::wstring& msg) {
qCritical() << QString::fromLocal8Bit(jlib::win32::u16_to_mbcs(msg).data());
qCritical() << jlib::win32::utf16_to_utf8(msg).data();
}, false, false);
if (0) {
auto json = jlib::win32::toJson<Json::Value>(pinfos);
auto msg = Json::StyledWriter().write(json);
qDebug() << msg.data();
}
return a.exec();
std::unordered_set<std::wstring> processes;
for (const auto& info : pinfos) {
if (processes.find(info.name) != processes.end()) { continue; }
processes.insert(info.name);
//Json::Value v;
//snapshot[win32::utf16_to_utf8(info.name)] = win32::utf16_to_utf8(info.path);
//v["path"] = win32::u16_to_mbcs(info.path);
//snapshot.append(v);
//printf("%s:%s\n", jlib::win32::utf16_to_utf8(info.name).data(), jlib::win32::utf16_to_utf8(info.path).data());
qDebug() << jlib::win32::utf16_to_utf8(info.name).data() << jlib::win32::utf16_to_utf8(info.path).data();
}
//return a.exec();
}
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerCommandArguments>$(QmlDebug) &gt; p.txt</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment