使用OkHttp时是否可以节省带宽?

时间:2018-06-18 15:38:27

标签: android okhttp okhttp3 android-networking

使用OkHttp来限制带宽是否可行? (可能使用网络拦截器。)

1 个答案:

答案 0 :(得分:2)

您可以通过两种方式使其工作:

  1. 手动发送请求并读取流,并在此处读取时进行调节。
  2. 添加拦截器。

使用OkHttp最好的方法是拦截器。还有一些简单的步骤:

  1. 继承Interceptor接口。
  2. 继承ResponseBody类。
  3. 在自定义ResponceBody override fun source(): BufferedSource中,需要返回BandwidthSource的缓冲区。

BandwidthSource示例:

class BandwidthSource(
    source: Source,
    private val bandwidthLimit: Int
) : ForwardingSource(source) {

    private var time = getSeconds()

    override fun read(sink: Buffer, byteCount: Long): Long {
        val read = super.read(sink, byteCount)
        throttle(read)
        return read
    }

    private fun throttle(byteCount: Long) {
        val bitsCount = byteCount * BITS_IN_BYTE
        val currentTime = getSeconds()
        val timeDiff = currentTime - time
        if (timeDiff == 0L) {
            return
        }
        val kbps = bitsCount / timeDiff
        if (kbps > bandwidthLimit) {
            val times = (kbps / bandwidthLimit)
            if (times > 0) {
                runBlocking { delay(TimeUnit.SECONDS.toMillis(times)) }
            }
        }
        time = currentTime
    }

    private fun getSeconds(): Long {
        return TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis())
    }
}