host_fallback.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // +build !darwin,!linux,!freebsd,!openbsd,!solaris,!windows
  2. package host
  3. import (
  4. "context"
  5. "github.com/shirou/gopsutil/internal/common"
  6. )
  7. func Info() (*InfoStat, error) {
  8. return InfoWithContext(context.Background())
  9. }
  10. func InfoWithContext(ctx context.Context) (*InfoStat, error) {
  11. return nil, common.ErrNotImplementedError
  12. }
  13. func BootTime() (uint64, error) {
  14. return BootTimeWithContext(context.Background())
  15. }
  16. func BootTimeWithContext(ctx context.Context) (uint64, error) {
  17. return 0, common.ErrNotImplementedError
  18. }
  19. func Uptime() (uint64, error) {
  20. return UptimeWithContext(context.Background())
  21. }
  22. func UptimeWithContext(ctx context.Context) (uint64, error) {
  23. return 0, common.ErrNotImplementedError
  24. }
  25. func Users() ([]UserStat, error) {
  26. return UsersWithContext(context.Background())
  27. }
  28. func UsersWithContext(ctx context.Context) ([]UserStat, error) {
  29. return []UserStat{}, common.ErrNotImplementedError
  30. }
  31. func Virtualization() (string, string, error) {
  32. return VirtualizationWithContext(context.Background())
  33. }
  34. func VirtualizationWithContext(ctx context.Context) (string, string, error) {
  35. return "", "", common.ErrNotImplementedError
  36. }
  37. func KernelVersion() (string, error) {
  38. return KernelVersionWithContext(context.Background())
  39. }
  40. func KernelVersionWithContext(ctx context.Context) (string, error) {
  41. return "", common.ErrNotImplementedError
  42. }
  43. func PlatformInformation() (string, string, string, error) {
  44. return PlatformInformationWithContext(context.Background())
  45. }
  46. func PlatformInformationWithContext(ctx context.Context) (string, string, string, error) {
  47. return "", "", "", common.ErrNotImplementedError
  48. }