Class: Sequel::Postgres::JSONBaseOp
- Inherits:
-
SQL::Wrapper
- Object
- SQL::Expression
- SQL::GenericExpression
- SQL::Wrapper
- Sequel::Postgres::JSONBaseOp
- Defined in:
- lib/sequel/extensions/pg_json_ops.rb
Overview
Constant Summary collapse
- GET =
["(".freeze, " -> ".freeze, ")".freeze].freeze
- GET_TEXT =
["(".freeze, " ->> ".freeze, ")".freeze].freeze
- GET_PATH =
["(".freeze, " #> ".freeze, ")".freeze].freeze
- GET_PATH_TEXT =
["(".freeze, " #>> ".freeze, ")".freeze].freeze
Instance Attribute Summary
Attributes inherited from SQL::Wrapper
Instance Method Summary collapse
-
#[](key) ⇒ Object
(also: #get)
Get JSON array element or object field as json.
-
#array_elements ⇒ Object
Returns a set of json values for the elements in the json array.
-
#array_elements_text ⇒ Object
Returns a set of text values for the elements in the json array.
-
#array_length ⇒ Object
Get the length of the outermost json array.
-
#each ⇒ Object
Returns a set of key and value pairs, where the keys are text and the values are JSON.
-
#each_text ⇒ Object
Returns a set of key and value pairs, where the keys and values are both text.
-
#extract(*a) ⇒ Object
Returns a json value for the object at the given path.
-
#extract_text(*a) ⇒ Object
Returns a text value for the object at the given path.
-
#get_text(key) ⇒ Object
Get JSON array element or object field as text.
-
#keys ⇒ Object
Returns a set of keys AS text in the json object.
-
#populate(arg) ⇒ Object
Expands the given argument using the columns in the json.
-
#populate_set(arg) ⇒ Object
Expands the given argument using the columns in the json.
-
#strip_nulls ⇒ Object
Returns a json value stripped of all internal null values.
-
#to_record ⇒ Object
Builds arbitrary record from json object.
-
#to_recordset ⇒ Object
Builds arbitrary set of records from json array of objects.
-
#typeof ⇒ Object
Returns the type of the outermost json value as text.
Methods inherited from SQL::Wrapper
Methods included from HStoreOpMethods
Methods included from RangeOpMethods
Methods included from ArrayOpMethods
Methods included from JSONOpMethods
Methods included from InetOpMethods
Methods included from PGRowOp::ExpressionMethods
Methods included from SQL::SubscriptMethods
Methods included from SQL::StringMethods
Methods included from SQL::PatternMatchMethods
Methods included from SQL::OrderMethods
Methods included from SQL::NumericMethods
Methods included from SQL::ComplexExpressionMethods
#sql_boolean, #sql_number, #sql_string
Methods included from SQL::CastMethods
#cast, #cast_numeric, #cast_string
Methods included from SQL::BooleanMethods
Methods included from SQL::AliasMethods
Methods inherited from SQL::Expression
#==, attr_reader, #eql?, #hash, inherited, #inspect, #lit, #sql_literal
Constructor Details
This class inherits a constructor from Sequel::SQL::Wrapper
Instance Method Details
#[](key) ⇒ Object Also known as: get
Get JSON array element or object field as json. If an array is given, gets the object at the specified path.
json_op[1] # (json -> 1)
json_op['a'] # (json -> 'a')
json_op[%w'a b'] # (json #> ARRAY['a', 'b'])
104 105 106 107 108 109 110 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 104 def [](key) if is_array?(key) json_op(GET_PATH, wrap_array(key)) else json_op(GET, key) end end |
#array_elements ⇒ Object
Returns a set of json values for the elements in the json array.
json_op.array_elements # json_array_elements(json)
116 117 118 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 116 def array_elements function(:array_elements) end |
#array_elements_text ⇒ Object
Returns a set of text values for the elements in the json array.
json_op.array_elements_text # json_array_elements_text(json)
123 124 125 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 123 def array_elements_text function(:array_elements_text) end |
#array_length ⇒ Object
Get the length of the outermost json array.
json_op.array_length # json_array_length(json)
130 131 132 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 130 def array_length Sequel::SQL::NumericExpression.new(:NOOP, function(:array_length)) end |
#each ⇒ Object
Returns a set of key and value pairs, where the keys are text and the values are JSON.
json_op.each # json_each(json)
138 139 140 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 138 def each function(:each) end |
#each_text ⇒ Object
Returns a set of key and value pairs, where the keys and values are both text.
json_op.each_text # json_each_text(json)
146 147 148 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 146 def each_text function(:each_text) end |
#extract(*a) ⇒ Object
Returns a json value for the object at the given path.
json_op.extract('a') # json_extract_path(json, 'a')
json_op.extract('a', 'b') # json_extract_path(json, 'a', 'b')
154 155 156 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 154 def extract(*a) self.class.new(function(:extract_path, *a)) end |
#extract_text(*a) ⇒ Object
Returns a text value for the object at the given path.
json_op.extract_text('a') # json_extract_path_text(json, 'a')
json_op.extract_text('a', 'b') # json_extract_path_text(json, 'a', 'b')
162 163 164 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 162 def extract_text(*a) Sequel::SQL::StringExpression.new(:NOOP, function(:extract_path_text, *a)) end |
#get_text(key) ⇒ Object
Get JSON array element or object field as text. If an array is given, gets the object at the specified path.
json_op.get_text(1) # (json ->> 1)
json_op.get_text('a') # (json ->> 'a')
json_op.get_text(%w'a b') # (json #>> ARRAY['a', 'b'])
172 173 174 175 176 177 178 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 172 def get_text(key) if is_array?(key) json_op(GET_PATH_TEXT, wrap_array(key)) else json_op(GET_TEXT, key) end end |
#keys ⇒ Object
Returns a set of keys AS text in the json object.
json_op.keys # json_object_keys(json)
183 184 185 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 183 def keys function(:object_keys) end |
#populate(arg) ⇒ Object
Expands the given argument using the columns in the json.
json_op.populate(arg) # json_populate_record(arg, json)
190 191 192 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 190 def populate(arg) SQL::Function.new(function_name(:populate_record), arg, self) end |
#populate_set(arg) ⇒ Object
Expands the given argument using the columns in the json.
json_op.populate_set(arg) # json_populate_recordset(arg, json)
197 198 199 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 197 def populate_set(arg) SQL::Function.new(function_name(:populate_recordset), arg, self) end |
#strip_nulls ⇒ Object
Returns a json value stripped of all internal null values.
json_op.strip_nulls # json_strip_nulls(json)
204 205 206 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 204 def strip_nulls self.class.new(function(:strip_nulls)) end |
#to_record ⇒ Object
212 213 214 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 212 def to_record function(:to_record) end |
#to_recordset ⇒ Object
220 221 222 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 220 def to_recordset function(:to_recordset) end |
#typeof ⇒ Object
Returns the type of the outermost json value as text.
json_op.typeof # json_typeof(json)
227 228 229 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 227 def typeof function(:typeof) end |