memory.go 755 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package gupta
  2. import (
  3. "bytes"
  4. "fmt"
  5. "io"
  6. "strconv"
  7. "strings"
  8. )
  9. type Memory struct {
  10. Total uint64 `json:"total"`
  11. Free uint64 `json:"free"`
  12. }
  13. func (m Memory) MarshalJSON() ([]byte, error) {
  14. jsonData := []byte(
  15. fmt.Sprintf("{\"memory\": {\"total\": \"%dKB\", \"used\": \"%dKB\", \"free\": \"%dKB\"}}",
  16. m.Total, m.Used(), m.Free))
  17. return jsonData, nil
  18. }
  19. func (m *Memory) Used() uint64 {
  20. return m.Total - m.Free
  21. }
  22. func NewMemory(r io.ReaderAt) Memory {
  23. m := Memory{}
  24. buf := make([]byte, 80)
  25. r.ReadAt(buf, 0)
  26. idx := bytes.Index(buf, []byte("MemAvailable"))
  27. line := string(buf[:idx])
  28. elements := strings.Fields(line)
  29. m.Total, _ = strconv.ParseUint(elements[1], 10, 64)
  30. m.Free, _ = strconv.ParseUint(elements[4], 10, 64)
  31. return m
  32. }