/* * Copyright 2011-2013 the original author or authors. * * 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 kr.debop4j.data.hibernate.usertype.compress; import kr.debop4j.core.tools.ArrayTool; import lombok.extern.slf4j.Slf4j; import org.hibernate.HibernateException; import org.hibernate.engine.spi.SessionImplementor; import org.hibernate.type.BinaryType; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * 데이터를 압축하여, Blob 컬럼에 저장합니다. * * @author 배성혁 ( sunghyouk.bae@gmail.com ) * @since 12. 9. 18 */ @Slf4j public abstract class AbstractCompressedBinaryUserType extends AbstractCompressedUserType { /** * Compress byte array. * * @param value the value * @return the byte [ ] */ protected final byte[] compress(final byte[] value) { if (ArrayTool.isEmpty(value)) return null; return getCompressor().compress(value); } /** * Decompress byte array. * * @param value the value * @return the byte [ ] */ protected final byte[] decompress(final byte[] value) { if (ArrayTool.isEmpty(value)) return ArrayTool.EMPTY_BYTE_ARRAY; return getCompressor().decompress(value); } @Override public Class returnedClass() { return byte[].class; } @Override public Object nullSafeGet(final ResultSet resultSet, final String[] strings, final SessionImplementor sessionImplementor, final Object o) throws HibernateException, SQLException { try { byte[] value = BinaryType.INSTANCE.nullSafeGet(resultSet, strings[0], sessionImplementor); return decompress(value); } catch (Exception ex) { log.error("column=" + strings[0] + " 정보를 읽어 압축 복원하는데 실패했습니다.", ex); throw new HibernateException("압축된 정보를 복원하는데 실패했습니다.", ex); } } @Override public void nullSafeSet(final PreparedStatement preparedStatement, final Object o, final int i, final SessionImplementor sessionImplementor) throws HibernateException, SQLException { try { byte[] value = ArrayTool.isEmpty((byte[]) o) ? null : compress((byte[]) o); BinaryType.INSTANCE.nullSafeSet(preparedStatement, value, i, sessionImplementor); } catch (Exception ex) { log.error("Statement=[{}], index=[{}]에 해당하는 값을 압축하는데 실패했습니다.", preparedStatement, i); throw new HibernateException("정보를 압축하는데 실패했습니다.", ex); } } @Override public boolean isMutable() { return BinaryType.INSTANCE.isMutable(); } private static final long serialVersionUID = -986318455760560003L; }