blob: cbea1881ac052d151acb279c560bce82fe2972fc [file] [log] [blame]
Jason Monkda205a72013-08-21 15:57:30 -04001/**
2 * Copyright (c) 2013, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Jason Monk602b2322013-07-03 17:04:33 -040016package com.android.proxyhandler;
17
18import android.app.Service;
19import android.content.Intent;
Jason Monk602b2322013-07-03 17:04:33 -040020import android.os.IBinder;
Jason Monk6f8a68f2013-08-23 19:21:25 -040021import android.os.RemoteException;
Jason Monk602b2322013-07-03 17:04:33 -040022
Jason Monk6f8a68f2013-08-23 19:21:25 -040023import com.android.net.IProxyCallback;
24import com.android.net.IProxyPortListener;
25
Jason Monk602b2322013-07-03 17:04:33 -040026/**
27 * @hide
28 */
29public class ProxyService extends Service {
30
31 private static ProxyServer server = null;
32
33 /** Keep these values up-to-date with PacManager.java */
34 public static final String KEY_PROXY = "keyProxy";
35 public static final String HOST = "localhost";
Jason Monkda205a72013-08-21 15:57:30 -040036 // STOPSHIP This being a static port means it can be hijacked by other apps.
Jason Monk602b2322013-07-03 17:04:33 -040037 public static final int PORT = 8182;
38 public static final String EXCL_LIST = "";
39
40 @Override
Jason Monkda205a72013-08-21 15:57:30 -040041 public void onCreate() {
42 super.onCreate();
Jason Monk602b2322013-07-03 17:04:33 -040043 if (server == null) {
44 server = new ProxyServer();
45 server.startServer();
46 }
Jason Monk602b2322013-07-03 17:04:33 -040047 }
48
49 @Override
50 public void onDestroy() {
51 if (server != null) {
52 server.stopServer();
53 server = null;
54 }
55 }
56
57 @Override
58 public IBinder onBind(Intent intent) {
Jason Monk6f8a68f2013-08-23 19:21:25 -040059 return new IProxyCallback.Stub() {
60 @Override
61 public void getProxyPort(IBinder callback) throws RemoteException {
62 if (server != null) {
63 IProxyPortListener portListener = IProxyPortListener.Stub.asInterface(callback);
64 if (portListener != null) {
65 server.setCallback(portListener);
66 }
67 }
68 }
69 };
Jason Monk602b2322013-07-03 17:04:33 -040070 }
71}