增加运维程序配置的实现
parent
fd6e18ff26
commit
59535cbbff
@ -0,0 +1,143 @@
|
||||
package com.xypower.common;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileFilter;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileReader;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
public class ThermalInfoUtil {
|
||||
|
||||
public static List<String> getThermalInfo() {
|
||||
|
||||
/*
|
||||
if (readFile("/sys/devices/virtual/thermal/thermal_zone0/temp", data) && !data.empty())
|
||||
{
|
||||
data.push_back(0);
|
||||
int temp = atoi((const char*)(&data[0]));
|
||||
return std::to_string(temp / 1000);
|
||||
}
|
||||
*/
|
||||
|
||||
List<String> result = new ArrayList<>();
|
||||
BufferedReader br = null;
|
||||
|
||||
try {
|
||||
File dir = new File("/sys/devices/virtual/thermal/");
|
||||
|
||||
File[] files = dir.listFiles(new FileFilter() {
|
||||
@Override
|
||||
public boolean accept(File file) {
|
||||
if (Pattern.matches("thermal_zone[0-9]+", file.getName())) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
final int SIZE = files.length;
|
||||
String line = null;
|
||||
String type = null;
|
||||
String temp = null;
|
||||
for (int i = 0; i < SIZE; i++) {
|
||||
br = new BufferedReader(new FileReader("/sys/class/thermal/thermal_zone" + i + "/type"));
|
||||
line = br.readLine();
|
||||
if (line != null) {
|
||||
type = line;
|
||||
}
|
||||
|
||||
br = new BufferedReader(new FileReader("/sys/class/thermal/thermal_zone" + i + "/temp"));
|
||||
line = br.readLine();
|
||||
if (line != null) {
|
||||
long temperature = Long.parseLong(line);
|
||||
if (temperature < 0) {
|
||||
temp = "Unknow";
|
||||
} else {
|
||||
temp = (float) (temperature / 1000.0) + "°C";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
result.add(type + " : " + temp);
|
||||
}
|
||||
|
||||
br.close();
|
||||
} catch (FileNotFoundException e) {
|
||||
result.add(e.toString());
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
} finally {
|
||||
if (br != null) {
|
||||
try {
|
||||
br.close();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
public static String getCPUTermperature() {
|
||||
|
||||
/*
|
||||
if (readFile("/sys/devices/virtual/thermal/thermal_zone0/temp", data) && !data.empty())
|
||||
{
|
||||
data.push_back(0);
|
||||
int temp = atoi((const char*)(&data[0]));
|
||||
return std::to_string(temp / 1000);
|
||||
}
|
||||
*/
|
||||
|
||||
File file = new File("/sys/class/thermal/thermal_zone0/temp");
|
||||
|
||||
if (!file.exists()) {
|
||||
return "";
|
||||
}
|
||||
|
||||
FileReader fr = null;
|
||||
BufferedReader br = null;
|
||||
String temp = "";
|
||||
String line;
|
||||
|
||||
try {
|
||||
fr = new FileReader(file);
|
||||
br = new BufferedReader(fr);
|
||||
line = br.readLine();
|
||||
if (line != null) {
|
||||
long temperature = Long.parseLong(line);
|
||||
if (temperature < 0) {
|
||||
temp = "";
|
||||
} else {
|
||||
temp = Float.toString((float) (temperature / 1000.0));
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
} finally {
|
||||
if (fr != null) {
|
||||
try {
|
||||
fr.close();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
if (br != null) {
|
||||
try {
|
||||
br.close();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return temp;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue