All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.cssxsh.bilibili.Load.kt Maven / Gradle / Ivy

The newest version!
package xyz.cssxsh.bilibili

import java.time.*
import kotlin.properties.*

internal fun timestamp(sec: Long) = OffsetDateTime.ofInstant(Instant.ofEpochSecond(sec), ZoneOffset.systemDefault())

/**
 * 2017-07-01 00:00:00
 */
private const val DYNAMIC_START = 1498838400L

internal fun dynamictime(id: Long): Long = (id shr 32) + DYNAMIC_START

internal inline fun  reflect() = ReadOnlyProperty { thisRef, property ->
    thisRef::class.java.getDeclaredField(property.name).apply { isAccessible = true }.get(thisRef) as R
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy