Class: ROM::SQL::DSL Private

Inherits:
BasicObject
Defined in:
lib/rom/sql/dsl.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Direct Known Subclasses

GroupDSL, OrderDSL, ProjectionDSL, RestrictionDSL

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(schema) ⇒ DSL

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.

Returns a new instance of DSL.



22
23
24
25
26
# File 'lib/rom/sql/dsl.rb', line 22

def initialize(schema)
  @schema = schema
  @relations = schema.respond_to?(:relations) ? schema.relations : EMPTY_HASH
  @picked_relations = ::Concurrent::Map.new
end

Instance Attribute Details

#picked_relationsObject (readonly)

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.



19
20
21
# File 'lib/rom/sql/dsl.rb', line 19

def picked_relations
  @picked_relations
end

#relationsObject (readonly)

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.



15
16
17
# File 'lib/rom/sql/dsl.rb', line 15

def relations
  @relations
end

#schemaObject (readonly)

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.



11
12
13
# File 'lib/rom/sql/dsl.rb', line 11

def schema
  @schema
end

Instance Method Details

#`(value) ⇒ Sequel::LiteralString

Return a string literal that will be used directly in an ORDER clause

Parameters:

  • value (String)

Returns:

  • (Sequel::LiteralString)


46
47
48
# File 'lib/rom/sql/dsl.rb', line 46

def `(value)
  ::Sequel.lit(value)
end

#call(&block) ⇒ 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.



29
30
31
32
33
34
35
36
37
# File 'lib/rom/sql/dsl.rb', line 29

def call(&block)
  result = instance_exec(select_relations(block.parameters), &block)

  if result.is_a?(::Array)
    result
  else
    [result]
  end
end

#exists(relation) ⇒ Object

Returns a result of SQL EXISTS clause.

Examples:

users.where { exists(users.where(name: 'John')) }
users.select_append { |r| exists(r[:posts].where(r[:posts][:user_id] => id)).as(:has_posts) }


57
58
59
# File 'lib/rom/sql/dsl.rb', line 57

def exists(relation)
  ::ROM::SQL::Attribute[Types::Bool].meta(sql_expr: relation.dataset.exists)
end

#respond_to_missing?(name, include_private = false) ⇒ 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.

Returns:

  • (Boolean)


62
63
64
# File 'lib/rom/sql/dsl.rb', line 62

def respond_to_missing?(name, include_private = false)
  super || schema.key?(name)
end