process_fallback.go 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. // +build !darwin,!linux,!freebsd,!openbsd,!windows
  2. package process
  3. import (
  4. "context"
  5. "syscall"
  6. "github.com/shirou/gopsutil/cpu"
  7. "github.com/shirou/gopsutil/internal/common"
  8. "github.com/shirou/gopsutil/net"
  9. )
  10. type MemoryMapsStat struct {
  11. Path string `json:"path"`
  12. Rss uint64 `json:"rss"`
  13. Size uint64 `json:"size"`
  14. Pss uint64 `json:"pss"`
  15. SharedClean uint64 `json:"sharedClean"`
  16. SharedDirty uint64 `json:"sharedDirty"`
  17. PrivateClean uint64 `json:"privateClean"`
  18. PrivateDirty uint64 `json:"privateDirty"`
  19. Referenced uint64 `json:"referenced"`
  20. Anonymous uint64 `json:"anonymous"`
  21. Swap uint64 `json:"swap"`
  22. }
  23. type MemoryInfoExStat struct {
  24. }
  25. func Pids() ([]int32, error) {
  26. return PidsWithContext(context.Background())
  27. }
  28. func PidsWithContext(ctx context.Context) ([]int32, error) {
  29. return []int32{}, common.ErrNotImplementedError
  30. }
  31. func Processes() ([]*Process, error) {
  32. return nil, common.ErrNotImplementedError
  33. }
  34. func ProcessesWithContext(ctx context.Context) ([]*Process, error) {
  35. return nil, common.ErrNotImplementedError
  36. }
  37. func NewProcess(pid int32) (*Process, error) {
  38. return nil, common.ErrNotImplementedError
  39. }
  40. func (p *Process) Ppid() (int32, error) {
  41. return p.PpidWithContext(context.Background())
  42. }
  43. func (p *Process) PpidWithContext(ctx context.Context) (int32, error) {
  44. return 0, common.ErrNotImplementedError
  45. }
  46. func (p *Process) Name() (string, error) {
  47. return p.NameWithContext(context.Background())
  48. }
  49. func (p *Process) NameWithContext(ctx context.Context) (string, error) {
  50. return "", common.ErrNotImplementedError
  51. }
  52. func (p *Process) Tgid() (int32, error) {
  53. return 0, common.ErrNotImplementedError
  54. }
  55. func (p *Process) Exe() (string, error) {
  56. return p.ExeWithContext(context.Background())
  57. }
  58. func (p *Process) ExeWithContext(ctx context.Context) (string, error) {
  59. return "", common.ErrNotImplementedError
  60. }
  61. func (p *Process) Cmdline() (string, error) {
  62. return p.CmdlineWithContext(context.Background())
  63. }
  64. func (p *Process) CmdlineWithContext(ctx context.Context) (string, error) {
  65. return "", common.ErrNotImplementedError
  66. }
  67. func (p *Process) CmdlineSlice() ([]string, error) {
  68. return p.CmdlineSliceWithContext(context.Background())
  69. }
  70. func (p *Process) CmdlineSliceWithContext(ctx context.Context) ([]string, error) {
  71. return []string{}, common.ErrNotImplementedError
  72. }
  73. func (p *Process) CreateTime() (int64, error) {
  74. return p.CreateTimeWithContext(context.Background())
  75. }
  76. func (p *Process) CreateTimeWithContext(ctx context.Context) (int64, error) {
  77. return 0, common.ErrNotImplementedError
  78. }
  79. func (p *Process) Cwd() (string, error) {
  80. return p.CwdWithContext(context.Background())
  81. }
  82. func (p *Process) CwdWithContext(ctx context.Context) (string, error) {
  83. return "", common.ErrNotImplementedError
  84. }
  85. func (p *Process) Parent() (*Process, error) {
  86. return p.ParentWithContext(context.Background())
  87. }
  88. func (p *Process) ParentWithContext(ctx context.Context) (*Process, error) {
  89. return nil, common.ErrNotImplementedError
  90. }
  91. func (p *Process) Status() (string, error) {
  92. return p.StatusWithContext(context.Background())
  93. }
  94. func (p *Process) StatusWithContext(ctx context.Context) (string, error) {
  95. return "", common.ErrNotImplementedError
  96. }
  97. func (p *Process) Uids() ([]int32, error) {
  98. return p.UidsWithContext(context.Background())
  99. }
  100. func (p *Process) UidsWithContext(ctx context.Context) ([]int32, error) {
  101. return []int32{}, common.ErrNotImplementedError
  102. }
  103. func (p *Process) Gids() ([]int32, error) {
  104. return p.GidsWithContext(context.Background())
  105. }
  106. func (p *Process) GidsWithContext(ctx context.Context) ([]int32, error) {
  107. return []int32{}, common.ErrNotImplementedError
  108. }
  109. func (p *Process) Terminal() (string, error) {
  110. return p.TerminalWithContext(context.Background())
  111. }
  112. func (p *Process) TerminalWithContext(ctx context.Context) (string, error) {
  113. return "", common.ErrNotImplementedError
  114. }
  115. func (p *Process) Nice() (int32, error) {
  116. return p.NiceWithContext(context.Background())
  117. }
  118. func (p *Process) NiceWithContext(ctx context.Context) (int32, error) {
  119. return 0, common.ErrNotImplementedError
  120. }
  121. func (p *Process) IOnice() (int32, error) {
  122. return p.IOniceWithContext(context.Background())
  123. }
  124. func (p *Process) IOniceWithContext(ctx context.Context) (int32, error) {
  125. return 0, common.ErrNotImplementedError
  126. }
  127. func (p *Process) Rlimit() ([]RlimitStat, error) {
  128. return p.RlimitWithContext(context.Background())
  129. }
  130. func (p *Process) RlimitWithContext(ctx context.Context) ([]RlimitStat, error) {
  131. return nil, common.ErrNotImplementedError
  132. }
  133. func (p *Process) RlimitUsage(gatherUsed bool) ([]RlimitStat, error) {
  134. return p.RlimitUsageWithContext(context.Background(), gatherUsed)
  135. }
  136. func (p *Process) RlimitUsageWithContext(ctx context.Context, gatherUsed bool) ([]RlimitStat, error) {
  137. return nil, common.ErrNotImplementedError
  138. }
  139. func (p *Process) IOCounters() (*IOCountersStat, error) {
  140. return p.IOCountersWithContext(context.Background())
  141. }
  142. func (p *Process) IOCountersWithContext(ctx context.Context) (*IOCountersStat, error) {
  143. return nil, common.ErrNotImplementedError
  144. }
  145. func (p *Process) NumCtxSwitches() (*NumCtxSwitchesStat, error) {
  146. return p.NumCtxSwitchesWithContext(context.Background())
  147. }
  148. func (p *Process) NumCtxSwitchesWithContext(ctx context.Context) (*NumCtxSwitchesStat, error) {
  149. return nil, common.ErrNotImplementedError
  150. }
  151. func (p *Process) NumFDs() (int32, error) {
  152. return p.NumFDsWithContext(context.Background())
  153. }
  154. func (p *Process) NumFDsWithContext(ctx context.Context) (int32, error) {
  155. return 0, common.ErrNotImplementedError
  156. }
  157. func (p *Process) NumThreads() (int32, error) {
  158. return p.NumThreadsWithContext(context.Background())
  159. }
  160. func (p *Process) NumThreadsWithContext(ctx context.Context) (int32, error) {
  161. return 0, common.ErrNotImplementedError
  162. }
  163. func (p *Process) Threads() (map[int32]*cpu.TimesStat, error) {
  164. return p.ThreadsWithContext(context.Background())
  165. }
  166. func (p *Process) ThreadsWithContext(ctx context.Context) (map[int32]*cpu.TimesStat, error) {
  167. return nil, common.ErrNotImplementedError
  168. }
  169. func (p *Process) Times() (*cpu.TimesStat, error) {
  170. return p.TimesWithContext(context.Background())
  171. }
  172. func (p *Process) TimesWithContext(ctx context.Context) (*cpu.TimesStat, error) {
  173. return nil, common.ErrNotImplementedError
  174. }
  175. func (p *Process) CPUAffinity() ([]int32, error) {
  176. return p.CPUAffinityWithContext(context.Background())
  177. }
  178. func (p *Process) CPUAffinityWithContext(ctx context.Context) ([]int32, error) {
  179. return nil, common.ErrNotImplementedError
  180. }
  181. func (p *Process) MemoryInfo() (*MemoryInfoStat, error) {
  182. return p.MemoryInfoWithContext(context.Background())
  183. }
  184. func (p *Process) MemoryInfoWithContext(ctx context.Context) (*MemoryInfoStat, error) {
  185. return nil, common.ErrNotImplementedError
  186. }
  187. func (p *Process) MemoryInfoEx() (*MemoryInfoExStat, error) {
  188. return p.MemoryInfoExWithContext(context.Background())
  189. }
  190. func (p *Process) MemoryInfoExWithContext(ctx context.Context) (*MemoryInfoExStat, error) {
  191. return nil, common.ErrNotImplementedError
  192. }
  193. func (p *Process) Children() ([]*Process, error) {
  194. return p.ChildrenWithContext(context.Background())
  195. }
  196. func (p *Process) ChildrenWithContext(ctx context.Context) ([]*Process, error) {
  197. return nil, common.ErrNotImplementedError
  198. }
  199. func (p *Process) OpenFiles() ([]OpenFilesStat, error) {
  200. return p.OpenFilesWithContext(context.Background())
  201. }
  202. func (p *Process) OpenFilesWithContext(ctx context.Context) ([]OpenFilesStat, error) {
  203. return []OpenFilesStat{}, common.ErrNotImplementedError
  204. }
  205. func (p *Process) Connections() ([]net.ConnectionStat, error) {
  206. return p.ConnectionsWithContext(context.Background())
  207. }
  208. func (p *Process) ConnectionsWithContext(ctx context.Context) ([]net.ConnectionStat, error) {
  209. return []net.ConnectionStat{}, common.ErrNotImplementedError
  210. }
  211. func (p *Process) NetIOCounters(pernic bool) ([]net.IOCountersStat, error) {
  212. return p.NetIOCountersWithContext(context.Background(), pernic)
  213. }
  214. func (p *Process) NetIOCountersWithContext(ctx context.Context, pernic bool) ([]net.IOCountersStat, error) {
  215. return []net.IOCountersStat{}, common.ErrNotImplementedError
  216. }
  217. func (p *Process) IsRunning() (bool, error) {
  218. return p.IsRunningWithContext(context.Background())
  219. }
  220. func (p *Process) IsRunningWithContext(ctx context.Context) (bool, error) {
  221. return true, common.ErrNotImplementedError
  222. }
  223. func (p *Process) MemoryMaps(grouped bool) (*[]MemoryMapsStat, error) {
  224. return p.MemoryMapsWithContext(context.Background(), grouped)
  225. }
  226. func (p *Process) MemoryMapsWithContext(ctx context.Context, grouped bool) (*[]MemoryMapsStat, error) {
  227. return nil, common.ErrNotImplementedError
  228. }
  229. func (p *Process) SendSignal(sig syscall.Signal) error {
  230. return p.SendSignalWithContext(context.Background(), sig)
  231. }
  232. func (p *Process) SendSignalWithContext(ctx context.Context, sig syscall.Signal) error {
  233. return common.ErrNotImplementedError
  234. }
  235. func (p *Process) Suspend() error {
  236. return p.SuspendWithContext(context.Background())
  237. }
  238. func (p *Process) SuspendWithContext(ctx context.Context) error {
  239. return common.ErrNotImplementedError
  240. }
  241. func (p *Process) Resume() error {
  242. return p.ResumeWithContext(context.Background())
  243. }
  244. func (p *Process) ResumeWithContext(ctx context.Context) error {
  245. return common.ErrNotImplementedError
  246. }
  247. func (p *Process) Terminate() error {
  248. return p.TerminateWithContext(context.Background())
  249. }
  250. func (p *Process) TerminateWithContext(ctx context.Context) error {
  251. return common.ErrNotImplementedError
  252. }
  253. func (p *Process) Kill() error {
  254. return p.KillWithContext(context.Background())
  255. }
  256. func (p *Process) KillWithContext(ctx context.Context) error {
  257. return common.ErrNotImplementedError
  258. }
  259. func (p *Process) Username() (string, error) {
  260. return p.UsernameWithContext(context.Background())
  261. }
  262. func (p *Process) UsernameWithContext(ctx context.Context) (string, error) {
  263. return "", common.ErrNotImplementedError
  264. }