Class: Lhm::Entangler

Inherits:
Object
  • Object
show all
Includes:
Command, SqlHelper
Defined in:
lib/lhm/entangler.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SqlHelper

#annotation, #idx_name, #idx_spec, #sql, #table?, #update

Methods included from Command

#run

Constructor Details

#initialize(migration, connection = nil) ⇒ Entangler

Creates entanglement between two tables. All creates, updates and deletes to origin will be repeated on the destination table.



16
17
18
19
20
21
# File 'lib/lhm/entangler.rb', line 16

def initialize(migration, connection = nil)
  @common = migration.intersection
  @origin = migration.origin
  @destination = migration.destination
  @connection = connection
end

Instance Attribute Details

#connectionObject (readonly)

Returns the value of attribute connection.



12
13
14
# File 'lib/lhm/entangler.rb', line 12

def connection
  @connection
end

Instance Method Details

#afterObject



84
85
86
# File 'lib/lhm/entangler.rb', line 84

def after
  sql(untangle)
end

#beforeObject



80
81
82
# File 'lib/lhm/entangler.rb', line 80

def before
  sql(entangle)
end

#create_delete_triggerObject



57
58
59
60
61
62
63
64
# File 'lib/lhm/entangler.rb', line 57

def create_delete_trigger
  strip %Q{
    create trigger `#{ trigger(:del) }`
    after delete on `#{ @origin.name }` for each row
    delete ignore from `#{ @destination.name }` #{ SqlHelper.annotation }
    where `#{ @destination.name }`.`id` = OLD.`id`
  }
end

#create_insert_triggerObject



39
40
41
42
43
44
45
46
# File 'lib/lhm/entangler.rb', line 39

def create_insert_trigger
  strip %Q{
    create trigger `#{ trigger(:ins) }`
    after insert on `#{ @origin.name }` for each row
    replace into `#{ @destination.name }` (#{ @common.joined }) #{ SqlHelper.annotation }
    values (#{ @common.typed("NEW") })
  }
end

#create_update_triggerObject



48
49
50
51
52
53
54
55
# File 'lib/lhm/entangler.rb', line 48

def create_update_trigger
  strip %Q{
    create trigger `#{ trigger(:upd) }`
    after update on `#{ @origin.name }` for each row
    replace into `#{ @destination.name }` (#{ @common.joined }) #{ SqlHelper.annotation }
    values (#{ @common.typed("NEW") })
  }
end

#entangleObject



23
24
25
26
27
28
29
# File 'lib/lhm/entangler.rb', line 23

def entangle
  [
    create_delete_trigger,
    create_insert_trigger,
    create_update_trigger
  ]
end

#revertObject



88
89
90
# File 'lib/lhm/entangler.rb', line 88

def revert
  after
end

#trigger(type) ⇒ Object



66
67
68
# File 'lib/lhm/entangler.rb', line 66

def trigger(type)
  "lhmt_#{ type }_#{ @origin.name }"
end

#untangleObject



31
32
33
34
35
36
37
# File 'lib/lhm/entangler.rb', line 31

def untangle
  [
    "drop trigger if exists `#{ trigger(:del) }`",
    "drop trigger if exists `#{ trigger(:ins) }`",
    "drop trigger if exists `#{ trigger(:upd) }`"
  ]
end

#validateObject



70
71
72
73
74
75
76
77
78
# File 'lib/lhm/entangler.rb', line 70

def validate
  unless table?(@origin.name)
    error("#{ @origin.name } does not exist")
  end

  unless table?(@destination.name)
    error("#{ @destination.name } does not exist")
  end
end