Package com.github.ghetolay.jwamp.message.output

Source Code of com.github.ghetolay.jwamp.message.output.ArgumentSerializer

/**
*Copyright [2012] [Ghetolay]
*
*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.github.ghetolay.jwamp.message.output;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.codehaus.jackson.JsonGenerationException;
import org.codehaus.jackson.map.JsonMappingException;
import org.codehaus.jackson.map.ObjectMapper;

import com.github.ghetolay.jwamp.message.WampArguments;

/**
* @author ghetolay
*
*/

//TODO MOCHE MOCHE MOCHE !!!
public class ArgumentSerializer{

  Object arg;
  Collection<?> argList;
 
  public ArgumentSerializer(Object arg){
    if(arg != null){
      if(arg instanceof Collection)
        argList = (Collection<?>)arg;
      //TODO not use this, keep raw data and send them or convert them is need (msgPack => JSON or JSON => msgPack)
      else if(arg instanceof WampArguments){
        WampArguments wampArg = (WampArguments)arg;
        List<Object> list = new ArrayList<Object>();
        while(wampArg.hasNext())
          list.add(wampArg.nextObject(Object.class));
       
        argList = list;
      }
      else
        this.arg = arg;
    }
  }
 
  public int size(){
    if(argList != null)
      return argList.size();

    return arg == null?0:1;
  }

  public void serialize(StringBuffer result, ObjectMapper objectMapper) throws JsonGenerationException, JsonMappingException, IOException {
    if(argList != null)
      for(Object obj : argList)
        writeObj(result, objectMapper, obj);
     
    else if(arg != null){
      if(arg.getClass().isArray()){
        Class<?> type = arg.getClass().getComponentType();
        if(type.equals(int.class))
          for(int obj : (int[])arg)
            writeObj(result, objectMapper, obj);
        else if(type.equals(short.class))
          for(short obj : (short[])arg)
            writeObj(result, objectMapper, obj);
        else if(type.equals(float.class))
          for(float obj : (float[])arg)
            writeObj(result, objectMapper, obj);
        else if(type.equals(long.class))
          for(long obj : (long[])arg)
            writeObj(result, objectMapper, obj);
        else if(type.equals(boolean.class))
          for(boolean obj : (boolean[])arg)
            writeObj(result, objectMapper, obj);
        else if(type.equals(byte.class))
          for(byte obj : (byte[])arg)
            writeObj(result, objectMapper, obj);
        else
          for(Object obj : (Object[])arg)
            writeObj(result, objectMapper, obj);
      }else
        writeObj(result, objectMapper, arg);
    }
  }

  private void writeObj(StringBuffer result, ObjectMapper objectMapper, Object obj) throws JsonGenerationException, JsonMappingException, IOException{
    result.append(',');
    result.append(objectMapper.writeValueAsString(obj));
  }
}
TOP

Related Classes of com.github.ghetolay.jwamp.message.output.ArgumentSerializer

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.