/* * Copyright (C) 2019 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.wifi; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.SystemApi; import android.net.MacAddress; import android.os.Parcel; import android.os.Parcelable; import android.util.Log; import java.util.Objects; /** @hide */ @SystemApi public final class WifiClient implements Parcelable { private static final String TAG = "WifiClient"; private final MacAddress mMacAddress; /** The identifier of the AP instance which the client connected. */ private final String mApInstanceIdentifier; /** * The mac address of this client. */ @NonNull public MacAddress getMacAddress() { return mMacAddress; } /** * Get AP instance identifier. * * The AP instance identifier is a unique identity which can be used to * associate the {@link SoftApInfo} to a specific {@link WifiClient} * - see {@link SoftApInfo#getApInstanceIdentifier()} * @hide */ @NonNull public String getApInstanceIdentifier() { return mApInstanceIdentifier; } private WifiClient(Parcel in) { mMacAddress = in.readParcelable(null); mApInstanceIdentifier = in.readString(); } /** @hide */ public WifiClient(@NonNull MacAddress macAddress, @NonNull String apInstanceIdentifier) { if (macAddress == null) { Log.wtf(TAG, "Null MacAddress provided"); this.mMacAddress = WifiManager.ALL_ZEROS_MAC_ADDRESS; } else { this.mMacAddress = macAddress; } this.mApInstanceIdentifier = apInstanceIdentifier; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(@NonNull Parcel dest, int flags) { dest.writeParcelable(mMacAddress, flags); dest.writeString(mApInstanceIdentifier); } @NonNull public static final Creator CREATOR = new Creator() { public WifiClient createFromParcel(Parcel in) { return new WifiClient(in); } public WifiClient[] newArray(int size) { return new WifiClient[size]; } }; @NonNull @Override public String toString() { return "WifiClient{" + "mMacAddress=" + mMacAddress + "mApInstanceIdentifier=" + mApInstanceIdentifier + '}'; } @Override public boolean equals(@Nullable Object o) { if (this == o) return true; if (!(o instanceof WifiClient)) return false; WifiClient client = (WifiClient) o; return Objects.equals(mMacAddress, client.mMacAddress) && mApInstanceIdentifier.equals(client.mApInstanceIdentifier); } @Override public int hashCode() { return Objects.hash(mMacAddress, mApInstanceIdentifier); } }