forked from livekit/client-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add network type to websocket query (livekit#140)
- Loading branch information
Showing
5 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
livekit-android-sdk/src/main/java/io/livekit/android/stats/NetworkInfo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package io.livekit.android.stats | ||
|
||
import android.content.Context | ||
import android.net.ConnectivityManager | ||
import android.net.NetworkCapabilities | ||
import android.os.Build | ||
|
||
interface NetworkInfo { | ||
fun getNetworkType(): NetworkType | ||
} | ||
|
||
class AndroidNetworkInfo(private val context: Context) : NetworkInfo { | ||
override fun getNetworkType(): NetworkType { | ||
val connectivityManager = | ||
context.getSystemService(Context.CONNECTIVITY_SERVICE) as? ConnectivityManager ?: return NetworkType.UNKNOWN | ||
|
||
@Suppress("DEPRECATION") | ||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { | ||
val nw = connectivityManager.activeNetwork ?: return NetworkType.UNKNOWN | ||
val actNw = connectivityManager.getNetworkCapabilities(nw) ?: return NetworkType.UNKNOWN | ||
return when { | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_WIFI) -> NetworkType.WIFI | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_ETHERNET) -> NetworkType.ETHERNET | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR) -> NetworkType.CELLULAR | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_VPN) -> NetworkType.VPN | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_BLUETOOTH) -> NetworkType.BLUETOOTH | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_WIFI_AWARE) -> NetworkType.OTHER | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_LOWPAN) -> NetworkType.OTHER | ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_USB) -> NetworkType.OTHER | ||
else -> NetworkType.UNKNOWN | ||
} | ||
} else { | ||
val info = connectivityManager.activeNetworkInfo | ||
if (info == null || !info.isConnected) return NetworkType.UNKNOWN | ||
return when (info.type) { | ||
ConnectivityManager.TYPE_BLUETOOTH -> NetworkType.BLUETOOTH | ||
ConnectivityManager.TYPE_DUMMY -> NetworkType.UNKNOWN | ||
ConnectivityManager.TYPE_ETHERNET -> NetworkType.ETHERNET | ||
ConnectivityManager.TYPE_MOBILE -> NetworkType.CELLULAR | ||
ConnectivityManager.TYPE_MOBILE_DUN -> NetworkType.CELLULAR | ||
ConnectivityManager.TYPE_MOBILE_HIPRI -> NetworkType.CELLULAR | ||
ConnectivityManager.TYPE_MOBILE_MMS -> NetworkType.CELLULAR | ||
ConnectivityManager.TYPE_MOBILE_SUPL -> NetworkType.CELLULAR | ||
ConnectivityManager.TYPE_VPN -> NetworkType.VPN | ||
ConnectivityManager.TYPE_WIFI -> NetworkType.WIFI | ||
ConnectivityManager.TYPE_WIMAX -> NetworkType.CELLULAR | ||
else -> NetworkType.UNKNOWN | ||
} | ||
} | ||
} | ||
} | ||
|
||
enum class NetworkType(val protoName: String) { | ||
WIFI("wifi"), | ||
ETHERNET("ethernet"), | ||
CELLULAR("cellular"), | ||
VPN("vpn"), | ||
BLUETOOTH("bluetooth"), | ||
OTHER("other"), | ||
UNKNOWN(""), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters