Moved downloadservice handler to background task

This commit is contained in:
daniel oeh 2012-07-23 20:58:26 +02:00
parent aebb928a23
commit 40bed42743
1 changed files with 91 additions and 59 deletions

View File

@ -101,7 +101,8 @@ public class DownloadService extends Service {
@SuppressLint("NewApi")
@Override
public void onCreate() {
if (AppConfig.DEBUG) Log.d(TAG, "Service started");
if (AppConfig.DEBUG)
Log.d(TAG, "Service started");
isRunning = true;
completedDownloads = new ArrayList<DownloadStatus>();
registerReceiver(downloadReceiver, createIntentFilter());
@ -126,7 +127,8 @@ public class DownloadService extends Service {
@Override
public void onDestroy() {
if (AppConfig.DEBUG) Log.d(TAG, "Service shutting down");
if (AppConfig.DEBUG)
Log.d(TAG, "Service shutting down");
isRunning = false;
sendBroadcast(new Intent(ACTION_FEED_SYNC_COMPLETED));
mediaplayer.release();
@ -143,17 +145,21 @@ public class DownloadService extends Service {
/** Shuts down Executor service and prepares for shutdown */
private void initiateShutdown() {
if (AppConfig.DEBUG) Log.d(TAG, "Initiating shutdown");
if (AppConfig.DEBUG)
Log.d(TAG, "Initiating shutdown");
// Wait until PoolExecutor is done
Thread waiter = new Thread() {
@Override
public void run() {
syncExecutor.shutdown();
try {
if (AppConfig.DEBUG) Log.d(TAG, "Starting to wait for termination");
if (AppConfig.DEBUG)
Log.d(TAG, "Starting to wait for termination");
boolean b = syncExecutor.awaitTermination(20L,
TimeUnit.SECONDS);
if (AppConfig.DEBUG) Log.d(TAG, "Stopping waiting for termination; Result : "
if (AppConfig.DEBUG)
Log.d(TAG,
"Stopping waiting for termination; Result : "
+ b);
stopSelf();
@ -180,16 +186,23 @@ public class DownloadService extends Service {
.setSmallIcon(android.R.drawable.stat_notify_sync_noanim);
startForeground(NOTIFICATION_ID, notificationBuilder.getNotification());
if (AppConfig.DEBUG) Log.d(TAG, "Notification set up");
if (AppConfig.DEBUG)
Log.d(TAG, "Notification set up");
}
private BroadcastReceiver downloadReceiver = new BroadcastReceiver() {
@SuppressLint("NewApi")
@Override
public void onReceive(Context context, Intent intent) {
public void onReceive(final Context context, final Intent intent) {
AsyncTask<Void, Void, Void> handler = new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
int status = -1;
boolean successful = false;
int reason = 0;
if (AppConfig.DEBUG) Log.d(TAG, "Received 'Download Complete' - message.");
if (AppConfig.DEBUG)
Log.d(TAG, "Received 'Download Complete' - message.");
long downloadId = intent.getLongExtra(
DownloadManager.EXTRA_DOWNLOAD_ID, 0);
// get status
@ -205,7 +218,8 @@ public class DownloadService extends Service {
if (status == DownloadManager.STATUS_SUCCESSFUL) {
if (download.getClass() == Feed.class) {
handleCompletedFeedDownload(context, (Feed) download);
handleCompletedFeedDownload(context,
(Feed) download);
} else if (download.getClass() == FeedImage.class) {
handleCompletedImageDownload(context,
(FeedImage) download);
@ -216,7 +230,8 @@ public class DownloadService extends Service {
successful = true;
} else if (status == DownloadManager.STATUS_FAILED) {
reason = c.getInt(c
reason = c
.getInt(c
.getColumnIndex(DownloadManager.COLUMN_REASON));
Log.e(TAG, "Download failed");
Log.e(TAG, "reason code is " + reason);
@ -232,6 +247,14 @@ public class DownloadService extends Service {
queryDownloads();
c.close();
}
return null;
}
};
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.GINGERBREAD_MR1) {
handler.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
} else {
handler.execute();
}
}
};
@ -283,7 +306,8 @@ public class DownloadService extends Service {
}
}
if (createReport) {
if (AppConfig.DEBUG) Log.d(TAG, "Creating report");
if (AppConfig.DEBUG)
Log.d(TAG, "Creating report");
int successfulDownloads = 0;
int failedDownloads = 0;
for (DownloadStatus status : completedDownloads) {
@ -314,7 +338,8 @@ public class DownloadService extends Service {
nm.notify(REPORT_ID, notification);
} else {
if (AppConfig.DEBUG) Log.d(TAG, "No report is created");
if (AppConfig.DEBUG)
Log.d(TAG, "No report is created");
}
}
@ -335,21 +360,24 @@ public class DownloadService extends Service {
/** Is called whenever a Feed is downloaded */
private void handleCompletedFeedDownload(Context context, Feed feed) {
if (AppConfig.DEBUG) Log.d(TAG, "Handling completed Feed Download");
if (AppConfig.DEBUG)
Log.d(TAG, "Handling completed Feed Download");
syncExecutor.execute(new FeedSyncThread(feed, this));
}
/** Is called whenever a Feed-Image is downloaded */
private void handleCompletedImageDownload(Context context, FeedImage image) {
if (AppConfig.DEBUG) Log.d(TAG, "Handling completed Image Download");
if (AppConfig.DEBUG)
Log.d(TAG, "Handling completed Image Download");
syncExecutor.execute(new ImageHandlerThread(image, this));
}
/** Is called whenever a FeedMedia is downloaded. */
private void handleCompletedFeedMediaDownload(Context context,
FeedMedia media) {
if (AppConfig.DEBUG) Log.d(TAG, "Handling completed FeedMedia Download");
if (AppConfig.DEBUG)
Log.d(TAG, "Handling completed FeedMedia Download");
syncExecutor.execute(new MediaHandlerThread(media, this));
}
@ -381,14 +409,16 @@ public class DownloadService extends Service {
try {
feed = handler.parseFeed(feed);
if (AppConfig.DEBUG) Log.d(TAG, feed.getTitle() + " parsed");
if (AppConfig.DEBUG)
Log.d(TAG, feed.getTitle() + " parsed");
feed.setDownloadId(0);
// Save information of feed in DB
savedFeed = manager.updateFeed(service, feed);
// Download Feed Image if provided and not downloaded
if (savedFeed.getImage().isDownloaded() == false) {
if (AppConfig.DEBUG) Log.d(TAG, "Feed has image; Downloading....");
if (AppConfig.DEBUG)
Log.d(TAG, "Feed has image; Downloading....");
imageId = requester.downloadImage(service, feed.getImage());
hasImage = true;
}
@ -431,7 +461,8 @@ public class DownloadService extends Service {
/** Delete files that aren't needed anymore */
private void cleanup() {
if (new File(feed.getFile_url()).delete())
if (AppConfig.DEBUG) Log.d(TAG, "Successfully deleted cache file.");
if (AppConfig.DEBUG)
Log.d(TAG, "Successfully deleted cache file.");
else
Log.e(TAG, "Failed to delete cache file.");
feed.setFile_url(null);
@ -487,7 +518,8 @@ public class DownloadService extends Service {
e.printStackTrace();
}
media.setDuration(mediaplayer.getDuration());
if (AppConfig.DEBUG) Log.d(TAG, "Duration of file is " + media.getDuration());
if (AppConfig.DEBUG)
Log.d(TAG, "Duration of file is " + media.getDuration());
mediaplayer.reset();
long statusId = saveDownloadStatus(new DownloadStatus(media, 0,
true));