-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathprocess_list_processor.ps1
82 lines (76 loc) · 2.42 KB
/
process_list_processor.ps1
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
param(
[String]$name = 'svchost'
)
# origin: https://stackoverflow.com/questions/40495248/create-hashtable-from-json
function parse_json_helper{
param (
[string]$json,
[string]$file = $null,
[int]$threshold = 15
)
$data = @{}
if ($file -ne $null -and $file -ne '' -and (test-item -path $file)) {
write-debug ('Reading file "{0}"' -f $file)
$data = [IO.File]::ReadAllText($file)
} else {
$data = $json
}
$parser = new-object -typeName 'Web.Script.Serialization.JavaScriptSerializer'
$parser.MaxJsonLength = $data.length
$data = $parser.DeserializeObject($data)
write-output -NoEnumerate $data
$data.keys|
foreach-object {
$key = $_;
$row = $data[$key]
if ( $row['CPU'] -gt $threshold ){
write-output $row | format-table
}
}
# $data
}
function collection_processing_function {
param (
[String]$json,
[int]$threshold
)
$data = convertFrom-json -InputObject $json <# -Hashtable parameter was introduced in PowerShell 6.2 #>
if ($DebugPreference -eq 'Continue'){
format-list -inputObject $data
}
# the $data here is unpleasant MS-own pscustomobject type
$data = @{}
(convertFrom-json -InputObject $json <# -Depth parameter is not available prior to version 6.2 PowerShell #> ).psobject.properties |
foreach-object {
$data[$_.Name] = $_.Value
}
$data.keys|
foreach-object {
$key = $_;
$row = @{}
($data[$key]).psobject.properties |
foreach-object {
$row[$_.Name] = $_.Value
}
if ( $row['CPU'] -gt $threshold ){
write-output $row | format-table
}
}
}
# NOTE: on Windows 7, extracting the CPU information require running the script with adminisntrator privilege
# get-process -Name 'svchost' | select-object -first 1 | select-object -property *
$data = @{ } ; get-process -Name $name | foreach-object {
# using pid as a key. The convertTo-json only supports string keys
# convertTo-json : The type 'System.Collections.Hashtable' is not supported for serialization or deserialization of a dictionary. Keys must be strings.
$it = $_;
$data[('{0}' -f $it.'Id')] = @{
'pid' = $it.'Id';
'CPU' = $it.'CPU';
'Name' = $name
}
};
$process_list = convertTo-json -inputobject $data| out-string;
write-output 'Pure Powershel parse JSON test'
collection_processing_function $process_list 2
write-output 'Parse JSON helper test'
parse_json_helper -json $process_list