add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / analyzers / common / src / java / org / apache / lucene / analysis / payloads / IdentityEncoder.java
1 package org.apache.lucene.analysis.payloads;
2 /**
3  * Licensed to the Apache Software Foundation (ASF) under one or more
4  * contributor license agreements.  See the NOTICE file distributed with
5  * this work for additional information regarding copyright ownership.
6  * The ASF licenses this file to You under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with
8  * 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
19 import org.apache.lucene.index.Payload;
20
21 import java.nio.ByteBuffer;
22 import java.nio.CharBuffer;
23 import java.nio.charset.Charset;
24
25
26 /**
27  *  Does nothing other than convert the char array to a byte array using the specified encoding.
28  *
29  **/
30 public class IdentityEncoder extends AbstractEncoder implements PayloadEncoder{
31
32   protected Charset charset = Charset.forName("UTF-8");
33   
34   /** @deprecated This field is no longer used. Use {@link #charset} instead. */
35   @Deprecated
36   protected String charsetName = charset.name();
37
38   public IdentityEncoder() {
39   }
40
41   public IdentityEncoder(Charset charset) {
42     this.charset = charset;
43     // @deprecated, remove this in 4.0:
44     charsetName = charset.name();
45   }
46
47
48   public Payload encode(char[] buffer, int offset, int length) {
49     final ByteBuffer bb = charset.encode(CharBuffer.wrap(buffer, offset, length));
50     if (bb.hasArray()) {
51       return new Payload(bb.array(), bb.arrayOffset() + bb.position(), bb.remaining());
52     } else {
53       // normally it should always have an array, but who knows?
54       final byte[] b = new byte[bb.remaining()];
55       bb.get(b);
56       return new Payload(b);
57     }
58   }
59 }