Package com.carmanconsulting.cassidy.pojo.assembly.disassembler

Source Code of com.carmanconsulting.cassidy.pojo.assembly.disassembler.SimpleDisassembler

/*
* Copyright (c) 2014 Carman Consulting, Inc.
*
* 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.carmanconsulting.cassidy.pojo.assembly.disassembler;

import com.carmanconsulting.cassidy.pojo.assembly.AssemblyStep;
import com.carmanconsulting.cassidy.pojo.assembly.Disassembler;
import com.carmanconsulting.cassidy.pojo.assembly.DisassemblerService;
import com.carmanconsulting.cassidy.pojo.assembly.step.PushNullStep;
import com.carmanconsulting.cassidy.pojo.assembly.step.PushStep;
import org.apache.commons.lang3.ClassUtils;

import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.UUID;

public class SimpleDisassembler implements Disassembler {
//----------------------------------------------------------------------------------------------------------------------
// Fields
//----------------------------------------------------------------------------------------------------------------------

    private static final List<Class> SUPPORTED_TYPES = Arrays.<Class>asList(String.class, Date.class, UUID.class, ByteBuffer.class, BigInteger.class, byte[].class);

//----------------------------------------------------------------------------------------------------------------------
// Disassembler Implementation
//----------------------------------------------------------------------------------------------------------------------

    @Override
    public boolean canDisassemble(Object object) {
        return object == null ||
                ClassUtils.isPrimitiveOrWrapper(object.getClass()) ||
                isSupportedType(object);
    }

    @Override
    public void disassemble(Object object, List<AssemblyStep> steps, DisassemblerService disassemblerService) {
        if (object == null) {
            steps.add(new PushNullStep());
        } else {
            steps.add(new PushStep(object));
        }
    }

//----------------------------------------------------------------------------------------------------------------------
// Other Methods
//----------------------------------------------------------------------------------------------------------------------

    private boolean isSupportedType(Object object) {
        for (Class supportedType : SUPPORTED_TYPES) {
            if (supportedType.isInstance(object)) {
                return true;
            }
        }
        return false;
    }
}
TOP

Related Classes of com.carmanconsulting.cassidy.pojo.assembly.disassembler.SimpleDisassembler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.