123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- // +build !darwin,!linux,!freebsd,!openbsd,!windows
- package process
- import (
- "context"
- "syscall"
- "github.com/shirou/gopsutil/cpu"
- "github.com/shirou/gopsutil/internal/common"
- "github.com/shirou/gopsutil/net"
- )
- type MemoryMapsStat struct {
- Path string `json:"path"`
- Rss uint64 `json:"rss"`
- Size uint64 `json:"size"`
- Pss uint64 `json:"pss"`
- SharedClean uint64 `json:"sharedClean"`
- SharedDirty uint64 `json:"sharedDirty"`
- PrivateClean uint64 `json:"privateClean"`
- PrivateDirty uint64 `json:"privateDirty"`
- Referenced uint64 `json:"referenced"`
- Anonymous uint64 `json:"anonymous"`
- Swap uint64 `json:"swap"`
- }
- type MemoryInfoExStat struct {
- }
- func Pids() ([]int32, error) {
- return PidsWithContext(context.Background())
- }
- func PidsWithContext(ctx context.Context) ([]int32, error) {
- return []int32{}, common.ErrNotImplementedError
- }
- func Processes() ([]*Process, error) {
- return nil, common.ErrNotImplementedError
- }
- func ProcessesWithContext(ctx context.Context) ([]*Process, error) {
- return nil, common.ErrNotImplementedError
- }
- func NewProcess(pid int32) (*Process, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) Ppid() (int32, error) {
- return p.PpidWithContext(context.Background())
- }
- func (p *Process) PpidWithContext(ctx context.Context) (int32, error) {
- return 0, common.ErrNotImplementedError
- }
- func (p *Process) Name() (string, error) {
- return p.NameWithContext(context.Background())
- }
- func (p *Process) NameWithContext(ctx context.Context) (string, error) {
- return "", common.ErrNotImplementedError
- }
- func (p *Process) Tgid() (int32, error) {
- return 0, common.ErrNotImplementedError
- }
- func (p *Process) Exe() (string, error) {
- return p.ExeWithContext(context.Background())
- }
- func (p *Process) ExeWithContext(ctx context.Context) (string, error) {
- return "", common.ErrNotImplementedError
- }
- func (p *Process) Cmdline() (string, error) {
- return p.CmdlineWithContext(context.Background())
- }
- func (p *Process) CmdlineWithContext(ctx context.Context) (string, error) {
- return "", common.ErrNotImplementedError
- }
- func (p *Process) CmdlineSlice() ([]string, error) {
- return p.CmdlineSliceWithContext(context.Background())
- }
- func (p *Process) CmdlineSliceWithContext(ctx context.Context) ([]string, error) {
- return []string{}, common.ErrNotImplementedError
- }
- func (p *Process) CreateTime() (int64, error) {
- return p.CreateTimeWithContext(context.Background())
- }
- func (p *Process) CreateTimeWithContext(ctx context.Context) (int64, error) {
- return 0, common.ErrNotImplementedError
- }
- func (p *Process) Cwd() (string, error) {
- return p.CwdWithContext(context.Background())
- }
- func (p *Process) CwdWithContext(ctx context.Context) (string, error) {
- return "", common.ErrNotImplementedError
- }
- func (p *Process) Parent() (*Process, error) {
- return p.ParentWithContext(context.Background())
- }
- func (p *Process) ParentWithContext(ctx context.Context) (*Process, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) Status() (string, error) {
- return p.StatusWithContext(context.Background())
- }
- func (p *Process) StatusWithContext(ctx context.Context) (string, error) {
- return "", common.ErrNotImplementedError
- }
- func (p *Process) Uids() ([]int32, error) {
- return p.UidsWithContext(context.Background())
- }
- func (p *Process) UidsWithContext(ctx context.Context) ([]int32, error) {
- return []int32{}, common.ErrNotImplementedError
- }
- func (p *Process) Gids() ([]int32, error) {
- return p.GidsWithContext(context.Background())
- }
- func (p *Process) GidsWithContext(ctx context.Context) ([]int32, error) {
- return []int32{}, common.ErrNotImplementedError
- }
- func (p *Process) Terminal() (string, error) {
- return p.TerminalWithContext(context.Background())
- }
- func (p *Process) TerminalWithContext(ctx context.Context) (string, error) {
- return "", common.ErrNotImplementedError
- }
- func (p *Process) Nice() (int32, error) {
- return p.NiceWithContext(context.Background())
- }
- func (p *Process) NiceWithContext(ctx context.Context) (int32, error) {
- return 0, common.ErrNotImplementedError
- }
- func (p *Process) IOnice() (int32, error) {
- return p.IOniceWithContext(context.Background())
- }
- func (p *Process) IOniceWithContext(ctx context.Context) (int32, error) {
- return 0, common.ErrNotImplementedError
- }
- func (p *Process) Rlimit() ([]RlimitStat, error) {
- return p.RlimitWithContext(context.Background())
- }
- func (p *Process) RlimitWithContext(ctx context.Context) ([]RlimitStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) RlimitUsage(gatherUsed bool) ([]RlimitStat, error) {
- return p.RlimitUsageWithContext(context.Background(), gatherUsed)
- }
- func (p *Process) RlimitUsageWithContext(ctx context.Context, gatherUsed bool) ([]RlimitStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) IOCounters() (*IOCountersStat, error) {
- return p.IOCountersWithContext(context.Background())
- }
- func (p *Process) IOCountersWithContext(ctx context.Context) (*IOCountersStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) NumCtxSwitches() (*NumCtxSwitchesStat, error) {
- return p.NumCtxSwitchesWithContext(context.Background())
- }
- func (p *Process) NumCtxSwitchesWithContext(ctx context.Context) (*NumCtxSwitchesStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) NumFDs() (int32, error) {
- return p.NumFDsWithContext(context.Background())
- }
- func (p *Process) NumFDsWithContext(ctx context.Context) (int32, error) {
- return 0, common.ErrNotImplementedError
- }
- func (p *Process) NumThreads() (int32, error) {
- return p.NumThreadsWithContext(context.Background())
- }
- func (p *Process) NumThreadsWithContext(ctx context.Context) (int32, error) {
- return 0, common.ErrNotImplementedError
- }
- func (p *Process) Threads() (map[int32]*cpu.TimesStat, error) {
- return p.ThreadsWithContext(context.Background())
- }
- func (p *Process) ThreadsWithContext(ctx context.Context) (map[int32]*cpu.TimesStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) Times() (*cpu.TimesStat, error) {
- return p.TimesWithContext(context.Background())
- }
- func (p *Process) TimesWithContext(ctx context.Context) (*cpu.TimesStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) CPUAffinity() ([]int32, error) {
- return p.CPUAffinityWithContext(context.Background())
- }
- func (p *Process) CPUAffinityWithContext(ctx context.Context) ([]int32, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) MemoryInfo() (*MemoryInfoStat, error) {
- return p.MemoryInfoWithContext(context.Background())
- }
- func (p *Process) MemoryInfoWithContext(ctx context.Context) (*MemoryInfoStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) MemoryInfoEx() (*MemoryInfoExStat, error) {
- return p.MemoryInfoExWithContext(context.Background())
- }
- func (p *Process) MemoryInfoExWithContext(ctx context.Context) (*MemoryInfoExStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) Children() ([]*Process, error) {
- return p.ChildrenWithContext(context.Background())
- }
- func (p *Process) ChildrenWithContext(ctx context.Context) ([]*Process, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) OpenFiles() ([]OpenFilesStat, error) {
- return p.OpenFilesWithContext(context.Background())
- }
- func (p *Process) OpenFilesWithContext(ctx context.Context) ([]OpenFilesStat, error) {
- return []OpenFilesStat{}, common.ErrNotImplementedError
- }
- func (p *Process) Connections() ([]net.ConnectionStat, error) {
- return p.ConnectionsWithContext(context.Background())
- }
- func (p *Process) ConnectionsWithContext(ctx context.Context) ([]net.ConnectionStat, error) {
- return []net.ConnectionStat{}, common.ErrNotImplementedError
- }
- func (p *Process) NetIOCounters(pernic bool) ([]net.IOCountersStat, error) {
- return p.NetIOCountersWithContext(context.Background(), pernic)
- }
- func (p *Process) NetIOCountersWithContext(ctx context.Context, pernic bool) ([]net.IOCountersStat, error) {
- return []net.IOCountersStat{}, common.ErrNotImplementedError
- }
- func (p *Process) IsRunning() (bool, error) {
- return p.IsRunningWithContext(context.Background())
- }
- func (p *Process) IsRunningWithContext(ctx context.Context) (bool, error) {
- return true, common.ErrNotImplementedError
- }
- func (p *Process) MemoryMaps(grouped bool) (*[]MemoryMapsStat, error) {
- return p.MemoryMapsWithContext(context.Background(), grouped)
- }
- func (p *Process) MemoryMapsWithContext(ctx context.Context, grouped bool) (*[]MemoryMapsStat, error) {
- return nil, common.ErrNotImplementedError
- }
- func (p *Process) SendSignal(sig syscall.Signal) error {
- return p.SendSignalWithContext(context.Background(), sig)
- }
- func (p *Process) SendSignalWithContext(ctx context.Context, sig syscall.Signal) error {
- return common.ErrNotImplementedError
- }
- func (p *Process) Suspend() error {
- return p.SuspendWithContext(context.Background())
- }
- func (p *Process) SuspendWithContext(ctx context.Context) error {
- return common.ErrNotImplementedError
- }
- func (p *Process) Resume() error {
- return p.ResumeWithContext(context.Background())
- }
- func (p *Process) ResumeWithContext(ctx context.Context) error {
- return common.ErrNotImplementedError
- }
- func (p *Process) Terminate() error {
- return p.TerminateWithContext(context.Background())
- }
- func (p *Process) TerminateWithContext(ctx context.Context) error {
- return common.ErrNotImplementedError
- }
- func (p *Process) Kill() error {
- return p.KillWithContext(context.Background())
- }
- func (p *Process) KillWithContext(ctx context.Context) error {
- return common.ErrNotImplementedError
- }
- func (p *Process) Username() (string, error) {
- return p.UsernameWithContext(context.Background())
- }
- func (p *Process) UsernameWithContext(ctx context.Context) (string, error) {
- return "", common.ErrNotImplementedError
- }
|