Merge "Support putting one Ethernet interface in server mode." am: e7e38501e8 am: 88bc15c4bc

Change-Id: Ifc0f80406038051afe179bf38a4583ab95ab630c
This commit is contained in:
Automerger Merge Worker
2020-01-28 08:52:56 +00:00
3 changed files with 103 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
package android.net; package android.net;
import android.annotation.NonNull;
import android.annotation.SystemService; import android.annotation.SystemService;
import android.compat.annotation.UnsupportedAppUsage; import android.compat.annotation.UnsupportedAppUsage;
import android.content.Context; import android.content.Context;
@@ -24,6 +25,7 @@ import android.os.Message;
import android.os.RemoteException; import android.os.RemoteException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Objects;
/** /**
* A class representing the IP configuration of the Ethernet network. * A class representing the IP configuration of the Ethernet network.
@@ -37,7 +39,7 @@ public class EthernetManager {
private final Context mContext; private final Context mContext;
private final IEthernetManager mService; private final IEthernetManager mService;
private final Handler mHandler = new Handler() { private final Handler mHandler = new Handler(ConnectivityThread.getInstanceLooper()) {
@Override @Override
public void handleMessage(Message msg) { public void handleMessage(Message msg) {
if (msg.what == MSG_AVAILABILITY_CHANGED) { if (msg.what == MSG_AVAILABILITY_CHANGED) {
@@ -180,4 +182,78 @@ public class EthernetManager {
} }
} }
} }
/**
* A request for a tethered interface.
*/
public static class TetheredInterfaceRequest {
private final IEthernetManager mService;
private final ITetheredInterfaceCallback mCb;
private TetheredInterfaceRequest(@NonNull IEthernetManager service,
@NonNull ITetheredInterfaceCallback cb) {
this.mService = service;
this.mCb = cb;
}
/**
* Release the request, causing the interface to revert back from tethering mode if there
* is no other requestor.
*/
public void release() {
try {
mService.releaseTetheredInterface(mCb);
} catch (RemoteException e) {
e.rethrowFromSystemServer();
}
}
}
/**
* Callback for {@link #requestTetheredInterface(TetheredInterfaceCallback)}.
*/
public interface TetheredInterfaceCallback {
/**
* Called when the tethered interface is available.
* @param iface The name of the interface.
*/
void onAvailable(@NonNull String iface);
/**
* Called when the tethered interface is now unavailable.
*/
void onUnavailable();
}
/**
* Request a tethered interface in tethering mode.
*
* <p>When this method is called and there is at least one ethernet interface available, the
* system will designate one to act as a tethered interface. If there is already a tethered
* interface, the existing interface will be used.
* @param callback A callback to be called once the request has been fulfilled.
*/
@NonNull
public TetheredInterfaceRequest requestTetheredInterface(
@NonNull TetheredInterfaceCallback callback) {
Objects.requireNonNull(callback, "Callback must be non-null");
final ITetheredInterfaceCallback cbInternal = new ITetheredInterfaceCallback.Stub() {
@Override
public void onAvailable(String iface) {
callback.onAvailable(iface);
}
@Override
public void onUnavailable() {
callback.onUnavailable();
}
};
try {
mService.requestTetheredInterface(cbInternal);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
return new TetheredInterfaceRequest(mService, cbInternal);
}
} }

View File

@@ -18,6 +18,7 @@ package android.net;
import android.net.IpConfiguration; import android.net.IpConfiguration;
import android.net.IEthernetServiceListener; import android.net.IEthernetServiceListener;
import android.net.ITetheredInterfaceCallback;
/** /**
* Interface that answers queries about, and allows changing * Interface that answers queries about, and allows changing
@@ -32,4 +33,6 @@ interface IEthernetManager
boolean isAvailable(String iface); boolean isAvailable(String iface);
void addListener(in IEthernetServiceListener listener); void addListener(in IEthernetServiceListener listener);
void removeListener(in IEthernetServiceListener listener); void removeListener(in IEthernetServiceListener listener);
void requestTetheredInterface(in ITetheredInterfaceCallback callback);
void releaseTetheredInterface(in ITetheredInterfaceCallback callback);
} }

View File

@@ -0,0 +1,23 @@
/*
* Copyright (C) 2020 The Android Open Source Project
*
* 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 android.net;
/** @hide */
interface ITetheredInterfaceCallback {
void onAvailable(in String iface);
void onUnavailable();
}