org.apache.kylin.rest.cache.memcached.KeyHookLookup Maven / Gradle / Ivy
The newest version!
/*
* 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.kylin.rest.cache.memcached;
import java.io.Serializable;
import java.util.Arrays;
/**
* A Class implement this interface indicates that the key information
* need to be calculated from a first lookup from cache itself to get
* a hook.
*/
public interface KeyHookLookup {
KeyHook lookupKeyHook(String key);
public static class KeyHook implements Serializable {
private static final long serialVersionUID = 2400159460862757991L;
private String[] chunkskey;
private byte[] values;
/**
* For de-serialization
*/
public KeyHook() {
}
public KeyHook(String[] chunkskey, byte[] values) {
super();
this.chunkskey = chunkskey;
this.values = values;
}
public String[] getChunkskey() {
return chunkskey;
}
public void setChunkskey(String[] chunkskey) {
this.chunkskey = chunkskey;
}
public byte[] getValues() {
return values;
}
public void setValues(byte[] values) {
this.values = values;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + Arrays.hashCode(chunkskey);
result = prime * result + Arrays.hashCode(values);
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
KeyHook other = (KeyHook) obj;
if (!Arrays.equals(chunkskey, other.chunkskey))
return false;
return Arrays.equals(values, other.values);
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
if (chunkskey != null) {
builder.append("chunkskey_length:" + chunkskey.length);
} else {
builder.append("chunkskey_is_null");
}
builder.append("|");
if (values != null) {
builder.append("value_length:" + values.length);
} else {
builder.append("value_is_null");
}
return builder.toString();
}
}
}