View Javadoc

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.hbase.ipc;
19  
20  import java.io.ByteArrayInputStream;
21  import java.io.DataInput;
22  import java.io.IOException;
23  import java.io.InputStream;
24  import java.io.OutputStream;
25  import java.nio.BufferOverflowException;
26  import java.nio.ByteBuffer;
27  
28  import org.apache.commons.io.IOUtils;
29  import org.apache.commons.logging.Log;
30  import org.apache.commons.logging.LogFactory;
31  import org.apache.hadoop.hbase.classification.InterfaceAudience;
32  import org.apache.hadoop.conf.Configurable;
33  import org.apache.hadoop.conf.Configuration;
34  import org.apache.hadoop.hbase.CellScanner;
35  import org.apache.hadoop.hbase.DoNotRetryIOException;
36  import org.apache.hadoop.hbase.HBaseIOException;
37  import org.apache.hadoop.hbase.codec.Codec;
38  import org.apache.hadoop.hbase.io.BoundedByteBufferPool;
39  import org.apache.hadoop.hbase.io.ByteBufferOutputStream;
40  import org.apache.hadoop.hbase.io.HeapSize;
41  import org.apache.hadoop.hbase.util.Bytes;
42  import org.apache.hadoop.hbase.util.ClassSize;
43  import org.apache.hadoop.io.compress.CodecPool;
44  import org.apache.hadoop.io.compress.CompressionCodec;
45  import org.apache.hadoop.io.compress.CompressionInputStream;
46  import org.apache.hadoop.io.compress.Compressor;
47  import org.apache.hadoop.io.compress.Decompressor;
48  
49  import com.google.common.base.Preconditions;
50  import com.google.protobuf.CodedOutputStream;
51  import com.google.protobuf.Message;
52  
53  /**
54   * Utility to help ipc'ing.
55   */
56  @InterfaceAudience.Private
57  public class IPCUtil {
58    public static final Log LOG = LogFactory.getLog(IPCUtil.class);
59    /**
60     * How much we think the decompressor will expand the original compressed content.
61     */
62    private final int cellBlockDecompressionMultiplier;
63    private final int cellBlockBuildingInitialBufferSize;
64    private final Configuration conf;
65  
66    public IPCUtil(final Configuration conf) {
67      super();
68      this.conf = conf;
69      this.cellBlockDecompressionMultiplier =
70          conf.getInt("hbase.ipc.cellblock.decompression.buffersize.multiplier", 3);
71  
72      // Guess that 16k is a good size for rpc buffer.  Could go bigger.  See the TODO below in
73      // #buildCellBlock.
74      this.cellBlockBuildingInitialBufferSize =
75        ClassSize.align(conf.getInt("hbase.ipc.cellblock.building.initial.buffersize", 16 * 1024));
76    }
77  
78    /**
79     * Thrown if a cellscanner but no codec to encode it with.
80     */
81    public static class CellScannerButNoCodecException extends HBaseIOException {};
82  
83    /**
84     * Puts CellScanner Cells into a cell block using passed in <code>codec</code> and/or
85     * <code>compressor</code>.
86     * @param codec
87     * @param compressor
88     * @param cellScanner
89     * @return Null or byte buffer filled with a cellblock filled with passed-in Cells encoded using
90     * passed in <code>codec</code> and/or <code>compressor</code>; the returned buffer has been
91     * flipped and is ready for reading.  Use limit to find total size.
92     * @throws IOException
93     */
94    @SuppressWarnings("resource")
95    public ByteBuffer buildCellBlock(final Codec codec, final CompressionCodec compressor,
96      final CellScanner cellScanner)
97    throws IOException {
98      return buildCellBlock(codec, compressor, cellScanner, null);
99    }
100 
101   /**
102    * Puts CellScanner Cells into a cell block using passed in <code>codec</code> and/or
103    * <code>compressor</code>.
104    * @param codec
105    * @param compressor
106    * @param cellScanner
107    * @param pool Pool of ByteBuffers to make use of. Can be null and then we'll allocate
108    * our own ByteBuffer.
109    * @return Null or byte buffer filled with a cellblock filled with passed-in Cells encoded using
110    * passed in <code>codec</code> and/or <code>compressor</code>; the returned buffer has been
111    * flipped and is ready for reading.  Use limit to find total size. If <code>pool</code> was not
112    * null, then this returned ByteBuffer came from there and should be returned to the pool when
113    * done.
114    * @throws IOException
115    */
116   @SuppressWarnings("resource")
117   public ByteBuffer buildCellBlock(final Codec codec, final CompressionCodec compressor,
118     final CellScanner cellScanner, final BoundedByteBufferPool pool)
119   throws IOException {
120     if (cellScanner == null) return null;
121     if (codec == null) throw new CellScannerButNoCodecException();
122     int bufferSize = this.cellBlockBuildingInitialBufferSize;
123     ByteBufferOutputStream baos = null;
124     if (pool != null) {
125       ByteBuffer bb = pool.getBuffer();
126       bufferSize = bb.capacity();
127       baos = new ByteBufferOutputStream(bb);
128     } else {
129       // Then we need to make our own to return.
130       if (cellScanner instanceof HeapSize) {
131         long longSize = ((HeapSize)cellScanner).heapSize();
132         // Just make sure we don't have a size bigger than an int.
133         if (longSize > Integer.MAX_VALUE) {
134           throw new IOException("Size " + longSize + " > " + Integer.MAX_VALUE);
135         }
136         bufferSize = ClassSize.align((int)longSize);
137       }
138       baos = new ByteBufferOutputStream(bufferSize);
139     }
140     OutputStream os = baos;
141     Compressor poolCompressor = null;
142     try {
143       if (compressor != null) {
144         if (compressor instanceof Configurable) ((Configurable)compressor).setConf(this.conf);
145         poolCompressor = CodecPool.getCompressor(compressor);
146         os = compressor.createOutputStream(os, poolCompressor);
147       }
148       Codec.Encoder encoder = codec.getEncoder(os);
149       int count = 0;
150       while (cellScanner.advance()) {
151         encoder.write(cellScanner.current());
152         count++;
153       }
154       encoder.flush();
155       // If no cells, don't mess around.  Just return null (could be a bunch of existence checking
156       // gets or something -- stuff that does not return a cell).
157       if (count == 0) return null;
158     } catch (BufferOverflowException e) {
159       throw new DoNotRetryIOException(e);
160     } finally {
161       os.close();
162       if (poolCompressor != null) CodecPool.returnCompressor(poolCompressor);
163     }
164     if (LOG.isTraceEnabled()) {
165       if (bufferSize < baos.size()) {
166         LOG.trace("Buffer grew from initial bufferSize=" + bufferSize + " to " + baos.size() +
167           "; up hbase.ipc.cellblock.building.initial.buffersize?");
168       }
169     }
170     return baos.getByteBuffer();
171   }
172 
173   /**
174    * @param codec
175    * @param cellBlock
176    * @return CellScanner to work against the content of <code>cellBlock</code>
177    * @throws IOException
178    */
179   public CellScanner createCellScanner(final Codec codec, final CompressionCodec compressor,
180       final byte [] cellBlock)
181   throws IOException {
182     return createCellScanner(codec, compressor, cellBlock, 0, cellBlock.length);
183   }
184 
185   /**
186    * @param codec
187    * @param cellBlock
188    * @param offset
189    * @param length
190    * @return CellScanner to work against the content of <code>cellBlock</code>
191    * @throws IOException
192    */
193   public CellScanner createCellScanner(final Codec codec, final CompressionCodec compressor,
194       final byte [] cellBlock, final int offset, final int length)
195   throws IOException {
196     // If compressed, decompress it first before passing it on else we will leak compression
197     // resources if the stream is not closed properly after we let it out.
198     InputStream is = null;
199     if (compressor != null) {
200       // GZIPCodec fails w/ NPE if no configuration.
201       if (compressor instanceof Configurable) ((Configurable)compressor).setConf(this.conf);
202       Decompressor poolDecompressor = CodecPool.getDecompressor(compressor);
203       CompressionInputStream cis =
204         compressor.createInputStream(new ByteArrayInputStream(cellBlock, offset, length),
205         poolDecompressor);
206       ByteBufferOutputStream bbos = null;
207       try {
208         // TODO: This is ugly.  The buffer will be resized on us if we guess wrong.
209         // TODO: Reuse buffers.
210         bbos = new ByteBufferOutputStream((length - offset) *
211           this.cellBlockDecompressionMultiplier);
212         IOUtils.copy(cis, bbos);
213         bbos.close();
214         ByteBuffer bb = bbos.getByteBuffer();
215         is = new ByteArrayInputStream(bb.array(), 0, bb.limit());
216       } finally {
217         if (is != null) is.close();
218         if (bbos != null) bbos.close();
219 
220         CodecPool.returnDecompressor(poolDecompressor);
221       }
222     } else {
223       is = new ByteArrayInputStream(cellBlock, offset, length);
224     }
225     return codec.getDecoder(is);
226   }
227 
228   /**
229    * @param m Message to serialize delimited; i.e. w/ a vint of its size preceeding its
230    * serialization.
231    * @return The passed in Message serialized with delimiter.  Return null if <code>m</code> is null
232    * @throws IOException
233    */
234   public static ByteBuffer getDelimitedMessageAsByteBuffer(final Message m) throws IOException {
235     if (m == null) return null;
236     int serializedSize = m.getSerializedSize();
237     int vintSize = CodedOutputStream.computeRawVarint32Size(serializedSize);
238     byte [] buffer = new byte[serializedSize + vintSize];
239     // Passing in a byte array saves COS creating a buffer which it does when using streams.
240     CodedOutputStream cos = CodedOutputStream.newInstance(buffer);
241     // This will write out the vint preamble and the message serialized.
242     cos.writeMessageNoTag(m);
243     cos.flush();
244     cos.checkNoSpaceLeft();
245     return ByteBuffer.wrap(buffer);
246   }
247 
248   /**
249    * Write out header, param, and cell block if there is one.
250    * @param dos
251    * @param header
252    * @param param
253    * @param cellBlock
254    * @return Total number of bytes written.
255    * @throws IOException
256    */
257   public static int write(final OutputStream dos, final Message header, final Message param,
258       final ByteBuffer cellBlock)
259   throws IOException {
260     // Must calculate total size and write that first so other side can read it all in in one
261     // swoop.  This is dictated by how the server is currently written.  Server needs to change
262     // if we are to be able to write without the length prefixing.
263     int totalSize = IPCUtil.getTotalSizeWhenWrittenDelimited(header, param);
264     if (cellBlock != null) totalSize += cellBlock.remaining();
265     return write(dos, header, param, cellBlock, totalSize);
266   }
267 
268   private static int write(final OutputStream dos, final Message header, final Message param,
269     final ByteBuffer cellBlock, final int totalSize)
270   throws IOException {
271     // I confirmed toBytes does same as DataOutputStream#writeInt.
272     dos.write(Bytes.toBytes(totalSize));
273     // This allocates a buffer that is the size of the message internally.
274     header.writeDelimitedTo(dos);
275     if (param != null) param.writeDelimitedTo(dos);
276     if (cellBlock != null) dos.write(cellBlock.array(), 0, cellBlock.remaining());
277     dos.flush();
278     return totalSize;
279   }
280 
281   /**
282    * Read in chunks of 8K (HBASE-7239)
283    * @param in
284    * @param dest
285    * @param offset
286    * @param len
287    * @throws IOException
288    */
289   public static void readChunked(final DataInput in, byte[] dest, int offset, int len)
290       throws IOException {
291     int maxRead = 8192;
292 
293     for (; offset < len; offset += maxRead) {
294       in.readFully(dest, offset, Math.min(len - offset, maxRead));
295     }
296   }
297 
298   /**
299    * @return Size on the wire when the two messages are written with writeDelimitedTo
300    */
301   public static int getTotalSizeWhenWrittenDelimited(Message ... messages) {
302     int totalSize = 0;
303     for (Message m: messages) {
304       if (m == null) continue;
305       totalSize += m.getSerializedSize();
306       totalSize += CodedOutputStream.computeRawVarint32Size(m.getSerializedSize());
307     }
308     Preconditions.checkArgument(totalSize < Integer.MAX_VALUE);
309     return totalSize;
310   }
311 }