io.github.serpro69.kfaker.tech.provider.Computer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-faker-tech Show documentation
Show all versions of kotlin-faker-tech Show documentation
Generate realistically looking fake data such as names, addresses, banking details, and many more, that can be used for testing and data anonymization purposes.
The newest version!
package io.github.serpro69.kfaker.tech.provider
import io.github.serpro69.kfaker.FakerService
import io.github.serpro69.kfaker.dictionary.YamlCategory
import io.github.serpro69.kfaker.provider.FakeDataProvider
import io.github.serpro69.kfaker.provider.YamlFakeDataProvider
import io.github.serpro69.kfaker.provider.unique.LocalUniqueDataProvider
import io.github.serpro69.kfaker.provider.unique.UniqueProviderDelegate
/**
* [FakeDataProvider] implementation for [YamlCategory.ANCIENT] category.
*/
@Suppress("unused")
class Computer internal constructor(fakerService: FakerService) : YamlFakeDataProvider(fakerService) {
override val yamlCategory = YamlCategory.COMPUTER
override val localUniqueDataProvider = LocalUniqueDataProvider()
override val unique by UniqueProviderDelegate(localUniqueDataProvider, fakerService)
init {
fakerService.load(yamlCategory)
}
val os by lazy { ComputerOS(fakerService) }
fun type() = resolve("type")
fun platform() = resolve("platform")
}
@Suppress("unused")
class ComputerOS internal constructor(fakerService: FakerService) : YamlFakeDataProvider(fakerService) {
override val yamlCategory = YamlCategory.COMPUTER
override val localUniqueDataProvider = LocalUniqueDataProvider()
override val unique by UniqueProviderDelegate(localUniqueDataProvider, fakerService)
init {
fakerService.load(yamlCategory)
}
fun linux() = resolve("os", "linux")
fun openBsd() = resolve("os", "openbsd")
fun templeOS() = resolve("os", "templeos")
fun plan9() = resolve("os", "plan 9")
fun macOS() = resolve("os", "macos")
fun windows() = resolve("os", "windows")
}