Compare commits
No commits in common. "master" and "v0.0.4.2" have entirely different histories.
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
||||||
pkg/**
|
pkg/**
|
||||||
.*.swp
|
|
||||||
smql.gemspec
|
smql.gemspec
|
||||||
|
|
2
TODO
2
TODO
|
@ -1,3 +1 @@
|
||||||
1) gem-plugin
|
1) gem-plugin
|
||||||
2) deprecated-warnings rails 3.1:
|
|
||||||
* DEPRECATION WARNING: primary_key_name is deprecated and will be removed from Rails 3.2 (use foreign_key instead).
|
|
||||||
|
|
|
@ -15,18 +15,6 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
class SmqlToAR
|
class SmqlToAR
|
||||||
module Assertion
|
|
||||||
def raise_unless cond, exception = nil, *args
|
|
||||||
cond, exception, *args = yield. cond, exception, *args if block_given?
|
|
||||||
raise exception || Exception, *args unless cond
|
|
||||||
end
|
|
||||||
|
|
||||||
def raise_if cond, exception = nil, *args
|
|
||||||
cond, exception, *args = yield. cond, exception, *args if block_given?
|
|
||||||
raise exception || Exception, *args if cond
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
include ActiveSupport::Benchmarkable
|
include ActiveSupport::Benchmarkable
|
||||||
############################################################################r
|
############################################################################r
|
||||||
# Exceptions
|
# Exceptions
|
||||||
|
@ -43,9 +31,9 @@ class SmqlToAR
|
||||||
# Die eigentliche Exception wird in @data[:exception] hinterlegt.
|
# Die eigentliche Exception wird in @data[:exception] hinterlegt.
|
||||||
class SubSMQLError < SMQLError
|
class SubSMQLError < SMQLError
|
||||||
def initialize query, model, exception
|
def initialize query, model, exception
|
||||||
ex = {class: exception.class, message: exception.message}
|
ex = {:class => exception.class, :message => exception.message}
|
||||||
ex[:data] = exception.data if exception.respond_to? :data
|
ex[:data] = exception.data if exception.respond_to? :data
|
||||||
super query: query, model: model.to_s, exception: ex
|
super :query => query, :model => model.to_s, :exception => ex
|
||||||
set_backtrace exception.backtrace
|
set_backtrace exception.backtrace
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -55,49 +43,43 @@ class SmqlToAR
|
||||||
# Malformed ColOp
|
# Malformed ColOp
|
||||||
class UnexpectedColOpError < ParseError
|
class UnexpectedColOpError < ParseError
|
||||||
def initialize model, colop, val
|
def initialize model, colop, val
|
||||||
super got: colop, val: val, model: model.to_s
|
super :got => colop, :val => val, :model => model.to_s
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class UnexpectedError < ParseError
|
class UnexpectedError < ParseError
|
||||||
def initialize model, colop, val
|
def initialize model, colop, val
|
||||||
super got: {colop => val}, model: model.to_s
|
super :got => {colop => val}, :model => model.to_s
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class NonExistingSelectableError < SMQLError
|
class NonExistingSelectableError < SMQLError
|
||||||
def initialize got
|
def initialize got
|
||||||
super got: got
|
super :got => got
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class NonExistingColumnError < SMQLError
|
class NonExistingColumnError < SMQLError
|
||||||
def initialize expected, got
|
def initialize expected, got
|
||||||
super expected: expected, got: got
|
super :expected => expected, :got => got
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class NonExistingRelationError < SMQLError
|
class NonExistingRelationError < SMQLError
|
||||||
def initialize expected, got
|
def initialize expected, got
|
||||||
super expected: expected, got: got
|
super :expected => expected, :got => got
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class ProtectedColumnError < SMQLError
|
class ProtectedColumnError < SMQLError
|
||||||
def initialize protected_column
|
def initialize protected_column
|
||||||
super protected_column: protected_column
|
super :protected_column => protected_column
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class RootOnlyFunctionError < SMQLError
|
class OnlyOrderOnBaseError < SMQLError
|
||||||
def initialize path
|
def initialize path
|
||||||
super path: path
|
super :path => path
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
class ConColumnError < SMQLError
|
|
||||||
def initialize expected, got
|
|
||||||
super expected: expected, got: got
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -107,8 +89,7 @@ class SmqlToAR
|
||||||
|
|
||||||
# Model der Relation `rel` von `model`
|
# Model der Relation `rel` von `model`
|
||||||
def self.model_of model, rel
|
def self.model_of model, rel
|
||||||
r = model.reflections[ rel.to_sym].andand.klass
|
model.reflections[ rel.to_sym].andand.klass
|
||||||
r.nil? && rel === :self ? model : r
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Eine Spalte in einer Tabelle, relativ zu `Column#model`.
|
# Eine Spalte in einer Tabelle, relativ zu `Column#model`.
|
||||||
|
@ -119,43 +100,10 @@ class SmqlToAR
|
||||||
attr_reader :path, :col
|
attr_reader :path, :col
|
||||||
attr_accessor :model
|
attr_accessor :model
|
||||||
|
|
||||||
class Col
|
|
||||||
include Comparable
|
|
||||||
attr_accessor :col, :as
|
|
||||||
def initialize col, as = nil
|
|
||||||
if col.kind_of? Col
|
|
||||||
@col, @as = col.col, col.as
|
|
||||||
elsif /^(.*?)\[(.*)\]$/ =~ col.to_s
|
|
||||||
@col, @as = $1, $2
|
|
||||||
else
|
|
||||||
@col, @as = col.to_s, as.to_s
|
|
||||||
@as = nil if @as.blank?
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def to_s() @col end
|
|
||||||
def to_sym() to_s.to_sym end
|
|
||||||
def inspect() "#{@col}[@#{@as}]" end
|
|
||||||
def to_alias() "#{@col}[#{@as}]" end
|
|
||||||
|
|
||||||
def == other
|
|
||||||
other = Col.new other
|
|
||||||
@col == other.col && @as == other.as
|
|
||||||
end
|
|
||||||
|
|
||||||
def === other
|
|
||||||
@col == Col.new( other).col
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def initialize model, *col
|
def initialize model, *col
|
||||||
@model = model
|
@model = model
|
||||||
@last_model = nil
|
@last_model = nil
|
||||||
*@path, @col = *Array.wrap( col).
|
*@path, @col = Array.wrap( col).collect {|s| s.to_s.split /[.\/]/ }.flatten.collect &:to_sym
|
||||||
collect {|x| x.to_s.split /[.\/]/ }.
|
|
||||||
flatten.
|
|
||||||
collect( &Col.method( :new)).
|
|
||||||
reject {|x| x === :self }
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def last_model
|
def last_model
|
||||||
|
@ -165,12 +113,10 @@ class SmqlToAR
|
||||||
def each
|
def each
|
||||||
model = @model
|
model = @model
|
||||||
@path.each do |rel|
|
@path.each do |rel|
|
||||||
unless rel === :self
|
|
||||||
model = SmqlToAR.model_of model, rel
|
model = SmqlToAR.model_of model, rel
|
||||||
return false unless model
|
return false unless model
|
||||||
yield rel, model
|
yield rel, model
|
||||||
end
|
end
|
||||||
end
|
|
||||||
model
|
model
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -194,24 +140,19 @@ class SmqlToAR
|
||||||
def joins builder = nil, table = nil, &exe
|
def joins builder = nil, table = nil, &exe
|
||||||
pp = []
|
pp = []
|
||||||
table = Array.wrap table
|
table = Array.wrap table
|
||||||
exe ||= builder ? lambda {|j, m| builder.joins table+j, m} : Array.method( :[])
|
exe ||= builder ? lambda {|j, m| builder.join table+j, m} : Array.method( :[])
|
||||||
collect do |rel, model|
|
collect do |rel, model|
|
||||||
pp.push rel
|
pp.push rel
|
||||||
exe.call pp, model
|
exe.call pp, model
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
def to_a() @path+[@col] end
|
||||||
def self?() !@col end
|
|
||||||
def length() @path.length+(self.self? ? 0 : 1) end
|
|
||||||
def size() @path.size+(self.self? ? 0 : 1) end
|
|
||||||
def to_a() @path+(self.self? ? [] : [@col]) end
|
|
||||||
def to_s() to_a.join '.' end
|
def to_s() to_a.join '.' end
|
||||||
def to_sym() to_s.to_sym end
|
def to_sym() to_s.to_sym end
|
||||||
def to_json() to_s end
|
def to_json() to_s end
|
||||||
def inspect() "#<Column: #{model} #{to_s}>" end
|
def inspect() "#<Column: #{model} #{to_s}>" end
|
||||||
def relation() self.self? ? model : SmqlToAR.model_of( last_model, @col) end
|
def relation() SmqlToAR.model_of last_model, @col end
|
||||||
def allowed?() ! self.protected? end
|
def allowed?() ! self.protected? end
|
||||||
def child?() @path.empty? and !!relation end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
attr_reader :model, :query, :conditions, :builder, :order
|
attr_reader :model, :query, :conditions, :builder, :order
|
||||||
|
@ -222,8 +163,10 @@ class SmqlToAR
|
||||||
SmqlToAR.logger = ::Rails.logger
|
SmqlToAR.logger = ::Rails.logger
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
require 'logger'
|
||||||
|
@@logger = Logger.new $stdout
|
||||||
end
|
end
|
||||||
@@logger = ::Rails.logger || begin require 'logger'; Logger.new( $stdout) end
|
|
||||||
|
|
||||||
class <<self
|
class <<self
|
||||||
def logger=(logger) @@logger = logger end
|
def logger=(logger) @@logger = logger end
|
||||||
|
@ -236,83 +179,39 @@ class SmqlToAR
|
||||||
#p model: @model, query: @query
|
#p model: @model, query: @query
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.models models
|
|
||||||
models = Array.wrap models
|
|
||||||
r = Hash.new {|h,k| h[k] = {} }
|
|
||||||
while model = models.tap( &:uniq!).pop
|
|
||||||
refls = model.respond_to?( :reflections) && model.reflections
|
|
||||||
refls && refls.each do |name, refl|
|
|
||||||
r[model.name][name] = case refl
|
|
||||||
when ActiveRecord::Reflection::ThroughReflection then {macro: refl.macro, model: refl.klass.name, through: refl.through_reflection.name}
|
|
||||||
when ActiveRecord::Reflection::AssociationReflection then {macro: refl.macro, model: refl.klass.name}
|
|
||||||
else raise "Ups: #{refl.class}"
|
|
||||||
end
|
|
||||||
models.push refl.klass unless r.keys.include? refl.klass.name
|
|
||||||
end
|
|
||||||
end
|
|
||||||
r
|
|
||||||
end
|
|
||||||
|
|
||||||
def parse
|
def parse
|
||||||
#benchmark 'SMQL parse' do
|
benchmark 'SMQL parse' do
|
||||||
@conditions = ConditionTypes.try_parse @model, @query
|
@conditions = ConditionTypes.try_parse @model, @query
|
||||||
#end
|
end
|
||||||
#p conditions: @conditions
|
#p conditions: @conditions
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
def build
|
def build
|
||||||
#benchmark 'SMQL build query' do
|
benchmark 'SMQL build query' do
|
||||||
@builder = QueryBuilder.new @model
|
@builder = QueryBuilder.new @model
|
||||||
table = @builder.base_table
|
table = @builder.base_table
|
||||||
@conditions.each {|condition| condition.build builder, table }
|
@conditions.each {|condition| condition.build builder, table }
|
||||||
#end
|
end
|
||||||
#p builder: @builder
|
#p builder: @builder
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
def ar
|
def ar
|
||||||
@ar ||= #benchmark 'SMQL ar' do
|
@ar ||= benchmark 'SMQL ar' do
|
||||||
@builder.to_ar
|
@builder.to_ar
|
||||||
#end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_ar
|
def to_ar
|
||||||
#benchmark 'SMQL' do
|
benchmark 'SMQL' do
|
||||||
parse
|
parse
|
||||||
build
|
build
|
||||||
ar
|
ar
|
||||||
#end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.to_ar *params
|
def self.to_ar *params
|
||||||
new( *params).to_ar
|
new( *params).to_ar
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.reload_library
|
|
||||||
lib_dir = File.dirname __FILE__
|
|
||||||
fj = lambda {|*a| File.join lib_dir, *a }
|
|
||||||
Object.send :remove_const, :SmqlToAR
|
|
||||||
load fj[ 'smql_to_ar.rb']
|
|
||||||
load fj[ 'smql_to_ar', 'condition_types.rb']
|
|
||||||
load fj[ 'smql_to_ar', 'query_builder.rb']
|
|
||||||
end
|
end
|
||||||
|
|
||||||
module ActiveRecordExtensions
|
|
||||||
def self.included base
|
|
||||||
base.extend ClassMethods
|
|
||||||
end
|
|
||||||
|
|
||||||
module ClassMethods
|
|
||||||
def smql *params
|
|
||||||
SmqlToAR.to_ar self, *params
|
|
||||||
end
|
|
||||||
|
|
||||||
def smql_protected
|
|
||||||
[]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
ActiveRecord::Base.send :include, SmqlToAR::ActiveRecordExtensions
|
|
||||||
|
|
|
@ -14,9 +14,6 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
# TODO:
|
|
||||||
# * Array als Typ ist zu allgemein. Allgemeine Lösung gesucht, um die Typen im Array angeben zu können.
|
|
||||||
|
|
||||||
class SmqlToAR
|
class SmqlToAR
|
||||||
#############################################################################
|
#############################################################################
|
||||||
# Alle Subklassen (qualitativ: ConditionTypes::*), die als Superklasse Condition haben,
|
# Alle Subklassen (qualitativ: ConditionTypes::*), die als Superklasse Condition haben,
|
||||||
|
@ -28,44 +25,28 @@ class SmqlToAR
|
||||||
# Nimmt eine Klasse ein Objekt an, so soll diese Klasse instanziert werden.
|
# Nimmt eine Klasse ein Objekt an, so soll diese Klasse instanziert werden.
|
||||||
# Alles weitere siehe Condition.
|
# Alles weitere siehe Condition.
|
||||||
module ConditionTypes
|
module ConditionTypes
|
||||||
extend SmqlToAR::Assertion
|
|
||||||
|
|
||||||
class <<self
|
class <<self
|
||||||
# Ex: 'givenname|surname|nick' => [:givenname, :surname, :nick]
|
# Ex: 'givenname|surname|nick' => [:givenname, :surname, :nick]
|
||||||
def split_keys k
|
def split_keys k
|
||||||
k.split( '|').collect &:to_sym
|
k.split( '|').collect &:to_sym
|
||||||
end
|
end
|
||||||
|
|
||||||
def conditions &e
|
|
||||||
unless block_given?
|
|
||||||
r = Enumerator.new( self, :conditions)
|
|
||||||
s = self
|
|
||||||
r.define_singleton_method :[] do |k|
|
|
||||||
s.conditions.select {|c| c::Operator === k }
|
|
||||||
end
|
|
||||||
return r
|
|
||||||
end
|
|
||||||
constants.each do |c|
|
|
||||||
next if :Condition == c
|
|
||||||
c = const_get c
|
|
||||||
next if Condition === c
|
|
||||||
yield c
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# Eine Regel parsen.
|
# Eine Regel parsen.
|
||||||
# Ex: Person, "givenname=", "Peter"
|
# Ex: Person, "givenname=", "Peter"
|
||||||
def try_parse_it model, colop, val
|
def try_parse_it model, colop, val
|
||||||
r = nil
|
r = nil
|
||||||
#p :try_parse => { :model => model, :colop => colop, :value => val }
|
#p :try_parse => { :model => model, :colop => colop, :value => val }
|
||||||
conditions.each do |c|
|
constants.each do |c|
|
||||||
raise_unless colop =~ /^(?:\d*:)?(.*?)((?:\W*(?!\])\W)?)$/, UnexpectedColOpError.new( model, colop, val)
|
next if :Condition == c
|
||||||
|
c = const_get c
|
||||||
|
next if Condition === c
|
||||||
|
raise UnexpectedColOpError.new( model, colop, val) unless colop =~ /^(?:\d*:)?(.*?)(\W*)$/
|
||||||
col, op = $1, $2
|
col, op = $1, $2
|
||||||
col = split_keys( col).collect {|c| Column.new model, c }
|
col = split_keys( col).collect {|c| Column.new model, c }
|
||||||
r = c.try_parse model, col, op, val
|
r = c.try_parse model, col, op, val
|
||||||
break if r
|
break if r
|
||||||
end
|
end
|
||||||
raise_unless r, UnexpectedError.new( model, colop, val)
|
raise UnexpectedError.new( model, colop, val) unless r
|
||||||
r
|
r
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -91,28 +72,19 @@ class SmqlToAR
|
||||||
end
|
end
|
||||||
|
|
||||||
class Condition
|
class Condition
|
||||||
include SmqlToAR::Assertion
|
|
||||||
extend SmqlToAR::Assertion
|
|
||||||
attr_reader :value, :cols
|
attr_reader :value, :cols
|
||||||
Operator = nil
|
Operator = nil
|
||||||
Expected = []
|
Expected = []
|
||||||
Where = nil
|
Where = nil
|
||||||
|
|
||||||
class <<self
|
|
||||||
# Versuche das Objekt zu erkennen. Operator und Expected muessen passen.
|
# Versuche das Objekt zu erkennen. Operator und Expected muessen passen.
|
||||||
# Passt das Object, die Klasse instanzieren.
|
# Passt das Object, die Klasse instanzieren.
|
||||||
def try_parse model, cols, op, val
|
def self.try_parse model, cols, op, val
|
||||||
#p :class => self, :self => name, :try_parse => op, :cols => cols, :with => self::Operator, :value => val, :expected => self::Expected, :model => model.name
|
#p :self => name, :try_parse => op, :cols => cols, :with => self::Operator, :value => val, :expected => self::Expected, :model => model.name
|
||||||
new model, cols, val if self::Operator === op and self::Expected.any? {|x| x === val}
|
new model, cols, val if self::Operator === op and self::Expected.any? {|i| i === val }
|
||||||
end
|
|
||||||
|
|
||||||
def inspect
|
|
||||||
"#{self.name}( :operator=>#{self::Operator.inspect}, :expected=>#{self::Expected.inspect}, :where=>#{self::Where.inspect})"
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def initialize model, cols, val
|
def initialize model, cols, val
|
||||||
#p init: self, caller: caller
|
|
||||||
@model, @cols = model, cols
|
@model, @cols = model, cols
|
||||||
@value = case val
|
@value = case val
|
||||||
when Hash, Range then val
|
when Hash, Range then val
|
||||||
|
@ -121,10 +93,6 @@ class SmqlToAR
|
||||||
verify
|
verify
|
||||||
end
|
end
|
||||||
|
|
||||||
def inspect
|
|
||||||
"#<#{self.class.name}:0x#{(self.object_id<<1).to_s 16} model: #{self.class.name}, cols: #{@cols.inspect}, value: #{@value.inspect}>"
|
|
||||||
end
|
|
||||||
|
|
||||||
def verify
|
def verify
|
||||||
@cols.each do |col|
|
@cols.each do |col|
|
||||||
verify_column col
|
verify_column col
|
||||||
|
@ -135,55 +103,53 @@ class SmqlToAR
|
||||||
# Gibt es eine Spalte diesen Namens?
|
# Gibt es eine Spalte diesen Namens?
|
||||||
# Oder: Gibt es eine Relation diesen Namens? (Hier nicht der Fall)
|
# Oder: Gibt es eine Relation diesen Namens? (Hier nicht der Fall)
|
||||||
def verify_column col
|
def verify_column col
|
||||||
raise_unless col.exist_in?, NonExistingColumnError.new( %w[Column], col)
|
raise NonExistingColumnError.new( %w[Column], col) unless col.exist_in?
|
||||||
end
|
end
|
||||||
|
|
||||||
# Modelle koennen Spalten/Relationen verbieten mit Model#smql_protected.
|
# Modelle koennen Spalten/Relationen verbieten mit Model#smql_protected.
|
||||||
# Dieses muss ein Object mit #include?( name_als_string) zurueckliefern,
|
# Dieses muss ein Object mit #include?( name_als_string) zurueckliefern,
|
||||||
# welches true fuer verboten und false fuer, erlaubt steht.
|
# welches true fuer verboten und false fuer, erlaubt steht.
|
||||||
def verify_allowed col
|
def verify_allowed col
|
||||||
raise_if col.protected?, ProtectedColumnError.new( col)
|
raise ProtectedColumnError.new( col) if col.protected?
|
||||||
end
|
end
|
||||||
|
|
||||||
# Erstelle alle noetigen Klauseln. builder nimmt diese entgegen,
|
# Erstelle alle noetigen Klauseln. builder nimmt diese entgegen,
|
||||||
# wobei builder.joins, builder.select, builder.where und builder.wobs von interesse sind.
|
# wobei builder.join, builder.select, builder.where und builder.wobs von interesse sind.
|
||||||
# mehrere Schluessel bedeuten, dass die Values _alle_ zutreffen muessen, wobei die Schluessel geODERt werden.
|
# mehrere Schluessel bedeuten, dass die Values _alle_ zutreffen muessen, wobei die Schluessel geodert werden.
|
||||||
# Ex:
|
# Ex:
|
||||||
# 1) {"givenname=", "Peter"} #=> givenname = 'Peter'
|
# 1) {"givenname=", "Peter"} #=> givenname = 'Peter'
|
||||||
# 2) {"givenname=", ["Peter", "Hans"]} #=> ( givenname = 'Peter' OR givenname = 'Hans' )
|
# 2) {"givenname=", ["Peter", "Hans"]} #=> ( givenname = 'Peter' OR givenname = 'Hans' )
|
||||||
# 3) {"givenname|surname=", ["Peter", "Mueller"]}
|
# 3) {"givenname|surname=", ["Peter", "Mueller"]}
|
||||||
# #=> ( givenname = 'Peter' OR surname = 'Peter' ) AND ( givenname = 'Mueller' OR surname = 'Mueller' )
|
# #=> ( givenname = 'Peter' OR surname = 'Peter' ) AND ( givenname = 'Mueller' OR surname = 'Mueller' )
|
||||||
def condition_build builder, table
|
def build builder, table
|
||||||
values = Hash[ @value.collect {|value| [ builder.vid, value ] } ]
|
values = Hash[ @value.collect {|value| [ builder.vid, value ] } ]
|
||||||
values.each {|k, v| builder.wobs k.to_sym => v }
|
values.each {|k, v| builder.wobs k.sym => v }
|
||||||
if 1 == @cols.length
|
if 1 == @cols.length
|
||||||
@cols.each do |col|
|
@cols.each do |col|
|
||||||
col.joins builder, table
|
col.joins builder, table
|
||||||
col = builder.column table+col.path, col.col
|
col = builder.column table+col.path, col.col
|
||||||
builder.where values.keys.collect {|vid| self.class::Where % [ col, vid.to_s ] }
|
builder.where *values.keys.collect {|vid| self.class::Where % [ col, vid.to_s ] }
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
b2 = SmqlToAR::And.new builder
|
|
||||||
values.keys.each do |vid|
|
values.keys.each do |vid|
|
||||||
b2.where SmqlToAR::Or[ *@cols.collect {|col|
|
builder.where *@cols.collect {|col|
|
||||||
col.joins builder, table
|
col.joins builder, table
|
||||||
col = builder.column table+col.path, col.col
|
col = builder.column table+col.path, col.col
|
||||||
self.class::Where % [ col, vid.to_s ]
|
self.class::Where % [ col, vid.to_s ]
|
||||||
}]
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
alias build condition_build
|
|
||||||
end
|
end
|
||||||
|
|
||||||
class NotInRange < Condition
|
class NotInRange < Condition
|
||||||
Operator = '!..'
|
Operator = '!..'
|
||||||
Where = '%s NOT BETWEEN %s AND %s'
|
Where = "%s NOT BETWEEN %s AND %s"
|
||||||
Expected = [Range, lambda {|val| Array === val && 2 == val.length } ]
|
Expected = [Range, lambda {|val| Array === val && 2 == val.length } ]
|
||||||
|
|
||||||
def initialize model, cols, val
|
def initialze model, cols, val
|
||||||
if Array === val
|
if Array === val && 2 == val.length
|
||||||
f, l = val
|
f, l = val
|
||||||
f, l = Time.parse(f), Time.parse(l) if f.kind_of? String
|
f, l = Time.parse(f), Time.parse(l) if f.kind_of? String
|
||||||
val = f..l
|
val = f..l
|
||||||
|
@ -191,65 +157,23 @@ class SmqlToAR
|
||||||
super model, cols, val
|
super model, cols, val
|
||||||
end
|
end
|
||||||
|
|
||||||
def not_in_range_build builder, table
|
def build builder, table
|
||||||
builder.wobs (v1 = builder.vid).to_sym => @value.begin, (v2 = builder.vid).to_sym => @value.end
|
builder.wobs (v1 = builder.vid) => @value.begin, (v2 = builder.vid) => @value.end
|
||||||
@cols.each do |col|
|
@cols.each do |col|
|
||||||
col.joins builder, table
|
col.joins builder, table
|
||||||
builder.where self.class::Where % [ builder.column( table+col.path, col.col), v1, v2]
|
builder.where self.class::Where % [ builder.column( table+col.path, col.col), v1, v2]
|
||||||
end
|
end
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
alias build not_in_range_build
|
|
||||||
end
|
end
|
||||||
InRange = simple_condition NotInRange, '..', '%s BETWEEN %s AND %s'
|
InRange = simple_condition NotInRange, '..', "%s BETWEEN %s AND %s"
|
||||||
|
|
||||||
# Every key-pair will be ORed. No multiple values possible.
|
|
||||||
class Overlaps < Condition
|
|
||||||
Operator, Where = '<=>', '(%s, %s) OVERLAPS (%s, %s)'
|
|
||||||
Expected = [Range, lambda {|val|
|
|
||||||
Array === val && 2 == val.length &&
|
|
||||||
[Time, Date, String].any? {|v|v===val[0]} &&
|
|
||||||
[Numeric, String].any? {|v|v===val[1]}
|
|
||||||
}]
|
|
||||||
|
|
||||||
def initialize model, cols, val
|
|
||||||
if Array === val
|
|
||||||
f = Time.parse( val[0]).localtime
|
|
||||||
l = val[1]
|
|
||||||
l = case l
|
|
||||||
when String then Time.parse( l).localtime
|
|
||||||
when Numeric then f+l
|
|
||||||
else raise ArgumentError, "Unexpected type for end-value #{l.inspect}"
|
|
||||||
end
|
|
||||||
f += f.utc_offset
|
|
||||||
l += l.utc_offset
|
|
||||||
val = f.utc..l.utc
|
|
||||||
end
|
|
||||||
super model, cols, val
|
|
||||||
end
|
|
||||||
|
|
||||||
def overlaps_build builder, table
|
|
||||||
builder = Or.new builder
|
|
||||||
builder.wobs (v1 = builder.vid).to_sym => @value.begin, (v2 = builder.vid).to_sym => @value.end
|
|
||||||
v1 = "TIMESTAMP #{v1}"
|
|
||||||
v2 = "TIMESTAMP #{v2}"
|
|
||||||
@cols.each do |col|
|
|
||||||
col.joins builder, table
|
|
||||||
end.each_slice 2 do |f,s|
|
|
||||||
builder.where self.class::Where % [
|
|
||||||
builder.column( table+f.path, f.col), builder.column( table+s.path, s.col), v1, v2]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
alias build overlaps_build
|
|
||||||
end
|
|
||||||
NotOverlaps = simple_condition Overlaps, '<=>', 'NOT (%s, %s) OVERLAPS (%s, %s)'
|
|
||||||
|
|
||||||
class NotIn < Condition
|
class NotIn < Condition
|
||||||
Operator = '!|='
|
Operator = '!|='
|
||||||
Where = "%s NOT IN (%s)"
|
Where = "%s NOT IN (%s)"
|
||||||
Expected = [Array]
|
Expected = [Array]
|
||||||
|
|
||||||
def not_in_build builder, table
|
def build builder, table
|
||||||
builder.wobs (v = builder.vid).to_sym => @value
|
builder.wobs (v = builder.vid).to_sym => @value
|
||||||
@cols.each do |col|
|
@cols.each do |col|
|
||||||
col.joins builder, table
|
col.joins builder, table
|
||||||
|
@ -257,119 +181,54 @@ class SmqlToAR
|
||||||
end
|
end
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
alias build not_in_build
|
|
||||||
end
|
end
|
||||||
|
|
||||||
In = simple_condition NotIn, '|=', '%s IN (%s)', [Array]
|
In = simple_condition NotIn, '|=', '%s IN (%s)', [Array]
|
||||||
In2 = simple_condition In, '', nil, [Array]
|
In2 = simple_condition In, '', nil, [Array]
|
||||||
NotEqual = simple_condition Condition, '!=', "%s <> %s", [Array, String, Numeric]
|
NotEqual = simple_condition Condition, /\!=|<>/, "%s <> %s", [Array, String, Numeric]
|
||||||
NotEqual2 = simple_condition Condition, '<>', "%s <> %s", [Array, String, Numeric]
|
|
||||||
GreaterThanOrEqual = simple_condition Condition, '>=', "%s >= %s", [Array, Numeric]
|
GreaterThanOrEqual = simple_condition Condition, '>=', "%s >= %s", [Array, Numeric]
|
||||||
LesserThanOrEqual = simple_condition Condition, '<=', "%s <= %s", [Array, Numeric]
|
LesserThanOrEqual = simple_condition Condition, '<=', "%s <= %s", [Array, Numeric]
|
||||||
class StringTimeGreaterThanOrEqual < Condition
|
|
||||||
Operator, Where, Expected = '>=', '%s >= %s', [Time, Date, String]
|
|
||||||
def initialize model, cols, val
|
|
||||||
super model, cols, Time.parse( val.to_s)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
StringTimeLesserThanOrEqual = simple_condition StringTimeGreaterThanOrEqual, '<=', "%s <= %s"
|
|
||||||
|
|
||||||
# Examples:
|
|
||||||
# { 'articles=>' => { id: 1 } }
|
|
||||||
# { 'articles=>' => [ { id: 1 }, { id: 2 } ] }
|
|
||||||
class EqualJoin <Condition
|
class EqualJoin <Condition
|
||||||
Operator = '=>'
|
Operator = '='
|
||||||
Expected = [Hash, lambda {|x| x.kind_of?( Array) and x.all? {|y| y.kind_of?( Hash) }}]
|
Expected = [Hash]
|
||||||
|
|
||||||
def initialize *pars
|
def initialize *pars
|
||||||
super( *pars)
|
super( *pars)
|
||||||
@value = Array.wrap @value
|
|
||||||
cols = {}
|
cols = {}
|
||||||
@cols.each do |col|
|
@cols.each do |col|
|
||||||
col_model = col.relation
|
col_model = SmqlToAR.model_of col.last_model, col.col
|
||||||
cols[col] = [col_model] + @value.collect {|val| ConditionTypes.try_parse( col_model, val) }
|
#p col_model: col_model.to_s, value: @value
|
||||||
|
cols[col] = [col_model] + ConditionTypes.try_parse( col_model, @value)
|
||||||
end
|
end
|
||||||
@cols = cols
|
@cols = cols
|
||||||
end
|
end
|
||||||
|
|
||||||
def verify_column col
|
def verify_column col
|
||||||
raise_unless col.relation, NonExistingRelationError.new( %w[Relation], col)
|
refl = SmqlToAR.model_of col.last_model, col.col
|
||||||
|
#p refl: refl, model: @model.name, col: col, :reflections => @model.reflections.keys
|
||||||
|
raise NonExistingRelationError.new( %w[Relation], col) unless refl
|
||||||
end
|
end
|
||||||
|
|
||||||
def equal_join_build builder, table
|
def build builder, table
|
||||||
if 2 < @cols.first.second.length
|
|
||||||
b2, b3 = And, Or
|
|
||||||
else
|
|
||||||
b2, b3 = Or, And
|
|
||||||
end
|
|
||||||
b2 = b2.new builder
|
|
||||||
@cols.each do |col, sub|
|
@cols.each do |col, sub|
|
||||||
model, *sub = sub
|
|
||||||
t = table + col.path + [col.col]
|
t = table + col.path + [col.col]
|
||||||
col.joins builder, table
|
#p sub: sub
|
||||||
builder.joins t, model
|
p col: col, joins: col.joins
|
||||||
b4 = b3.new( b2)
|
col.joins.each {|j, m| builder.join table+j, m }
|
||||||
sub.each do |i|
|
builder.join t, SmqlToAR.model_of( col.last_model, col.col)
|
||||||
b5 = And.new b4
|
sub[1..-1].each {|one| one.build builder, t }
|
||||||
i.collect {|j| j.build b5, t }
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
alias build equal_join_build
|
|
||||||
end
|
end
|
||||||
|
Equal = simple_condition Condition, '=', "%s = %s", [Array, String, Numeric]
|
||||||
# Takes to Queries.
|
Equal2 = simple_condition Equal, '', "%s = %s", [String, Numeric]
|
||||||
# First Query will be a Subquery, second a regular query.
|
|
||||||
# Example:
|
|
||||||
# Person.smql 'sub.articles:' => [{'limit:' => 1, 'order:': 'updated_at desc'}, {'content~' => 'some text'}]
|
|
||||||
# Person must have as last Article (compared by updated_at) owned by Person a Artive which has 'some text' in content.
|
|
||||||
# The last Article needn't to have 'some text' has content, the subquery takes it anyway.
|
|
||||||
# But the second query compares to it and never to any other Article, because these are filtered by first query.
|
|
||||||
# The difference to
|
|
||||||
# Person.smql :articles => {'content~' => 'some text', 'limit:' => 1, 'order:': 'updated_at desc'}
|
|
||||||
# is, second is not allowed (limit and order must be in root) and this means something like
|
|
||||||
# "Person must have the Article owned by Person which has 'some text' in content.
|
|
||||||
# limit and order has no function in this query and this article needn't to be the last."
|
|
||||||
=begin
|
|
||||||
class SubEqualJoin < EqualJoin
|
|
||||||
Operator = '()'
|
|
||||||
Expected = [lambda {|x| x.kind_of?( Array) and (1..2).include?( x.length) and x.all?( &it.kind_of?( Hash))}]
|
|
||||||
|
|
||||||
def initialize model, cols, val
|
|
||||||
super model, cols, val[1]
|
|
||||||
# sub: model, subquery, sub(condition)
|
|
||||||
@cols.each {|col, sub| sub[ 1..-1] = SmqlToAR.new( col.relation, val[0]).parse, *sub[-1] }
|
|
||||||
end
|
|
||||||
|
|
||||||
def verify_column col
|
|
||||||
raise_unless col.child?, ConColumnError.new( [:Column], col)
|
|
||||||
end
|
|
||||||
|
|
||||||
def sub_equal_join_build builder, table
|
|
||||||
@cols.each do |col, sub|
|
|
||||||
t = table+col.to_a
|
|
||||||
builder.sub_joins t, col, *sub[0..1]
|
|
||||||
#ap sub: sub[2..-1]
|
|
||||||
sub[2..-1].each {|x| x.build builder, t }
|
|
||||||
end
|
|
||||||
self
|
|
||||||
end
|
|
||||||
alias build sub_equal_join_build
|
|
||||||
end
|
|
||||||
=end
|
|
||||||
|
|
||||||
Equal = simple_condition Condition, '=', "%s = %s", [Array, String, Numeric, Date, Time]
|
|
||||||
Equal2 = simple_condition Equal, '', "%s = %s", [String, Numeric, Date, Time]
|
|
||||||
GreaterThan = simple_condition Condition, '>', "%s > %s", [Array, Numeric]
|
GreaterThan = simple_condition Condition, '>', "%s > %s", [Array, Numeric]
|
||||||
StringTimeGreaterThan = simple_condition StringTimeGreaterThanOrEqual, '>', "%s > %s"
|
|
||||||
LesserThan = simple_condition Condition, '<', "%s < %s", [Array, Numeric]
|
LesserThan = simple_condition Condition, '<', "%s < %s", [Array, Numeric]
|
||||||
StringTimeLesserThan = simple_condition StringTimeGreaterThanOrEqual, '<', "%s < %s"
|
|
||||||
NotIlike = simple_condition Condition, '!~', "%s NOT ILIKE %s", [Array, String]
|
NotIlike = simple_condition Condition, '!~', "%s NOT ILIKE %s", [Array, String]
|
||||||
Ilike = simple_condition Condition, '~', "%s ILIKE %s", [Array, String]
|
Ilike = simple_condition Condition, '~', "%s ILIKE %s", [Array, String]
|
||||||
Exists = simple_condition Condition, '', '%s IS NOT NULL', [TrueClass]
|
|
||||||
NotExists = simple_condition Condition, '', '%s IS NULL', [FalseClass]
|
|
||||||
|
|
||||||
|
####### No Operator #######
|
||||||
Join = simple_condition EqualJoin, '', nil, [Hash]
|
Join = simple_condition EqualJoin, '', nil, [Hash]
|
||||||
InRange2 = simple_condition InRange, '', nil, [Range]
|
InRange2 = simple_condition InRange, '', nil, [Range]
|
||||||
class Select < Condition
|
class Select < Condition
|
||||||
|
@ -377,10 +236,10 @@ class SmqlToAR
|
||||||
Expected = [nil]
|
Expected = [nil]
|
||||||
|
|
||||||
def verify_column col
|
def verify_column col
|
||||||
raise_unless col.exist_in? || SmqlToAR.model_of( col.last_model, col.col), NonExistingSelectableError.new( col)
|
raise NonExistingSelectableError.new( col) unless col.exist_in? or SmqlToAR.model_of( col.last_model, col.col)
|
||||||
end
|
end
|
||||||
|
|
||||||
def select_build builder, table
|
def build builder, table
|
||||||
@cols.each do |col|
|
@cols.each do |col|
|
||||||
if col.exist_in?
|
if col.exist_in?
|
||||||
col.joins builder, table
|
col.joins builder, table
|
||||||
|
@ -392,7 +251,6 @@ class SmqlToAR
|
||||||
end
|
end
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
alias build select_build
|
|
||||||
end
|
end
|
||||||
|
|
||||||
class Functions < Condition
|
class Functions < Condition
|
||||||
|
@ -400,19 +258,13 @@ class SmqlToAR
|
||||||
Expected = [String, Array, Hash, Numeric, nil]
|
Expected = [String, Array, Hash, Numeric, nil]
|
||||||
|
|
||||||
class Function
|
class Function
|
||||||
include SmqlToAR::Assertion
|
|
||||||
Name = nil
|
Name = nil
|
||||||
Expected = []
|
Expected = []
|
||||||
attr_reader :model, :func, :args
|
attr_reader :model, :func, :args
|
||||||
|
|
||||||
class <<self
|
def self.try_parse model, func, args
|
||||||
def try_parse model, func, args
|
SmqlToAR.logger.info( { try_parse: [func,args]}.inspect)
|
||||||
self.new model, func, args if self::Name === func and self::Expected.any? {|x| x === args }
|
self.new model, func, args if self::Name === func and self::Expected.any? {|e| e === args }
|
||||||
end
|
|
||||||
|
|
||||||
def inspect
|
|
||||||
"#{self.name}( :name=>#{self::Name}, :expected=>#{self::Expected})"
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def initialize model, func, args
|
def initialize model, func, args
|
||||||
|
@ -425,64 +277,47 @@ class SmqlToAR
|
||||||
Expected = [String, Array, Hash, nil]
|
Expected = [String, Array, Hash, nil]
|
||||||
|
|
||||||
def initialize model, func, args
|
def initialize model, func, args
|
||||||
|
SmqlToAR.logger.info( {args: args}.inspect)
|
||||||
args = case args
|
args = case args
|
||||||
when String then [args]
|
when String then [args]
|
||||||
when Array, Hash then args.to_a
|
when Array, Hash then args.to_a
|
||||||
when nil then nil
|
when nil then nil
|
||||||
else raise 'Oops'
|
else raise 'Oops'
|
||||||
end
|
end
|
||||||
|
SmqlToAR.logger.info( {args: args}.inspect)
|
||||||
args.andand.collect! do |o|
|
args.andand.collect! do |o|
|
||||||
o = Array.wrap o
|
o = Array.wrap o
|
||||||
col = Column.new model, o.first
|
col = Column.new model, o.first
|
||||||
o = 'desc' == o.last.to_s.downcase ? :DESC : :ASC
|
o = 'desc' == o.last.to_s.downcase ? :DESC : :ASC
|
||||||
raise_unless col.exist_in?, NonExistingColumnError.new( [:Column], col)
|
raise NonExistingColumnError.new( [:Column], col) unless col.exist_in?
|
||||||
[col, o]
|
[col, o]
|
||||||
end
|
end
|
||||||
|
SmqlToAR.logger.info( {args: args}.inspect)
|
||||||
super model, func, args
|
super model, func, args
|
||||||
end
|
end
|
||||||
|
|
||||||
def order_build builder, table
|
def build builder, table
|
||||||
return if @args.blank?
|
return if @args.blank?
|
||||||
@args.each do |o|
|
@args.each do |o|
|
||||||
col, o = o
|
col, o = o
|
||||||
col.joins builder, table
|
col.joins builder, table
|
||||||
t = table + col.path
|
t = table + col.path
|
||||||
#raise_unless 1 == t.length, RootOnlyFunctionError.new( t)
|
#raise OnlyOrderOnBaseError.new( t) unless 1 == t.length
|
||||||
builder.order t, col.col, o
|
builder.order t, col.col, o
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
alias build order_build
|
|
||||||
end
|
|
||||||
|
|
||||||
class Limit < Function
|
|
||||||
Name = :limit
|
|
||||||
Expected = [Fixnum]
|
|
||||||
|
|
||||||
def limit_build builder, table
|
|
||||||
raise_unless 1 == table.length, RootOnlyFunctionError.new( table)
|
|
||||||
builder.limit = Array.wrap(@args).first.to_i
|
|
||||||
end
|
|
||||||
alias build limit_build
|
|
||||||
end
|
|
||||||
|
|
||||||
class Offset < Function
|
|
||||||
Name = :offset
|
|
||||||
Expected = [Fixnum]
|
|
||||||
|
|
||||||
def offset_build builder, table
|
|
||||||
raise_unless 1 == table.length, RootOnlyFunctionError.new( table)
|
|
||||||
builder.offset = Array.wrap(@args).first.to_i
|
|
||||||
end
|
|
||||||
alias build offset_build
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.new model, col, val
|
def self.new model, col, val
|
||||||
|
SmqlToAR.logger.info( { function: col.first.to_sym }.inspect)
|
||||||
r = nil
|
r = nil
|
||||||
constants.each do |c|
|
constants.each do |c|
|
||||||
next if [:Function, :Where, :Expected, :Operator].include? c
|
next if [:Function, :Where, :Expected, :Operator].include? c
|
||||||
c = const_get c
|
c = const_get c
|
||||||
next if Function === c or not c.respond_to?( :try_parse)
|
next if Function === c or not c.respond_to?( :try_parse)
|
||||||
|
SmqlToAR.logger.info( {f: c}.inspect)
|
||||||
r = c.try_parse model, col.first.to_sym, val
|
r = c.try_parse model, col.first.to_sym, val
|
||||||
|
SmqlToAR.logger.info( {r: r}.inspect)
|
||||||
break if r
|
break if r
|
||||||
end
|
end
|
||||||
r
|
r
|
||||||
|
|
|
@ -22,74 +22,36 @@ class SmqlToAR
|
||||||
class Vid
|
class Vid
|
||||||
attr_reader :vid
|
attr_reader :vid
|
||||||
def initialize( vid) @vid = vid end
|
def initialize( vid) @vid = vid end
|
||||||
def to_s() ":smql_c#{@vid}" end
|
def to_s() ":c#{@vid}" end
|
||||||
def to_sym() "smql_c#{@vid}".to_sym end
|
def to_sym() "c#{@vid}".to_sym end
|
||||||
alias sym to_sym
|
alias sym to_sym
|
||||||
def to_i() @vid end
|
def to_i() @vid end
|
||||||
def === other
|
|
||||||
to_s === other || to_sym === other || to_i === other || self == other || self === other
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
class Aliases < Hash
|
attr_reader :table_alias, :model, :table_model, :base_table, :_where, :_select, :_wobs, :_joins
|
||||||
attr_accessor :counter, :prefix
|
attr_accessor :logger
|
||||||
|
|
||||||
def initialize prefix, *a, &e
|
def initialize model
|
||||||
@counter, @prefix = 0, prefix || 'smql'
|
|
||||||
super *a, &e
|
|
||||||
end
|
|
||||||
|
|
||||||
def format name
|
|
||||||
pre, suf = name.split( ',', 2)
|
|
||||||
return name unless suf
|
|
||||||
pre += ",#{@counter += 1},"
|
|
||||||
l = 60-pre.length
|
|
||||||
n = suf[(suf.length<=l ? 0 : -l)..-1]
|
|
||||||
n == suf ? pre+n : "#{pre},,,#{n}"
|
|
||||||
end
|
|
||||||
|
|
||||||
def name n
|
|
||||||
n.collect( &:to_alias).join ','
|
|
||||||
end
|
|
||||||
|
|
||||||
def [] k
|
|
||||||
n = name k
|
|
||||||
v = super n
|
|
||||||
v = self[k] = format( "#{prefix},#{n}") unless v
|
|
||||||
v
|
|
||||||
end
|
|
||||||
|
|
||||||
def []= k, v
|
|
||||||
super name( k), v
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
attr_reader :table_alias, :model, :table_model, :base_table, :_where, :_select, :_wobs, :_joins, :prefix, :_vid
|
|
||||||
attr_accessor :logger, :limit, :offset
|
|
||||||
|
|
||||||
def initialize model, prefix = nil
|
|
||||||
@prefix = "smql"
|
|
||||||
@logger = SmqlToAR.logger
|
@logger = SmqlToAR.logger
|
||||||
@table_alias = Aliases.new @prefix
|
@table_alias = Hash.new do |h, k|
|
||||||
@_vid, @_where, @_wobs, @model, @quote = 0, SmqlToAR::And[], {}, model, model.connection
|
k = Array.wrap k
|
||||||
@base_table = [Column::Col.new( model.table_name)]
|
h[k] = "smql,#{k.join(',')}"
|
||||||
|
end
|
||||||
|
@_vid, @_where, @_wobs, @model, @quoter = 0, [], {}, model, model.connection
|
||||||
|
@base_table = [model.table_name.to_sym]
|
||||||
@table_alias[ @base_table] = @base_table.first
|
@table_alias[ @base_table] = @base_table.first
|
||||||
t = quote_table_name @base_table.first.col
|
t = quote_table_name @table_alias[ @base_table]
|
||||||
@_select, @_joins, @_joined, @_includes, @_order = ["DISTINCT #{t}.*"], "", [@base_table], [], []
|
@_select, @_joins, @_joined, @_includes, @_order = ["DISTINCT #{t}.*"], "", [], [], []
|
||||||
@table_model = {@base_table => @model}
|
@table_model = {@base_table => @model}
|
||||||
end
|
end
|
||||||
|
|
||||||
def vid() Vid.new( @_vid+=1) end
|
def vid() Vid.new( @_vid+=1) end
|
||||||
|
|
||||||
def inspect
|
|
||||||
"#<#{self.class.name}:#{"0x%x"% (self.object_id<<1)}|#{@prefix}:#{@base_table}:#{@model} vid=#{@_vid} where=#{@_where} wobs=#{@_wobs} select=#{@_select} aliases=#{@table_alias}>"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Jede via where uebergebene Condition wird geodert und alle zusammen werden geundet.
|
# Jede via where uebergebene Condition wird geodert und alle zusammen werden geundet.
|
||||||
# "Konjunktive Normalform". Allerdings duerfen Conditions auch Komplexe Abfragen enthalten.
|
# "Konjunktive Normalform". Allerdings duerfen Conditions auch Komplexe Abfragen enthalten.
|
||||||
# Ex: builder.where( ['a = a', 'b = c']).where( ['c = d', 'e = e']).where( 'x = y').where( ['( m = n AND o = p )', 'f = g'])
|
# Ex: builder.where( 'a = a', 'b = c').where( 'c = d', 'e = e').where( 'x = y').where( '( m = n AND o = p )', 'f = g')
|
||||||
# #=> WHERE ( a = a OR b = c ) AND ( c = d OR e = e ) AND x = y ( ( m = n AND o = p ) OR f = g )
|
# #=> WHERE ( a = a OR b = c ) AND ( c = d OR e = e ) AND x = y ( ( m = n AND o = p ) OR f = g )
|
||||||
def where cond
|
def where *cond
|
||||||
@_where.push cond
|
@_where.push cond
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
@ -100,69 +62,42 @@ class SmqlToAR
|
||||||
end
|
end
|
||||||
|
|
||||||
def quote_column_name name
|
def quote_column_name name
|
||||||
@quote.quote_column_name( name).gsub /"\."/, ','
|
@quoter.quote_column_name( name).gsub /"\."/, ','
|
||||||
end
|
end
|
||||||
|
|
||||||
def quote_table_name name
|
def quote_table_name name
|
||||||
name = case name
|
@quoter.quote_table_name( name).gsub /"\."/, ','
|
||||||
when Array, Column::Col then @table_alias[Array.wrap name]
|
|
||||||
else name.to_s
|
|
||||||
end
|
|
||||||
@quote.quote_table_name name
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def column table, name
|
def column table, name
|
||||||
"#{quote_table_name table}.#{quote_column_name name}"
|
"#{quote_table_name table.kind_of?(String) ? table : @table_alias[table]}.#{quote_column_name name}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def build_join orig, pretable, table, prekey, key
|
def build_join orig, pretable, table, prekey, key
|
||||||
"\tLEFT JOIN #{orig} AS #{quote_table_name table}\n\tON #{column pretable, prekey} = #{column table, key}\n"
|
" JOIN #{quote_table_name orig.to_sym} AS #{quote_table_name table} ON #{column pretable, prekey} = #{column table, key} "
|
||||||
end
|
end
|
||||||
|
|
||||||
def sub_joins table, col, model, query
|
def join table, model
|
||||||
prefix, base_table = "#{@prefix}_sub", col.relation.table_name
|
return self if @_joined.include? table # Already joined
|
||||||
join_ table, model, "(#{query.build( prefix).ar.to_sql})"
|
pretable = table[0...-1]
|
||||||
end
|
|
||||||
|
|
||||||
def join_ table, model, query, pretable = nil
|
|
||||||
pretable ||= table[0...-1]
|
|
||||||
@table_model[ table] = model
|
@table_model[ table] = model
|
||||||
@table_model.rehash
|
premodel = @table_model[ pretable]
|
||||||
premodel = @table_model.find {|k,v| pretable == k }[1]
|
|
||||||
t = @table_alias[ table]
|
t = @table_alias[ table]
|
||||||
pt = quote_table_name table[ 0...-1]
|
pt = quote_table_name @table_alias[ table[ 0...-1]]
|
||||||
refl = premodel.reflections[table.last.to_sym]
|
refl = premodel.reflections[table.last]
|
||||||
case refl
|
|
||||||
when ActiveRecord::Reflection::ThroughReflection
|
|
||||||
through = refl.through_reflection
|
|
||||||
through_table = table[0...-1]+[Column::Col.new( through.name, table.last.as)]
|
|
||||||
srctable = through_table+[Column::Col.new( refl.source_reflection.name, table.last.as)]
|
|
||||||
@table_model[ srctable] = model
|
|
||||||
@table_alias[ table] = @table_alias[ srctable]
|
|
||||||
join_ through_table, through.klass, quote_table_name( through.table_name)
|
|
||||||
join_ srctable, refl.klass, query, through_table
|
|
||||||
when ActiveRecord::Reflection::AssociationReflection
|
|
||||||
case refl.macro
|
case refl.macro
|
||||||
when :has_many, :has_one
|
when :has_many
|
||||||
@_joins += build_join query, pretable, t, premodel.primary_key, refl.foreign_key
|
@_joins += build_join model.table_name, pretable, t, premodel.primary_key, refl.primary_key_name
|
||||||
when :belongs_to
|
when :belongs_to
|
||||||
@_joins += build_join query, pretable, t, refl.foreign_key, premodel.primary_key
|
@_joins += build_join model.table_name, pretable, t, refl.primary_key_name, premodel.primary_key
|
||||||
when :has_and_belongs_to_many
|
when :has_and_belongs_to_many
|
||||||
jointable = [Column::Col.new(',')] + table
|
jointable = [','] + table
|
||||||
@_joins += build_join refl.options[:join_table], pretable, @table_alias[ jointable], premodel.primary_key, refl.foreign_key
|
@_joins += build_join refl.options[:join_table], pretable, @table_alias[jointable], premodel.primary_key, refl.primary_key_name
|
||||||
@_joins += build_join query, jointable, t, refl.association_foreign_key, refl.association_primary_key
|
@_joins += build_join model.table_name, jointable, t, refl.association_foreign_key, refl.association_primary_key
|
||||||
else raise BuilderError, "Unkown reflection macro: #{refl.macro.inspect}"
|
else raise BuilderError, "Unkown reflection macro: #{refl.macro.inspect}"
|
||||||
end
|
end
|
||||||
else raise BuilderError, "Unkown reflection type: #{refl.class.name} #{refl.macro.inspect}"
|
|
||||||
end
|
|
||||||
self
|
|
||||||
end
|
|
||||||
|
|
||||||
def joins table, model
|
|
||||||
table = table.flatten.compact
|
|
||||||
return self if @_joined.include? table # Already joined
|
|
||||||
join_ table, model, quote_table_name( model.table_name)
|
|
||||||
@_joined.push table
|
@_joined.push table
|
||||||
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
def includes table
|
def includes table
|
||||||
|
@ -176,28 +111,36 @@ class SmqlToAR
|
||||||
end
|
end
|
||||||
|
|
||||||
def order table, col, o
|
def order table, col, o
|
||||||
ct = column table, col
|
tc = column table, col
|
||||||
@_select.push ct
|
@_select.push ct
|
||||||
@_order.push "#{ct} #{:DESC == o ? :DESC : :ASC}"
|
@_order.push "#{ct} #{:DESC == o ? :DESC : :ASC}"
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class Dummy
|
||||||
|
def method_missing m, *a, &e
|
||||||
|
#p :dummy => m, :pars => a, :block => e
|
||||||
|
self
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def build_ar
|
def build_ar
|
||||||
where_str = @_where.type_correction!.optimize!.build_where
|
where_str = @_where.collect do |w|
|
||||||
|
w = Array.wrap w
|
||||||
|
1 == w.length ? w.first : "( #{w.join( ' OR ')} )"
|
||||||
|
end.join ' AND '
|
||||||
incls = {}
|
incls = {}
|
||||||
@_includes.each do |inc|
|
@_includes.each do |inc|
|
||||||
b = incls
|
b = incls
|
||||||
inc[1..-1].collect {|rel| b = b[rel] ||= {} }
|
inc[1..-1].collect {|rel| b = b[rel] ||= {} }
|
||||||
end
|
end
|
||||||
|
@logger.debug incls: incls, joins: @_joins
|
||||||
@model = @model.
|
@model = @model.
|
||||||
select( @_select.join( ', ')).
|
select( @_select.join( ', ')).
|
||||||
joins( @_joins).
|
joins( @_joins).
|
||||||
where( where_str, @_wobs).
|
where( where_str, @_wobs).
|
||||||
order( @_order.join( ', ')).
|
order( @_order.join( ', ')).
|
||||||
includes( incls)
|
includes( incls)
|
||||||
@model = @model.limit @limit if @limit
|
|
||||||
@model = @model.offset @offset if @offset
|
|
||||||
@model
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def fix_calculate
|
def fix_calculate
|
||||||
|
@ -216,75 +159,4 @@ class SmqlToAR
|
||||||
@model
|
@model
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
class SubBuilder < Array
|
|
||||||
attr_reader :parent, :_where
|
|
||||||
delegate :wobs, :joins, :includes, :sub_joins, :vid, :quote_column_name, :quote, :quote_table_name, :column, :to => :parent
|
|
||||||
|
|
||||||
def initialize parent, tmp = false
|
|
||||||
@parent = parent
|
|
||||||
@parent.where self unless @parend.nil? && tmp
|
|
||||||
end
|
|
||||||
|
|
||||||
def new parent, tmp = false
|
|
||||||
super parent, tmp
|
|
||||||
#return parent if self.class == parent.class
|
|
||||||
#super parent
|
|
||||||
end
|
|
||||||
|
|
||||||
alias where push
|
|
||||||
|
|
||||||
def type_correction!
|
|
||||||
collect! do |sub|
|
|
||||||
if sub.kind_of? Array
|
|
||||||
sub = default[ *sub] unless sub.respond_to?( :type_correction!)
|
|
||||||
sub.type_correction!
|
|
||||||
end
|
|
||||||
sub
|
|
||||||
end
|
|
||||||
self
|
|
||||||
end
|
|
||||||
|
|
||||||
def optimize!
|
|
||||||
ext = []
|
|
||||||
collect! do |sub|
|
|
||||||
sub = sub.optimize! if sub.kind_of? SubBuilder
|
|
||||||
if self.class == sub.class
|
|
||||||
ext.push *sub
|
|
||||||
nil
|
|
||||||
elsif sub.blank?
|
|
||||||
nil
|
|
||||||
elsif 1 == sub.size
|
|
||||||
sub.first
|
|
||||||
else
|
|
||||||
sub
|
|
||||||
end
|
|
||||||
end.compact!
|
|
||||||
push *ext
|
|
||||||
self
|
|
||||||
end
|
|
||||||
|
|
||||||
def inspect
|
|
||||||
"#{self.class.name.sub( /.*::/, '')}[ #{collect(&:inspect).join ', '}]"
|
|
||||||
end
|
|
||||||
def default() SmqlToAR::And end
|
|
||||||
def default_new( parent) default.new self, parent, false end
|
|
||||||
def collect_build_where indent = nil
|
|
||||||
indent = (indent||0) + 1
|
|
||||||
collect {|x| "(#{x.respond_to?( :build_where) ? x.build_where( indent) : x.to_s})" }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
class And < SubBuilder
|
|
||||||
def default; SmqlToAR::Or; end
|
|
||||||
def build_where indent = nil
|
|
||||||
collect_build_where( indent).join " AND\n"+"\t"*(indent||0)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
class Or < SubBuilder
|
|
||||||
def build_where indent = nil
|
|
||||||
collect_build_where( indent).join " OR\n"+"\t"*(indent||0)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue