gpt4 book ai didi

scala - 将类型安全配置解析为案例类

转载 作者:行者123 更新时间:2023-12-04 03:07:09 25 4
gpt4 key购买 nike

什么是适合解析的案例类:

input {
foo {
bar = "a"
baz = "b"
}

bar {
bar = "a"
baz = "c"
other= "foo"
}
}

来自 https://github.com/kxbmap/configs 的类型安全 HOCON 配置?

如何通过 ADT 读取它?查看他们的示例,我不确定如何构建类层次结构,其中某些类具有不同数量的字段 - 但可以继承一些。

sealed trait Tree
case class Branch(value: Int, left: Tree, right: Tree) extends Tree
case object Leaf extends Tree

我的样本在这里:

import at.tmobile.bigdata.utils.config.ConfigurationException
import com.typesafe.config.ConfigFactory
import configs.syntax._

val txt =
"""
|input {
| foo {
| bar = "a"
| baz = "b"
| type = "foo"
| }
|
| bar {
| bar = "a"
| baz = "c"
| other= "foo"
| type="bar"
| }
|}
""".stripMargin

val config = ConfigFactory.parseString(txt)
config

sealed trait Input{ def bar: String
def baz:String }
case class Foo(bar: String, baz: String) extends Input
case class Bar(bar:String, baz:String, other:String)extends Input

config.extract[Input].toEither match {
case Right(s) => s
case Left(l) =>
throw new ConfigurationException(
s"Failed to start. There is a problem with the configuration: " +
s"${l.messages.foreach(println)}"
)
}

失败:

No configuration setting found for key 'type'

最佳答案

如果 input 配置总是由 2 字段组成(如示例 txt 值;即只是 foobar),那么你可以这样做:

val txt =
"""
|input {
| foo {
| bar = "a"
| baz = "b"
| type = "foo"
| }
|
| bar {
| bar = "a"
| baz = "c"
| other = "foo"
| type = "bar"
| }
|}
""".stripMargin

sealed trait Input {
def bar: String
def baz: String
}
case class Foo(bar: String, baz: String) extends Input
case class Bar(bar: String, baz: String, other:String) extends Input

case class Inputs(foo: Foo, bar: Bar)

val result = ConfigFactory.parseString(txt).get[Inputs]("input")
println(result)

输出:

Success(Inputs(Foo(a,b),Bar(a,c,foo)))

--

如果您打算设置通用输入的序列,那么您应该在配置中反射(reflect)这一点并解析Seq[Input]:

val txt =
"""
|inputs = [
| {
| type = "Foo"
| bar = "a"
| baz = "b"
| }
|
| {
| type = "Bar"
| bar = "a"
| baz = "c"
| other= "foo"
| }
|]
""".stripMargin

sealed trait Input {
def bar: String
def baz: String
}
case class Foo(bar: String, baz: String) extends Input
case class Bar(bar: String, baz: String, other: String) extends Input

val result = ConfigFactory.parseString(txt).get[Seq[Input]]("inputs")
println(result)

输出:

Success(Vector(Foo(a,b), Bar(a,c,foo)))

关于scala - 将类型安全配置解析为案例类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47895660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com