modbot/lib/readers/cpu_temperature.go

54 lines
1.6 KiB
Go
Raw Permalink Normal View History

// modbot is a system information agregator
// Copyright (C) 2024 frosty <inthishouseofcards@gmail.com>
//
// This program is free software: you can redistribute it and/or modify
2024-08-25 02:27:55 -04:00
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2024-08-25 02:27:55 -04:00
// GNU General Public License for more details.
//
2024-08-25 02:27:55 -04:00
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package readers
import (
"bufio"
"fmt"
"os"
"strconv"
)
type CpuTemperatureInfo float32
func ReadCpuTemperature(hwmonName, tempName string) func() (interface{}, error) {
return func() (interface{}, error) {
tempPath := fmt.Sprintf("/sys/class/hwmon/%s/%s_input", hwmonName, tempName)
file, err := os.Open(tempPath)
if err != nil {
return 0, fmt.Errorf("failed to open %s: %w", tempPath, err)
}
defer file.Close()
scanner := bufio.NewScanner(file)
if !scanner.Scan() {
return 0, fmt.Errorf("failed to read from %s: %w", tempPath, scanner.Err())
}
line := scanner.Text()
cpuTemperatureMdeg, err := strconv.ParseUint(line, 10, 32)
if err != nil {
return 0, fmt.Errorf("failed to parse cpu temperature from %s: %w", tempPath, err)
}
cpuTemperature := float32(cpuTemperatureMdeg) / 1000
return CpuTemperatureInfo(cpuTemperature), nil
}
}