Sha256: 29f5b4494cb7856690c0d55b8025731046dd18ea1a0b44bc256d8d44b3f6ddc1

Contents?: true

Size: 1.54 KB

Versions: 24

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

#  Copyright 2020-2021 Couchbase, Inc.
#
#  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.

require "json"

require "couchbase/transcoder_flags"

module Couchbase
  class JsonTranscoder
    # @param [Object] document
    # @return [Array<String, Integer>] pair of encoded document and flags
    def encode(document)
      raise Error::EncodingFailure, "The JsonTranscoder does not support binary data" if document.is_a?(String) && !document.valid_encoding?

      [JSON.generate(document), TranscoderFlags.new(format: :json, lower_bits: 6).encode]
    end

    # @param [String] blob string of bytes, containing encoded representation of the document
    # @param [Integer, :json] flags bit field, describing how the data encoded
    # @return [Object] decoded document
    def decode(blob, flags)
      format = TranscoderFlags.decode(flags).format
      raise Error::DecodingFailure, "Unable to decode #{format} with the JsonTranscoder" unless format == :json || format.nil?

      JSON.parse(blob) unless blob&.empty?
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
couchbase-3.5.6 lib/couchbase/json_transcoder.rb
couchbase-3.5.6-x86_64-linux-musl lib/couchbase/json_transcoder.rb
couchbase-3.5.6-x86_64-linux lib/couchbase/json_transcoder.rb
couchbase-3.5.6-x86_64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.6-arm64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.5 lib/couchbase/json_transcoder.rb
couchbase-3.5.5-arm64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.5-x86_64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.5-x86_64-linux lib/couchbase/json_transcoder.rb
couchbase-3.5.5-x86_64-linux-musl lib/couchbase/json_transcoder.rb
couchbase-3.5.4 lib/couchbase/json_transcoder.rb
couchbase-3.5.4-arm64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.4-x86_64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.4-x86_64-linux lib/couchbase/json_transcoder.rb
couchbase-3.5.4-x86_64-linux-musl lib/couchbase/json_transcoder.rb
couchbase-3.5.3-x86_64-linux-musl lib/couchbase/json_transcoder.rb
couchbase-3.5.3 lib/couchbase/json_transcoder.rb
couchbase-3.5.3-arm64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.3-x86_64-darwin lib/couchbase/json_transcoder.rb
couchbase-3.5.3-x86_64-linux lib/couchbase/json_transcoder.rb