All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.jinahya.codec.IdDecoderProxy Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2012 Jin Kwon .
 *
 * 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.googlecode.jinahya.codec;


import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;


/**
 *
 * @author Jin Kwon 
 */
public class IdDecoderProxy implements InvocationHandler {


    /**
     * Class for {@code org.apache.commons.codec.Decoder}.
     */
    private static final Class DECODER;


    static {
        try {
            DECODER = Class.forName("org.apache.commons.codec.Decoder");
        } catch (ClassNotFoundException cnfe) {
            throw new InstantiationError(cnfe.getMessage());
        }
    }


    private static final Method DECODE;


    static {
        try {
            DECODE = DECODER.getMethod("decode", Object.class);
        } catch (NoSuchMethodException nsme) {
            throw new InstantiationError(nsme.getMessage());
        }
    }


    /**
     * Class for {@code org.apache.commons.codec.DecoderException}.
     */
    private static final Class DECODER_EXCEPTION;


    static {
        try {
            DECODER_EXCEPTION = Class.forName(
                "org.apache.commons.codec.DecoderException").
                asSubclass(Throwable.class);
        } catch (ClassNotFoundException cnfe) {
            throw new InstantiationError(cnfe.getMessage());
        }
    }


    private static Throwable newDecoderException()
        throws InstantiationException, IllegalAccessException {

        return DECODER_EXCEPTION.newInstance();
    }


    private static Throwable newDecoderException(final String message)
        throws NoSuchMethodException, InstantiationException,
               IllegalAccessException, InvocationTargetException {

        return DECODER_EXCEPTION.getConstructor(String.class).
            newInstance(message);
    }


    private static Throwable newDecoderException(final String message,
                                                 final Throwable cause)
        throws NoSuchMethodException, InstantiationException,
               IllegalAccessException, InvocationTargetException {

        return DECODER_EXCEPTION.
            getConstructor(String.class, Throwable.class).
            newInstance(message, cause);
    }


    private static Throwable newDecoderException(final Throwable cause)
        throws NoSuchMethodException, InstantiationException,
               IllegalAccessException, InvocationTargetException {

        return DECODER_EXCEPTION.getConstructor(Throwable.class).
            newInstance(cause);
    }


    /**
     * Returns a new proxy for {@code org.apache.commons.codec.Decoder}.
     *
     * @return a new proxy for {@code org.apache.commons.codec.Decoder}.
     */
    public static Object newInstance() {

        return newInstance(new IdDecoder());
    }


    /**
     * Creates a new proxy instance for {@code org.apache.commons.codec.Decoder}
     * with given {@code decoder}.
     *
     * @param decoder the decoder to use.
     *
     * @return a new proxy instance.
     */
    public static Object newInstance(final IdDecoder decoder) {

        if (decoder == null) {
            throw new IllegalArgumentException("null idDecoder");
        }

        return Proxy.newProxyInstance(DECODER.getClassLoader(),
                                      new Class[]{DECODER},
                                      new IdDecoderProxy(decoder));
    }


    /**
     * Creates a new instance.
     *
     * @param decoder the decoder to use.
     */
    protected IdDecoderProxy(final IdDecoder decoder) {
        super();

        if (decoder == null) {
            throw new NullPointerException("null decoder");
        }

        this.decoder = decoder;
    }


    @Override
    public Object invoke(final Object proxy, final Method method,
                         final Object[] args)
        throws Throwable {

        if (DECODE.equals(method)) {
            try {
                return decoder.decode(String.class.cast(args[0]));
            } catch (ClassCastException cce) {
                throw newDecoderException(cce);
            }
        }

        throw new UnsupportedOperationException("unsupported: " + method);
    }


    private final IdDecoder decoder;


}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy