Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b7ac0d02 authored by Jason Monk's avatar Jason Monk Committed by Android (Google) Code Review
Browse files

Merge "Fix ProxyHandler to only run when needed" into klp-dev

parents 841cd860 433ba46f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -6,7 +6,6 @@
    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:persistent="true"
        android:label="@string/app_label"
        android:process="com.android.proxyhandler">

+7 −3
Original line number Diff line number Diff line
@@ -24,24 +24,28 @@ public class ProxyService extends Service {
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        if (intent != null) {
            handleCommand(intent);
            if (handleCommand(intent)) {
                return START_REDELIVER_INTENT;
            }
        return START_STICKY;
        }
        return START_NOT_STICKY;
    }

    private void handleCommand(Intent intent) {
    private boolean handleCommand(Intent intent) {
        Bundle bundle = intent.getExtras();
        ProxyProperties proxy = null;
        if ((bundle != null) && bundle.containsKey(Proxy.EXTRA_PROXY_INFO)) {
            proxy = bundle.getParcelable(Proxy.EXTRA_PROXY_INFO);
            if ((proxy != null) && !TextUtils.isEmpty(proxy.getPacFileUrl())) {
                startProxy(proxy);
                return true;
            } else {
                stopSelf();
            }
        } else {
            stopSelf();
        }
        return false;
    }


+10 −3
Original line number Diff line number Diff line
@@ -4,7 +4,9 @@ import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.net.Proxy;
import android.net.ProxyProperties;
import android.os.Bundle;
import android.text.TextUtils;

public class ProxyServiceReceiver extends BroadcastReceiver {

@@ -12,11 +14,16 @@ public class ProxyServiceReceiver extends BroadcastReceiver {
    public void onReceive(Context context, Intent intent) {
        Intent service = new Intent(context, ProxyService.class);
        Bundle bundle = intent.getExtras();
        ProxyProperties proxy = null;
        if (bundle != null) {
            service.putExtra(Proxy.EXTRA_PROXY_INFO,
                    bundle.getParcelable(Proxy.EXTRA_PROXY_INFO));
            proxy = bundle.getParcelable(Proxy.EXTRA_PROXY_INFO);
            service.putExtra(Proxy.EXTRA_PROXY_INFO, proxy);
        }
        if ((proxy != null) && (!TextUtils.isEmpty(proxy.getPacFileUrl()))) {
            context.startService(service);
        } else {
            context.stopService(service);
        }
    }

}