Sensor.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package camsucks;
  7. /**
  8. *
  9. * This class is a model for a collection of sensors
  10. * It contains a datamembers for some specific sensors as well as members for lists of sensors of a specific type.
  11. * each member has a getter but no setter.
  12. * Instead of the setter the members (except for the lists) have a poll function which polls the value of the member using the jWMI class
  13. *
  14. * @author Roel
  15. */
  16. public class Sensor {
  17. private String[] temperatureSensorList;
  18. private String[] loadSensorList;
  19. private int cpuCoreNumber;
  20. private double cpuLoad;
  21. private double cpuPackageTemp;
  22. private double cpuMax;
  23. private double gpuTemp;
  24. private double gpuMax;
  25. /**
  26. * The constructor for this class
  27. * At the start the lists of sensors are made with the help of the jWMI class
  28. * Then the number of cores of the system is calculated
  29. *
  30. * @throws Exception when the WMI value can't be obtained
  31. */
  32. public Sensor() throws Exception {
  33. temperatureSensorList = jWMI.getWMISensorList("Temperature").split(", ");
  34. loadSensorList = jWMI.getWMISensorList("Load").split(", ");
  35. //Init for cpuCoreNumber
  36. cpuCoreNumber = 0;
  37. for (String temperatureSensorList1 : loadSensorList) {
  38. if (temperatureSensorList1.contains("CPU Core #")) {
  39. int tempNumber;
  40. // gets the int value of the number after #
  41. tempNumber = Integer.parseInt(temperatureSensorList1.substring(10, 11).trim());
  42. if (tempNumber > cpuCoreNumber) {
  43. cpuCoreNumber = tempNumber;
  44. }
  45. }
  46. }
  47. }
  48. /**
  49. * This method polls the value of the CPU Load sensor
  50. * @throws Exception
  51. */
  52. public void pollCPULoad() throws Exception {
  53. cpuLoad = Double.parseDouble(jWMI.getWMIValue("Load", "CPU Total"));
  54. }
  55. /**
  56. * This method polls the value of the CPU Load sensor
  57. * @throws Exception
  58. */
  59. public void pollCPUMax() throws Exception {
  60. cpuMax = Double.parseDouble(jWMI.getWMIValue("Temperature", "CPU Core", "Max"));
  61. }
  62. /**
  63. * This method polls the value of the CPU Load sensor
  64. * @throws Exception
  65. */
  66. public void pollGPUMax() throws Exception {
  67. gpuMax = Double.parseDouble(jWMI.getWMIValue("Temperature", "GPU Core", "Max"));
  68. }
  69. /**
  70. * This method polls the value of the GPU Temperature sensor
  71. * @throws Exception
  72. */
  73. public void pollGPUTemp() throws Exception {
  74. gpuTemp = Double.parseDouble(jWMI.getWMIValue("Temperature", "GPU Core"));
  75. }
  76. /**
  77. * This method polls the value of the CPU Temperature sensor
  78. * @throws Exception
  79. */
  80. public void pollCPUTemp() throws Exception {
  81. cpuPackageTemp = Double.parseDouble(jWMI.getWMIValue("Temperature", "CPU Core"));
  82. }
  83. /**
  84. * @return the temperatureSensorList
  85. */
  86. public String[] getTemperatureSensorList() {
  87. return temperatureSensorList;
  88. }
  89. /**
  90. * @return the loadSensorList
  91. */
  92. public String[] getLoadSensorList() {
  93. return loadSensorList;
  94. }
  95. /**
  96. * @return the cpuCoreNumber
  97. */
  98. public int getCpuCoreNumber() {
  99. return cpuCoreNumber;
  100. }
  101. /**
  102. * @return the cpuLoad
  103. */
  104. public double getCpuLoad() {
  105. return cpuLoad;
  106. }
  107. /**
  108. * @return the cpuPackageTemp
  109. */
  110. public double getCPUTemp() {
  111. return cpuPackageTemp;
  112. }
  113. /**
  114. * @return the gpuTemp
  115. */
  116. public double getGPUTemp() {
  117. return gpuTemp;
  118. }
  119. /**
  120. * @return the cpuMax
  121. */
  122. public double getCpuMax() {
  123. return cpuMax;
  124. }
  125. /**
  126. * @return the cpuMax
  127. */
  128. public double getGpuMax() {
  129. return gpuMax;
  130. }
  131. }