Sha256: 7743dcab59431f583d259028f57454db3bcacbcd6e8b270d3050d8254f45d354
Contents?: true
Size: 1.47 KB
Versions: 14
Compression:
Stored size: 1.47 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" require "couchbase/errors" module Couchbase class RawJsonTranscoder # @param [String] document # @return [Array<String, Integer>] pair of encoded document and flags def encode(document) raise Error::EncodingFailure, "Only String and binary data supported by RawJsonTranscoder" unless document.is_a?(String) [document, TranscoderFlags.new(format: :json).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 RawJsonTranscoder" unless format == :json || format.nil? blob end end end
Version data entries
14 entries across 14 versions & 1 rubygems