mirror of
https://codeberg.org/moonleay/Gimble.git
synced 2024-11-23 23:32:11 +00:00
feat: improved loading and saving logic, made Json loader ignore unknown keys
Signed-off-by: moonleay <contact@moonleay.net>
This commit is contained in:
parent
302f486f1c
commit
7325798098
1 changed files with 25 additions and 19 deletions
|
@ -30,27 +30,30 @@ class ClientConfigHolder(private val path: Path) {
|
|||
private set
|
||||
|
||||
init {
|
||||
config = load()
|
||||
this.config = load()
|
||||
}
|
||||
|
||||
fun updateConfig(new: GimbalClientConfig) {
|
||||
config = new
|
||||
save(config)
|
||||
this.config = new
|
||||
this.save(config)
|
||||
}
|
||||
|
||||
@OptIn(ExperimentalSerializationApi::class)
|
||||
fun load(): GimbalClientConfig {
|
||||
if (!path.isReadable())
|
||||
save(GimbalClientConfig())
|
||||
return path.inputStream().use {
|
||||
Json.decodeFromStream(it)
|
||||
val iStream = path.inputStream()
|
||||
val gimbalClientConfig: GimbalClientConfig = iStream.use {
|
||||
Json {
|
||||
ignoreUnknownKeys = true
|
||||
}.decodeFromStream<GimbalClientConfig>(it)
|
||||
}
|
||||
iStream.close()
|
||||
return gimbalClientConfig
|
||||
}
|
||||
|
||||
// TODO: Support incomplete config files
|
||||
@OptIn(ExperimentalSerializationApi::class)
|
||||
fun save(conf: GimbalClientConfig) {
|
||||
if (!path.isWritable()) {
|
||||
if (!path.parent.exists()) {
|
||||
path.parent.createDirectory()
|
||||
}
|
||||
|
@ -62,10 +65,13 @@ class ClientConfigHolder(private val path: Path) {
|
|||
if (!path.isWritable()) {
|
||||
throw Exception("Path (${path.pathString}) exists, but is not writable.")
|
||||
}
|
||||
val oStream = path.outputStream()
|
||||
oStream.use {
|
||||
Json {
|
||||
ignoreUnknownKeys = true
|
||||
}.encodeToStream<GimbalClientConfig>(conf, it)
|
||||
}
|
||||
path.outputStream().use {
|
||||
Json.encodeToStream(conf, it)
|
||||
}
|
||||
oStream.close()
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue