Sha256: e1f1fc8f03a21b65247dc5483350fc553673123477111426e1e54c522e2564e3

Contents?: true

Size: 1.51 KB

Versions: 6

Compression:

Stored size: 1.51 KB

Contents

# Author:: Mike Evans <mike@urlgonomics.com>
# Copyright:: 2013 Urlgonomics LLC.
# License:: Apache License, Version 2.0
#
# 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 Couchbase::Operations
  module Utils

    private

    def validate_key(key)
      if key_prefix
        "#{key_prefix}key"
      else
        key.to_s
      end
    end

    def extract_options_hash(args)
      if args.size > 1 && args.last.respond_to?(:to_hash)
        args.pop
      else
        {}
      end
    end

    def sync_block_error
      raise ArgumentError, "synchronous mode doesn't support callbacks"
    end

    def not_found_error(error, options = {})
      if error
        if options.key?(:quiet)
          raise Couchbase::Error::NotFound.new if !options[:quiet]
        elsif !quiet?
          raise Couchbase::Error::NotFound.new
        end
      end
    end

    def future_cas(future)
      future.get && future.getCas
    rescue Java::JavaLang::UnsupportedOperationException
      # TODO: don't return fake cas
      1
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
couchbase-jruby-client-0.1.7-java lib/couchbase/operations/utils.rb
couchbase-jruby-client-0.1.6-java lib/couchbase/operations/utils.rb
couchbase-jruby-client-0.1.5-java lib/couchbase/operations/utils.rb
couchbase-jruby-client-0.1.4 lib/couchbase/operations/utils.rb
couchbase-jruby-client-0.1.3 lib/couchbase/operations/utils.rb
couchbase-jruby-client-0.1.2 lib/couchbase/operations/utils.rb