Android Open Source - PlayerHater Server Player Hater






From Project

Back to project page PlayerHater.

License

The source code is released under:

Apache License

If you think the Android project PlayerHater 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

/*******************************************************************************
 * Copyright 2013 Chris Rhoden, Rebecca Nesson, Public Radio Exchange
 * /* w ww  .  j a va  2 s  .  c o m*/
 * 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.prx.playerhater.ipc;

import org.prx.playerhater.PlayerHater;
import org.prx.playerhater.Song;
import org.prx.playerhater.songs.SongHost;
import org.prx.playerhater.songs.Songs;
import org.prx.playerhater.util.Log;

import android.app.PendingIntent;
import android.os.Bundle;
import android.os.RemoteException;
import android.util.SparseArray;

public class ServerPlayerHater extends PlayerHater {

  private static final String SERVER_ERROR = "Server has gone away...";

  private final IPlayerHaterServer mServer;

  public ServerPlayerHater(IPlayerHaterServer server) {
    mServer = server;
  }

  @Override
  public boolean pause() {
    try {
      return mServer.pause();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean stop() {
    try {
      return mServer.stop();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean play() {
    try {
      return mServer.resume();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean play(int startTime) {
    try {
      return mServer.playAtTime(startTime);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean play(Song song) {
    try {
      return mServer.play(SongHost.getTag(song), Songs.toBundle(song), 0);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean play(Song song, int startTime) {
    try {
      return mServer.play(SongHost.getTag(song), Songs.toBundle(song), startTime);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean seekTo(int startTime) {
    try {
      return mServer.seekTo(startTime);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public int enqueue(Song song) {
    try {
      return mServer.enqueue(SongHost.getTag(song), Songs.toBundle(song));
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public void enqueue(int position, Song song) {
    try {
      mServer.enqueueAtPosition(position, SongHost.getTag(song), Songs.toBundle(song));
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean skipTo(int position) {
    try {
      return mServer.skipTo(position);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public void skip() {
    try {
      mServer.skip();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public void skipBack() {
    try {
      mServer.skipBack();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public void emptyQueue() {
    try {
      mServer.emptyQueue();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public int getCurrentPosition() {
    try {
      return mServer.getCurrentPosition();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public int getDuration() {
    try {
      return mServer.getDuration();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public Song nowPlaying() {
    try {
      return SongHost.getSong(mServer.nowPlaying());
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean isPlaying() {
    try {
      return mServer.isPlaying();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean isLoading() {
    try {
      return mServer.isLoading();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public int getState() {
    try {
      return mServer.getState();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public void setTransportControlFlags(int transportControlFlags) {
    try {
      mServer.setTransportControlFlags(transportControlFlags);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public int getQueueLength() {
    try {
      return mServer.getQueueLength();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public int getQueuePosition() {
    try {
      return mServer.getQueuePosition();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public boolean removeFromQueue(int position) {
    try {
      return mServer.removeFromQueue(position);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public void setPendingIntent(PendingIntent intent) {
    try {
      mServer.setPendingIntent(intent);
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  public void slurp(SparseArray<Bundle> songs) {
    try {
      int tag = 0;
      for (int i = 0; i < songs.size(); i++) {
        tag = songs.keyAt(i);
        mServer.slurp(tag, songs.get(tag));
      }
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }

  @Override
  public int getTransportControlFlags() {
    try {
      return mServer.getTransportControlFlags();
    } catch (RemoteException e) {
      Log.e(SERVER_ERROR, e);
      throw new IllegalStateException(SERVER_ERROR, e);
    }
  }
}




Java Source Code List

.AbstractPlugin.java
.AudioFocusPlugin.java
.BackgroundedPlugin.java
.BoundPlayerHater.java
.BroadcastReceiver.java
.ClientPlugin.java
.Config.java
.ExpandableNotificationPlugin.java
.HeadphoneButtonGestureHelper.java
.IPlayerHater.java
.LockScreenControlsPlugin.java
.Log.java
.MediaPlayerPool.java
.NotificationPlugin.java
.OnAudioFocusChangedListener.java
.PebblePlugin.java
.PlaybackService.java
.PlayerHaterClient.java
.PlayerHaterListenerPlugin.java
.PlayerHaterListener.java
.PlayerHaterPlugin.java
.PlayerHaterServer.java
.PlayerHaterService.java
.PlayerHater.java
.PlayerStateWatcher.java
.Player.java
.PlaylistParser.java
.PlaylistSupportingPlayer.java
.PluginCollection.java
.Receiver.java
.RemoteControlButtonReceiver.java
.RemoteSong.java
.ServerPlayerHater.java
.ServicePlayerHater.java
.SongHost.java
.SongQueue.java
.Song.java
.Songs.java
.StatelyPlayer.java
.SynchronousPlayer.java
.ThreadsafePlayerHater.java
.ThreadsafeServicePlayerHater.java
.TouchableNotificationPlugin.java
org.prx.playerhater.BroadcastReceiver.java
org.prx.playerhater.PlaybackService.java
org.prx.playerhater.PlayerHaterListener.java
org.prx.playerhater.PlayerHaterPlugin.java
org.prx.playerhater.PlayerHater.java
org.prx.playerhater.Song.java
org.prx.playerhater.broadcast.HeadphoneButtonGestureHelper.java
org.prx.playerhater.broadcast.OnAudioFocusChangedListener.java
org.prx.playerhater.broadcast.Receiver.java
org.prx.playerhater.broadcast.RemoteControlButtonReceiver.java
org.prx.playerhater.ipc.ClientPlugin.java
org.prx.playerhater.ipc.PlayerHaterClient.java
org.prx.playerhater.ipc.PlayerHaterServer.java
org.prx.playerhater.ipc.ServerPlayerHater.java
org.prx.playerhater.mediaplayer.MediaPlayerPool.java
org.prx.playerhater.mediaplayer.Player.java
org.prx.playerhater.mediaplayer.PlaylistSupportingPlayer.java
org.prx.playerhater.mediaplayer.StatelyPlayer.java
org.prx.playerhater.mediaplayer.SynchronousPlayer.java
org.prx.playerhater.plugins.AbstractPlugin.java
org.prx.playerhater.plugins.AudioFocusPlugin.java
org.prx.playerhater.plugins.BackgroundedPlugin.java
org.prx.playerhater.plugins.ExpandableNotificationPlugin.java
org.prx.playerhater.plugins.LockScreenControlsPlugin.java
org.prx.playerhater.plugins.NotificationPlugin.java
org.prx.playerhater.plugins.PebblePlugin.java
org.prx.playerhater.plugins.PlayerHaterListenerPlugin.java
org.prx.playerhater.plugins.PluginCollection.java
org.prx.playerhater.plugins.ScrubbableLockScreenControlsPlugin.java
org.prx.playerhater.plugins.TouchableNotificationPlugin.java
org.prx.playerhater.service.PlayerHaterService.java
org.prx.playerhater.service.PlayerStateWatcher.java
org.prx.playerhater.songs.RemoteSong.java
org.prx.playerhater.songs.SongHost.java
org.prx.playerhater.songs.SongQueue.java
org.prx.playerhater.songs.Songs.java
org.prx.playerhater.util.Config.java
org.prx.playerhater.util.IPlayerHater.java
org.prx.playerhater.util.Log.java
org.prx.playerhater.util.PlaylistParser.java
org.prx.playerhater.wrappers.BoundPlayerHater.java
org.prx.playerhater.wrappers.ServicePlayerHater.java
org.prx.playerhater.wrappers.ThreadsafePlayerHater.java
org.prx.playerhater.wrappers.ThreadsafeServicePlayerHater.java