/** * Copyright 2016 Nikita Koksharov * * 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 org.redisson.liveobject.resolver; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import java.io.IOException; import org.redisson.client.codec.Codec; import org.redisson.client.handler.State; import org.redisson.codec.JsonJacksonCodec; /** * * @author Rui Gu (https://github.com/jackygurui) */ public class DefaultNamingScheme extends AbstractNamingScheme implements NamingScheme { public static final DefaultNamingScheme INSTANCE = new DefaultNamingScheme(new JsonJacksonCodec()); private static final char[] hexArray = "0123456789ABCDEF".toCharArray(); public DefaultNamingScheme(Codec codec) { super(codec); } @Override public String getName(Class<?> entityClass, Class<?> idFieldClass, String idFieldName, Object idValue) { try { String encode = bytesToHex(codec.getMapKeyEncoder().encode(idValue)); return "redisson_live_object:{"+ encode + "}:" + entityClass.getName() + ":" + idFieldName + ":" + idFieldClass.getName(); } catch (IOException ex) { throw new IllegalArgumentException("Unable to encode \"" + idFieldName + "\" [" + idValue + "] into byte[]", ex); } } @Override public String getFieldReferenceName(Class<?> entityClass, Object idValue, Class<?> fieldClass, String fieldName, Object fieldValue) { try { String encode = bytesToHex(codec.getMapKeyEncoder().encode(idValue)); return "redisson_live_object_field:{" + encode + "}:" + entityClass.getName() + ":" + fieldName + ":" + fieldClass.getName(); } catch (IOException ex) { throw new IllegalArgumentException("Unable to encode \"" + fieldName + "\" [" + fieldValue + "] into byte[]", ex); } } @Override public String resolveClassName(String name) { return name.substring(name.lastIndexOf("}:") + 2, name.indexOf(":")); } @Override public String resolveIdFieldName(String name) { String s = name.substring(0, name.lastIndexOf(":")); return s.substring(s.lastIndexOf(":") + 1); } @Override public Object resolveId(String name) { String decode = name.substring(name.indexOf("{") + 1, name.indexOf("}")); ByteBuf b = Unpooled.wrappedBuffer(hexToBytes(decode)); try { return codec.getMapKeyDecoder().decode(b, new State(false)); } catch (IOException ex) { throw new IllegalStateException("Unable to decode [" + decode + "] into object", ex); } finally { b.release(); } } private static String bytesToHex(byte[] bytes) { char[] hexChars = new char[bytes.length * 2]; for (int j = 0; j < bytes.length; j++) { int v = bytes[j] & 0xFF; hexChars[j * 2] = hexArray[v >>> 4]; hexChars[j * 2 + 1] = hexArray[v & 0x0F]; } return new String(hexChars); } private static byte[] hexToBytes(String s) { int len = s.length(); byte[] data = new byte[len / 2]; for (int i = 0; i < len; i += 2) { data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) + Character.digit(s.charAt(i + 1), 16)); } return data; } }