Commit d8cc5b28 authored by captainwong's avatar captainwong

get process list

parent 62dcced0
#pragma once
#include <Windows.h>
#include <string>
namespace jlib {
namespace win32 {
std::string formatLastError(const std::string& msg)
{
// Get system msg
char sysMsg[256];
DWORD eNum = GetLastError();
FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, eNum,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
sysMsg, 256, NULL);
// Trim the end of the line and terminate it with a null
char* p = sysMsg;
while ((*p > 31) || (*p == 9)) ++p;
do { *p-- = 0; } while ((p >= sysMsg) && ((*p == '.') || (*p < 33)));
return msg + " failed with error " + std::to_string(eNum) + " (" + sysMsg + ")";
}
std::wstring formatLastError(const std::wstring& msg)
{
// Get system msg
wchar_t sysMsg[256];
DWORD eNum = GetLastError();
FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, eNum,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
sysMsg, 256, NULL);
// Trim the end of the line and terminate it with a null
wchar_t* p = sysMsg;
while ((*p > 31) || (*p == 9)) ++p;
do { *p-- = 0; } while ((p >= sysMsg) && ((*p == '.') || (*p < 33)));
return msg + L" failed with error " + std::to_wstring(eNum) + L" (" + sysMsg + L")";
}
}
}
......@@ -3,6 +3,11 @@
#include <Windows.h>
#include <tlhelp32.h>
#include <string>
#include <vector>
#include <functional>
#include <unordered_set>
#include "lasterror.h"
#include "UnicodeTool.h"
#include "../utf8.h"
namespace jlib
......@@ -59,23 +64,23 @@ inline DWORD daemon(const std::string& path, bool wait_app_exit = true, bool sho
inline DWORD getppid()
{
HANDLE hSnapshot;
PROCESSENTRY32 pe32;
PROCESSENTRY32W pe32;
DWORD ppid = 0, pid = GetCurrentProcessId();
hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, pid);
__try {
if (hSnapshot == INVALID_HANDLE_VALUE) __leave;
ZeroMemory(&pe32, sizeof(pe32));
pe32.dwSize = sizeof(pe32);
if (!Process32First(hSnapshot, &pe32)) __leave;
if (!Process32FirstW(hSnapshot, &pe32)) __leave;
do {
if (pe32.th32ProcessID == pid) {
ppid = pe32.th32ParentProcessID;
break;
}
} while (Process32Next(hSnapshot, &pe32));
} while (Process32NextW(hSnapshot, &pe32));
} __finally {
if (hSnapshot != INVALID_HANDLE_VALUE) CloseHandle(hSnapshot);
......@@ -84,6 +89,345 @@ inline DWORD getppid()
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
// https://docs.microsoft.com/zh-cn/windows/win32/toolhelp/taking-a-snapshot-and-viewing-processes
struct ProcessInfo {
struct ModuleInfo {
std::wstring name;
std::wstring path;
DWORD pid;
DWORD base_address;
DWORD base_size;
};
struct ThreadInfo {
DWORD tid;
DWORD base_priority;
DWORD delta_priority;
};
std::wstring name;
std::wstring path;
DWORD pid;
DWORD ppid;
DWORD thread_count;
DWORD priority_base;
DWORD priority_class;
std::vector<ModuleInfo> modules;
std::vector<ThreadInfo> threads;
template <typename JsonValue>
JsonValue toJson() const {
JsonValue v;
v["name"] = u16_to_mbcs(name);
v["path"] = u16_to_mbcs(path);
v["pid"] = (size_t)pid;
v["ppid"] = (size_t)ppid;
v["thread_count"] = (size_t)thread_count;
v["priority_base"] = (size_t)priority_base;
v["priority_class"] = (size_t)priority_class;
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["pid"] = (size_t)m.pid;
jm["base_address"] = (size_t)m.base_address;
jm["base_size"] = (size_t)m.base_size;
ms.append(jm);
}
auto& ts = v["threads"];
for (const auto& t : threads) {
JsonValue jt;
jt["tid"] = (size_t)t.tid;
jt["base_priority"] = (size_t)t.base_priority;
jt["delta_priority"] = (size_t)t.delta_priority;
ts.append(jt);
}
return v;
}
};
typedef std::vector<ProcessInfo> ProcessInfos;
template <typename JsonValue>
inline JsonValue toJson(const ProcessInfos& pinfos) {
JsonValue v;
for (const auto& pinfo : pinfos) {
v.append(pinfo.toJson<JsonValue>());
}
return v;
}
typedef std::function<void(const std::wstring&)> ErrorOutputFunc;
static void dummyErrorOutputFunc(const std::wstring& msg) {
printf("%ls\n", msg.data());
}
static void outputLastErrorHelper(const std::wstring& msg, ErrorOutputFunc func = nullptr) {
if (!func) { return; }
func(formatLastError(msg));
}
static std::vector<ProcessInfo::ModuleInfo> getProcessModules(DWORD dwPID, ErrorOutputFunc output = dummyErrorOutputFunc)
{
std::vector<ProcessInfo::ModuleInfo> modules = {};
HANDLE hModuleSnap = INVALID_HANDLE_VALUE;
MODULEENTRY32 me32;
// Take a snapshot of all modules in the specified process.
hModuleSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwPID);
if (hModuleSnap == INVALID_HANDLE_VALUE) {
outputLastErrorHelper((L"CreateToolhelp32Snapshot (of modules)"), output);
return(modules);
}
// Set the size of the structure before using it.
me32.dwSize = sizeof(MODULEENTRY32);
// Retrieve information about the first module,
// and exit if unsuccessful
if (!Module32First(hModuleSnap, &me32)) {
outputLastErrorHelper((L"Module32First"), output); // show cause of failure
CloseHandle(hModuleSnap); // clean the snapshot object
return(modules);
}
// Now walk the module list of the process,
// and display information about each module
do {
ProcessInfo::ModuleInfo info;
info.name = me32.szModule;
info.path = me32.szExePath;
info.pid = me32.th32ProcessID;
info.base_address = (DWORD)me32.modBaseAddr;
info.base_size = me32.modBaseSize;
modules.emplace_back(info);
} while (Module32Next(hModuleSnap, &me32));
CloseHandle(hModuleSnap);
return(modules);
}
static std::vector<ProcessInfo::ThreadInfo> getProcessThreads(DWORD dwOwnerPID, ErrorOutputFunc output = dummyErrorOutputFunc)
{
std::vector<ProcessInfo::ThreadInfo> threads = {};
HANDLE hThreadSnap = INVALID_HANDLE_VALUE;
THREADENTRY32 te32;
// Take a snapshot of all running threads
hThreadSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, dwOwnerPID);
if (hThreadSnap == INVALID_HANDLE_VALUE)
return(threads);
// Fill in the size of the structure before using it.
te32.dwSize = sizeof(THREADENTRY32);
// Retrieve information about the first thread,
// and exit if unsuccessful
if (!Thread32First(hThreadSnap, &te32)) {
outputLastErrorHelper((L"Thread32First"), output); // show cause of failure
CloseHandle(hThreadSnap); // clean the snapshot object
return(threads);
}
// Now walk the thread list of the system,
// and display information about each thread
// associated with the specified process
do {
if (te32.th32OwnerProcessID == dwOwnerPID) {
ProcessInfo::ThreadInfo tinfo;
tinfo.tid = te32.th32ThreadID;
tinfo.base_priority = te32.tpBasePri;
tinfo.delta_priority = te32.tpDeltaPri;
threads.emplace_back(tinfo);
}
} while (Thread32Next(hThreadSnap, &te32));
CloseHandle(hThreadSnap);
return(threads);
}
static const wchar_t* PROCESS_FILTER[] = {
L"[System Process]",
L"ApplicationFrameHost.exe",
L"AppVShNotify.exe",
L"audiodg.exe",
L"backgroundTaskHost.exe",
L"ChsIME.exe",
L"CompPkgSrv.exe",
L"conhost.exe",
L"csrss.exe",
L"ctfmon.exe",
L"dasHost.exe",
L"dllhost.exe",
L"dwm.exe",
L"fontdrvhost.exe",
L"GameBarFTServer.exe",
L"LockApp.exe",
L"LogonUI.exe",
L"lsass.exe",
L"lsm.exe",
L"Memory Compression",
L"Microsoft.Photos.exe",
L"msdtc.exe",
L"mstsc.exe",
L"pacjsworker.exe",
L"PresentationFontCache.exe",
L"rdpclip.exe",
L"Registry",
L"RemindersServer.exe",
L"rundll32.exe",
L"RuntimeBroker.exe",
L"schtasks.exe",
L"SearchFilterHost.exe",
L"SearchIndexer.exe",
L"SearchProtocolHost.exe",
L"SearchUI.exe",
L"SecurityHealthService.exe",
L"SecurityHealthSystray.exe",
L"services.exe",
L"SettingSyncHost.exe",
L"ShellExperienceHost.exe",
L"sihost.exe",
L"SkypeApp.exe",
L"SkypeBackgroundHost.exe",
L"SkypeBridge.exe",
L"smartscreen.exe",
L"smss.exe",
L"SgrmBroker.exe",
L"spoolsv.exe",
L"StartMenuExperienceHost.exe",
L"svchost.exe",
L"System",
L"SystemSettingsBroker.exe",
L"TabTip.exe",
L"taskhost.exe",
L"taskhostw.exe",
L"TiWorker.exe",
L"TrustedInstaller.exe",
L"Video.UI.exe",
L"WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe",
L"wininit.exe",
L"winlogon.exe",
L"WinStore.App.exe",
L"WmiPrvSE.exe",
L"wmpnetwk.exe",
L"WUDFHost.exe",
L"YourPhone.exe",
};
static ProcessInfos getProcessesInfo(ErrorOutputFunc output = dummyErrorOutputFunc, bool withModules = false, bool withThreads = false, const wchar_t** filter = PROCESS_FILTER, size_t filter_count = _countof(PROCESS_FILTER))
{
// pre-process filter
std::unordered_set<std::wstring> filterset;
for (size_t i = 0; i < filter_count; i++) {
filterset.insert(filter[i]);
}
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
ProcessInfos pinfos = {};
// Take a snapshot of all processes in the system.
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hProcessSnap == INVALID_HANDLE_VALUE) {
outputLastErrorHelper(L"CreateToolhelp32Snapshot (of processes)", output);
return(pinfos);
}
// Set the size of the structure before using it.
pe32.dwSize = sizeof(PROCESSENTRY32);
// Retrieve information about the first process,
// and exit if unsuccessful
if (!Process32First(hProcessSnap, &pe32)) {
outputLastErrorHelper((L"Process32First"), output); // show cause of failure
CloseHandle(hProcessSnap); // clean the snapshot object
return(pinfos);
}
// Now walk the snapshot of processes, and
// display information about each process in turn
do {
if (filterset.find(pe32.szExeFile) != filterset.end()) { continue; }
ProcessInfo pinfo = {};
pinfo.name = pe32.szExeFile;
// Retrieve the priority class.
dwPriorityClass = 0;
hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pe32.th32ProcessID);
if (hProcess == NULL)
outputLastErrorHelper((L"OpenProcess"), output);
else {
dwPriorityClass = GetPriorityClass(hProcess);
if (!dwPriorityClass)
outputLastErrorHelper((L"GetPriorityClass"), output);
}
pinfo.pid = pe32.th32ProcessID;
pinfo.ppid = pe32.th32ParentProcessID;
pinfo.thread_count = pe32.cntThreads;
pinfo.priority_base = pe32.pcPriClassBase;
if (dwPriorityClass) {
pinfo.priority_class = dwPriorityClass;
}
// List the modules and threads associated with this process
pinfo.modules = getProcessModules(pe32.th32ProcessID, output);
// try to get process exe path
if (!pinfo.modules.empty()) {
pinfo.path = pinfo.modules.front().path;
}
if (!withModules) {
pinfo.modules.clear();
}
if (withThreads) {
pinfo.threads = getProcessThreads(pe32.th32ProcessID, output);
}
// try to get process exe path again
if (pinfo.path.empty()) {
if (!hProcess) {
hProcess = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pe32.th32ProcessID);
}
if (hProcess) {
wchar_t path[4096]; DWORD len = 4096;
if (QueryFullProcessImageNameW(hProcess, 0, path, &len)) {
pinfo.path = path;
} else {
outputLastErrorHelper(L"QueryFullProcessImageNameW", output);
}
} else {
outputLastErrorHelper(L"OpenProcess", output);
}
}
pinfos.emplace_back(pinfo);
if(hProcess){ CloseHandle(hProcess); }
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
return(pinfos);
}
} // namespace win32
} // namespace jlib
......@@ -301,6 +301,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_resolve_fastest_ip", "
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_process", "test_process\test_process.vcxproj", "{0F324C6A-D08E-4044-B606-E1F65DB4E68B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_process_qt", "test_process_qt\test_process_qt.vcxproj", "{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
......@@ -623,6 +625,12 @@ Global
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Release|x64.Build.0 = Release|x64
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Release|x86.ActiveCfg = Release|Win32
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Release|x86.Build.0 = Release|Win32
{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}.Debug|x64.ActiveCfg = Debug|Win32
{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}.Debug|x86.ActiveCfg = Debug|Win32
{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}.Debug|x86.Build.0 = Debug|Win32
{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}.Release|x64.ActiveCfg = Release|Win32
{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}.Release|x86.ActiveCfg = Release|Win32
{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
......@@ -693,6 +701,7 @@ Global
{77DBD16D-112C-448D-BA6A-CE566A9331FC} = {21DC893D-AB0B-48E1-9E23-069A025218D9}
{65F9D4DA-BC6C-486D-8966-6ACCE077639D} = {77DBD16D-112C-448D-BA6A-CE566A9331FC}
{0F324C6A-D08E-4044-B606-E1F65DB4E68B} = {0E6598D3-602D-4552-97F7-DC5AB458D553}
{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA} = {0E6598D3-602D-4552-97F7-DC5AB458D553}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D}
......
#if 0
#include "../../jlib/win32/process.h"
using namespace jlib::win32;
......@@ -8,3 +11,186 @@ int main()
//printf("notepad process id %d\n", daemon("notepad", false, true));
printf("parent process id %d\n", getppid());
}
#else
#include <windows.h>
#include <tlhelp32.h>
#include <tchar.h>
#include <locale.h>
// Forward declarations:
BOOL GetProcessList();
BOOL ListProcessModules(DWORD dwPID);
BOOL ListProcessThreads(DWORD dwOwnerPID);
void printError(const TCHAR* msg);
int main(void)
{
setlocale(LC_ALL, "");
GetProcessList();
return 0;
}
BOOL GetProcessList()
{
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;
// Take a snapshot of all processes in the system.
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hProcessSnap == INVALID_HANDLE_VALUE) {
printError(TEXT("CreateToolhelp32Snapshot (of processes)"));
return(FALSE);
}
// Set the size of the structure before using it.
pe32.dwSize = sizeof(PROCESSENTRY32);
// Retrieve information about the first process,
// and exit if unsuccessful
if (!Process32First(hProcessSnap, &pe32)) {
printError(TEXT("Process32First")); // show cause of failure
CloseHandle(hProcessSnap); // clean the snapshot object
return(FALSE);
}
// Now walk the snapshot of processes, and
// display information about each process in turn
do {
_tprintf(TEXT("\n\n====================================================="));
_tprintf(TEXT("\nPROCESS NAME: %s"), pe32.szExeFile);
_tprintf(TEXT("\n-------------------------------------------------------"));
// Retrieve the priority class.
dwPriorityClass = 0;
hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pe32.th32ProcessID);
if (hProcess == NULL)
printError(TEXT("OpenProcess"));
else {
dwPriorityClass = GetPriorityClass(hProcess);
if (!dwPriorityClass)
printError(TEXT("GetPriorityClass"));
CloseHandle(hProcess);
}
_tprintf(TEXT("\n Process ID = 0x%08X"), pe32.th32ProcessID);
_tprintf(TEXT("\n Thread count = %d"), pe32.cntThreads);
_tprintf(TEXT("\n Parent process ID = 0x%08X"), pe32.th32ParentProcessID);
_tprintf(TEXT("\n Priority base = %d"), pe32.pcPriClassBase);
if (dwPriorityClass)
_tprintf(TEXT("\n Priority class = %d"), dwPriorityClass);
// List the modules and threads associated with this process
ListProcessModules(pe32.th32ProcessID);
ListProcessThreads(pe32.th32ProcessID);
} while (Process32Next(hProcessSnap, &pe32));
CloseHandle(hProcessSnap);
return(TRUE);
}
BOOL ListProcessModules(DWORD dwPID)
{
HANDLE hModuleSnap = INVALID_HANDLE_VALUE;
MODULEENTRY32 me32;
// Take a snapshot of all modules in the specified process.
hModuleSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwPID);
if (hModuleSnap == INVALID_HANDLE_VALUE) {
printError(TEXT("CreateToolhelp32Snapshot (of modules)"));
return(FALSE);
}
// Set the size of the structure before using it.
me32.dwSize = sizeof(MODULEENTRY32);
// Retrieve information about the first module,
// and exit if unsuccessful
if (!Module32First(hModuleSnap, &me32)) {
printError(TEXT("Module32First")); // show cause of failure
CloseHandle(hModuleSnap); // clean the snapshot object
return(FALSE);
}
// Now walk the module list of the process,
// and display information about each module
do {
_tprintf(TEXT("\n\n MODULE NAME: %s"), me32.szModule);
_tprintf(TEXT("\n Executable = %s"), me32.szExePath);
_tprintf(TEXT("\n Process ID = 0x%08X"), me32.th32ProcessID);
_tprintf(TEXT("\n Ref count (g) = 0x%04X"), me32.GlblcntUsage);
_tprintf(TEXT("\n Ref count (p) = 0x%04X"), me32.ProccntUsage);
_tprintf(TEXT("\n Base address = 0x%08X"), (DWORD)me32.modBaseAddr);
_tprintf(TEXT("\n Base size = %d"), me32.modBaseSize);
} while (Module32Next(hModuleSnap, &me32));
CloseHandle(hModuleSnap);
return(TRUE);
}
BOOL ListProcessThreads(DWORD dwOwnerPID)
{
HANDLE hThreadSnap = INVALID_HANDLE_VALUE;
THREADENTRY32 te32;
hThreadSnap = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, dwOwnerPID);
if (hThreadSnap == INVALID_HANDLE_VALUE)
return(FALSE);
// Fill in the size of the structure before using it.
te32.dwSize = sizeof(THREADENTRY32);
// Retrieve information about the first thread,
// and exit if unsuccessful
if (!Thread32First(hThreadSnap, &te32)) {
printError(TEXT("Thread32First")); // show cause of failure
CloseHandle(hThreadSnap); // clean the snapshot object
return(FALSE);
}
// Now walk the thread list of the system,
// and display information about each thread
// associated with the specified process
do {
if (te32.th32OwnerProcessID == dwOwnerPID) {
_tprintf(TEXT("\n\n THREAD ID = 0x%08X"), te32.th32ThreadID);
_tprintf(TEXT("\n Base priority = %d"), te32.tpBasePri);
_tprintf(TEXT("\n Delta priority = %d"), te32.tpDeltaPri);
_tprintf(TEXT("\n"));
}
} while (Thread32Next(hThreadSnap, &te32));
CloseHandle(hThreadSnap);
return(TRUE);
}
void printError(const TCHAR* msg)
{
DWORD eNum;
TCHAR sysMsg[256];
TCHAR* p;
eNum = GetLastError();
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, eNum,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
sysMsg, 256, NULL);
// Trim the end of the line and terminate it with a null
p = sysMsg;
while ((*p > 31) || (*p == 9))
++p;
do { *p-- = 0; } while ((p >= sysMsg) &&
((*p == '.') || (*p < 33)));
// Display the message
_tprintf(TEXT("\n WARNING: %s failed with error %d (%s)"), msg, eNum, sysMsg);
}
#endif
\ No newline at end of file
......@@ -95,6 +95,7 @@
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<UACExecutionLevel>RequireAdministrator</UACExecutionLevel>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
......@@ -140,6 +141,9 @@
<ItemGroup>
<ClCompile Include="test_process.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\jlib\win32\lasterror.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
......
......@@ -19,4 +19,9 @@
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\jlib\win32\lasterror.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
\ No newline at end of file
#include <QtCore/QCoreApplication>
#include <qstring.h>
#include <qdebug.h>
#include "../../jlib/win32/process.h"
#include "../../jlib/3rdparty/json/jsoncpp/json.h"
#include <locale.h>
#include "../../jlib/win32/unicodetool.h"
int main(int argc, char *argv[])
{
setlocale(LC_ALL, "");
QCoreApplication a(argc, argv);
auto pinfos = jlib::win32::getProcessesInfo([](const std::wstring& msg) {
qCritical() << QString::fromLocal8Bit(jlib::win32::u16_to_mbcs(msg).data());
}, false, false);
auto json = jlib::win32::toJson<Json::Value>(pinfos);
auto msg = Json::StyledWriter().write(json);
qDebug() << msg.data();
return a.exec();
}
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{E287BCBE-0CA5-4E3C-9F44-05F505A5A0AA}</ProjectGuid>
<Keyword>QtVS_v302</Keyword>
<QtMsBuild Condition="'$(QtMsBuild)'=='' OR !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<Target Name="QtMsBuildNotFound" BeforeTargets="CustomBuild;ClCompile" Condition="!Exists('$(QtMsBuild)\qt.targets') or !Exists('$(QtMsBuild)\qt.props')">
<Message Importance="High" Text="QtMsBuild: could not locate qt.targets, qt.props; project may not build correctly." />
</Target>
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="Shared" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="QtSettings">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
<QtBuildConfig>debug</QtBuildConfig>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="QtSettings">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
<QtBuildConfig>release</QtBuildConfig>
</PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|$Platform$'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|$Platform$'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\jlib\3rdparty\json\jsoncpp\json_reader.cpp" />
<ClCompile Include="..\..\jlib\3rdparty\json\jsoncpp\json_value.cpp" />
<ClCompile Include="..\..\jlib\3rdparty\json\jsoncpp\json_writer.cpp" />
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\jlib\3rdparty\json\jsoncpp\json.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}</UniqueIdentifier>
<Extensions>qrc;*</Extensions>
<ParseFiles>false</ParseFiles>
</Filter>
<Filter Include="jsoncpp">
<UniqueIdentifier>{25857f3a-191a-44db-a462-08439bafd976}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\..\jlib\3rdparty\json\jsoncpp\json_reader.cpp">
<Filter>jsoncpp</Filter>
</ClCompile>
<ClCompile Include="..\..\jlib\3rdparty\json\jsoncpp\json_value.cpp">
<Filter>jsoncpp</Filter>
</ClCompile>
<ClCompile Include="..\..\jlib\3rdparty\json\jsoncpp\json_writer.cpp">
<Filter>jsoncpp</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\jlib\3rdparty\json\jsoncpp\json.h">
<Filter>jsoncpp</Filter>
</ClInclude>
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<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