Android Open Source - sdl_tester_android Sdl Utils






From Project

Back to project page sdl_tester_android.

License

The source code is released under:

Copyright (c) 2014, Ford Motor Company All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are m...

If you think the Android project sdl_tester_android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.livio.sdl.utils;
// w  w  w .  ja  v  a  2 s.  c  o  m
import java.util.Vector;

import org.json.JSONException;
import org.json.JSONObject;

import android.graphics.Bitmap;
import android.graphics.Bitmap.CompressFormat;

import com.livio.sdl.SdlConstants;
import com.livio.sdl.enums.SdlSystemAction;
import com.smartdevicelink.proxy.RPCMessage;
import com.smartdevicelink.proxy.TTSChunkFactory;
import com.smartdevicelink.proxy.rpc.Choice;
import com.smartdevicelink.proxy.rpc.Image;
import com.smartdevicelink.proxy.rpc.MenuParams;
import com.smartdevicelink.proxy.rpc.SoftButton;
import com.smartdevicelink.proxy.rpc.StartTime;
import com.smartdevicelink.proxy.rpc.TTSChunk;
import com.smartdevicelink.proxy.rpc.enums.FileType;
import com.smartdevicelink.proxy.rpc.enums.ImageType;
import com.smartdevicelink.proxy.rpc.enums.SoftButtonType;
import com.smartdevicelink.proxy.rpc.enums.SpeechCapabilities;

/**
 * Contains static methods that are useful in working with SmartDeviceLink.
 *
 * @author Mike Burke
 *
 */
public final class SdlUtils {
  private static final int NUMBER_OF_INDENTS = 4;
  
  private SdlUtils(){}

  /**
   * Creates and returns the raw JSON string associated with the
   * input RPC message object.
   * 
   * @param msg The message to retrieve raw JSON for
   * @return The raw JSON string
   */
  public static String getJsonString(RPCMessage msg){
    return getJsonString(msg, NUMBER_OF_INDENTS);
  }
  
  /**
   * Creates and returns the raw JSON string associated with the input
   * RPC message object.  Allows a custom number of indent spaces.
   * 
   * @param msg The message to retrieve raw JSON for
   * @param numOfIndents Number of indents to be used in raw JSON
   * @return The raw JSON string
   */
  public static String getJsonString(RPCMessage msg, int numOfIndents){
    String result = "";
    try {
      JSONObject json = msg.serializeJSON();
//      JSONObject json = msg.getJsonMapping(1); // TODO: set actual JSON version.
      result = json.toString(numOfIndents);
    } catch (JSONException e) {
      e.printStackTrace();
    }
    
    return result;
  }
  
  /**
   * Creates a JSON title that can be used in JSON dialogs.  Input correlation ID
   * is allowed to be null or -1 if there is no correlation ID associated with the
   * particular message.
   * 
   * @param correlationId The associated correlation ID for the message
   * @return The JSON title with associated correlation ID.
   */
  public static String makeJsonTitle(Integer correlationId){
    if(correlationId == null || correlationId == -1){
      return "Raw JSON";
    }
    
    return new StringBuilder().append("Raw JSON (").append(correlationId).append(")").toString();
  }
  
  /**
   * Converts an SDL file type to its associated CompressFormat.
   * 
   * @param type The file type to convert
   * @return The associated CompressFormat
   */
  public static CompressFormat convertImageTypeToCompressFormat(FileType type){
    switch(type){
    case GRAPHIC_JPEG:
      return CompressFormat.JPEG;
    case GRAPHIC_PNG:
      return CompressFormat.PNG;
    case GRAPHIC_BMP:
      return null; // TODO what's the compression format for a bitmap object?
    default:
      return null;
    }
  }
  
  /**
   * Converts the input bitmap to a byte array based on the input File Type.
   * 
   * @param image The image to convert
   * @param type The file type of the image
   * @return The byte array of the input bitmap
   */
  public static byte[] bitmapToByteArray(Bitmap image, FileType type){
    CompressFormat format = convertImageTypeToCompressFormat(type);
    byte[] bitmapData = AndroidUtils.bitmapToRawBytes(image, format);
    return bitmapData;
  }

  /**
   * Creates a Choice object to be used in Choice Interaction Sets.
   * 
   * @param name The name of the choice
   * @param vrCommands CSV list of voice-rec options
   * @param imageName Image name of any associated image
   * @return The created Choice object
   */
  public static Choice createChoice(String name, String vrCommands, String imageName){
    if(name == null){
      throw new NullPointerException();
    }
    
    Choice choice = new Choice();
    choice.setMenuName(name);
    
    if(vrCommands != null){
      choice.setVrCommands(voiceRecognitionVector(vrCommands));
    }
    
    if(imageName != null){
      choice.setImage(dynamicImage(imageName));
    }
    
    return choice;
  }
  
  public static SoftButton createSoftButton(String name, String imageName, boolean isHighlighted, SdlSystemAction action){
      if(name != null && name.trim().length() == 0) name = null;
      if(imageName != null && imageName.trim().length() == 0) imageName = null;
      
      if(name == null && imageName == null){
          throw new IllegalArgumentException("Soft Button must have a name or an image associated with it");
      }
      
      SoftButton result = new SoftButton();
      
      if(name != null && imageName != null){
          result.setType(SoftButtonType.SBT_BOTH);
          result.setText(name);
          result.setImage(dynamicImage(imageName));
      }
      else if (name != null && imageName == null){
          result.setType(SoftButtonType.SBT_TEXT);
          result.setText(name);
      }
      else{
          result.setType(SoftButtonType.SBT_IMAGE);
          result.setImage(dynamicImage(imageName));
      }
      
      result.setIsHighlighted(isHighlighted);
      result.setSystemAction(SdlSystemAction.translateToLegacy(action));
      
      return result;
  }
  
  /**
   * Creates a vector of voice-rec commands based on a CSV input string.
   * 
   * @param input CSV list of voice-rec options
   * @return A vector of voice-rec strings
   */
  public static Vector<String> voiceRecognitionVector(String input){
    if(input.trim().equals("")){
      return null;
    }
    
    return StringUtils.toVector(input);
  }
  
  /**
   * Creates a dynamic image object with the input image name.
   * 
   * @param imageName The name of the image this object represents
   * @return The created Image object
   */
  public static Image dynamicImage(String imageName){
    if(imageName == null){
      throw new NullPointerException();
    }
    
    Image result = new Image();
    result.setImageType(ImageType.DYNAMIC);
    result.setValue(imageName);
    return result;
  }
  
  /**
   * Creates a MenuParams object that can be used in other SDL requests, such as AddCommand.
   * If there is no parent id, send -1 as the parent id.
   * 
   * @param name The name of the menu item
   * @param position The position of the menu item
   * @param parentId The item's parent id
   * @return The created MenuParams object
   */
  public static MenuParams menuParams(String name, int position, int parentId){
    if(name == null){
      throw new NullPointerException();
    }
    if(name.length() <= 0){
      throw new IllegalArgumentException();
    }
    
    MenuParams result = new MenuParams();
    result.setMenuName(name);
    result.setPosition(position);
    
    if(parentId != SdlConstants.AddCommandConstants.INVALID_PARENT_ID &&
       parentId != SdlConstants.AddCommandConstants.ROOT_PARENT_ID){
      result.setParentID(parentId);
    }
    
    return result;
  }
  
  /**
   * Creates a vector of text-to-speech "chunks" that will be used to speak the input
   * message through the vehicle's speaker system.  This method assumes the input format
   * is a normal text string (as opposed to some type of phonemes).
   * 
   * @param input The text to create "chunks" from
   * @return The created vector of TTSChunk objects
   */
  public static Vector<TTSChunk> createTextToSpeechVector(String input){
    return createTextToSpeechVector(input, SpeechCapabilities.TEXT);
  }
  
  /**
   * Creates a vector of text-to-speech "chunks" that will be used to speak the input
   * message through the vehicle's speaker system.  This method requires an input parameter
   * detailing the format of the input string.
   * 
   * @param input The text to create "chunks" from
   * @param speechCapabilities The format of the input string
   * @return The created vector of TTSChunk objects
   */
  public static Vector<TTSChunk> createTextToSpeechVector(String input, SpeechCapabilities speechCapabilities){
    Vector<String> inputStrings = StringUtils.toVector(input);
    Vector<TTSChunk> result = new Vector<TTSChunk>(inputStrings.size());
    
    for(String str : inputStrings){
      result.add(TTSChunkFactory.createChunk(speechCapabilities, str));
    }
    
    return result;
  }
  
  /**
   * Creates a StartTime object from the input time in hours, minutes & seconds.
   * 
   * @param hours Hours value for StartTime object
   * @param minutes Minutes value for StartTime object
   * @param seconds Seconds value for the StartTime object
   * @return The created StartTime object
   */
  public static StartTime createStartTime(int hours, int minutes, int seconds){
    if(hours < SdlConstants.SetMediaClockTimerConstants.HOURS_MINIMUM || hours > SdlConstants.SetMediaClockTimerConstants.HOURS_MAXIMUM ||
       minutes < SdlConstants.SetMediaClockTimerConstants.MINUTES_MINIMUM || minutes > SdlConstants.SetMediaClockTimerConstants.MINUTES_MAXIMUM ||
       seconds < SdlConstants.SetMediaClockTimerConstants.SECONDS_MINIMUM || seconds > SdlConstants.SetMediaClockTimerConstants.SECONDS_MAXIMUM ){
      throw new IllegalArgumentException();
    }
    
    StartTime result = new StartTime();
    result.setHours(hours);
    result.setMinutes(minutes);
    result.setSeconds(seconds);
    return result;
  }

}




Java Source Code List

com.livio.sdl.IdGenerator.java
com.livio.sdl.IpAddress.java
com.livio.sdl.SdlConstants.java
com.livio.sdl.SdlImageItem.java
com.livio.sdl.SdlLogMessage.java
com.livio.sdl.SdlRequestFactory.java
com.livio.sdl.SdlResponseFactory.java
com.livio.sdl.SdlResponseTracker.java
com.livio.sdl.SdlService.java
com.livio.sdl.adapters.SdlImageAdapter.java
com.livio.sdl.adapters.SdlMessageAdapter.java
com.livio.sdl.dialogs.BaseAlertDialog.java
com.livio.sdl.dialogs.BaseImageListDialog.java
com.livio.sdl.dialogs.BaseMultipleListViewDialog.java
com.livio.sdl.dialogs.BaseOkCancelDialog.java
com.livio.sdl.dialogs.BaseSingleListViewDialog.java
com.livio.sdl.dialogs.ImageListDialog.java
com.livio.sdl.dialogs.IndeterminateProgressDialog.java
com.livio.sdl.dialogs.JsonFlipperDialog.java
com.livio.sdl.dialogs.ListViewDialog.java
com.livio.sdl.dialogs.MultipleListViewDialog.java
com.livio.sdl.dialogs.SingleJsonDialog.java
com.livio.sdl.dialogs.TextViewAlertDialog.java
com.livio.sdl.dialogs.TextViewOkCancelDialog.java
com.livio.sdl.enums.EnumClickListener.java
com.livio.sdl.enums.EnumComparator.java
com.livio.sdl.enums.SdlButton.java
com.livio.sdl.enums.SdlCommand.java
com.livio.sdl.enums.SdlImageType.java
com.livio.sdl.enums.SdlInteractionMode.java
com.livio.sdl.enums.SdlLanguage.java
com.livio.sdl.enums.SdlSpeechCapability.java
com.livio.sdl.enums.SdlSystemAction.java
com.livio.sdl.enums.SdlTextAlignment.java
com.livio.sdl.enums.SdlTransportType.java
com.livio.sdl.enums.SdlUpdateMode.java
com.livio.sdl.enums.SdlVehicleData.java
com.livio.sdl.menu.CommandButton.java
com.livio.sdl.menu.MenuItem.java
com.livio.sdl.menu.MenuManager.java
com.livio.sdl.menu.SubmenuButton.java
com.livio.sdl.utils.AndroidUtils.java
com.livio.sdl.utils.ApplicationPreferences.java
com.livio.sdl.utils.Counter.java
com.livio.sdl.utils.DownCounter.java
com.livio.sdl.utils.MathUtils.java
com.livio.sdl.utils.SdlUtils.java
com.livio.sdl.utils.StringUtils.java
com.livio.sdl.utils.Timeout.java
com.livio.sdl.utils.UpCounter.java
com.livio.sdl.utils.WifiUtils.java
com.livio.sdl.viewhelpers.MinMaxInputFilter.java
com.livio.sdl.viewhelpers.SeekBarCalculator.java
com.livio.sdltester.HelpActivity.java
com.livio.sdltester.LivioSdlTesterPreferences.java
com.livio.sdltester.MainActivity.java
com.livio.sdltester.SdlTesterImageResource.java
com.livio.sdltester.dialogs.AddCommandDialog.java
com.livio.sdltester.dialogs.AddSubMenuDialog.java
com.livio.sdltester.dialogs.ButtonSubscriptionDialog.java
com.livio.sdltester.dialogs.ButtonUnsubscriptionDialog.java
com.livio.sdltester.dialogs.ChangeRegistrationDialog.java
com.livio.sdltester.dialogs.ChoiceItemDialog.java
com.livio.sdltester.dialogs.CreateInteractionChoiceSetDialog.java
com.livio.sdltester.dialogs.DeleteCommandDialog.java
com.livio.sdltester.dialogs.DeleteFileDialog.java
com.livio.sdltester.dialogs.DeleteInteractionDialog.java
com.livio.sdltester.dialogs.DeleteSubmenuDialog.java
com.livio.sdltester.dialogs.GetDtcsDialog.java
com.livio.sdltester.dialogs.PerformInteractionDialog.java
com.livio.sdltester.dialogs.PutFileDialog.java
com.livio.sdltester.dialogs.ReadDidsDialog.java
com.livio.sdltester.dialogs.ScrollableMessageDialog.java
com.livio.sdltester.dialogs.SdlAlertDialog.java
com.livio.sdltester.dialogs.SdlConnectionDialog.java
com.livio.sdltester.dialogs.SetAppIconDialog.java
com.livio.sdltester.dialogs.SetMediaClockTimerDialog.java
com.livio.sdltester.dialogs.ShowDialog.java
com.livio.sdltester.dialogs.SliderDialog.java
com.livio.sdltester.dialogs.SoftButtonItemDialog.java
com.livio.sdltester.dialogs.SoftButtonListDialog.java
com.livio.sdltester.dialogs.SpeakDialog.java