Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

sysreadfile_linux.go 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Copyright 2018 The Prometheus Authors
  2. // Licensed under the Apache License, Version 2.0 (the "License");
  3. // you may not use this file except in compliance with the License.
  4. // You may obtain a copy of the License at
  5. //
  6. // http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. // Unless required by applicable law or agreed to in writing, software
  9. // distributed under the License is distributed on an "AS IS" BASIS,
  10. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. // See the License for the specific language governing permissions and
  12. // limitations under the License.
  13. // +build !windows
  14. package util
  15. import (
  16. "bytes"
  17. "os"
  18. "syscall"
  19. )
  20. // SysReadFile is a simplified ioutil.ReadFile that invokes syscall.Read directly.
  21. // https://github.com/prometheus/node_exporter/pull/728/files
  22. func SysReadFile(file string) (string, error) {
  23. f, err := os.Open(file)
  24. if err != nil {
  25. return "", err
  26. }
  27. defer f.Close()
  28. // On some machines, hwmon drivers are broken and return EAGAIN. This causes
  29. // Go's ioutil.ReadFile implementation to poll forever.
  30. //
  31. // Since we either want to read data or bail immediately, do the simplest
  32. // possible read using syscall directly.
  33. b := make([]byte, 128)
  34. n, err := syscall.Read(int(f.Fd()), b)
  35. if err != nil {
  36. return "", err
  37. }
  38. return string(bytes.TrimSpace(b[:n])), nil
  39. }