net_freebsd.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // +build freebsd
  2. package net
  3. import (
  4. "context"
  5. "errors"
  6. "os/exec"
  7. "strconv"
  8. "strings"
  9. "github.com/shirou/gopsutil/internal/common"
  10. )
  11. func IOCounters(pernic bool) ([]IOCountersStat, error) {
  12. return IOCountersWithContext(context.Background(), pernic)
  13. }
  14. func IOCountersWithContext(ctx context.Context, pernic bool) ([]IOCountersStat, error) {
  15. netstat, err := exec.LookPath("/usr/bin/netstat")
  16. if err != nil {
  17. return nil, err
  18. }
  19. out, err := invoke.CommandWithContext(ctx, netstat, "-ibdnW")
  20. if err != nil {
  21. return nil, err
  22. }
  23. lines := strings.Split(string(out), "\n")
  24. ret := make([]IOCountersStat, 0, len(lines)-1)
  25. exists := make([]string, 0, len(ret))
  26. for _, line := range lines {
  27. values := strings.Fields(line)
  28. if len(values) < 1 || values[0] == "Name" {
  29. continue
  30. }
  31. if common.StringsHas(exists, values[0]) {
  32. // skip if already get
  33. continue
  34. }
  35. exists = append(exists, values[0])
  36. if len(values) < 12 {
  37. continue
  38. }
  39. base := 1
  40. // sometimes Address is ommitted
  41. if len(values) < 13 {
  42. base = 0
  43. }
  44. parsed := make([]uint64, 0, 8)
  45. vv := []string{
  46. values[base+3], // PacketsRecv
  47. values[base+4], // Errin
  48. values[base+5], // Dropin
  49. values[base+6], // BytesRecvn
  50. values[base+7], // PacketSent
  51. values[base+8], // Errout
  52. values[base+9], // BytesSent
  53. values[base+11], // Dropout
  54. }
  55. for _, target := range vv {
  56. if target == "-" {
  57. parsed = append(parsed, 0)
  58. continue
  59. }
  60. t, err := strconv.ParseUint(target, 10, 64)
  61. if err != nil {
  62. return nil, err
  63. }
  64. parsed = append(parsed, t)
  65. }
  66. n := IOCountersStat{
  67. Name: values[0],
  68. PacketsRecv: parsed[0],
  69. Errin: parsed[1],
  70. Dropin: parsed[2],
  71. BytesRecv: parsed[3],
  72. PacketsSent: parsed[4],
  73. Errout: parsed[5],
  74. BytesSent: parsed[6],
  75. Dropout: parsed[7],
  76. }
  77. ret = append(ret, n)
  78. }
  79. if pernic == false {
  80. return getIOCountersAll(ret)
  81. }
  82. return ret, nil
  83. }
  84. // NetIOCountersByFile is an method which is added just a compatibility for linux.
  85. func IOCountersByFile(pernic bool, filename string) ([]IOCountersStat, error) {
  86. return IOCountersByFileWithContext(context.Background(), pernic, filename)
  87. }
  88. func IOCountersByFileWithContext(ctx context.Context, pernic bool, filename string) ([]IOCountersStat, error) {
  89. return IOCounters(pernic)
  90. }
  91. func FilterCounters() ([]FilterStat, error) {
  92. return FilterCountersWithContext(context.Background())
  93. }
  94. func FilterCountersWithContext(ctx context.Context) ([]FilterStat, error) {
  95. return nil, errors.New("NetFilterCounters not implemented for freebsd")
  96. }
  97. // NetProtoCounters returns network statistics for the entire system
  98. // If protocols is empty then all protocols are returned, otherwise
  99. // just the protocols in the list are returned.
  100. // Not Implemented for FreeBSD
  101. func ProtoCounters(protocols []string) ([]ProtoCountersStat, error) {
  102. return ProtoCountersWithContext(context.Background(), protocols)
  103. }
  104. func ProtoCountersWithContext(ctx context.Context, protocols []string) ([]ProtoCountersStat, error) {
  105. return nil, errors.New("NetProtoCounters not implemented for freebsd")
  106. }