2013-04-02 03:16:45 +02:00
|
|
|
/*
|
2013-04-24 18:31:42 +02:00
|
|
|
This file is part of UltraSonic.
|
2013-04-02 03:16:45 +02:00
|
|
|
|
|
|
|
Subsonic is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Subsonic is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
Copyright 2009 (C) Sindre Mehus
|
|
|
|
*/
|
2013-04-06 21:47:24 +02:00
|
|
|
package com.thejoshwa.ultrasonic.androidapp.activity;
|
2013-04-02 03:16:45 +02:00
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.PrintWriter;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.pm.PackageInfo;
|
2013-04-24 18:31:42 +02:00
|
|
|
import android.graphics.Bitmap;
|
2013-04-02 03:16:45 +02:00
|
|
|
import android.media.AudioManager;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.Environment;
|
2013-04-28 01:01:34 +02:00
|
|
|
import android.util.DisplayMetrics;
|
2013-04-02 03:16:45 +02:00
|
|
|
import android.util.Log;
|
|
|
|
import android.view.KeyEvent;
|
2013-04-27 11:52:25 +02:00
|
|
|
import android.view.LayoutInflater;
|
2013-04-02 03:16:45 +02:00
|
|
|
import android.view.MenuItem;
|
2013-04-27 11:52:25 +02:00
|
|
|
import android.view.MotionEvent;
|
2013-04-02 03:16:45 +02:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.View.OnClickListener;
|
2013-04-27 11:52:25 +02:00
|
|
|
import android.view.View.OnTouchListener;
|
2013-04-24 18:31:42 +02:00
|
|
|
import android.widget.ImageView;
|
2013-04-02 03:16:45 +02:00
|
|
|
import android.widget.TextView;
|
2013-04-06 21:47:24 +02:00
|
|
|
import com.thejoshwa.ultrasonic.androidapp.R;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.domain.MusicDirectory;
|
2013-04-24 18:31:42 +02:00
|
|
|
import com.thejoshwa.ultrasonic.androidapp.domain.MusicDirectory.Entry;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.domain.PlayerState;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.service.DownloadFile;
|
2013-04-06 21:47:24 +02:00
|
|
|
import com.thejoshwa.ultrasonic.androidapp.service.DownloadService;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.service.DownloadServiceImpl;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.service.MusicService;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.service.MusicServiceFactory;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.Constants;
|
2013-04-24 18:31:42 +02:00
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.FileUtil;
|
2013-04-06 21:47:24 +02:00
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.ImageLoader;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.ModalBackgroundTask;
|
|
|
|
import com.thejoshwa.ultrasonic.androidapp.util.Util;
|
2013-04-02 03:16:45 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
import net.simonvt.menudrawer.MenuDrawer;
|
2013-04-27 11:52:25 +02:00
|
|
|
import net.simonvt.menudrawer.Position;
|
2013-04-24 18:31:42 +02:00
|
|
|
|
2013-04-02 03:16:45 +02:00
|
|
|
/**
|
|
|
|
* @author Sindre Mehus
|
|
|
|
*/
|
|
|
|
public class SubsonicTabActivity extends Activity implements OnClickListener{
|
|
|
|
private static final String TAG = SubsonicTabActivity.class.getSimpleName();
|
|
|
|
private static ImageLoader IMAGE_LOADER;
|
2013-04-24 18:31:42 +02:00
|
|
|
private static SubsonicTabActivity instance;
|
|
|
|
|
2013-04-02 03:16:45 +02:00
|
|
|
private boolean destroyed;
|
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
private static final String STATE_MENUDRAWER = "com.thejoshwa.ultrasonic.androidapp.menuDrawer";
|
|
|
|
private static final String STATE_ACTIVE_VIEW_ID = "com.thejoshwa.ultrasonic.androidapp.activeViewId";
|
2013-04-27 11:52:25 +02:00
|
|
|
private static final String STATE_ACTIVE_POSITION = "com.thejoshwa.ultrasonic.androidapp.activePosition";
|
2013-04-02 03:16:45 +02:00
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
protected MenuDrawer menuDrawer;
|
|
|
|
private int activePosition = 1;
|
2013-04-24 18:31:42 +02:00
|
|
|
private int menuActiveViewId;
|
|
|
|
private View nowPlaying = null;
|
|
|
|
View searchMenuItem = null;
|
|
|
|
View playlistsMenuItem = null;
|
2013-04-27 11:52:25 +02:00
|
|
|
View menuMain = null;
|
|
|
|
public static boolean nowPlayingHidden = false;
|
2013-04-02 03:16:45 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle bundle) {
|
|
|
|
setUncaughtExceptionHandler();
|
|
|
|
applyTheme();
|
|
|
|
super.onCreate(bundle);
|
|
|
|
|
|
|
|
startService(new Intent(this, DownloadServiceImpl.class));
|
|
|
|
setVolumeControlStream(AudioManager.STREAM_MUSIC);
|
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
if (bundle != null) {
|
2013-04-27 11:52:25 +02:00
|
|
|
activePosition = bundle.getInt(STATE_ACTIVE_POSITION);
|
2013-04-24 18:31:42 +02:00
|
|
|
menuActiveViewId = bundle.getInt(STATE_ACTIVE_VIEW_ID);
|
|
|
|
}
|
2013-04-02 03:16:45 +02:00
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
menuDrawer = MenuDrawer.attach(this, MenuDrawer.MENU_DRAG_WINDOW, Position.LEFT);
|
|
|
|
menuDrawer.setMenuView(R.layout.menu_main);
|
2013-04-02 03:16:45 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
searchMenuItem = findViewById(R.id.menu_search);
|
|
|
|
playlistsMenuItem = findViewById(R.id.menu_playlists);
|
2013-04-02 08:01:15 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
findViewById(R.id.menu_home).setOnClickListener(this);
|
|
|
|
findViewById(R.id.menu_browse).setOnClickListener(this);
|
|
|
|
searchMenuItem.setOnClickListener(this);
|
|
|
|
playlistsMenuItem.setOnClickListener(this);
|
|
|
|
findViewById(R.id.menu_now_playing).setOnClickListener(this);
|
|
|
|
findViewById(R.id.menu_settings).setOnClickListener(this);
|
2013-04-27 11:52:25 +02:00
|
|
|
findViewById(R.id.menu_about).setOnClickListener(this);
|
2013-04-24 18:31:42 +02:00
|
|
|
findViewById(R.id.menu_exit).setOnClickListener(this);
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView activeView = (TextView)findViewById(menuActiveViewId);
|
2013-04-02 08:01:15 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
if (activeView != null) {
|
|
|
|
menuDrawer.setActiveView(activeView);
|
2013-04-02 03:16:45 +02:00
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
instance = this;
|
2013-04-27 11:52:25 +02:00
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostCreate(Bundle bundle) {
|
|
|
|
super.onPostCreate(bundle);
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
if (!nowPlayingHidden) {
|
|
|
|
showNowPlaying();
|
|
|
|
} else {
|
|
|
|
hideNowPlaying();
|
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
int visibility = Util.isOffline(this) ? View.GONE : View.VISIBLE;
|
|
|
|
searchMenuItem.setVisibility(visibility);
|
|
|
|
playlistsMenuItem.setVisibility(visibility);
|
|
|
|
}
|
2013-04-02 03:16:45 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
2013-04-24 18:31:42 +02:00
|
|
|
instance = this;
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
if (!nowPlayingHidden) {
|
|
|
|
showNowPlaying();
|
|
|
|
} else {
|
|
|
|
hideNowPlaying();
|
|
|
|
}
|
|
|
|
|
2013-04-02 03:16:45 +02:00
|
|
|
Util.registerMediaButtonEventReceiver(this);
|
|
|
|
}
|
2013-04-27 11:52:25 +02:00
|
|
|
|
2013-04-02 03:16:45 +02:00
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2013-04-24 18:31:42 +02:00
|
|
|
case android.R.id.home:
|
|
|
|
menuDrawer.toggleMenu();
|
|
|
|
return true;
|
2013-04-02 03:16:45 +02:00
|
|
|
}
|
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
return super.onOptionsItemSelected(item);
|
2013-04-02 03:16:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
Util.unregisterMediaButtonEventReceiver(this);
|
|
|
|
super.onDestroy();
|
|
|
|
destroyed = true;
|
|
|
|
getImageLoader().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
|
|
|
boolean isVolumeDown = keyCode == KeyEvent.KEYCODE_VOLUME_DOWN;
|
|
|
|
boolean isVolumeUp = keyCode == KeyEvent.KEYCODE_VOLUME_UP;
|
|
|
|
boolean isVolumeAdjust = isVolumeDown || isVolumeUp;
|
|
|
|
boolean isJukebox = getDownloadService() != null && getDownloadService().isJukeboxEnabled();
|
|
|
|
|
|
|
|
if (isVolumeAdjust && isJukebox) {
|
|
|
|
getDownloadService().adjustJukeboxVolume(isVolumeUp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return super.onKeyDown(keyCode, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void finish() {
|
|
|
|
super.finish();
|
|
|
|
Util.disablePendingTransition(this);
|
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
private void showNowPlaying()
|
|
|
|
{
|
|
|
|
nowPlaying = findViewById(R.id.now_playing);
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
if (!Util.getShowNowPlayingPreference(this)) {
|
|
|
|
if (nowPlaying != null) {
|
|
|
|
nowPlaying.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
if (nowPlaying != null) {
|
|
|
|
final DownloadService downloadService = DownloadServiceImpl.getInstance();
|
|
|
|
|
|
|
|
if (downloadService != null) {
|
|
|
|
PlayerState playerState = downloadService.getPlayerState();
|
|
|
|
|
|
|
|
if (playerState.equals(PlayerState.PAUSED) || playerState.equals(PlayerState.STARTED)) {
|
|
|
|
DownloadFile file = downloadService.getCurrentPlaying();
|
2013-04-27 11:52:25 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
if (file != null) {
|
2013-04-27 11:52:25 +02:00
|
|
|
final Entry song = file.getSong();
|
2013-04-24 18:31:42 +02:00
|
|
|
showNowPlaying(this, (DownloadServiceImpl)downloadService, song, playerState);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
hideNowPlaying();
|
|
|
|
}
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
ImageView nowPlayingControlPlay = (ImageView) nowPlaying.findViewById(R.id.now_playing_control_play);
|
|
|
|
|
|
|
|
SwipeDetector swipeDetector = SwipeDetector.Create(SubsonicTabActivity.this, downloadService);
|
|
|
|
nowPlaying.setOnTouchListener(swipeDetector);
|
|
|
|
|
|
|
|
nowPlaying.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
}
|
|
|
|
});
|
2013-04-24 18:31:42 +02:00
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
nowPlayingControlPlay.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
downloadService.togglePlayPause();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
}
|
|
|
|
}
|
2013-04-02 03:16:45 +02:00
|
|
|
|
|
|
|
private void applyTheme() {
|
|
|
|
String theme = Util.getTheme(this);
|
2013-04-28 01:01:34 +02:00
|
|
|
|
|
|
|
if ("dark".equalsIgnoreCase(theme) || "fullscreen".equalsIgnoreCase(theme)) {
|
|
|
|
setTheme(R.style.UltraSonicTheme);
|
|
|
|
} else if ("light".equalsIgnoreCase(theme) || "fullscreenlight".equalsIgnoreCase(theme)) {
|
|
|
|
setTheme(R.style.UltraSonicTheme_Light);
|
2013-04-02 03:16:45 +02:00
|
|
|
}
|
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
public void showNowPlaying(final Context context, final DownloadServiceImpl downloadService, final MusicDirectory.Entry song, PlayerState playerState) {
|
2013-04-24 18:31:42 +02:00
|
|
|
nowPlaying = findViewById(R.id.now_playing);
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
if (!Util.getShowNowPlayingPreference(this)) {
|
|
|
|
if (nowPlaying != null) {
|
|
|
|
nowPlaying.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
if (nowPlaying != null) {
|
|
|
|
nowPlaying.setVisibility(View.VISIBLE);
|
2013-04-27 11:52:25 +02:00
|
|
|
nowPlayingHidden = false;
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
String title = song.getTitle();
|
|
|
|
String artist = song.getArtist();
|
2013-04-27 11:52:25 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
try {
|
|
|
|
ImageView nowPlayingImage = (ImageView) nowPlaying.findViewById(R.id.now_playing_image);
|
|
|
|
TextView nowPlayingTrack = (TextView) nowPlaying.findViewById(R.id.now_playing_trackname);
|
|
|
|
TextView nowPlayingArtist = (TextView) nowPlaying.findViewById(R.id.now_playing_artist);
|
|
|
|
|
2013-04-28 01:01:34 +02:00
|
|
|
DisplayMetrics metrics = context.getResources().getDisplayMetrics();
|
|
|
|
int imageSizeLarge = (int) Math.round(Math.min(metrics.widthPixels, metrics.heightPixels));
|
|
|
|
|
|
|
|
int size = 64;
|
|
|
|
|
|
|
|
if (imageSizeLarge <= 480) {
|
|
|
|
size = 64;
|
|
|
|
} else if (imageSizeLarge <= 768) {
|
|
|
|
size = 128;
|
|
|
|
} else if (imageSizeLarge <= 1024) {
|
|
|
|
size = 256;
|
|
|
|
} else if (imageSizeLarge <= 1080) {
|
|
|
|
size = imageSizeLarge;
|
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
Bitmap bitmap = FileUtil.getAlbumArtBitmap(context, song, size);
|
|
|
|
|
|
|
|
if (bitmap == null) {
|
|
|
|
// set default album art
|
|
|
|
nowPlayingImage.setImageResource(R.drawable.unknown_album);
|
|
|
|
} else {
|
|
|
|
nowPlayingImage.setImageBitmap(bitmap);
|
|
|
|
}
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
nowPlayingImage.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
Intent intent = new Intent(SubsonicTabActivity.this, SelectAlbumActivity.class);
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_ID, song.getParent());
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_NAME, song.getAlbum());
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, intent);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
nowPlayingTrack.setText(title);
|
|
|
|
nowPlayingArtist.setText(artist);
|
|
|
|
|
|
|
|
} catch (Exception x) {
|
|
|
|
Log.w(TAG, "Failed to get notification cover art", x);
|
|
|
|
}
|
|
|
|
|
2013-04-27 11:52:25 +02:00
|
|
|
ImageView playButton = (ImageView) nowPlaying.findViewById(R.id.now_playing_control_play);
|
2013-04-24 18:31:42 +02:00
|
|
|
|
|
|
|
if (playerState == PlayerState.PAUSED) {
|
2013-04-28 01:01:34 +02:00
|
|
|
playButton.setImageDrawable(Util.getDrawableFromAttribute(this, R.attr.media_play));
|
2013-04-24 18:31:42 +02:00
|
|
|
} else if (playerState == PlayerState.STARTED) {
|
2013-04-28 01:01:34 +02:00
|
|
|
playButton.setImageDrawable(Util.getDrawableFromAttribute(this, R.attr.media_pause));
|
2013-04-27 11:52:25 +02:00
|
|
|
}
|
2013-04-24 18:31:42 +02:00
|
|
|
}
|
|
|
|
}
|
2013-04-02 03:16:45 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
public void hideNowPlaying() {
|
|
|
|
nowPlaying = findViewById(R.id.now_playing);
|
|
|
|
|
|
|
|
if (nowPlaying != null) {
|
|
|
|
nowPlaying.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SubsonicTabActivity getInstance() {
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2013-04-02 03:16:45 +02:00
|
|
|
public boolean getIsDestroyed() {
|
|
|
|
return destroyed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setProgressVisible(boolean visible) {
|
|
|
|
View view = findViewById(R.id.tab_progress);
|
|
|
|
if (view != null) {
|
|
|
|
view.setVisibility(visible ? View.VISIBLE : View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateProgress(String message) {
|
|
|
|
TextView view = (TextView) findViewById(R.id.tab_progress_message);
|
|
|
|
if (view != null) {
|
|
|
|
view.setText(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public DownloadService getDownloadService() {
|
|
|
|
// If service is not available, request it to start and wait for it.
|
|
|
|
for (int i = 0; i < 5; i++) {
|
|
|
|
DownloadService downloadService = DownloadServiceImpl.getInstance();
|
|
|
|
if (downloadService != null) {
|
|
|
|
return downloadService;
|
|
|
|
}
|
|
|
|
Log.w(TAG, "DownloadService not running. Attempting to start it.");
|
|
|
|
startService(new Intent(this, DownloadServiceImpl.class));
|
|
|
|
Util.sleepQuietly(50L);
|
|
|
|
}
|
|
|
|
return DownloadServiceImpl.getInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void warnIfNetworkOrStorageUnavailable() {
|
|
|
|
if (!Util.isExternalStoragePresent()) {
|
|
|
|
Util.toast(this, R.string.select_album_no_sdcard);
|
|
|
|
} else if (!Util.isOffline(this) && !Util.isNetworkConnected(this)) {
|
|
|
|
Util.toast(this, R.string.select_album_no_network);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected synchronized ImageLoader getImageLoader() {
|
|
|
|
if (IMAGE_LOADER == null) {
|
|
|
|
IMAGE_LOADER = new ImageLoader(this);
|
|
|
|
}
|
|
|
|
return IMAGE_LOADER;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void downloadRecursively(final String id, final boolean save, final boolean append, final boolean autoplay) {
|
|
|
|
ModalBackgroundTask<List<MusicDirectory.Entry>> task = new ModalBackgroundTask<List<MusicDirectory.Entry>>(this, false) {
|
|
|
|
|
|
|
|
private static final int MAX_SONGS = 500;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected List<MusicDirectory.Entry> doInBackground() throws Throwable {
|
|
|
|
MusicService musicService = MusicServiceFactory.getMusicService(SubsonicTabActivity.this);
|
|
|
|
MusicDirectory root = musicService.getMusicDirectory(id, false, SubsonicTabActivity.this, this);
|
|
|
|
List<MusicDirectory.Entry> songs = new LinkedList<MusicDirectory.Entry>();
|
|
|
|
getSongsRecursively(root, songs);
|
|
|
|
return songs;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void getSongsRecursively(MusicDirectory parent, List<MusicDirectory.Entry> songs) throws Exception {
|
|
|
|
if (songs.size() > MAX_SONGS) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (MusicDirectory.Entry song : parent.getChildren(false, true)) {
|
|
|
|
if (!song.isVideo()) {
|
|
|
|
songs.add(song);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (MusicDirectory.Entry dir : parent.getChildren(true, false)) {
|
|
|
|
MusicService musicService = MusicServiceFactory.getMusicService(SubsonicTabActivity.this);
|
|
|
|
getSongsRecursively(musicService.getMusicDirectory(dir.getId(), false, SubsonicTabActivity.this, this), songs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void done(List<MusicDirectory.Entry> songs) {
|
|
|
|
DownloadService downloadService = getDownloadService();
|
|
|
|
if (!songs.isEmpty() && downloadService != null) {
|
|
|
|
if (!append) {
|
|
|
|
downloadService.clear();
|
|
|
|
}
|
|
|
|
warnIfNetworkOrStorageUnavailable();
|
|
|
|
downloadService.download(songs, save, autoplay, false);
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, DownloadActivity.class);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
task.execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setUncaughtExceptionHandler() {
|
|
|
|
Thread.UncaughtExceptionHandler handler = Thread.getDefaultUncaughtExceptionHandler();
|
|
|
|
if (!(handler instanceof SubsonicUncaughtExceptionHandler)) {
|
|
|
|
Thread.setDefaultUncaughtExceptionHandler(new SubsonicUncaughtExceptionHandler(this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs the stack trace of uncaught exceptions to a file on the SD card.
|
|
|
|
*/
|
|
|
|
private static class SubsonicUncaughtExceptionHandler implements Thread.UncaughtExceptionHandler {
|
|
|
|
|
|
|
|
private final Thread.UncaughtExceptionHandler defaultHandler;
|
|
|
|
private final Context context;
|
|
|
|
|
|
|
|
private SubsonicUncaughtExceptionHandler(Context context) {
|
|
|
|
this.context = context;
|
|
|
|
defaultHandler = Thread.getDefaultUncaughtExceptionHandler();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void uncaughtException(Thread thread, Throwable throwable) {
|
|
|
|
File file = null;
|
|
|
|
PrintWriter printWriter = null;
|
|
|
|
try {
|
|
|
|
|
2013-04-06 21:47:24 +02:00
|
|
|
PackageInfo packageInfo = context.getPackageManager().getPackageInfo("com.thejoshwa.ultrasonic.androidapp", 0);
|
|
|
|
file = new File(Environment.getExternalStorageDirectory(), "ultrasonic-stacktrace.txt");
|
2013-04-02 03:16:45 +02:00
|
|
|
printWriter = new PrintWriter(file);
|
|
|
|
printWriter.println("Android API level: " + Build.VERSION.SDK_INT);
|
2013-04-24 18:31:42 +02:00
|
|
|
printWriter.println("UltraSonic version name: " + packageInfo.versionName);
|
|
|
|
printWriter.println("UltraSonic version code: " + packageInfo.versionCode);
|
2013-04-02 03:16:45 +02:00
|
|
|
printWriter.println();
|
|
|
|
throwable.printStackTrace(printWriter);
|
|
|
|
Log.i(TAG, "Stack trace written to " + file);
|
|
|
|
} catch (Throwable x) {
|
|
|
|
Log.e(TAG, "Failed to write stack trace to " + file, x);
|
|
|
|
} finally {
|
|
|
|
Util.close(printWriter);
|
|
|
|
if (defaultHandler != null) {
|
|
|
|
defaultHandler.uncaughtException(thread, throwable);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
2013-04-27 11:52:25 +02:00
|
|
|
//menuDrawer.setActiveView(v);
|
2013-04-24 18:31:42 +02:00
|
|
|
menuActiveViewId = v.getId();
|
2013-04-02 03:16:45 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
Intent intent;
|
|
|
|
|
|
|
|
switch (menuActiveViewId) {
|
|
|
|
case R.id.menu_home:
|
|
|
|
intent = new Intent(SubsonicTabActivity.this, MainActivity.class);
|
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, intent);
|
|
|
|
break;
|
|
|
|
case R.id.menu_browse:
|
|
|
|
intent = new Intent(SubsonicTabActivity.this, SelectArtistActivity.class);
|
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, intent);
|
|
|
|
break;
|
|
|
|
case R.id.menu_search:
|
|
|
|
intent = new Intent(SubsonicTabActivity.this, SearchActivity.class);
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_REQUEST_SEARCH, true);
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, intent);
|
|
|
|
break;
|
|
|
|
case R.id.menu_playlists:
|
|
|
|
intent = new Intent(SubsonicTabActivity.this, SelectPlaylistActivity.class);
|
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, intent);
|
|
|
|
break;
|
|
|
|
case R.id.menu_now_playing:
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, DownloadActivity.class);
|
|
|
|
break;
|
|
|
|
case R.id.menu_settings:
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, SettingsActivity.class);
|
|
|
|
break;
|
2013-04-27 11:52:25 +02:00
|
|
|
case R.id.menu_about:
|
2013-04-24 18:31:42 +02:00
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, HelpActivity.class);
|
|
|
|
break;
|
|
|
|
case R.id.menu_exit:
|
|
|
|
intent = new Intent(SubsonicTabActivity.this, MainActivity.class);
|
|
|
|
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
|
|
intent.putExtra(Constants.INTENT_EXTRA_NAME_EXIT, true);
|
|
|
|
Util.startActivityWithoutTransition(SubsonicTabActivity.this, intent);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
menuDrawer.closeMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onRestoreInstanceState(Bundle inState) {
|
|
|
|
super.onRestoreInstanceState(inState);
|
|
|
|
menuDrawer.restoreState(inState.getParcelable(STATE_MENUDRAWER));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onSaveInstanceState(Bundle outState) {
|
|
|
|
super.onSaveInstanceState(outState);
|
|
|
|
outState.putParcelable(STATE_MENUDRAWER, menuDrawer.saveState());
|
|
|
|
outState.putInt(STATE_ACTIVE_VIEW_ID, menuActiveViewId);
|
2013-04-27 11:52:25 +02:00
|
|
|
outState.putInt(STATE_ACTIVE_POSITION, activePosition);
|
2013-04-24 18:31:42 +02:00
|
|
|
}
|
2013-04-02 03:16:45 +02:00
|
|
|
|
2013-04-24 18:31:42 +02:00
|
|
|
@Override
|
|
|
|
public void onBackPressed() {
|
|
|
|
final int drawerState = menuDrawer.getDrawerState();
|
|
|
|
|
|
|
|
if (drawerState == MenuDrawer.STATE_OPEN || drawerState == MenuDrawer.STATE_OPENING) {
|
|
|
|
menuDrawer.closeMenu();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
super.onBackPressed();
|
|
|
|
}
|
2013-04-27 11:52:25 +02:00
|
|
|
|
|
|
|
static class SwipeDetector implements OnTouchListener {
|
|
|
|
|
|
|
|
public static enum Action {
|
2013-04-28 01:01:34 +02:00
|
|
|
LeftToRight,
|
|
|
|
RightToLeft,
|
|
|
|
TopToBottom,
|
|
|
|
BottomToTop,
|
|
|
|
None,
|
2013-04-27 11:52:25 +02:00
|
|
|
Click
|
|
|
|
}
|
|
|
|
|
|
|
|
public static SwipeDetector Create(SubsonicTabActivity activity, final DownloadService downloadService) {
|
|
|
|
SwipeDetector swipeDetector = new SwipeDetector();
|
|
|
|
swipeDetector.downloadService = downloadService;
|
|
|
|
swipeDetector.activity = activity;
|
|
|
|
return swipeDetector;
|
|
|
|
}
|
|
|
|
|
2013-04-28 01:01:34 +02:00
|
|
|
private static final int MIN_DISTANCE = 30;
|
2013-04-27 11:52:25 +02:00
|
|
|
private float downX, downY, upX, upY;
|
|
|
|
private DownloadService downloadService;
|
|
|
|
private SubsonicTabActivity activity;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View v, MotionEvent event) {
|
|
|
|
switch (event.getAction()) {
|
|
|
|
case MotionEvent.ACTION_DOWN: {
|
|
|
|
downX = event.getX();
|
|
|
|
downY = event.getY();
|
2013-04-28 01:01:34 +02:00
|
|
|
return false;
|
2013-04-27 11:52:25 +02:00
|
|
|
} case MotionEvent.ACTION_UP: {
|
|
|
|
upX = event.getX();
|
|
|
|
upY = event.getY();
|
|
|
|
|
|
|
|
float deltaX = downX - upX;
|
|
|
|
float deltaY = downY - upY;
|
|
|
|
|
|
|
|
if (Math.abs(deltaX) > MIN_DISTANCE) {
|
|
|
|
// left or right
|
|
|
|
if (deltaX < 0) {
|
|
|
|
downloadService.previous();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (deltaX > 0) {
|
|
|
|
downloadService.next();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (Math.abs(deltaY) > MIN_DISTANCE) {
|
|
|
|
if (deltaY < 0) {
|
|
|
|
activity.nowPlayingHidden = true;
|
|
|
|
activity.hideNowPlaying();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (deltaY > 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Util.startActivityWithoutTransition(activity, DownloadActivity.class);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2013-04-02 03:16:45 +02:00
|
|
|
}
|
|
|
|
|