Sha256: 5421b3134d26a15d12a9025219fb6269dc0f17f65b7ef5c0738ee9c04755d980

Contents?: true

Size: 1.97 KB

Versions: 6

Compression:

Stored size: 1.97 KB

Contents

# Copyright 2017 OpenCensus Authors
#
# 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.

module OpenCensus
  module Trace
    module Formatters
      ##
      # This formatter serializes and deserializes span context according to
      # the OpenCensus' BinaryEncoding specification. See
      # [documentation](https://github.com/census-instrumentation/opencensus-specs/blob/master/encodings/BinaryEncoding.md).
      #
      class Binary
        ##
        # Internal format used to (un)pack binary data
        #
        # @private
        #
        BINARY_FORMAT = "CCH32CH16CC".freeze

        ##
        # Deserialize a trace context header into a TraceContext object.
        #
        # @param [String] binary
        # @return [TraceContextData, nil]
        #
        def deserialize binary
          data = binary.unpack(BINARY_FORMAT)
          if data[0].zero? && data[1].zero? && data[3] == 1 && data[5] == 2
            TraceContextData.new data[2], data[4], data[6]
          else
            nil
          end
        end

        ##
        # Serialize a TraceContextData object.
        #
        # @param [TraceContextData] trace_context
        # @return [String]
        #
        def serialize trace_context
          [
            0, # version
            0, # field 0
            trace_context.trace_id,
            1, # field 1
            trace_context.span_id,
            2, # field 2
            trace_context.trace_options
          ].pack(BINARY_FORMAT)
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
opencensus-0.3.1 lib/opencensus/trace/formatters/binary.rb
opencensus-0.3.0 lib/opencensus/trace/formatters/binary.rb
opencensus-0.2.2 lib/opencensus/trace/formatters/binary.rb
opencensus-0.2.1 lib/opencensus/trace/formatters/binary.rb
opencensus-0.2.0 lib/opencensus/trace/formatters/binary.rb
opencensus-0.1.0 lib/opencensus/trace/formatters/binary.rb