WakefulBroadcastReceiver.java
1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package android.support.v4.content;
import android.content.BroadcastReceiver;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.os.PowerManager;
import android.os.PowerManager.WakeLock;
import android.util.Log;
import android.util.SparseArray;
public abstract class WakefulBroadcastReceiver
extends BroadcastReceiver
{
private static final SparseArray<PowerManager.WakeLock> a = new SparseArray();
private static int b = 1;
public static boolean completeWakefulIntent(Intent arg0)
{
int i = ???.getIntExtra("android.support.content.wakelockid", 0);
if (i == 0) {
return false;
}
synchronized (a)
{
PowerManager.WakeLock localWakeLock = (PowerManager.WakeLock)a.get(i);
if (localWakeLock != null)
{
localWakeLock.release();
a.remove(i);
return true;
}
Log.w("WakefulBroadcastReceiver", "No active wake lock id #" + i);
return true;
}
}
public static ComponentName startWakefulService(Context paramContext, Intent paramIntent)
{
synchronized (a)
{
int i = b;
int j = b + 1;
b = j;
if (j <= 0) {
b = 1;
}
paramIntent.putExtra("android.support.content.wakelockid", i);
paramIntent = paramContext.startService(paramIntent);
if (paramIntent == null) {
return null;
}
paramContext = ((PowerManager)paramContext.getSystemService("power")).newWakeLock(1, "wake:" + paramIntent.flattenToShortString());
paramContext.setReferenceCounted(false);
paramContext.acquire(60000L);
a.put(i, paramContext);
return paramIntent;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v4/content/WakefulBroadcastReceiver.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/