-
Notifications
You must be signed in to change notification settings - Fork 25
/
system.go
110 lines (99 loc) · 6.62 KB
/
system.go
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
* Copyright (c) 2014-2019 MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the license is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package gowin32
import (
"syscall"
"github.com/winlabs/gowin32/wrappers"
)
type InitiateShutdownFlags uint32
const (
InitiateShutdownFlagForceOthers InitiateShutdownFlags = wrappers.SHUTDOWN_FORCE_OTHERS
InitiateShutdownFlagForceSelf InitiateShutdownFlags = wrappers.SHUTDOWN_FORCE_SELF
InitiateShutdownFlagRestart InitiateShutdownFlags = wrappers.SHUTDOWN_RESTART
InitiateShutdownFlagPowerOff InitiateShutdownFlags = wrappers.SHUTDOWN_POWEROFF
InitiateShutdownFlagNoReboot InitiateShutdownFlags = wrappers.SHUTDOWN_NOREBOOT
InitiateShutdownFlagGraceOverride InitiateShutdownFlags = wrappers.SHUTDOWN_GRACE_OVERRIDE
InitiateShutdownFlagInstallUpdates InitiateShutdownFlags = wrappers.SHUTDOWN_INSTALL_UPDATES
InitiateShutdownFlagRestartApps InitiateShutdownFlags = wrappers.SHUTDOWN_RESTARTAPPS
InitiateShutdownFlagSkipSvcPreshutdown InitiateShutdownFlags = wrappers.SHUTDOWN_SKIP_SVC_PRESHUTDOWN
InitiateShutdownFlagHybrid InitiateShutdownFlags = wrappers.SHUTDOWN_HYBRID
)
type InitiateShutdownReason uint32
const (
InitiateShutdownReasonUserDefined InitiateShutdownReason = wrappers.SHTDN_REASON_FLAG_USER_DEFINED
InitiateShutdownReasonPlanned InitiateShutdownReason = wrappers.SHTDN_REASON_FLAG_PLANNED
)
const (
InitiateShutdownReasonMajorOther InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_OTHER
InitiateShutdownReasonMajorHardware InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_HARDWARE
InitiateShutdownReasonMajorOperatingSystem InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_OPERATINGSYSTEM
InitiateShutdownReasonMajorSoftware InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_SOFTWARE
InitiateShutdownReasonMajorApplication InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_APPLICATION
InitiateShutdownReasonMajorSystem InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_SYSTEM
InitiateShutdownReasonMajorPower InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_POWER
InitiateShutdownReasonMajorLegacyAPI InitiateShutdownReason = wrappers.SHTDN_REASON_MAJOR_LEGACY_API
)
const (
InitiateShutdownReasonMinorOther InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_OTHER
InitiateShutdownReasonMinorMaintenance InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_MAINTENANCE
InitiateShutdownReasonMinorInstallation InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_INSTALLATION
InitiateShutdownReasonMinorUpgrade InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_UPGRADE
InitiateShutdownReasonMinorReconfig InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_RECONFIG
InitiateShutdownReasonMinorHung InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_HUNG
InitiateShutdownReasonMinorUnstable InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_UNSTABLE
InitiateShutdownReasonMinorDisk InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_DISK
InitiateShutdownReasonMinorProcessor InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_PROCESSOR
InitiateShutdownReasonMinorNetwordCard InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_NETWORKCARD
InitiateShutdownReasonMinorPowerSupply InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_POWER_SUPPLY
InitiateShutdownReasonMinorCordUnplugged InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_CORDUNPLUGGED
InitiateShutdownReasonMinorEnvironment InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_ENVIRONMENT
InitiateShutdownReasonMinorHardwareDriver InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_HARDWARE_DRIVER
InitiateShutdownReasonMinorOtherDriver InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_OTHERDRIVER
InitiateShutdownReasonMinorBlueScreen InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_BLUESCREEN
InitiateShutdownReasonMinorServicePack InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_SERVICEPACK
InitiateShutdownReasonMinorHotFix InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_HOTFIX
InitiateShutdownReasonMinorSecurityFix InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_SECURITYFIX
InitiateShutdownReasonMinorSecurity InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_SECURITY
InitiateShutdownReasonMinorConnectivity InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY
InitiateShutdownReasonMinorWMI InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_WMI
InitiateShutdownReasonMinorServicePackUninstall InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL
InitiateShutdownReasonMinorHotfixUninstall InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_HOTFIX_UNINSTALL
InitiateShutdownReasonMinorSecurityFixUninstall InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL
InitiateShutdownReasonMinorMMC InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_MMC
InitiateShutdownReasonMinorTermSrv InitiateShutdownReason = wrappers.SHTDN_REASON_MINOR_TERMSRV
)
func InitiateShutdown(machineName string, message string, gracePeriod int, shutdownFlags InitiateShutdownFlags, reason InitiateShutdownReason) error {
if err := wrappers.InitiateShutdown(
syscall.StringToUTF16Ptr(machineName),
syscall.StringToUTF16Ptr(message),
uint32(gracePeriod),
uint32(shutdownFlags),
uint32(reason)); err != nil {
return NewWindowsError("InitiateShutdown", err)
}
return nil
}
func InitiateSystemShutdown(machineName string, message string, timeout int, forceAppsClosed bool, rebootAfterShutdown bool) error {
if err := wrappers.InitiateSystemShutdown(
syscall.StringToUTF16Ptr(machineName),
syscall.StringToUTF16Ptr(message),
uint32(timeout),
forceAppsClosed,
rebootAfterShutdown); err != nil {
return NewWindowsError("InitiateSystemShutdown", err)
}
return nil
}