SensorsParser.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.contrib.failmon;
  19. import java.net.InetAddress;
  20. import java.util.Calendar;
  21. import java.util.regex.Matcher;
  22. import java.util.regex.Pattern;
  23. /**********************************************************
  24.  * Objects of this class parse the output of the lm-sensors utility 
  25.  * to gather information about fan speed, temperatures for cpus
  26.  * and motherboard etc.
  27.  *
  28.  **********************************************************/
  29. public class SensorsParser extends ShellParser {
  30.   /**
  31.    * Reads and parses the output of the 'sensors' command 
  32.    * and creates an appropriate EventRecord that holds 
  33.    * the desirable information.
  34.    * 
  35.    * @param s unused parameter
  36.    * 
  37.    * @return the EventRecord created
  38.    */
  39.   public EventRecord query(String s) throws Exception {
  40.     StringBuffer sb;
  41.     //sb = Environment.runCommand("sensors -A");
  42.      sb = Environment.runCommand("cat sensors.out");
  43.     EventRecord retval = new EventRecord(InetAddress.getLocalHost()
  44.         .getCanonicalHostName(), InetAddress.getAllByName(InetAddress.getLocalHost()
  45.         .getHostName()), Calendar.getInstance(), "lm-sensors", "Unknown",
  46.         "sensors -A", "-");
  47.     readGroup(retval, sb, "fan");
  48.     readGroup(retval, sb, "in");
  49.     readGroup(retval, sb, "temp");
  50.     readGroup(retval, sb, "Core");
  51.     return retval;
  52.   }
  53.   /**
  54.    * Reads and parses lines that provide the output
  55.    * of a group of sensors with the same functionality.
  56.    * 
  57.    * @param er the EventRecord to which the new attributes are added
  58.    * @param sb the text to parse
  59.    * @param prefix a String prefix specifying the common prefix of the
  60.    * sensors' names in the group (e.g. "fan", "in", "temp"
  61.    * 
  62.    * @return the EventRecord created
  63.    */
  64.   private EventRecord readGroup(EventRecord er, StringBuffer sb, String prefix) {
  65.     Pattern pattern = Pattern.compile(".*(" + prefix
  66.         + "\s*\d*)\s*:\s*(\+?\d+)", Pattern.MULTILINE);
  67.     Matcher matcher = pattern.matcher(sb);
  68.     while (matcher.find())
  69.       er.set(matcher.group(1), matcher.group(2));
  70.     return er;
  71.   }
  72.   /**
  73.    * Invokes query() to do the parsing and handles parsing errors. 
  74.    * 
  75.    * @return an array of EventRecords that holds one element that represents
  76.    * the current state of the hardware sensors
  77.    */
  78.   public EventRecord[] monitor() {
  79.     EventRecord[] recs = new EventRecord[1];
  80.     try {
  81.       recs[0] = query(null);
  82.     } catch (Exception e) {
  83.       e.printStackTrace();
  84.     }
  85.     return recs;
  86.   }
  87.   
  88.   /**
  89.    * Return a String with information about this class
  90.    * 
  91.    * @return A String describing this class
  92.    */
  93.   public String getInfo() {
  94.     return ("lm-sensors parser");
  95.   }
  96. }