Package org.msgpack.template.builder

Source Code of org.msgpack.template.builder.CustomTemplateBuilder

//
// MessagePack for Java
//
// Copyright (C) 2009-2011 FURUHASHI Sadayuki
//
//    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.msgpack.template.builder;

import java.lang.reflect.Type;

import org.msgpack.Template;
import org.msgpack.template.FieldList;
import org.msgpack.template.FieldOption;
import org.msgpack.template.IFieldEntry;
import org.msgpack.template.IFieldEntryReader;
import org.msgpack.template.TemplateBuildException;

public abstract class CustomTemplateBuilder implements TemplateBuilder {

  public abstract IFieldEntryReader getFieldEntryReader();

  public abstract Template buildTemplate(Class<?> targetClass , IFieldEntry[] entries);

  public Template buildTemplate(Class<?> targetClass, FieldOption implicitOption ){
    checkValidation(targetClass);
    return buildTemplate(targetClass,
        getFieldEntryReader().readFieldEntries(targetClass, implicitOption));
  }

  public Template buildTemplate(Class<?> targetClass, FieldList flist) throws NoSuchFieldException {
    checkValidation(targetClass);
    return buildTemplate(targetClass, getFieldEntryReader().convertFieldEntries(targetClass, flist));
  }

  @Override
  public Template buildTemplate(Type targetType) {
    Class<?> targetClass = (Class<?>)targetType;
    IFieldEntryReader reader = getFieldEntryReader();
    FieldOption implicitOption = reader.readImplicitFieldOption(targetClass);
    checkValidation(targetClass);
    IFieldEntry[] entries = reader.readFieldEntries(targetClass, implicitOption);
    return buildTemplate(targetClass, entries);
  }

  protected void checkValidation(Class<?> targetClass) {
    if(targetClass.isInterface()) {
      throw new TemplateBuildException("Cannot build template of interface");
    }
    if(targetClass.isArray()) {
      throw new TemplateBuildException("Cannot build template of array class");
    }
    if(targetClass.isPrimitive()) {
      throw new TemplateBuildException("Cannot build template of primitive type");
    }
  }

  @Override
  public void writeTemplate(Type targetType, String directoryName) {
    throw new UnsupportedOperationException(targetType.toString());
  }

  @Override
  public Template loadTemplate(Type targetType) {
    return null;
  }
}
TOP

Related Classes of org.msgpack.template.builder.CustomTemplateBuilder

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.