Class: Groonga::Command::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga/command/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, pair_arguments, ordered_arguments = []) ⇒ Base

Returns a new instance of Base.



44
45
46
47
48
49
# File 'lib/groonga/command/base.rb', line 44

def initialize(name, pair_arguments, ordered_arguments=[])
  @name = name
  @arguments = construct_arguments(pair_arguments, ordered_arguments)
  @original_format = nil
  @original_source = nil
end

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



42
43
44
# File 'lib/groonga/command/base.rb', line 42

def arguments
  @arguments
end

#nameObject (readonly)

Returns the value of attribute name.



42
43
44
# File 'lib/groonga/command/base.rb', line 42

def name
  @name
end

#original_formatObject

Returns the value of attribute original_format.



43
44
45
# File 'lib/groonga/command/base.rb', line 43

def original_format
  @original_format
end

#original_sourceObject

Returns the value of attribute original_source.



43
44
45
# File 'lib/groonga/command/base.rb', line 43

def original_source
  @original_source
end

Class Method Details

.parameter_namesObject



37
38
39
# File 'lib/groonga/command/base.rb', line 37

def parameter_names
  []
end

Instance Method Details

#==(other) ⇒ Object



63
64
65
66
67
# File 'lib/groonga/command/base.rb', line 63

def ==(other)
  other.is_a?(self.class) and
    @name == other.name and
    @arguments == other.arguments
end

#[](name) ⇒ Object



51
52
53
# File 'lib/groonga/command/base.rb', line 51

def [](name)
  @arguments[normalize_name(name)]
end

#[]=(name, value) ⇒ Object



55
56
57
# File 'lib/groonga/command/base.rb', line 55

def []=(name, value)
  @arguments[normalize_name(name)] = value
end

#command_format?Boolean

Returns:

  • (Boolean)


73
74
75
# File 'lib/groonga/command/base.rb', line 73

def command_format?
  @original_format == :command
end

#has_key?(name) ⇒ Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/groonga/command/base.rb', line 59

def has_key?(name)
  @arguments.has_key?(normalize_name(name))
end

#output_typeObject



77
78
79
# File 'lib/groonga/command/base.rb', line 77

def output_type
  (self[:output_type] || :json).to_sym
end

#to_command_formatObject



85
86
87
# File 'lib/groonga/command/base.rb', line 85

def to_command_format
  Format::Command.new(@name, @arguments).command_line
end

#to_uri_formatObject



81
82
83
# File 'lib/groonga/command/base.rb', line 81

def to_uri_format
  Format::URI.new(@name, @arguments).path
end

#uri_format?Boolean

Returns:

  • (Boolean)


69
70
71
# File 'lib/groonga/command/base.rb', line 69

def uri_format?
  @original_format == :uri
end