wvlet.airframe.launcher.StringTreeCodec.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of airframe-launcher_3 Show documentation
Show all versions of airframe-launcher_3 Show documentation
Command-line program launcher
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package wvlet.airframe.launcher
import wvlet.airframe.codec.{MessageCodec, MessageContext}
import wvlet.airframe.msgpack.spi.{Packer, Unpacker}
/**
*/
object StringTreeCodec extends MessageCodec[StringTree] {
override def pack(p: Packer, v: StringTree): Unit = {
v match {
case StringTree.EmptyNode =>
// For nested objects, we should use an empty Map to use default values
p.packMapHeader(0)
case StringTree.Node(child) => {
p.packMapHeader(child.size)
for ((key, x) <- child) {
p.packString(key.toString)
pack(p, x)
}
}
case StringTree.Leaf(v) =>
p.packString(v.toString)
case StringTree.SeqLeaf(elems) =>
p.packArrayHeader(elems.length)
for (x <- elems) {
pack(p, x)
}
}
}
override def unpack(u: Unpacker, v: MessageContext): Unit = ???
}