blob: 4bbf52a1ff9fd9eb58eb2d7e15f1f76ef2f7a212 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.accumulo.core.client.lexicoder;
import static org.apache.accumulo.core.client.lexicoder.impl.ByteUtils.concat;
import static org.apache.accumulo.core.client.lexicoder.impl.ByteUtils.escape;
import static org.apache.accumulo.core.client.lexicoder.impl.ByteUtils.split;
import static org.apache.accumulo.core.client.lexicoder.impl.ByteUtils.unescape;
import java.util.ArrayList;
import java.util.List;
import org.apache.accumulo.core.client.lexicoder.impl.AbstractLexicoder;
/**
* A lexicoder to encode/decode a Java List to/from a byte array where the concatenation of each
* encoded element sorts lexicographically.
*
* @since 1.6.0
*/
public class ListLexicoder<LT> extends AbstractLexicoder<List<LT>> {
private Lexicoder<LT> lexicoder;
public ListLexicoder(Lexicoder<LT> lexicoder) {
this.lexicoder = lexicoder;
}
/**
* {@inheritDoc}
*
* @return a byte array containing the concatenation of each element in the list encoded.
*/
@Override
public byte[] encode(List<LT> v) {
byte[][] encElements = new byte[v.size()][];
int index = 0;
for (LT element : v) {
encElements[index++] = escape(lexicoder.encode(element));
}
return concat(encElements);
}
@Override
public List<LT> decode(byte[] b) {
// This concrete implementation is provided for binary compatibility with 1.6; it can be removed
// in 2.0. See ACCUMULO-3789.
return super.decode(b);
}
@Override
protected List<LT> decodeUnchecked(byte[] b, int offset, int len) {
byte[][] escapedElements = split(b, offset, len);
ArrayList<LT> ret = new ArrayList<>(escapedElements.length);
for (byte[] escapedElement : escapedElements) {
ret.add(lexicoder.decode(unescape(escapedElement)));
}
return ret;
}
}