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

网格计算

开发平台:

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.ArrayList;
  21. import java.util.Calendar;
  22. import java.util.HashMap;
  23. import java.text.DateFormat;
  24. /**********************************************************
  25.  * Objects of this class hold the serialized representations
  26.  * of EventRecords. A SerializedRecord is essentially an EventRecord
  27.  * with all its property values converted to strings. It also provides 
  28.  * some convenience methods for printing the property fields in a 
  29.  * more readable way.
  30.  *
  31.  **********************************************************/
  32. public class SerializedRecord {
  33.   HashMap<String, String> fields;
  34.   private static DateFormat dateFormatter =
  35.     DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG);;
  36.   /**
  37.    * Create the SerializedRecord given an EventRecord.
  38.    */
  39.   
  40.   public SerializedRecord(EventRecord source) {
  41.     fields = new HashMap<String, String>();
  42.     fields.clear();
  43.     for (String k : source.getMap().keySet()) {
  44.       ArrayList<String> strs = getStrings(source.getMap().get(k));
  45.       if (strs.size() == 1)
  46.         fields.put(k, strs.get(0));
  47.       else
  48.         for (int i = 0; i < strs.size(); i++)
  49.           fields.put(k + "#" + i, strs.get(i));
  50.     }
  51.   }
  52.   /**
  53.    * Extract String representations from an Object.
  54.    * 
  55.    * @param o the input object
  56.    * 
  57.    * @return an ArrayList that contains Strings found in o
  58.    */
  59.   private ArrayList<String> getStrings(Object o) {
  60.     ArrayList<String> retval = new ArrayList<String>();
  61.     retval.clear();
  62.     if (o == null)
  63.       retval.add("null");
  64.     else if (o instanceof String)
  65.       retval.add((String) o);
  66.     else if (o instanceof Calendar)
  67.       retval.add(dateFormatter.format(((Calendar) o).getTime()));
  68.     else if (o instanceof InetAddress[])
  69.       for (InetAddress ip : ((InetAddress[]) o))
  70.         retval.add(ip.getHostAddress());
  71.     else if (o instanceof String[])
  72.       for (String s : (String []) o)
  73.         retval.add(s);
  74.     else
  75.       retval.add(o.toString());
  76.     return retval;
  77.   }
  78.   /**
  79.    * Set the value of a property of the EventRecord.
  80.    * 
  81.    * @param fieldName the name of the property to set
  82.    * @param fieldValue the value of the property to set
  83.    * 
  84.    */
  85.   public void set(String fieldName, String fieldValue) {
  86.     fields.put(fieldName, fieldValue);
  87.   }
  88.   /**
  89.    * Get the value of a property of the EventRecord.
  90.    * If the property with the specific key is not found,
  91.    * null is returned.
  92.    * 
  93.    * @param fieldName the name of the property to get.
  94.    */
  95.   public String get(String fieldName) {
  96.     return fields.get(fieldName);
  97.   }
  98.   /**
  99.    * Arrange the keys to provide a more readable printing order:
  100.    * first goes the timestamp, then the hostname and then the type, followed
  101.    * by all other keys found.
  102.    * 
  103.    * @param keys The input ArrayList of keys to re-arrange.
  104.    */
  105.   public static void arrangeKeys(ArrayList<String> keys) {
  106.     move(keys, "timestamp", 0);
  107.     move(keys, "hostname", 1);
  108.     move(keys, "type", 2);
  109.   }
  110.   private static void move(ArrayList<String> keys, String key, int position) {
  111.     int cur = keys.indexOf(key);
  112.     if (cur == -1)
  113.       return;
  114.     keys.set(cur, keys.get(position));
  115.     keys.set(position, key);
  116.   }
  117.   /**
  118.    * Check if the SerializedRecord is a valid one, i.e., whether
  119.    * it represents meaningful metric values.
  120.    * 
  121.    * @return true if the EventRecord is a valid one, false otherwise.
  122.    */
  123.   public boolean isValid() {
  124.     return !("invalid".equalsIgnoreCase(fields.get("hostname")));
  125.   }
  126.   
  127.   /**
  128.    * Creates and returns a string reperssentation of the object
  129.    * 
  130.    * @return a String representing the object
  131.    */
  132.   public String toString() {
  133.     String retval = "";
  134.     ArrayList<String> keys = new ArrayList<String>(fields.keySet());
  135.     arrangeKeys(keys);
  136.     for (int i = 0; i < keys.size(); i++) {
  137.       String value = fields.get(keys.get(i));
  138.       if (value == null)
  139.         retval += keys.get(i) + ":tnulln";
  140.       else
  141.         retval += keys.get(i) + ":t" + value + "n";
  142.     }
  143.     return retval;
  144.   }
  145. }