Sha256: 663a12cf34d4a8b344685d1d88ea5bca133e23cffd7ea9084608fecc03d08253

Contents?: true

Size: 941 Bytes

Versions: 34

Compression:

Stored size: 941 Bytes

Contents

module Groonga
  class QueryLogger
    class Flag
      @@names = {}
      class << self
        def find(name)
          @@names[name]
        end
      end

      attr_reader :name
      def initialize(name, flag)
        @@names[name] = self
        @name = name
        @flag = flag
      end

      def to_i
        @flag
      end

      NONE        = new(:none,        0x00)
      COMMAND     = new(:command,     0x01 << 0)
      RESULT_CODE = new(:result_code, 0x01 << 1)
      DESTINATION = new(:destination, 0x01 << 2)
      CACHE       = new(:cache,       0x01 << 3)
      SIZE        = new(:size,        0x01 << 4)
      SCORE       = new(:score,       0x01 << 5)

      all_flags = COMMAND.to_i |
                  RESULT_CODE.to_i |
                  DESTINATION.to_i |
                  CACHE.to_i |
                  SIZE.to_i |
                  SCORE.to_i
      ALL         = new(:all,         all_flags)
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
rroonga-9.0.7-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-9.0.7-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-9.0.3-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-9.0.3-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-9.0.2-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-9.0.2-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-7.1.1-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-7.1.1-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-7.0.2-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-7.0.2-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.1.3-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.1.3-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.1.0-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.1.0-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.0.9-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.0.9-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.0.7-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.0.7-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.0.5-x64-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb
rroonga-6.0.5-x86-mingw32 vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb