View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  
28  package org.apache.hc.core5.http2.hpack;
29  
30  import java.nio.ByteBuffer;
31  
32  import org.apache.hc.core5.util.ByteArrayBuffer;
33  
34  /**
35   * This Huffman codec implementation has been derived from Twitter HPack project
36   * (https://github.com/twitter/hpack)
37   */
38  final class HuffmanEncoder {
39  
40      private final int[] codes;
41      private final byte[] lengths;
42  
43      HuffmanEncoder(final int[] codes, final byte[] lengths) {
44          this.codes = codes;
45          this.lengths = lengths;
46      }
47  
48      void encode(final ByteArrayBuffer out, final ByteBuffer src) {
49  
50          long current = 0;
51          int n = 0;
52  
53          while (src.hasRemaining()) {
54              final int b = src.get() & 0xFF;
55              final int code = codes[b];
56              final int nbits = lengths[b];
57  
58              current <<= nbits;
59              current |= code;
60              n += nbits;
61  
62              while (n >= 8) {
63                  n -= 8;
64                  out.append((int)(current >> n));
65              }
66          }
67  
68          if (n > 0) {
69              current <<= (8 - n);
70              current |= (0xFF >>> n); // this should be EOS symbol
71              out.append((int) current);
72          }
73      }
74  
75      void encode(final ByteArrayBuffer out, final CharSequence src, final int off, final int len) {
76  
77          long current = 0;
78          int n = 0;
79  
80          for (int i = 0; i < len; i++) {
81              final int b = src.charAt(off + i) & 0xFF;
82              final int code = codes[b];
83              final int nbits = lengths[b];
84  
85              current <<= nbits;
86              current |= code;
87              n += nbits;
88  
89              while (n >= 8) {
90                  n -= 8;
91                  out.append((int)(current >> n));
92              }
93          }
94  
95          if (n > 0) {
96              current <<= (8 - n);
97              current |= (0xFF >>> n); // this should be EOS symbol
98              out.append((int) current);
99          }
100     }
101 
102 }