У меня есть служба загрузчиков, которая загружает список загрузок из моей базы данных.
Затем создается ASyncTask, который будет запускать загрузки в фоновом потоке.
Это все работает отлично, но проблема в том, что у меня нет способа сообщить службе, что загрузчик завершил работу. Я как-то должен отправить службе сообщение от функции onPostExecute ASyncTask (которая работает на UIThread).
Я не могу просто закрыть службу удаленно, потому что Службе есть над чем поработать после завершения ASyncTask.
Я рассмотрел вопрос о том, чтобы зарегистрировать прослушиватель из службы и вызвать его в onPostExecute, но я думаю, что это может вызвать проблемы, такие как закрытие службы до завершения задачи или некоторые проблемы с блокировкой потоков.
Как я могу отправить сообщение (например, широковещательные намерения) в службу загрузки с моей ASyncTask?
EDIT
Вот код для тех, кто не знает, что я делаю.
DownloadService.java (Важные биты):
public class DownloadService extends Service implements OnProgressListener {
/** The Downloads. */
private List<Download> mDownloads = new ArrayList<Download>(10);
private DownloadTask mDownloadTask;
/** The Intent receiver that handles broadcasts. */
private BroadcastReceiver mIntentReceiver = new BroadcastReceiver()
{
@Override
public void onReceive(Context context, Intent intent) {
DebugLog.i(TAG, "onRecieve" +intent.toString());
handleCommand(intent);
}
};
/* (non-Javadoc)
* @see android.app.Service#onCreate()
*/
@Override
public void onCreate() {
DebugLog.i(TAG, "onCreate");
mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
IntentFilter commandFilter = new IntentFilter();
commandFilter.addAction(ACTION_PAUSE_DOWNLOADS);
commandFilter.addAction(ACTION_START_DOWNLOADS);
registerReceiver(mIntentReceiver, commandFilter);
}
/* (non-Javadoc)
* @see android.app.Service#onDestroy()
*/
@Override
public void onDestroy(){
DebugLog.i(TAG, "onDestroy");
//Make sure all downloads are saved and stopped
pauseAllDownloads();
//unregister command receiver
unregisterReceiver(mIntentReceiver);
//cancel notifications
closeNotification();
}
/* (non-Javadoc)
* @see android.app.Service#onStartCommand(android.content.Intent, int, int)
*/a
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
handleCommand(intent);
// We want this service to continue running until it is explicitly
// stopped, so return sticky.
return START_STICKY;
}
/**
* Handle command sent via intent.
* <strong>Warning, this function shouldn't do any heavy lifting.
* This will be run in UI thread and should spin off ASyncTasks to do work.</strong>
*
* @param intent the intent
*/
private void handleCommand(Intent intent) {
if(intent != null){
String action = intent.getAction();
Uri data = intent.getData();
if(action.equals(ACTION_START_DOWNLOADS))
{
updateDownloads();//Fetch list of downloads to do from database
startDownloads();//run downloads
}else if(action.equals(ACTION_PAUSE_DOWNLOADS)){
pauseAllDownloads();
}
}
}
/**
* Start all downloads currently in list (in order).
*/
private void startDownloads()
{
pauseAllDownloads();//make sure we don't have a download task running
mDownloadTask = new DownloadTask();
mDownloadTask.setOnProgressListener(this);
Download[] downloads = new Download[mDownloads.size()];
for(int i = 0; i<mDownloads.size(); i++)
{
Download d = mDownloads.get(i);
if(d.getStatus() != Download.COMPLETE)
{
downloads[i] = mDownloads.get(i);
}
}
//must be called on UI thread
mDownloadTask.execute(downloads);
}
/**
* Pause downloads.
*/
private void pauseAllDownloads()
{
if(mDownloadTask == null)
{
//Done. Nothing is downloading.
return;
}
//Cancel download task first so that it doesn't start downloading next
if(mDownloadTask.cancel(true))
{
//Task has been canceled. Pause the active download.
Download activeDownload = mDownloadTask.getActiveDownload();
if(activeDownload != null)
{
activeDownload.pause();
}
}else
{
if(mDownloadTask.getStatus() == AsyncTask.Status.FINISHED)
{
DebugLog.w(TAG, "Download Task Already Finished");
}else{
//Task could not be stopped
DebugLog.w(TAG, "Download Task Could Not Be Stopped");
}
}
}
@Override
public void onProgress(Download download) {
//download progress is reported here from DownloadTask
}
}
DownloadTask:
/**
* The Class DownloadTask.
*/
public class DownloadTask extends AsyncTask<Download, Download, Void> {
/** The On progress listener. */
private OnProgressListener mOnProgressListener;
/**
* The listener interface for receiving onProgress events.
* The class that is interested in processing a onProgress
* event implements this interface and registers it with the component.
*
*/
public static interface OnProgressListener
{
/**
* On progress update.
*
* @param download the download
*/
public void onProgress(Download download);
}
private Download mCurrent;
/**
* Sets the on progress listener.
*
* @param listener the new on progress listener
*/
public void setOnProgressListener(OnProgressListener listener)
{
mOnProgressListener = listener;
}
/**
* Gets the active download.
*
* @return the active download
*/
public Download getActiveDownload()
{
return mCurrent;
}
/* (non-Javadoc)
* @see android.os.AsyncTask#doInBackground(Params[])
*/
@Override
protected Void doInBackground(Download... params) {
int count = params.length;
for (int i = 0; i < count; i++) {
mCurrent = params[i];
if(mCurrent == null)
{
continue;
}
mCurrent.setDownloadProgressListener(new Download.OnDownloadProgressListener() {
@Override
public void onDownloadProgress(Download download, int bytesDownloaded,
int bytesTotal) {
publishProgress(download);
}
});
mCurrent.setOnStatusChangedListener(new Download.OnStatusChangedListener() {
@Override
public void onStatusChanged(Download download, int status) {
publishProgress(download);
}
});
mCurrent.download();
//publishProgress(mCurrent); redundant call
if(this.isCancelled())
break;
}
return null;
}
/* (non-Javadoc)
* @see android.os.AsyncTask#onPostExecute(java.lang.Object)
*/
public void onPostExecute(Void v)
{
//TODO notify completion.
}
/* (non-Javadoc)
* @see android.os.AsyncTask#onProgressUpdate(Progress[])
*/
@Override
protected void onProgressUpdate(Download... progress) {
if(mOnProgressListener != null)
{
for(Download d:progress)
{
mOnProgressListener.onProgress(d);
}
}
}
}