Class: ActiveGraph::Core::QueryClauses::Clause
- Inherits:
-
Object
- Object
- ActiveGraph::Core::QueryClauses::Clause
show all
- Defined in:
- lib/active_graph/core/query_clauses.rb
Direct Known Subclasses
CallClause, CallSubqueryEndClause, CallSubqueryStartClause, CreateClause, DeleteClause, LimitClause, MatchClause, OrderClause, RemoveClause, ReturnClause, SetClause, SkipClause, StartClause, UnionClause, UnwindClause, UsingClause, WhereClause, WithClause
Constant Summary
collapse
- UNDERSCORE =
'_'
- COMMA_SPACE =
', '
- AND =
' AND '
- PRETTY_NEW_LINE =
"\n "
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
-
#_nested_value_hash?(value) ⇒ Boolean
-
#_use_key_for_var?(value, prefer) ⇒ Boolean
-
#add_param(key, value) ⇒ Object
-
#add_params(keys_and_values) ⇒ Object
-
#attributes_from_key_and_value(_key, value) ⇒ Object
-
#from_hash(value) ⇒ Object
-
#from_string(value) ⇒ Object
-
#initialize(arg, params, options = {}) ⇒ Clause
constructor
A new instance of Clause.
-
#label_from_key_and_value(key, value, prefer = :var) ⇒ Object
-
#node_from_key_and_value(key, value, options = {}) ⇒ Object
-
#value ⇒ Object
-
#var_from_key_and_value(key, value, prefer = :var) ⇒ Object
Constructor Details
#initialize(arg, params, options = {}) ⇒ Clause
Returns a new instance of Clause.
21
22
23
24
25
26
|
# File 'lib/active_graph/core/query_clauses.rb', line 21
def initialize(arg, params, options = {})
@arg = arg
@options = options
@params = params
@param_vars_added = []
end
|
Instance Attribute Details
#arg ⇒ Object
Returns the value of attribute arg.
18
19
20
|
# File 'lib/active_graph/core/query_clauses.rb', line 18
def arg
@arg
end
|
#options ⇒ Object
Returns the value of attribute options.
19
20
21
|
# File 'lib/active_graph/core/query_clauses.rb', line 19
def options
@options
end
|
#param_vars_added ⇒ Object
Returns the value of attribute param_vars_added.
19
20
21
|
# File 'lib/active_graph/core/query_clauses.rb', line 19
def param_vars_added
@param_vars_added
end
|
#params ⇒ Object
Returns the value of attribute params.
18
19
20
|
# File 'lib/active_graph/core/query_clauses.rb', line 18
def params
@params
end
|
Class Method Details
.clause_color ⇒ Object
156
157
158
|
# File 'lib/active_graph/core/query_clauses.rb', line 156
def clause_color
ANSI::CYAN
end
|
.clause_join ⇒ Object
152
153
154
|
# File 'lib/active_graph/core/query_clauses.rb', line 152
def clause_join
''
end
|
.clause_string(clauses, pretty) ⇒ Object
144
145
146
147
148
149
150
|
# File 'lib/active_graph/core/query_clauses.rb', line 144
def clause_string(clauses, pretty)
join_string = pretty ? clause_join + PRETTY_NEW_LINE : clause_join
strings = clause_strings(clauses)
stripped_string = strings.join(join_string).strip
pretty && strings.size > 1 ? PRETTY_NEW_LINE + stripped_string : stripped_string
end
|
.final_keyword(pretty) ⇒ Object
136
137
138
139
140
141
142
|
# File 'lib/active_graph/core/query_clauses.rb', line 136
def final_keyword(pretty)
if pretty
"#{clause_color}#{keyword}#{ANSI::CLEAR}"
else
keyword
end
end
|
.from_arg(arg, params, options = {}) ⇒ Object
126
127
128
|
# File 'lib/active_graph/core/query_clauses.rb', line 126
def from_arg(arg, params, options = {})
new(arg, params, options) if !arg.respond_to?(:empty?) || !arg.empty?
end
|
.from_args(args, params, options = {}) ⇒ Object
121
122
123
124
|
# File 'lib/active_graph/core/query_clauses.rb', line 121
def from_args(args, params, options = {})
args.flatten!
args.map { |arg| from_arg(arg, params, options) }.tap(&:compact!)
end
|
.from_key_and_single_value(key, value) ⇒ Object
160
161
162
|
# File 'lib/active_graph/core/query_clauses.rb', line 160
def from_key_and_single_value(key, value)
value.to_sym == :neo_id ? "elementId(#{key})" : "#{key}.#{value}"
end
|
.keyword ⇒ Object
113
114
115
|
# File 'lib/active_graph/core/query_clauses.rb', line 113
def keyword
self::KEYWORD
end
|
.keyword_downcase ⇒ Object
117
118
119
|
# File 'lib/active_graph/core/query_clauses.rb', line 117
def keyword_downcase
keyword.downcase
end
|
.paramaterize_key!(key) ⇒ Object
165
166
167
168
|
# File 'lib/active_graph/core/query_clauses.rb', line 165
def self.paramaterize_key!(key)
key.tr_s!('^a-zA-Z0-9', UNDERSCORE)
key.gsub!(/^_+|_+$/, '')
end
|
.to_cypher(clauses, pretty = false) ⇒ Object
130
131
132
133
134
|
# File 'lib/active_graph/core/query_clauses.rb', line 130
def to_cypher(clauses, pretty = false)
string = clause_string(clauses, pretty)
"#{final_keyword(pretty)} #{string}" if !string.empty?
end
|
Instance Method Details
#_nested_value_hash?(value) ⇒ Boolean
102
103
104
|
# File 'lib/active_graph/core/query_clauses.rb', line 102
def _nested_value_hash?(value)
value.values.any? { |v| v.is_a?(Hash) }
end
|
#_use_key_for_var?(value, prefer) ⇒ Boolean
98
99
100
|
# File 'lib/active_graph/core/query_clauses.rb', line 98
def _use_key_for_var?(value, prefer)
_nested_value_hash?(value) || prefer == :var
end
|
#add_param(key, value) ⇒ Object
170
171
172
173
|
# File 'lib/active_graph/core/query_clauses.rb', line 170
def add_param(key, value)
@param_vars_added << key
@params.add_param(key, value)
end
|
#add_params(keys_and_values) ⇒ Object
175
176
177
178
|
# File 'lib/active_graph/core/query_clauses.rb', line 175
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
106
107
108
109
110
|
# File 'lib/active_graph/core/query_clauses.rb', line 106
def attributes_from_key_and_value(_key, value)
return nil unless value.is_a?(Hash)
value.values.map(&:class) == [Hash] ? value.first[1] : value
end
|
#from_hash(value) ⇒ Object
44
45
46
47
48
49
50
|
# File 'lib/active_graph/core/query_clauses.rb', line 44
def from_hash(value)
fail ArgError if !respond_to?(:from_key_and_value)
value.map do |k, v|
from_key_and_value k, v
end
end
|
#from_string(value) ⇒ Object
52
53
54
|
# File 'lib/active_graph/core/query_clauses.rb', line 52
def from_string(value)
value
end
|
#label_from_key_and_value(key, value, prefer = :var) ⇒ Object
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# File 'lib/active_graph/core/query_clauses.rb', line 83
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
elsif !_use_key_for_var?(value, prefer)
key
end
else
fail ArgError, value
end
end
|
#node_from_key_and_value(key, value, options = {}) ⇒ Object
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# File 'lib/active_graph/core/query_clauses.rb', line 56
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 = (value.keys.join(UNDERSCORE) if value.values.any? { |v| v.is_a?(Hash) })
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
|
#value ⇒ Object
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/active_graph/core/query_clauses.rb', line 28
def value
return @value if @value
[String, Symbol, Integer, Hash, NilClass, Array].each do |arg_class|
from_method = "from_#{arg_class.name.downcase}"
return @value = send(from_method, @arg) if @arg.is_a?(arg_class) && 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
73
74
75
76
77
78
79
80
81
|
# File 'lib/active_graph/core/query_clauses.rb', line 73
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
|