Sha256: aa9c82b16874b33ed3483c090e9b5ad4377e4d9a9627e97a8afbafeca5026e26
Contents?: true
Size: 1.44 KB
Versions: 14
Compression:
Stored size: 1.44 KB
Contents
# frozen_string_literal: true # 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
14 entries across 14 versions & 1 rubygems