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

网格计算

开发平台:

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.compress.zlib;
  19. import org.apache.commons.logging.Log;
  20. import org.apache.commons.logging.LogFactory;
  21. import org.apache.hadoop.conf.Configuration;
  22. import org.apache.hadoop.io.compress.Compressor;
  23. import org.apache.hadoop.io.compress.Decompressor;
  24. import org.apache.hadoop.util.NativeCodeLoader;
  25. /**
  26.  * A collection of factories to create the right 
  27.  * zlib/gzip compressor/decompressor instances.
  28.  * 
  29.  */
  30. public class ZlibFactory {
  31.   private static final Log LOG =
  32.     LogFactory.getLog(ZlibFactory.class);
  33.   private static boolean nativeZlibLoaded = false;
  34.   
  35.   static {
  36.     if (NativeCodeLoader.isNativeCodeLoaded()) {
  37.       nativeZlibLoaded = ZlibCompressor.isNativeZlibLoaded() &&
  38.         ZlibDecompressor.isNativeZlibLoaded();
  39.       
  40.       if (nativeZlibLoaded) {
  41.         LOG.info("Successfully loaded & initialized native-zlib library");
  42.       } else {
  43.         LOG.warn("Failed to load/initialize native-zlib library");
  44.       }
  45.     }
  46.   }
  47.   
  48.   /**
  49.    * Check if native-zlib code is loaded & initialized correctly and 
  50.    * can be loaded for this job.
  51.    * 
  52.    * @param conf configuration
  53.    * @return <code>true</code> if native-zlib is loaded & initialized 
  54.    *         and can be loaded for this job, else <code>false</code>
  55.    */
  56.   public static boolean isNativeZlibLoaded(Configuration conf) {
  57.     return nativeZlibLoaded && conf.getBoolean("hadoop.native.lib", true); 
  58.   }
  59.   
  60.   /**
  61.    * Return the appropriate type of the zlib compressor. 
  62.    * 
  63.    * @param conf configuration
  64.    * @return the appropriate type of the zlib compressor.
  65.    */
  66.   public static Class<? extends Compressor> 
  67.   getZlibCompressorType(Configuration conf) {
  68.     return (isNativeZlibLoaded(conf)) ? 
  69.             ZlibCompressor.class : BuiltInZlibDeflater.class;
  70.   }
  71.   
  72.   /**
  73.    * Return the appropriate implementation of the zlib compressor. 
  74.    * 
  75.    * @param conf configuration
  76.    * @return the appropriate implementation of the zlib compressor.
  77.    */
  78.   public static Compressor getZlibCompressor(Configuration conf) {
  79.     return (isNativeZlibLoaded(conf)) ? 
  80.       new ZlibCompressor() : new BuiltInZlibDeflater(); 
  81.   }
  82.   /**
  83.    * Return the appropriate type of the zlib decompressor. 
  84.    * 
  85.    * @param conf configuration
  86.    * @return the appropriate type of the zlib decompressor.
  87.    */
  88.   public static Class<? extends Decompressor> 
  89.   getZlibDecompressorType(Configuration conf) {
  90.     return (isNativeZlibLoaded(conf)) ? 
  91.             ZlibDecompressor.class : BuiltInZlibInflater.class;
  92.   }
  93.   
  94.   /**
  95.    * Return the appropriate implementation of the zlib decompressor. 
  96.    * 
  97.    * @param conf configuration
  98.    * @return the appropriate implementation of the zlib decompressor.
  99.    */
  100.   public static Decompressor getZlibDecompressor(Configuration conf) {
  101.     return (isNativeZlibLoaded(conf)) ? 
  102.       new ZlibDecompressor() : new BuiltInZlibInflater(); 
  103.   }
  104.   
  105. }