Sha256: 622a154d79b179dda34102dd1aa481007997c175883179e59e2c4a605661b69a

Contents?: true

Size: 1.28 KB

Versions: 8

Compression:

Stored size: 1.28 KB

Contents

module Groonga
  class Command
    @@classes = {}
    class << self
      def register_class(name, klass)
        @@classes[name] = klass
      end

      def find_class(name)
        @@classes[name]
      end
    end

    private
    def context
      @context ||= Context.instance
    end

    def writer
      @writer ||= context.writer
    end

    def query_logger
      @query_logger ||= context.query_logger
    end

    def cache_key(input)
      nil
    end

    def cache_output(key, options={})
      if key.nil?
        yield
      else
        cache = Cache.current
        cached_value = cache.fetch(key)
        if cached_value
          context.output = cached_value
          query_logger.log(:cache, ":", "cache(#{cached_value.bytesize})")
        else
          yield
          cache.update(key, context.output) if options[:update]
        end
      end
    end

    def run_internal(input)
      begin
        options = {
          :update => (input["cache"] != "no"),
        }
        cache_output(cache_key(input), options) do
          run_body(input)
        end
      rescue GroongaError => groonga_error
        context.set_groonga_error(groonga_error)
        nil
      rescue => error
        context.record_error(:command_error, error)
        nil
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rroonga-9.0.3-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb
rroonga-9.0.3-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb
rroonga-9.0.2-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb
rroonga-9.0.2-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb
rroonga-7.1.1-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb
rroonga-7.1.1-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb
rroonga-7.0.2-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb
rroonga-7.0.2-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/command.rb