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
5fc667db
Commit
5fc667db
authored
Jul 05, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix process
parent
7655fd40
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
10 deletions
+27
-10
process.h
jlib/win32/process.h
+4
-4
main.cpp
test/test_process_qt/main.cpp
+19
-5
test_process_qt.vcxproj.user
test/test_process_qt/test_process_qt.vcxproj.user
+4
-1
No files found.
jlib/win32/process.h
View file @
5fc667db
...
@@ -122,8 +122,8 @@ struct ProcessInfo {
...
@@ -122,8 +122,8 @@ struct ProcessInfo {
template
<
typename
JsonValue
>
template
<
typename
JsonValue
>
JsonValue
toJson
()
const
{
JsonValue
toJson
()
const
{
JsonValue
v
;
JsonValue
v
;
v
[
"name"
]
=
u16_to_mbcs
(
name
);
v
[
"name"
]
=
u
tf
16_to_mbcs
(
name
);
v
[
"path"
]
=
u16_to_mbcs
(
path
);
v
[
"path"
]
=
u
tf
16_to_mbcs
(
path
);
v
[
"pid"
]
=
(
size_t
)
pid
;
v
[
"pid"
]
=
(
size_t
)
pid
;
v
[
"ppid"
]
=
(
size_t
)
ppid
;
v
[
"ppid"
]
=
(
size_t
)
ppid
;
v
[
"thread_count"
]
=
(
size_t
)
thread_count
;
v
[
"thread_count"
]
=
(
size_t
)
thread_count
;
...
@@ -133,8 +133,8 @@ struct ProcessInfo {
...
@@ -133,8 +133,8 @@ struct ProcessInfo {
auto
&
ms
=
v
[
"modules"
];
auto
&
ms
=
v
[
"modules"
];
for
(
const
auto
&
m
:
modules
)
{
for
(
const
auto
&
m
:
modules
)
{
JsonValue
jm
;
JsonValue
jm
;
jm
[
"name"
]
=
u16_to_mbcs
(
m
.
name
);
jm
[
"name"
]
=
u
tf
16_to_mbcs
(
m
.
name
);
jm
[
"path"
]
=
u16_to_mbcs
(
m
.
path
);
jm
[
"path"
]
=
u
tf
16_to_mbcs
(
m
.
path
);
jm
[
"pid"
]
=
(
size_t
)
m
.
pid
;
jm
[
"pid"
]
=
(
size_t
)
m
.
pid
;
jm
[
"base_address"
]
=
(
size_t
)
m
.
base_address
;
jm
[
"base_address"
]
=
(
size_t
)
m
.
base_address
;
jm
[
"base_size"
]
=
(
size_t
)
m
.
base_size
;
jm
[
"base_size"
]
=
(
size_t
)
m
.
base_size
;
...
...
test/test_process_qt/main.cpp
View file @
5fc667db
...
@@ -12,11 +12,25 @@ int main(int argc, char *argv[])
...
@@ -12,11 +12,25 @@ int main(int argc, char *argv[])
QCoreApplication
a
(
argc
,
argv
);
QCoreApplication
a
(
argc
,
argv
);
auto
pinfos
=
jlib
::
win32
::
getProcessesInfo
([](
const
std
::
wstring
&
msg
)
{
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
);
},
false
,
false
);
auto
json
=
jlib
::
win32
::
toJson
<
Json
::
Value
>
(
pinfos
);
auto
msg
=
Json
::
StyledWriter
().
write
(
json
);
qDebug
()
<<
msg
.
data
();
return
a
.
exec
();
if
(
0
)
{
auto
json
=
jlib
::
win32
::
toJson
<
Json
::
Value
>
(
pinfos
);
auto
msg
=
Json
::
StyledWriter
().
write
(
json
);
qDebug
()
<<
msg
.
data
();
}
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();
}
}
test/test_process_qt/test_process_qt.vcxproj.user
View file @
5fc667db
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"Current"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Project
ToolsVersion=
"Current"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup
/>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)'=='Debug|Win32'"
>
<LocalDebuggerCommandArguments>
$(QmlDebug)
>
p.txt
</LocalDebuggerCommandArguments>
<DebuggerFlavor>
WindowsLocalDebugger
</DebuggerFlavor>
</PropertyGroup>
</Project>
</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