/* * Copyright 2006 Amazon Technologies, Inc. or its affiliates. * Amazon, Amazon.com and Carbonado are trademarks or registered trademarks * of Amazon Technologies, Inc. or its affiliates. All rights reserved. * * 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 com.amazon.carbonado.adapter; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.io.IOException; import java.io.OutputStreamWriter; import java.io.Writer; import java.nio.charset.CharacterCodingException; import java.nio.charset.Charset; import java.nio.charset.CharsetEncoder; import com.amazon.carbonado.FetchException; import com.amazon.carbonado.PersistException; import com.amazon.carbonado.lob.Blob; import com.amazon.carbonado.lob.ByteArrayBlob; import com.amazon.carbonado.lob.Clob; import com.amazon.carbonado.lob.StringClob; import com.amazon.carbonado.adapter.AdapterDefinition; /** * Converts database Blobs and Clobs to Strings. This is suitable for text * values which are expected to fit entirely in memory. The storage layer will * attempt to store the text as a regular string, but will use a blob type if * required to. * *
Example:
* public interface UserInfo extends Storable { * @TextAdapter(charset="UTF-8") * String getWelcomeMessage(); * * ... * } ** * @author Brian S O'Neill * @see Clob * @see Blob */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @AdapterDefinition(storageTypePreferences={ String.class, Clob.class, Blob.class }) public @interface TextAdapter { /** * Optionally specify a character set, which is used if the storage type is * a Blob. */ String charset() default "UTF-8"; /** * Optionally specify alternate character sets, which are used if text * cannot be decoded with primary charset. */ String[] altCharsets() default {}; /** * Adapter implementation for {@link TextAdapter}. */ public static class Adapter { private static byte[] EMPTY_BYTE_ARRAY = new byte[0]; static PersistException toPersistException(IOException e) { Throwable cause = e.getCause(); if (cause instanceof PersistException) { return (PersistException) cause; } if (cause == null) { cause = e; } return new PersistException(cause); } private static final Charset[] prepareAltCharsets(TextAdapter ann) { if (ann == null) { return null; } String[] strs = ann.altCharsets(); if (strs == null || strs.length == 0) { return null; } Charset[] altCharsets = new Charset[strs.length]; for (int i=0; i