Class: ROM::Command
- Inherits:
-
Object
- Object
- ROM::Command
- Extended by:
- Dry::Core::ClassAttributes, ClassInterface, Initializer
- Includes:
- Commands, Pipeline::Operator
- Defined in:
- core/lib/rom/command.rb,
core/lib/rom/commands/class_interface.rb
Overview
Base command class with factory class-level interface and setup-related logic
Direct Known Subclasses
ROM::Commands::Create, ROM::Commands::Delete, ROM::Commands::Update
Defined Under Namespace
Modules: ClassInterface
Constant Summary collapse
- CommandType =
Types::Strict::Symbol.enum(:create, :update, :delete)
- Result =
Types::Strict::Symbol.enum(:one, :many)
Instance Attribute Summary collapse
-
#after(*hooks) ⇒ Command
readonly
Return a new command with appended after hooks.
-
#before(*hooks) ⇒ Command
readonly
Return a new command with appended before hooks.
-
#curry_args ⇒ Array
readonly
Curried args.
-
#input ⇒ Proc, #call
readonly
Tuple processing function, typically uses Relation#input_schema.
-
#relation ⇒ Relation
readonly
Command's relation.
-
#result ⇒ Symbol
readonly
Result type, either :one or :many.
-
#source ⇒ Relation
readonly
The source relation.
-
#type ⇒ Symbol
readonly
The command type, one of :create, :update or :delete.
Class Method Summary collapse
-
.[](adapter) ⇒ Class
extended
from ClassInterface
Return adapter specific sub-class based on the adapter identifier.
-
.adapter ⇒ Object
Get or set adapter identifier.
-
.adapter_namespace(adapter) ⇒ Module
extended
from ClassInterface
private
Return namespaces that contains command subclasses of a specific adapter.
-
.after(*hooks) ⇒ Array<Hash, Symbol>
extended
from ClassInterface
Set after-execute hooks.
-
.before(*hooks) ⇒ Array<Hash, Symbol>
extended
from ClassInterface
Set before-execute hooks.
-
.build(relation, **options) ⇒ Command
extended
from ClassInterface
Build a command class for a specific relation with options.
-
.create_class(name, type) {|Class| ... } ⇒ Class, Object
extended
from ClassInterface
Create a command class with a specific type.
-
.default_name ⇒ Symbol
extended
from ClassInterface
private
Return default name of the command class based on its name.
-
.extend_for_relation(relation) ⇒ Class
extended
from ClassInterface
Extend a command class with relation view methods.
-
.inherited(klass) ⇒ Object
extended
from ClassInterface
private
This hook sets up default class state.
-
.input ⇒ Object
Get or set input processing function.
-
.options ⇒ Hash
extended
from ClassInterface
private
Return default options based on class macros.
-
.register_as ⇒ Object
Get or set identifier that should be used to register a command in a container.
-
.relation ⇒ Object
Get or set relation identifier.
- .relation_methods_mod(relation_class) ⇒ Object extended from ClassInterface private
- .restrictable ⇒ Object
-
.result ⇒ Object
Get or set result type.
-
.set_hooks(type, hooks) ⇒ Object
extended
from ClassInterface
private
Set new or more hooks.
-
.use(plugin, **options) ⇒ Object
extended
from ClassInterface
Use a configured plugin in this relation.
Instance Method Summary collapse
-
#>>(other) ⇒ Relation::Composite
included
from Pipeline::Operator
Compose two relation with a left-to-right composition.
-
#after_hooks ⇒ Array
List of after hooks.
-
#before_hooks ⇒ Array
List of before hooks.
-
#call(*args, &block) ⇒ Object
(also: #[])
Call the command and return one or many tuples.
-
#combine(*others) ⇒ Command::Graph
Compose this command with other commands.
-
#curried? ⇒ TrueClass, FalseClass
Check if this command is curried.
-
#curry(*args) ⇒ Command, Lazy
Curry this command with provided args.
-
#execute ⇒ Array
abstract
private
Execute the command.
-
#gateway ⇒ Symbol
Return gateway of this command's relation.
-
#graph? ⇒ false
private
Check if this command is a graph.
-
#hooks? ⇒ Boolean
private
Check if this command has any hooks.
-
#lazy? ⇒ false
private
Check if this command is lazy.
-
#many? ⇒ TrueClass, FalseClass
private
Check if this command returns many tuples.
-
#map_input_tuples(tuples, &mapper) ⇒ Object
private
Yields tuples for insertion or return an enumerator.
-
#name ⇒ ROM::Relation::Name
Return name of this command's relation.
-
#new(new_relation) ⇒ Command
Return a new command with other source relation.
-
#one? ⇒ TrueClass, FalseClass
private
Check if this command returns a single tuple.
-
#restrictible? ⇒ TrueClass, FalseClass
private
Check if this command is restrictible through relation.
Instance Attribute Details
#after(*hooks) ⇒ Command (readonly)
Return a new command with appended after hooks
226 |
# File 'core/lib/rom/command.rb', line 226 option :after, Types::Coercible::Array, reader: false, default: -> { self.class.after } |
#before(*hooks) ⇒ Command (readonly)
Return a new command with appended before hooks
222 |
# File 'core/lib/rom/command.rb', line 222 option :before, Types::Coercible::Array, reader: false, default: -> { self.class.before } |
#curry_args ⇒ Array (readonly)
Returns Curried args.
218 |
# File 'core/lib/rom/command.rb', line 218 option :curry_args, default: -> { EMPTY_ARRAY } |
#input ⇒ Proc, #call (readonly)
Returns Tuple processing function, typically uses Relation#input_schema.
214 |
# File 'core/lib/rom/command.rb', line 214 option :input |
#relation ⇒ Relation (readonly)
Returns Command's relation.
195 |
# File 'core/lib/rom/command.rb', line 195 param :relation |
#result ⇒ Symbol (readonly)
Returns Result type, either :one or :many.
210 |
# File 'core/lib/rom/command.rb', line 210 option :result, type: Result |
#source ⇒ Relation (readonly)
Returns The source relation.
206 |
# File 'core/lib/rom/command.rb', line 206 option :source, default: -> { relation } |
#type ⇒ Symbol (readonly)
Returns The command type, one of :create, :update or :delete.
202 |
# File 'core/lib/rom/command.rb', line 202 option :type, type: CommandType, optional: true |
Class Method Details
.[](adapter) ⇒ Class Originally defined in module ClassInterface
Return adapter specific sub-class based on the adapter identifier
This is a syntax sugar to make things consistent
.adapter ⇒ Symbol .adapter(identifier) ⇒ Object
Get or set adapter identifier
57 |
# File 'core/lib/rom/command.rb', line 57 defines :adapter |
.adapter_namespace(adapter) ⇒ Module Originally defined in module ClassInterface
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return namespaces that contains command subclasses of a specific adapter
#after(hook) ⇒ Array<Hash, Symbol> #after(hook_opts) ⇒ Array<Hash, Symbol> Originally defined in module ClassInterface
Set after-execute hooks
#before(hook) ⇒ Array<Hash, Symbol> #before(hook_opts) ⇒ Array<Hash, Symbol> Originally defined in module ClassInterface
Set before-execute hooks
.build(relation, **options) ⇒ Command Originally defined in module ClassInterface
Build a command class for a specific relation with options
.create_class(name, type) {|Class| ... } ⇒ Class, Object Originally defined in module ClassInterface
Create a command class with a specific type
.default_name ⇒ Symbol Originally defined in module ClassInterface
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return default name of the command class based on its name
During setup phase this is used by defalut as register_as
option
.extend_for_relation(relation) ⇒ Class Originally defined in module ClassInterface
Extend a command class with relation view methods
.inherited(klass) ⇒ Object Originally defined in module ClassInterface
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This hook sets up default class state
.input ⇒ Proc, #call .input(identifier) ⇒ Object
Get or set input processing function. This is typically set during setup to relation's input_schema
139 |
# File 'core/lib/rom/command.rb', line 139 defines :input |
.options ⇒ Hash Originally defined in module ClassInterface
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return default options based on class macros
.register_as ⇒ Symbol .register_as(identifier) ⇒ Object
Get or set identifier that should be used to register a command in a container
166 |
# File 'core/lib/rom/command.rb', line 166 defines :register_as |
.relation ⇒ Symbol .relation(identifier) ⇒ Object
Get or set relation identifier
84 |
# File 'core/lib/rom/command.rb', line 84 defines :relation |
.relation_methods_mod(relation_class) ⇒ Object Originally defined in module ClassInterface
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
.restrictable ⇒ FalseClass, TrueClass .restrictable(value) ⇒ Object
191 |
# File 'core/lib/rom/command.rb', line 191 defines :restrictable |
.result ⇒ Symbol .result(identifier) ⇒ Object
Get or set result type
111 |
# File 'core/lib/rom/command.rb', line 111 defines :result |
.set_hooks(type, hooks) ⇒ Object Originally defined in module ClassInterface
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Set new or more hooks
.use(plugin, **options) ⇒ Object Originally defined in module ClassInterface
Use a configured plugin in this relation
Instance Method Details
#>>(other) ⇒ Relation::Composite Originally defined in module Pipeline::Operator
Compose two relation with a left-to-right composition
#after_hooks ⇒ Array
List of after hooks
375 376 377 |
# File 'core/lib/rom/command.rb', line 375 def after_hooks [:after] end |
#before_hooks ⇒ Array
List of before hooks
366 367 368 |
# File 'core/lib/rom/command.rb', line 366 def before_hooks [:before] end |
#call(*args, &block) ⇒ Object Also known as: []
Call the command and return one or many tuples
This method will apply before/after hooks automatically
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
# File 'core/lib/rom/command.rb', line 268 def call(*args, &block) tuples = if hooks? prepared = if curried? apply_hooks(before_hooks, *(curry_args + args)) else apply_hooks(before_hooks, *args) end result = prepared ? execute(prepared, &block) : execute(&block) if curried? if !args.empty? apply_hooks(after_hooks, result, *args) elsif curry_args.size > 1 apply_hooks(after_hooks, result, curry_args[1]) else apply_hooks(after_hooks, result) end else apply_hooks(after_hooks, result, *args[1..args.size - 1]) end else execute(*(curry_args + args), &block) end if one? tuples.first else tuples end end |
#combine(*others) ⇒ Command::Graph
Compose this command with other commands
Composed commands can handle nested input
326 327 328 |
# File 'core/lib/rom/command.rb', line 326 def combine(*others) Graph.new(self, others) end |
#curried? ⇒ TrueClass, FalseClass
Check if this command is curried
335 336 337 |
# File 'core/lib/rom/command.rb', line 335 def curried? !curry_args.empty? end |
#curry(*args) ⇒ Command, Lazy
Curry this command with provided args
Curried command can be called without args. If argument is a graph input processor, lazy command will be returned, which is used for handling nested input hashes.
311 312 313 314 315 316 317 |
# File 'core/lib/rom/command.rb', line 311 def curry(*args) if curry_args.empty? && args.first.is_a?(Graph::InputEvaluator) Lazy[self].new(self, *args) else self.class.build(relation, **, curry_args: args) end end |
#execute ⇒ Array
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Execute the command
256 257 258 259 260 261 |
# File 'core/lib/rom/command.rb', line 256 def execute(*) raise( NotImplementedError, "#{self.class}##{__method__} must be implemented" ) end |
#gateway ⇒ Symbol
Return gateway of this command's relation
245 246 247 |
# File 'core/lib/rom/command.rb', line 245 def gateway relation.gateway end |
#graph? ⇒ false
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Check if this command is a graph
411 412 413 |
# File 'core/lib/rom/command.rb', line 411 def graph? false end |
#hooks? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Check if this command has any hooks
393 394 395 |
# File 'core/lib/rom/command.rb', line 393 def hooks? !before_hooks.empty? || !after_hooks.empty? end |
#lazy? ⇒ false
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Check if this command is lazy
402 403 404 |
# File 'core/lib/rom/command.rb', line 402 def lazy? false end |
#many? ⇒ TrueClass, FalseClass
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Check if this command returns many tuples
429 430 431 |
# File 'core/lib/rom/command.rb', line 429 def many? result.equal?(:many) end |
#map_input_tuples(tuples, &mapper) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Yields tuples for insertion or return an enumerator
445 446 447 448 449 450 451 452 453 |
# File 'core/lib/rom/command.rb', line 445 def map_input_tuples(tuples, &mapper) return enum_for(:with_input_tuples, tuples) unless mapper if tuples.respond_to? :merge mapper[tuples] else tuples.map(&mapper) end end |
#name ⇒ ROM::Relation::Name
Return name of this command's relation
236 237 238 |
# File 'core/lib/rom/command.rb', line 236 def name relation.name end |
#new(new_relation) ⇒ Command
Return a new command with other source relation
This can be used to restrict command with a specific relation
386 387 388 |
# File 'core/lib/rom/command.rb', line 386 def new(new_relation) self.class.build(new_relation, **, source: relation) end |
#one? ⇒ TrueClass, FalseClass
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Check if this command returns a single tuple
420 421 422 |
# File 'core/lib/rom/command.rb', line 420 def one? result.equal?(:one) end |
#restrictible? ⇒ TrueClass, FalseClass
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Check if this command is restrictible through relation
438 439 440 |
# File 'core/lib/rom/command.rb', line 438 def restrictible? self.class.restrictable.equal?(true) end |