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.
-
#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'])
98 99 100 101 102 103 104 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 98 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)
110 111 112 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 110 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)
117 118 119 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 117 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)
124 125 126 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 124 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)
132 133 134 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 132 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)
140 141 142 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 140 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')
148 149 150 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 148 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')
156 157 158 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 156 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'])
166 167 168 169 170 171 172 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 166 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)
177 178 179 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 177 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)
184 185 186 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 184 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)
191 192 193 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 191 def populate_set(arg) SQL::Function.new(function_name(:populate_recordset), arg, self) end |
#to_record ⇒ Object
199 200 201 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 199 def to_record function(:to_record) end |
#to_recordset ⇒ Object
207 208 209 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 207 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)
214 215 216 |
# File 'lib/sequel/extensions/pg_json_ops.rb', line 214 def typeof function(:typeof) end |