2011-04-02 15:28:58 -06:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2011-12-17 08:29:18 -07:00
|
|
|
// +build darwin freebsd linux netbsd openbsd windows
|
build: add build comments to core packages
The go/build package already recognizes
system-specific file names like
mycode_darwin.go
mycode_darwin_386.go
mycode_386.s
However, it is also common to write files that
apply to multiple architectures, so a recent CL added
to go/build the ability to process comments
listing a set of conditions for building. For example:
// +build darwin freebsd openbsd/386
says that this file should be compiled only on
OS X, FreeBSD, or 32-bit x86 OpenBSD systems.
These conventions are not yet documented
(hence this long CL description).
This CL adds build comments to the multi-system
files in the core library, a step toward making it
possible to use go/build to build them.
With this change go/build can handle crypto/rand,
exec, net, path/filepath, os/user, and time.
os and syscall need additional adjustments.
R=golang-dev, r, gri, r, gustavo
CC=golang-dev
https://golang.org/cl/5011046
2011-09-15 14:48:57 -06:00
|
|
|
|
2011-04-02 15:28:58 -06:00
|
|
|
package os
|
|
|
|
|
2011-06-06 03:53:30 -06:00
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2011-04-02 15:28:58 -06:00
|
|
|
// StartProcess starts a new process with the program, arguments and attributes
|
|
|
|
// specified by name, argv and attr.
|
2011-07-20 12:38:18 -06:00
|
|
|
//
|
2011-12-22 08:25:43 -07:00
|
|
|
// StartProcess is a low-level interface. The os/exec package provides
|
2011-07-20 12:38:18 -06:00
|
|
|
// higher-level interfaces.
|
2012-02-08 22:55:36 -07:00
|
|
|
//
|
|
|
|
// If there is an error, it will be of type *PathError.
|
2011-11-01 19:49:08 -06:00
|
|
|
func StartProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
|
2011-04-02 15:28:58 -06:00
|
|
|
sysattr := &syscall.ProcAttr{
|
|
|
|
Dir: attr.Dir,
|
|
|
|
Env: attr.Env,
|
2011-06-14 08:49:34 -06:00
|
|
|
Sys: attr.Sys,
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
if sysattr.Env == nil {
|
|
|
|
sysattr.Env = Environ()
|
|
|
|
}
|
2011-07-01 08:18:07 -06:00
|
|
|
for _, f := range attr.Files {
|
2012-02-10 14:47:19 -07:00
|
|
|
sysattr.Files = append(sysattr.Files, f.Fd())
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pid, h, e := syscall.StartProcess(name, argv, sysattr)
|
2011-11-13 20:44:52 -07:00
|
|
|
if e != nil {
|
|
|
|
return nil, &PathError{"fork/exec", name, e}
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
return newProcess(pid, h), nil
|
|
|
|
}
|
|
|
|
|
2011-06-06 03:53:30 -06:00
|
|
|
// Kill causes the Process to exit immediately.
|
2011-11-01 19:49:08 -06:00
|
|
|
func (p *Process) Kill() error {
|
os/signal: selective signal handling
Restore package os/signal, with new API:
Notify replaces Incoming, allowing clients
to ask for certain signals only. Also, signals
go to everyone who asks, not just one client.
This could plausibly move into package os now
that there are no magic side effects as a result
of the import.
Update runtime for new API: move common Unix
signal handling code into signal_unix.c.
(It's so easy to do this now that we don't have
to edit Makefiles!)
Tested on darwin,linux 386,amd64.
Fixes #1266.
R=r, dsymonds, bradfitz, iant, borman
CC=golang-dev
https://golang.org/cl/3749041
2012-02-13 11:52:37 -07:00
|
|
|
return p.Signal(Kill)
|
2011-06-06 03:53:30 -06:00
|
|
|
}
|
|
|
|
|
2012-02-20 20:10:34 -07:00
|
|
|
// ProcessState stores information about process as reported by Wait.
|
|
|
|
type ProcessState struct {
|
|
|
|
pid int // The process's id.
|
|
|
|
status *syscall.WaitStatus // System-dependent status info.
|
|
|
|
rusage *syscall.Rusage
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pid returns the process id of the exited process.
|
|
|
|
func (p *ProcessState) Pid() int {
|
|
|
|
return p.pid
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exited returns whether the program has exited.
|
|
|
|
func (p *ProcessState) Exited() bool {
|
|
|
|
return p.status.Exited()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Success reports whether the program exited successfully,
|
|
|
|
// such as with exit status 0 on Unix.
|
|
|
|
func (p *ProcessState) Success() bool {
|
|
|
|
return p.status.ExitStatus() == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sys returns system-dependent exit information about
|
|
|
|
// the process. Convert it to the appropriate underlying
|
|
|
|
// type, such as *syscall.WaitStatus on Unix, to access its contents.
|
|
|
|
func (p *ProcessState) Sys() interface{} {
|
|
|
|
return p.status
|
|
|
|
}
|
|
|
|
|
|
|
|
// SysUsage returns system-dependent resource usage information about
|
|
|
|
// the exited process. Convert it to the appropriate underlying
|
|
|
|
// type, such as *syscall.Rusage on Unix, to access its contents.
|
|
|
|
func (p *ProcessState) SysUsage() interface{} {
|
|
|
|
return p.rusage
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert i to decimal string.
|
|
|
|
func itod(i int) string {
|
|
|
|
if i == 0 {
|
|
|
|
return "0"
|
|
|
|
}
|
|
|
|
|
|
|
|
u := uint64(i)
|
|
|
|
if i < 0 {
|
|
|
|
u = -u
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assemble decimal in reverse order.
|
|
|
|
var b [32]byte
|
|
|
|
bp := len(b)
|
|
|
|
for ; u > 0; u /= 10 {
|
|
|
|
bp--
|
|
|
|
b[bp] = byte(u%10) + '0'
|
|
|
|
}
|
|
|
|
|
|
|
|
if i < 0 {
|
|
|
|
bp--
|
|
|
|
b[bp] = '-'
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(b[bp:])
|
|
|
|
}
|
|
|
|
|
2012-02-20 20:10:34 -07:00
|
|
|
func (p *ProcessState) String() string {
|
|
|
|
if p == nil {
|
2011-06-20 13:42:17 -06:00
|
|
|
return "<nil>"
|
|
|
|
}
|
2012-02-20 20:10:34 -07:00
|
|
|
status := p.Sys().(*syscall.WaitStatus)
|
2011-04-02 15:28:58 -06:00
|
|
|
res := ""
|
|
|
|
switch {
|
2012-02-20 20:10:34 -07:00
|
|
|
case status.Exited():
|
|
|
|
res = "exit status " + itod(status.ExitStatus())
|
|
|
|
case status.Signaled():
|
|
|
|
res = "signal " + itod(int(status.Signal()))
|
|
|
|
case status.Stopped():
|
|
|
|
res = "stop signal " + itod(int(status.StopSignal()))
|
|
|
|
if status.StopSignal() == syscall.SIGTRAP && status.TrapCause() != 0 {
|
|
|
|
res += " (trap " + itod(status.TrapCause()) + ")"
|
2011-04-02 15:28:58 -06:00
|
|
|
}
|
2012-02-20 20:10:34 -07:00
|
|
|
case status.Continued():
|
2011-04-02 15:28:58 -06:00
|
|
|
res = "continued"
|
|
|
|
}
|
2012-02-20 20:10:34 -07:00
|
|
|
if status.CoreDump() {
|
2011-04-02 15:28:58 -06:00
|
|
|
res += " (core dumped)"
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|