All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zipkin2.codec.Encoding Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
/*
 * Copyright The OpenZipkin Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package zipkin2.codec;

import java.util.List;

// ZIPKIN3 make this not an enum as it prevents non-standard encoding, for example reporting to
// DataDog which has a message pack encoding.
public enum Encoding {
  JSON {
    /** Encoding overhead of a single element is brackets */
    @Override public int listSizeInBytes(int encodedSizeInBytes) {
      return 2 + encodedSizeInBytes;
    }

    /** Encoding overhead is brackets and a comma for each span over 1 */
    @Override public int listSizeInBytes(List values) {
      int sizeInBytes = 2; // brackets
      for (int i = 0, length = values.size(); i < length; ) {
        sizeInBytes += values.get(i++).length;
        if (i < length) sizeInBytes++;
      }
      return sizeInBytes;
    }
  },
  /**
   * The first format of Zipkin was TBinaryProtocol, big-endian thrift. It is no longer used, but
   * defined here to allow collectors to support reading old data.
   *
   * 

The message's binary data includes a list header followed by N spans serialized in * TBinaryProtocol * * @deprecated this format is deprecated in favor of json or proto3 */ @Deprecated THRIFT { /** Encoding overhead is thrift type plus 32-bit length prefix */ @Override public int listSizeInBytes(int encodedSizeInBytes) { return 5 + encodedSizeInBytes; } /** Encoding overhead is thrift type plus 32-bit length prefix */ @Override public int listSizeInBytes(List values) { int sizeInBytes = 5; for (byte[] value : values) { sizeInBytes += value.length; } return sizeInBytes; } }, /** * Repeated (type 2) fields are length-prefixed. A list is a concatenation of fields with no * additional overhead. * *

See https://developers.google.com/protocol-buffers/docs/encoding#optional */ PROTO3 { /** Returns the input as it is assumed to be length-prefixed field from a protobuf message */ @Override public int listSizeInBytes(int encodedSizeInBytes) { return encodedSizeInBytes; } /** Returns a concatenation of sizes */ @Override public int listSizeInBytes(List values) { int sizeInBytes = 0; for (int i = 0, length = values.size(); i < length; ) { sizeInBytes += values.get(i++).length; } return sizeInBytes; } }; /** Like {@link #listSizeInBytes(List)}, except for a single element. */ public abstract int listSizeInBytes(int encodedSizeInBytes); public abstract int listSizeInBytes(List values); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy