I know this is going against the very nature of Scala pureconfig ... however ... Is it even feasible to implement with scala pureconfig configuration reading for this case class, so that instead of having strongly typed value( as String) for the constructor parameter "variable" to have Any type or at least String, Integer, Double, Array[Strings], Array[Integer], Array[Double].
case class Filter(
field: String,
operator: String,
variable: String // should support Int , Double , List[String], List[Int]
)
To my poor understanding, neither CoProductHint nor Custom Reader approach will work ...
By default pureconfig doesn't provide a way to read
Any
. If for a specific class you would like to readAny
then you can define a codec forAny
in the context of that class:and then you can read
Filter
unwrapped
converts aConfigValue
toAny
recursively.So the answer is yes, it if possible to tell pureconfig how to read
Any
.The reason why pureconfig doesn't provide the codec for
Any
by default is becauseAny
is the ancestor of all the classes in Scala and it's impossible to create a codec for anything (e.g. database connections). When you know that you are expecting a restricted set of types, like the ones you listed, you can wrap everything in a coproduct:and then use the default way to extract the coproduct value or a custom codec for
MySupportedType
Using a coproduct instead of
Any
limits the possible values thatvariable
can have and let the compiler help you if something is wrong with what you are doing.