Class: Neo4j::Core::QueryClauses::Clause

Inherits:
Object
  • Object
show all
Defined in:
lib/neo4j-core/query_clauses.rb

Constant Summary collapse

UNDERSCORE =
'_'
COMMA_SPACE =
', '
AND =
' AND '

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arg, params, options = {}) ⇒ Clause

Returns a new instance of Clause.



20
21
22
23
24
25
# File 'lib/neo4j-core/query_clauses.rb', line 20

def initialize(arg, params, options = {})
  @arg = arg
  @options = options
  @params = params
  @param_vars_added = []
end

Instance Attribute Details

#argObject

Returns the value of attribute arg.



17
18
19
# File 'lib/neo4j-core/query_clauses.rb', line 17

def arg
  @arg
end

#optionsObject (readonly)

Returns the value of attribute options.



18
19
20
# File 'lib/neo4j-core/query_clauses.rb', line 18

def options
  @options
end

#param_vars_addedObject (readonly)

Returns the value of attribute param_vars_added.



18
19
20
# File 'lib/neo4j-core/query_clauses.rb', line 18

def param_vars_added
  @param_vars_added
end

#paramsObject

Returns the value of attribute params.



17
18
19
# File 'lib/neo4j-core/query_clauses.rb', line 17

def params
  @params
end

Class Method Details

.clause_colorObject



162
163
164
# File 'lib/neo4j-core/query_clauses.rb', line 162

def clause_color
  ANSI::CYAN
end

.clause_joinObject



158
159
160
# File 'lib/neo4j-core/query_clauses.rb', line 158

def clause_join
  ''
end

.clause_string(clauses, pretty) ⇒ Object



150
151
152
153
154
155
156
# File 'lib/neo4j-core/query_clauses.rb', line 150

def clause_string(clauses, pretty)
  join_string = clause_join + (pretty ? "\n  " : '')

  strings = clause_strings(clauses)
  string = ((pretty && strings.size > 1) ? "\n  " : '')
  string + strings.join(join_string).strip
end

.from_arg(arg, params, options = {}) ⇒ Object



134
135
136
# File 'lib/neo4j-core/query_clauses.rb', line 134

def from_arg(arg, params, options = {})
  new(arg, params, options) if !arg.respond_to?(:empty?) || !arg.empty?
end

.from_args(args, params, options = {}) ⇒ Object



129
130
131
132
# File 'lib/neo4j-core/query_clauses.rb', line 129

def from_args(args, params, options = {})
  args.flatten!
  args.map { |arg| from_arg(arg, params, options) }.tap(&:compact!)
end

.keywordObject



121
122
123
# File 'lib/neo4j-core/query_clauses.rb', line 121

def keyword
  self::KEYWORD
end

.keyword_downcaseObject



125
126
127
# File 'lib/neo4j-core/query_clauses.rb', line 125

def keyword_downcase
  keyword.downcase
end

.paramaterize_key!(key) ⇒ Object



167
168
169
170
# File 'lib/neo4j-core/query_clauses.rb', line 167

def self.paramaterize_key!(key)
  key.tr_s!('^a-zA-Z0-9', UNDERSCORE)
  key.gsub!(/^_+|_+$/, '')
end

.to_cypher(clauses, pretty = false) ⇒ Object



138
139
140
141
142
143
144
145
146
147
148
# File 'lib/neo4j-core/query_clauses.rb', line 138

def to_cypher(clauses, pretty = false)
  string = clause_string(clauses, pretty)

  final_keyword = if pretty
                    "#{clause_color}#{keyword}#{ANSI::CLEAR}"
                  else
                    keyword
                  end

  "#{final_keyword} #{string}" if string.size > 0
end

Instance Method Details

#_nested_value_hash?(value) ⇒ Boolean

Returns:

  • (Boolean)


105
106
107
# File 'lib/neo4j-core/query_clauses.rb', line 105

def _nested_value_hash?(value)
  value.values.any? { |v| v.is_a?(Hash) }
end

#_use_key_for_var?(value, prefer) ⇒ Boolean

Returns:

  • (Boolean)


101
102
103
# File 'lib/neo4j-core/query_clauses.rb', line 101

def _use_key_for_var?(value, prefer)
  _nested_value_hash?(value) || prefer == :var
end

#add_param(key, value) ⇒ Object



172
173
174
175
# File 'lib/neo4j-core/query_clauses.rb', line 172

def add_param(key, value)
  @param_vars_added << key
  @params.add_param(key, value)
end

#add_params(keys_and_values) ⇒ Object



177
178
179
180
# File 'lib/neo4j-core/query_clauses.rb', line 177

def add_params(keys_and_values)
  @param_vars_added += keys_and_values.keys
  @params.add_params(keys_and_values)
end

#attributes_from_key_and_value(_key, value) ⇒ Object



110
111
112
113
114
115
116
117
118
# File 'lib/neo4j-core/query_clauses.rb', line 110

def attributes_from_key_and_value(_key, value)
  return nil unless value.is_a?(Hash)

  if value.values.map(&:class) == [Hash]
    value.first[1]
  else
    value
  end
end

#from_hash(value) ⇒ Object



43
44
45
46
47
48
49
50
51
# File 'lib/neo4j-core/query_clauses.rb', line 43

def from_hash(value)
  if self.respond_to?(:from_key_and_value)
    value.map do |k, v|
      from_key_and_value k, v
    end
  else
    fail ArgError
  end
end

#from_string(value) ⇒ Object



53
54
55
# File 'lib/neo4j-core/query_clauses.rb', line 53

def from_string(value)
  value
end

#label_from_key_and_value(key, value, prefer = :var) ⇒ Object



86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/neo4j-core/query_clauses.rb', line 86

def label_from_key_and_value(key, value, prefer = :var)
  case value
  when String, Symbol, Array, NilClass then value
  when Class, Module then value.name
  when Hash
    if value.values.map(&:class) == [Hash]
      value.first.first
    else
      key if !_use_key_for_var?(value, prefer)
    end
  else
    fail ArgError, value
  end
end

#node_from_key_and_value(key, value, options = {}) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/neo4j-core/query_clauses.rb', line 57

def node_from_key_and_value(key, value, options = {})
  prefer = options[:prefer] || :var
  var = var_from_key_and_value(key, value, prefer)
  label = label_from_key_and_value(key, value, prefer)

  attributes = attributes_from_key_and_value(key, value)

  prefix_value = value
  if value.is_a?(Hash)
    prefix_value = if value.values.any? { |v| v.is_a?(Hash) }
                     value.keys.join(UNDERSCORE)
                   end
  end

  prefix_array = [key, prefix_value].tap(&:compact!).join(UNDERSCORE)
  formatted_attributes = attributes_string(attributes, "#{prefix_array}#{UNDERSCORE}")
  "(#{var}#{format_label(label)}#{formatted_attributes})"
end

#valueObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/neo4j-core/query_clauses.rb', line 27

def value
  return @value if @value

  [String, Symbol, Integer, Hash, NilClass].each do |arg_class|
    from_method = "from_#{arg_class.name.downcase}"
    return @value = send(from_method, @arg) if @arg.is_a?(arg_class) && self.respond_to?(from_method)
  end

  fail ArgError
rescue ArgError => arg_error
  message = "Invalid argument for #{self.class.keyword}.  Full arguments: #{@arg.inspect}"
  message += " | Invalid part: #{arg_error.arg_part.inspect}" if arg_error.arg_part

  raise ArgumentError, message
end

#var_from_key_and_value(key, value, prefer = :var) ⇒ Object



76
77
78
79
80
81
82
83
84
# File 'lib/neo4j-core/query_clauses.rb', line 76

def var_from_key_and_value(key, value, prefer = :var)
  case value
  when String, Symbol, Class, Module, NilClass, Array then key
  when Hash
    key if _use_key_for_var?(value, prefer)
  else
    fail ArgError, value
  end
end