Sha256: 72eb29f0dafa758a5f5db724ec550d9e61e10de5afc9e2a226ab820482640b84

Contents?: true

Size: 1.41 KB

Versions: 17

Compression:

Stored size: 1.41 KB

Contents

#  Copyright 2023. 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 "couchbase/transcoder_flags"

module Couchbase
  class RawBinaryTranscoder
    # @param [String] document
    # @return [Array<String, Integer>] pair of encoded document and flags
    def encode(document)
      raise Error::EncodingFailure, "Only binary data supported by RawBinaryTranscoder" unless document.is_a?(String)

      [document, TranscoderFlags.new(format: :binary).encode]
    end

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

      blob
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
couchbase-3.5.1 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.1-x86_64-linux lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.1-x86_64-darwin-20 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.1-arm64-darwin-22 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.1-x86_64-linux-musl lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.0-arm64-darwin-23 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.0 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.0-x86_64-darwin-20 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.0-arm64-darwin-22 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.0-x86_64-linux-musl lib/couchbase/raw_binary_transcoder.rb
couchbase-3.5.0-x86_64-linux lib/couchbase/raw_binary_transcoder.rb
couchbase-3.4.5 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.4.5-arm64-darwin-20 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.4.4 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.4.4-arm64-darwin-20 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.4.3 lib/couchbase/raw_binary_transcoder.rb
couchbase-3.4.3-arm64-darwin-20 lib/couchbase/raw_binary_transcoder.rb