Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
62dcced0
Commit
62dcced0
authored
May 13, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32 getppid
parent
873f4efe
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
250 additions
and
6 deletions
+250
-6
process.h
jlib/win32/process.h
+57
-6
test.sln
test/test.sln
+11
-0
test_process.cpp
test/test_process/test_process.cpp
+10
-0
test_process.vcxproj
test/test_process/test_process.vcxproj
+146
-0
test_process.vcxproj.filters
test/test_process/test_process.vcxproj.filters
+22
-0
test_process.vcxproj.user
test/test_process/test_process.vcxproj.user
+4
-0
No files found.
jlib/win32/process.h
View file @
62dcced0
#
pragma
once
#include <Windows.h>
#include <tlhelp32.h>
#include <string>
#include "../utf8.h"
...
...
@@ -10,6 +11,13 @@ namespace jlib
namespace
win32
{
/**
* @brief 启动程序
* @param path 启动命令
* @param wait_app_exit 是否阻塞等待程序退出
* @param show 是否显示程序
* @return 启动程序失败返回0xFFFFFFFF;当 wait_app_exit 为真,返回程序的进程返回值;否则返回程序进程ID;
*/
inline
DWORD
daemon
(
const
std
::
wstring
&
path
,
bool
wait_app_exit
=
true
,
bool
show
=
true
)
{
STARTUPINFOW
si
=
{
0
};
si
.
cb
=
sizeof
(
si
);
...
...
@@ -19,20 +27,63 @@ inline DWORD daemon(const std::wstring& path, bool wait_app_exit = true, bool sh
DWORD
dwCreationFlags
=
show
?
0
:
CREATE_NO_WINDOW
;
BOOL
bRet
=
CreateProcessW
(
NULL
,
(
LPWSTR
)(
path
.
c_str
()),
NULL
,
NULL
,
FALSE
,
dwCreationFlags
,
NULL
,
NULL
,
&
si
,
&
pi
);
if
(
bRet
)
{
WaitForSingleObject
(
pi
.
hProcess
,
wait_app_exit
?
INFINITE
:
0
);
DWORD
dwExit
;
::
GetExitCodeProcess
(
pi
.
hProcess
,
&
dwExit
);
CloseHandle
(
pi
.
hThread
);
CloseHandle
(
pi
.
hProcess
);
return
dwExit
;
if
(
wait_app_exit
)
{
WaitForSingleObject
(
pi
.
hProcess
,
INFINITE
);
DWORD
dwExit
;
::
GetExitCodeProcess
(
pi
.
hProcess
,
&
dwExit
);
CloseHandle
(
pi
.
hThread
);
CloseHandle
(
pi
.
hProcess
);
return
dwExit
;
}
else
{
return
pi
.
dwProcessId
;
}
}
return
0xFFFFFFFF
;
}
/**
* @brief 启动程序
* @param path 启动命令
* @param wait_app_exit 是否阻塞等待程序退出
* @param show 是否显示程序
* @return 启动程序失败返回0xFFFFFFFF;当 wait_app_exit 为真,返回程序的进程返回值;否则返回程序进程ID;
*/
inline
DWORD
daemon
(
const
std
::
string
&
path
,
bool
wait_app_exit
=
true
,
bool
show
=
true
)
{
return
daemon
(
utf8
::
a2w
(
path
),
wait_app_exit
,
show
);
}
/**
* @brief 获取父进程ID
* @return 成功返回父进程ID,否则返回0
*/
inline
DWORD
getppid
()
{
HANDLE
hSnapshot
;
PROCESSENTRY32
pe32
;
DWORD
ppid
=
0
,
pid
=
GetCurrentProcessId
();
hSnapshot
=
CreateToolhelp32Snapshot
(
TH32CS_SNAPPROCESS
,
0
);
__try
{
if
(
hSnapshot
==
INVALID_HANDLE_VALUE
)
__leave
;
ZeroMemory
(
&
pe32
,
sizeof
(
pe32
));
pe32
.
dwSize
=
sizeof
(
pe32
);
if
(
!
Process32First
(
hSnapshot
,
&
pe32
))
__leave
;
do
{
if
(
pe32
.
th32ProcessID
==
pid
)
{
ppid
=
pe32
.
th32ParentProcessID
;
break
;
}
}
while
(
Process32Next
(
hSnapshot
,
&
pe32
));
}
__finally
{
if
(
hSnapshot
!=
INVALID_HANDLE_VALUE
)
CloseHandle
(
hSnapshot
);
}
return
ppid
;
}
}
// namespace win32
}
// namespace jlib
test/test.sln
View file @
62dcced0
...
...
@@ -299,6 +299,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "net_tests", "net_tests", "{
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_resolve_fastest_ip", "test_resolve_fastest_ip\test_resolve_fastest_ip.vcxproj", "{65F9D4DA-BC6C-486D-8966-6ACCE077639D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_process", "test_process\test_process.vcxproj", "{0F324C6A-D08E-4044-B606-E1F65DB4E68B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
...
...
@@ -613,6 +615,14 @@ Global
{65F9D4DA-BC6C-486D-8966-6ACCE077639D}.Release|x64.Build.0 = Release|x64
{65F9D4DA-BC6C-486D-8966-6ACCE077639D}.Release|x86.ActiveCfg = Release|Win32
{65F9D4DA-BC6C-486D-8966-6ACCE077639D}.Release|x86.Build.0 = Release|Win32
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Debug|x64.ActiveCfg = Debug|x64
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Debug|x64.Build.0 = Debug|x64
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Debug|x86.ActiveCfg = Debug|Win32
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Debug|x86.Build.0 = Debug|Win32
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}.Release|x64.ActiveCfg = Release|x64
{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
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
@@ -682,6 +692,7 @@ Global
{5EA0AFE3-134D-4573-B8E7-ADEC802722DF} = {0E6598D3-602D-4552-97F7-DC5AB458D553}
{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}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D}
...
...
test/test_process/test_process.cpp
0 → 100644
View file @
62dcced0
#include "../../jlib/win32/process.h"
using
namespace
jlib
::
win32
;
int
main
()
{
//printf("notepad exit code %d\n", daemon("notepad", true, true));
//printf("notepad process id %d\n", daemon("notepad", false, true));
printf
(
"parent process id %d
\n
"
,
getppid
());
}
test/test_process/test_process.vcxproj
0 → 100644
View file @
62dcced0
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets=
"Build"
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>
<ProjectConfiguration
Include=
"Debug|x64"
>
<Configuration>
Debug
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
<ProjectConfiguration
Include=
"Release|x64"
>
<Configuration>
Release
</Configuration>
<Platform>
x64
</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup
Label=
"Globals"
>
<VCProjectVersion>
16.0
</VCProjectVersion>
<ProjectGuid>
{0F324C6A-D08E-4044-B606-E1F65DB4E68B}
</ProjectGuid>
<RootNamespace>
testprocess
</RootNamespace>
<WindowsTargetPlatformVersion>
10.0
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.Default.props"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
true
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
Label=
"Configuration"
>
<ConfigurationType>
Application
</ConfigurationType>
<UseDebugLibraries>
false
</UseDebugLibraries>
<PlatformToolset>
v142
</PlatformToolset>
<WholeProgramOptimization>
true
</WholeProgramOptimization>
<CharacterSet>
Unicode
</CharacterSet>
</PropertyGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.props"
/>
<ImportGroup
Label=
"ExtensionSettings"
>
</ImportGroup>
<ImportGroup
Label=
"Shared"
>
</ImportGroup>
<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>
<ImportGroup
Label=
"PropertySheets"
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<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|x64'"
>
<Import
Project=
"$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props"
Condition=
"exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')"
Label=
"LocalAppDataPlatform"
/>
</ImportGroup>
<PropertyGroup
Label=
"UserMacros"
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<LinkIncremental>
true
</LinkIncremental>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<LinkIncremental>
false
</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition=
"'$(Configuration)|$(Platform)'=='Release|x64'"
>
<ClCompile>
<WarningLevel>
Level3
</WarningLevel>
<FunctionLevelLinking>
true
</FunctionLevelLinking>
<IntrinsicFunctions>
true
</IntrinsicFunctions>
<SDLCheck>
true
</SDLCheck>
<PreprocessorDefinitions>
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<ConformanceMode>
true
</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>
Console
</SubSystem>
<EnableCOMDATFolding>
true
</EnableCOMDATFolding>
<OptimizeReferences>
true
</OptimizeReferences>
<GenerateDebugInformation>
true
</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"test_process.cpp"
/>
</ItemGroup>
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
\ No newline at end of file
test/test_process/test_process.vcxproj.filters
0 → 100644
View file @
62dcced0
<?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;c++;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;h++;hm;inl;inc;ipp;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>
</ItemGroup>
<ItemGroup>
<ClCompile
Include=
"test_process.cpp"
>
<Filter>
Source Files
</Filter>
</ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file
test/test_process/test_process.vcxproj.user
0 → 100644
View file @
62dcced0
<?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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment