com.smartdevicelink.managers.screen.menu.VoiceCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdl_java_se Show documentation
Show all versions of sdl_java_se Show documentation
The app library component of SDL is meant to run on the end userâs smart-device from within SDL enabled apps, as an embedded app, or connected to the cloud. App libraries allow the apps to connect to SDL enabled head-units and hardware through bluetooth, USB, and TCP for Android, and cloud and embedded apps can connect through web sockets, Java Beans, and other custom transports. Once the library establishes a connection between the smart device and head-unit through the preferred method of transport, the two components are able to communicate using the SDL defined protocol. The app integrating this library project is then able to expose its functionality to the head-unit through text, media, and other interactive elements.
/*
* Copyright (c) 2019 Livio, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following
* disclaimer in the documentation and/or other materials provided with the
* distribution.
*
* Neither the name of the Livio Inc. nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.smartdevicelink.managers.screen.menu;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.smartdevicelink.util.DebugTool;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
public class VoiceCommand implements Cloneable {
/**
* The strings the user can say to activate this voice command
*/
private List voiceCommands;
/**
* The listener that will be called when the command is activated
*/
private VoiceCommandSelectionListener voiceCommandSelectionListener;
/**
* Used Internally to identify the command
*/
private int commandId;
// CONSTRUCTOR(S)
/**
* Constructor that sets all parameters for this class
* NOTE: While it is possible to pass in null for the listener, It is the easiest way to know when it was triggered.
*
* @param voiceCommands The strings the user can say to activate this voice command
* @param voiceCommandSelectionListener The listener that will be called when the command is activated
*/
public VoiceCommand(@NonNull List voiceCommands, @Nullable VoiceCommandSelectionListener voiceCommandSelectionListener) {
setVoiceCommands(voiceCommands);
setVoiceCommandSelectionListener(voiceCommandSelectionListener);
}
// SETTERS / GETTERS
/**
* The strings the user can say to activate this voice command
*
* @param voiceCommands - the list of commands to send to the head unit
*/
public void setVoiceCommands(@NonNull List voiceCommands) {
this.voiceCommands = new ArrayList<>(removeDuplicateStrings(voiceCommands));
}
/**
* The strings the user can say to activate this voice command
*
* @return the List of voice commands
*/
public List getVoiceCommands() {
return voiceCommands;
}
/**
* The listener that will be called when the command is activated
*
* @param voiceCommandSelectionListener - the listener for this object
*/
public void setVoiceCommandSelectionListener(VoiceCommandSelectionListener voiceCommandSelectionListener) {
this.voiceCommandSelectionListener = voiceCommandSelectionListener;
}
/**
* The listener that will be called when the command is activated
*
* @return voiceCommandSelectionListener - the listener for this object
*/
public VoiceCommandSelectionListener getVoiceCommandSelectionListener() {
return voiceCommandSelectionListener;
}
/**
* set the command' ID
* NOTE: PLEASE DO NOT SET. This is used internally
*
* @param commandId the id to identify the command
*/
void setCommandId(int commandId) {
this.commandId = commandId;
}
/**
* the id used to identify the command
*
* @return the id
*/
int getCommandId() {
return commandId;
}
private HashSet removeDuplicateStrings(List voiceCommands) {
return new HashSet<>(voiceCommands);
}
/**
* Used to compile hashcode for VoiceCommand for use to compare in equals method
*
* @return Custom hashcode of VoiceCommand variables
*/
@Override
public int hashCode() {
int result = 1;
for (int i = 0; i < this.getVoiceCommands().size(); i++) {
result += ((getVoiceCommands().get(i) == null) ? 0 : Integer.rotateLeft(getVoiceCommands().get(i).hashCode(), i + 1));
}
return result;
}
/**
* Uses our custom hashCode for VoiceCommand objects
*
* @param o - The object to compare
* @return boolean of whether the objects are the same or not
*/
@Override
public boolean equals(Object o) {
if (o == null) return false;
// if this is the same memory address, it's the same
if (this == o) return true;
// if this is not an instance of VoiceCommand, not the same
if (!(o instanceof VoiceCommand)) return false;
// return comparison
return hashCode() == o.hashCode();
}
/**
* Creates a deep copy of the object
*
* @return deep copy of the object, null if an exception occurred
*/
@Override
public VoiceCommand clone() {
try {
VoiceCommand clone = (VoiceCommand) super.clone();
return clone;
} catch (CloneNotSupportedException e) {
if (DebugTool.isDebugEnabled()) {
throw new RuntimeException("Clone not supported by super class");
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy