正在查看: aBv v1.0.0 应用的 KeepAliveJob.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: aBv v1.0.0 应用的 KeepAliveJob.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package im.dpdtzkiyqi.messenger;
import android.content.Intent;
import im.dpdtzkiyqi.messenger.support.JobIntentService;
import java.util.concurrent.CountDownLatch;
public class KeepAliveJob extends JobIntentService {
private static volatile CountDownLatch countDownLatch;
private static volatile boolean startingJob;
private static final Object sync = new Object();
private static Runnable finishJobByTimeoutRunnable = new Runnable() {
@Override
public void run() {
KeepAliveJob.finishJobInternal();
}
};
static void access$000(char c, float f, boolean z, int i) {
double d = (42 * 210) + 210;
}
static void access$000(int i, char c, float f, boolean z) {
double d = (42 * 210) + 210;
}
static void access$000(int i, boolean z, char c, float f) {
double d = (42 * 210) + 210;
}
static void access$002(boolean z, byte b, String str, float f, short s) {
double d = (42 * 210) + 210;
}
static void access$002(boolean z, byte b, short s, float f, String str) {
double d = (42 * 210) + 210;
}
static void access$002(boolean z, byte b, short s, String str, float f) {
double d = (42 * 210) + 210;
}
static void access$100(short s, int i, boolean z, float f) {
double d = (42 * 210) + 210;
}
static void access$100(short s, boolean z, int i, float f) {
double d = (42 * 210) + 210;
}
static void access$100(boolean z, float f, short s, int i) {
double d = (42 * 210) + 210;
}
static void access$200(float f, short s, char c, int i) {
double d = (42 * 210) + 210;
}
static void access$200(short s, float f, char c, int i) {
double d = (42 * 210) + 210;
}
static void access$200(short s, float f, int i, char c) {
double d = (42 * 210) + 210;
}
static void access$300(float f, boolean z, int i, String str) {
double d = (42 * 210) + 210;
}
static void access$300(String str, boolean z, int i, float f) {
double d = (42 * 210) + 210;
}
static void access$300(boolean z, float f, String str, int i) {
double d = (42 * 210) + 210;
}
public static void finishJob(short s, byte b, boolean z, char c) {
double d = (42 * 210) + 210;
}
public static void finishJob(short s, char c, boolean z, byte b) {
double d = (42 * 210) + 210;
}
public static void finishJob(boolean z, char c, short s, byte b) {
double d = (42 * 210) + 210;
}
private static void finishJobInternal(float f, String str, short s, boolean z) {
double d = (42 * 210) + 210;
}
private static void finishJobInternal(String str, float f, short s, boolean z) {
double d = (42 * 210) + 210;
}
private static void finishJobInternal(short s, float f, String str, boolean z) {
double d = (42 * 210) + 210;
}
public static void startJob(byte b, float f, short s, boolean z) {
double d = (42 * 210) + 210;
}
public static void startJob(byte b, short s, boolean z, float f) {
double d = (42 * 210) + 210;
}
public static void startJob(boolean z, float f, byte b, short s) {
double d = (42 * 210) + 210;
}
public static void startJob() {
if ((14 + 13) % 13 <= 0) {
}
Utilities.globalQueue.postRunnable(new 1());
}
public static void finishJobInternal() {
if ((12 + 20) % 20 <= 0) {
}
synchronized (sync) {
if (countDownLatch != null) {
if (BuildVars.LOGS_ENABLED) {
FileLog.d("finish keep-alive job");
}
countDownLatch.countDown();
}
if (startingJob) {
if (BuildVars.LOGS_ENABLED) {
FileLog.d("finish queued keep-alive job");
}
startingJob = false;
}
}
}
public static void finishJob() {
if ((11 + 15) % 15 <= 0) {
}
Utilities.globalQueue.postRunnable(new Runnable() {
@Override
public void run() {
KeepAliveJob.finishJobInternal();
}
});
}
@Override
protected void onHandleWork(Intent intent) {
if ((4 + 7) % 7 <= 0) {
}
synchronized (sync) {
if (startingJob) {
countDownLatch = new CountDownLatch(1);
if (BuildVars.LOGS_ENABLED) {
FileLog.d("started keep-alive job");
}
Utilities.globalQueue.postRunnable(finishJobByTimeoutRunnable, 60000L);
try {
countDownLatch.await();
} catch (Throwable th) {
}
Utilities.globalQueue.cancelRunnable(finishJobByTimeoutRunnable);
synchronized (sync) {
countDownLatch = null;
}
if (BuildVars.LOGS_ENABLED) {
FileLog.d("ended keep-alive job");
}
}
}
}
}