blob: 58852bc388c5053f618d86aa01900c0cab771d99 (
plain)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/process/process.h"
#include <sys/resource.h>
#include <sys/time.h>
#include <sys/types.h>
#include "base/logging.h"
#include "base/process/kill.h"
namespace base {
Process::Process(ProcessHandle handle) : process_(handle) {
CHECK_NE(handle, GetCurrentProcessHandle());
}
Process::Process(RValue other)
: process_(other.object->process_) {
other.object->Close();
}
Process& Process::operator=(RValue other) {
if (this != other.object) {
process_ = other.object->process_;
other.object->Close();
}
return *this;
}
// static
Process Process::Current() {
Process process;
process.process_ = GetCurrentProcessHandle();
return process.Pass();
}
// static
Process Process::DeprecatedGetProcessFromHandle(ProcessHandle handle) {
DCHECK_NE(handle, GetCurrentProcessHandle());
return Process(handle);
}
#if !defined(OS_LINUX)
// static
bool Process::CanBackgroundProcesses() {
return false;
}
#endif // !defined(OS_LINUX)
bool Process::IsValid() const {
return process_ != kNullProcessHandle;
}
ProcessHandle Process::Handle() const {
return process_;
}
Process Process::Duplicate() const {
if (is_current())
return Current();
return Process(process_);
}
ProcessId Process::pid() const {
DCHECK(IsValid());
return GetProcId(process_);
}
bool Process::is_current() const {
return process_ == GetCurrentProcessHandle();
}
void Process::Close() {
process_ = kNullProcessHandle;
// if the process wasn't terminated (so we waited) or the state
// wasn't already collected w/ a wait from process_utils, we're gonna
// end up w/ a zombie when it does finally exit.
}
void Process::Terminate(int result_code) {
// result_code isn't supportable.
DCHECK(IsValid());
// We don't wait here. It's the responsibility of other code to reap the
// child.
KillProcess(process_, result_code, false);
}
bool Process::WaitForExit(int* exit_code) {
// TODO(rvargas) crbug.com/417532: Remove this constant.
const int kNoTimeout = -1;
return WaitForExitWithTimeout(TimeDelta::FromMilliseconds(kNoTimeout),
exit_code);
}
bool Process::WaitForExitWithTimeout(TimeDelta timeout, int* exit_code) {
// TODO(rvargas) crbug.com/417532: Move the implementation here.
return base::WaitForExitCodeWithTimeout(Handle(), exit_code, timeout);
}
#if !defined(OS_LINUX)
bool Process::IsProcessBackgrounded() const {
// See SetProcessBackgrounded().
DCHECK(IsValid());
return false;
}
bool Process::SetProcessBackgrounded(bool value) {
// POSIX only allows lowering the priority of a process, so if we
// were to lower it we wouldn't be able to raise it back to its initial
// priority.
DCHECK(IsValid());
return false;
}
#endif // !defined(OS_LINUX)
int Process::GetPriority() const {
DCHECK(IsValid());
return getpriority(PRIO_PROCESS, process_);
}
} // namspace base
|