qunar.tc.qmq.backup.util.KeyValueListImpl Maven / Gradle / Ivy
/*
* Copyright 2018 Qunar, Inc.
*
* Licensed 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 qunar.tc.qmq.backup.util;
import org.hbase.async.KeyValue;
import org.jboss.netty.util.CharsetUtil;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public class KeyValueListImpl implements KeyValueList {
private byte[] key;
private Map data = new LinkedHashMap<>();
private List keyValues;
public KeyValueListImpl(List keyValues) {
if (keyValues != null && !keyValues.isEmpty()) {
this.keyValues = keyValues;
key = keyValues.get(0).key();
for (KeyValue keyValue : keyValues) {
data.put(new String(keyValue.qualifier(), CharsetUtil.UTF_8), keyValue);
}
}
}
@Override
public List getKeyValues() {
return keyValues;
}
public void setKeyValues(ArrayList keyValues) {
this.keyValues = keyValues;
}
@Override
public Map getData() {
return data;
}
@Override
public byte[] getKey() {
return key;
}
@Override
public String getStringValue(String qualifier) {
byte[] value = getValue(qualifier);
return (value == null) ? null : new String(value, CharsetUtil.UTF_8);
}
public KeyValue getKeyValue(String qualifier) {
return data.get(qualifier);
}
@Override
public byte[] getValue(String qualifier) {
KeyValue keyValue = getKeyValue(qualifier);
return (keyValue == null) ? null : keyValue.value();
}
@Override
public Long getTimestamp(String qualifier) {
KeyValue keyValue = getKeyValue(qualifier);
return keyValue == null ? null : keyValue.timestamp();
}
@Override
public int size() {
return data.size();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy