001package org.intellimate.izou.sdk.frameworks.music.events; 002 003import org.intellimate.izou.identification.Identification; 004import org.intellimate.izou.sdk.events.CommonEvents; 005import org.intellimate.izou.sdk.events.Event; 006import org.intellimate.izou.sdk.frameworks.music.resources.MusicErrorResource; 007 008import java.util.Collections; 009import java.util.Optional; 010 011/** 012 * @author LeanderK 013 * @version 1.0 014 */ 015public class PlayerError extends Event { 016 public static final String ID = "izou.music.events.error"; 017 public static final String ERROR_ALREADY_PLAYING = "1. music-player is already playing"; 018 public static final String ERROR_NOT_ABLE = "2. music-player is not able to do: "; 019 public static final String ERROR_ILLEGAL = "2. music-player is receiving an illegal command: "; 020 021 /** 022 * Creates a new Event Object 023 * 024 * @param source the source of the Event, most likely a this reference. 025 * @throws IllegalArgumentException if one of the Arguments is null or empty 026 */ 027 protected PlayerError(Identification source) throws IllegalArgumentException { 028 super(CommonEvents.Type.RESPONSE_TYPE, source, Collections.singletonList(ID)); 029 } 030 031 /** 032 * creates a new MusicPlayerError 033 * @param source the source 034 * @param error the error (not null and not empty) 035 * @return the optional event 036 */ 037 public static Optional<PlayerError> createMusicPlayerError(Identification source, String error) { 038 if (error == null || error.isEmpty()) 039 return Optional.empty(); 040 try { 041 PlayerError playerError = new PlayerError(source); 042 playerError.addResource(new MusicErrorResource(source, error)); 043 return Optional.of(playerError); 044 } catch (IllegalArgumentException e) { 045 return Optional.empty(); 046 } 047 } 048}