com.profesorfalken.jsensors.standalone.ConsoleOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jSensors Show documentation
Show all versions of jSensors Show documentation
Get all system sensors information from Java
The newest version!
/*
* Copyright 2016-2018 Javier Garcia Alonso.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.profesorfalken.jsensors.standalone;
import java.util.List;
import java.util.Map;
import com.profesorfalken.jsensors.JSensors;
import com.profesorfalken.jsensors.model.components.Component;
import com.profesorfalken.jsensors.model.components.Components;
import com.profesorfalken.jsensors.model.components.Cpu;
import com.profesorfalken.jsensors.model.components.Disk;
import com.profesorfalken.jsensors.model.components.Gpu;
import com.profesorfalken.jsensors.model.sensors.Fan;
import com.profesorfalken.jsensors.model.sensors.Load;
import com.profesorfalken.jsensors.model.sensors.Temperature;
/**
* Provides an output by console
*
* @author Javier Garcia Alonso
*
*/
public class ConsoleOutput {
public static void showOutput(Map config) {
System.out.println("Scanning sensors data...");
Components components = JSensors.get.config(config).components();
List cpus = components.cpus;
if (cpus != null) {
for (final Cpu cpu : cpus) {
System.out.println("Found CPU component: " + cpu.name);
readComponent(cpu);
}
}
List gpus = components.gpus;
if (gpus != null) {
for (final Gpu gpu : gpus) {
System.out.println("Found GPU component: " + gpu.name);
readComponent(gpu);
}
}
List disks = components.disks;
if (disks != null) {
for (final Disk disk : disks) {
System.out.println("Found disk component: " + disk.name);
readComponent(disk);
}
}
}
// Read component values in standalone mode
private static void readComponent(Component component) {
if (component.sensors != null) {
System.out.println("Sensors: ");
List temps = component.sensors.temperatures;
for (final Temperature temp : temps) {
System.out.println(temp.name + ": " + temp.value + " C");
}
List fans = component.sensors.fans;
for (final Fan fan : fans) {
System.out.println(fan.name + ": " + fan.value + " RPM");
}
List loads = component.sensors.loads;
for (final Load load : loads) {
System.out.println(load.name + ": " + load.value);
}
}
}
}