CPUParser.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. /**********************************************************
  22.  * Objects of this class parse the /proc/cpuinfo file to 
  23.  * gather information about present processors in the system.
  24.  *
  25.  **********************************************************/
  26. public class CPUParser extends ShellParser {
  27.  /**
  28.   * Constructs a CPUParser
  29.   */
  30.   public CPUParser() {
  31.     super();
  32.   }
  33.   /**
  34.    * Reads and parses /proc/cpuinfo and creates an appropriate 
  35.    * EventRecord that holds the desirable information.
  36.    * 
  37.    * @param s unused parameter
  38.    * 
  39.    * @return the EventRecord created
  40.    */
  41.   public EventRecord query(String s) throws Exception {
  42.     StringBuffer sb = Environment.runCommand("cat /proc/cpuinfo");
  43.     EventRecord retval = new EventRecord(InetAddress.getLocalHost()
  44.         .getCanonicalHostName(), InetAddress.getAllByName(InetAddress.getLocalHost()
  45.         .getHostName()), Calendar.getInstance(), "CPU", "Unknown", "CPU", "-");
  46.     retval.set("processors", findAll("\s*processor\s*:\s*(\d+)", sb
  47.         .toString(), 1, ", "));
  48.     retval.set("model name", findPattern("\s*model name\s*:\s*(.+)", sb
  49.         .toString(), 1));
  50.     retval.set("frequency", findAll("\s*cpu\s*MHz\s*:\s*(\d+)", sb
  51.         .toString(), 1, ", "));
  52.     retval.set("physical id", findAll("\s*physical\s*id\s*:\s*(\d+)", sb
  53.         .toString(), 1, ", "));
  54.     retval.set("core id", findAll("\s*core\s*id\s*:\s*(\d+)", sb
  55.         .toString(), 1, ", "));
  56.     return retval;
  57.   }
  58.   /**
  59.    * Invokes query() to do the parsing and handles parsing errors. 
  60.    * 
  61.    * @return an array of EventRecords that holds one element that represents
  62.    * the current state of /proc/cpuinfo
  63.    */
  64.   
  65.   public EventRecord[] monitor() {
  66.     EventRecord[] recs = new EventRecord[1];
  67.     try {
  68.       recs[0] = query(null);
  69.     } catch (Exception e) {
  70.       e.printStackTrace();
  71.     }
  72.     return recs;
  73.   }
  74.   
  75.   /**
  76.    * Return a String with information about this class
  77.    * 
  78.    * @return A String describing this class
  79.    */
  80.   public String getInfo() {
  81.     return ("CPU Info parser");
  82.   }
  83. }