aboutsummaryrefslogtreecommitdiff
path: root/kamon-testkit/src/main/scala/kamon/testkit/SimpleStringCodec.scala
blob: f1d8cb144e5120138fa4acdc557546d2699c0f8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package kamon.testkit

import java.nio.ByteBuffer

import kamon.context.{Codecs, Context, TextMap}

object SimpleStringCodec {
  final class Headers extends Codecs.ForEntry[TextMap] {
    private val dataKey = "X-String-Value"

    override def encode(context: Context): TextMap = {
      val textMap = TextMap.Default()
      context.get(ContextTesting.StringBroadcastKey).foreach { value =>
        textMap.put(dataKey, value)
      }

      textMap
    }

    override def decode(carrier: TextMap, context: Context): Context = {
      carrier.get(dataKey) match {
        case value @ Some(_) => context.withKey(ContextTesting.StringBroadcastKey, value)
        case None            => context
      }
    }
  }

  final class Binary extends Codecs.ForEntry[ByteBuffer] {
    val emptyBuffer: ByteBuffer = ByteBuffer.allocate(0)

    override def encode(context: Context): ByteBuffer = {
      context.get(ContextTesting.StringBroadcastKey) match {
        case Some(value)  => ByteBuffer.wrap(value.getBytes)
        case None         => emptyBuffer
      }
    }

    override def decode(carrier: ByteBuffer, context: Context): Context = {
      context.withKey(ContextTesting.StringBroadcastKey, Some(new String(carrier.array())))
    }
  }
}