Created
February 21, 2011 18:02
-
-
Save abombss/837439 to your computer and use it in GitHub Desktop.
A compatible wakeful intent service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
Copyright (c) 2009 CommonsWare, LLC | |
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 com.commonsware.cwac.wakeful; | |
import android.app.AlarmManager; | |
import android.app.PendingIntent; | |
import android.app.IntentService; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.content.pm.PackageManager; | |
import android.os.IBinder; | |
import android.os.PowerManager; | |
import android.util.Log; | |
abstract public class WakefulIntentService extends IntentService { | |
abstract protected void doWakefulWork(Intent intent); | |
private static final String LOCK_NAME_STATIC="com.commonsware.cwac.wakeful.WakefulIntentService"; | |
private static PowerManager.WakeLock lockStatic=null; | |
synchronized private static PowerManager.WakeLock getLock(Context context) { | |
if (lockStatic==null) { | |
PowerManager mgr=(PowerManager)context.getSystemService(Context.POWER_SERVICE); | |
lockStatic=mgr.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, | |
LOCK_NAME_STATIC); | |
lockStatic.setReferenceCounted(true); | |
} | |
return(lockStatic); | |
} | |
public static void sendWakefulWork(Context ctxt, Intent i) { | |
getLock(ctxt).acquire(); | |
ctxt.startService(i); | |
} | |
public static void sendWakefulWork(Context ctxt, Class clsService) { | |
sendWakefulWork(ctxt, new Intent(ctxt, clsService)); | |
} | |
public WakefulIntentService(String name) { | |
super(name); | |
setIntentRedelivery(true); | |
} | |
@Override | |
public void onStart(Intent intent, int startId) { | |
if (!getLock(this).isHeld()) { // fail-safe for crash restart | |
getLock(this).acquire(); | |
} | |
super.onStart(intent, startId); | |
} | |
@Override | |
public int onStartCommand(Intent intent, int flags, int startId) { | |
if (!getLock(this).isHeld()) { // fail-safe for crash restart | |
getLock(this).acquire(); | |
} | |
super.onStart(intent, startId); | |
return(START_REDELIVER_INTENT); | |
} | |
@Override | |
final protected void onHandleIntent(Intent intent) { | |
try { | |
doWakefulWork(intent); | |
} | |
finally { | |
getLock(this).release(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment