设备关闭时的IntentService onHandleIntent行为

时间:2015-05-27 08:07:43

标签: android device shutdown android-intentservice application-shutdown

设备关闭时onHandleIntent的行为是什么?

我知道在IntentService上,只要onHandleIntent没有完成它的工作,服务就会一直运行。

所以要考虑它是关于设备关闭时服务行为的一般性问题,它们是否会唤醒"一旦我们再次启动设备?

如果没有,那么这是一种方法吗?无论发生什么事,我希望我的意图服务继续运行,直到onHandleIntent完成。

编辑: 我将添加我的代码以便更好地理解。 我试图在SQLite上保存请求并继续运行,直到该表为空,然后服务将关闭。 因此,在设备关闭的情况下,我仍将继续从我在shudown之前的同一地点继续。 P.S - 我尝试使用执行器来获得更好的性能(它是一个测试但尚未经过验证) 如果有人得到更好的建议,我很乐意听到他们引起我在这个主题上的新知识

onHandleIntent

@Override
protected void onHandleIntent(Intent intent) {
    helper = new DBHelper(getApplicationContext());
    executor = Executors.newFixedThreadPool(5);
    File file;
    Log.e("requestsExists",helper.requestsExists()+"");
    while (helper.requestsExists()) {
        ArrayList<String> requestArr = helper.getRequestsToExcute(5);
        //checks if the DB requests exists
        if (!requestArr.isEmpty()) {
            //execute them and delete the DB entry
            for(int i = 0; i < requestArr.size(); i++) {
                file = new File(requestArr.get(i));

                Log.e("file",file.toString());
                Future<String> future = executor.submit(new MyThread(file,getApplicationContext()));

                Log.e("future object", future.toString());
                try {
                    long idToDelete = Long.parseLong(future.get());
                    Log.e("THREAD ANSWER", future.get() + "");
                    helper.deleteRequest(idToDelete);
                } catch (InterruptedException e) {
                    Log.e("future try", "");
                } catch (ExecutionException e) {
                    e.printStackTrace();
                }
            }
        }
    }
    executor.shutdown();
}

MyThread的

public class MyThread implements Callable {

    private File _file;
    private Context context;
    private DBHelper helper;

    public MyThread(File file, Context context) {
        this._file = file;
        this.context = context;
    }

    @Override
    public String call() throws Exception {
        HttpClient client = Utility.getNewHttpClient();
        HttpContext localContext = new BasicHttpContext();
        HttpPost post = new HttpPost("http://192.168.9.62/mobile_api/timeline/moment/upload");
        try {
            MultipartEntityBuilder builder = MultipartEntityBuilder.create();
            builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);

            FileBody fileBody = new FileBody(_file);
            builder.addPart("content", fileBody);
            builder.addPart("type", new StringBody("file", ContentType.TEXT_PLAIN));
            builder.addPart("title", new StringBody("service test", ContentType.TEXT_PLAIN));
            builder.addPart("userType", new StringBody("user", ContentType.TEXT_PLAIN));
            builder.addPart("uid", new StringBody(MyInfiActivity.friends_uid, ContentType.TEXT_PLAIN));
            builder.addPart("momentId", new StringBody("1", ContentType.TEXT_PLAIN));
            builder.addPart("storyId", new StringBody("8", ContentType.TEXT_PLAIN));
            Utility.addCookiesToPost(post);

            post.setEntity(builder.build());
            client.execute(post, localContext);
        } catch (IOException e) {
            Log.e("Callable try", post.toString());
        }
        return "1";
    }
}

2 个答案:

答案 0 :(得分:1)

我会尝试逐点回答你的问题

设备关闭时onHandleIntent的行为是什么?

由于设备将完全关闭,将强制并停止所有服务,包括您的IntentService。
您可以订阅ACTION_SHUTDOWN以了解设备何时关闭并在实际关闭之前执行某些操作。

public class ShutdownHandlerReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        //Handle here, but don't make actions that takes too long
    }    
}

此外,您还必须将其添加到清单

<receiver android:name=".ShutdownHandlerReceiver">
  <intent-filter>
    <action android:name="android.intent.action.ACTION_SHUTDOWN" />
  </intent-filter>
</receiver>

一旦我们再次启动设备,它们会“唤醒”吗?

不,他们不会,因为他们已经处理过类似的东西,但您可以订阅ACTION_BOOT_COMPLETED以了解设备何时准备就绪。来自doc:

  

广播行动:系统播放后播放一次   完成启动。它可用于执行特定于应用程序   初始化,例如安装警报。 你必须持有   RECEIVE_BOOT_COMPLETED权限,以便接收此广播。

   public class BootedReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        //Handle here, you can start again your stopped intentservices
    }    
}

在清单中:

<receiver android:name=".BootedReceiver">
  <intent-filter>
    <action android:name="android.intent.action.BOOT_COMPLETED" />
  </intent-filter>
</receiver>

然后你可以重新启动你的服务器的quee,我想这是最好的方法。

答案 1 :(得分:0)

AFAIK,你的IntentService会在设备关闭时停止,如果它在那时运行,系统不会在启动时自动为我们启动它,我们必须自己做。

请参阅this了解如何操作。