SerializationFactory.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.io.serializer;
  19. import java.util.ArrayList;
  20. import java.util.List;
  21. import org.apache.commons.logging.Log;
  22. import org.apache.commons.logging.LogFactory;
  23. import org.apache.hadoop.conf.Configuration;
  24. import org.apache.hadoop.conf.Configured;
  25. import org.apache.hadoop.util.ReflectionUtils;
  26. import org.apache.hadoop.util.StringUtils;
  27. /**
  28.  * <p>
  29.  * A factory for {@link Serialization}s.
  30.  * </p>
  31.  */
  32. public class SerializationFactory extends Configured {
  33.   
  34.   private static final Log LOG =
  35.     LogFactory.getLog(SerializationFactory.class.getName());
  36.   private List<Serialization<?>> serializations = new ArrayList<Serialization<?>>();
  37.   
  38.   /**
  39.    * <p>
  40.    * Serializations are found by reading the <code>io.serializations</code>
  41.    * property from <code>conf</code>, which is a comma-delimited list of
  42.    * classnames. 
  43.    * </p>
  44.    */
  45.   public SerializationFactory(Configuration conf) {
  46.     super(conf);
  47.     for (String serializerName : conf.getStrings("io.serializations", 
  48.       new String[]{"org.apache.hadoop.io.serializer.WritableSerialization"})) {
  49.       add(conf, serializerName);
  50.     }
  51.   }
  52.   
  53.   @SuppressWarnings("unchecked")
  54.   private void add(Configuration conf, String serializationName) {
  55.     try {
  56.       
  57.       Class<? extends Serialization> serializionClass =
  58.         (Class<? extends Serialization>) conf.getClassByName(serializationName);
  59.       serializations.add((Serialization)
  60.           ReflectionUtils.newInstance(serializionClass, getConf()));
  61.     } catch (ClassNotFoundException e) {
  62.       LOG.warn("Serilization class not found: " +
  63.           StringUtils.stringifyException(e));
  64.     }
  65.   }
  66.   public <T> Serializer<T> getSerializer(Class<T> c) {
  67.     return getSerialization(c).getSerializer(c);
  68.   }
  69.   public <T> Deserializer<T> getDeserializer(Class<T> c) {
  70.     return getSerialization(c).getDeserializer(c);
  71.   }
  72.   @SuppressWarnings("unchecked")
  73.   public <T> Serialization<T> getSerialization(Class<T> c) {
  74.     for (Serialization serialization : serializations) {
  75.       if (serialization.accept(c)) {
  76.         return (Serialization<T>) serialization;
  77.       }
  78.     }
  79.     return null;
  80.   }
  81. }