Class: MoSQL::Schema

Inherits:
Object
  • Object
show all
Includes:
Logging
Defined in:
lib/mosql/schema.rb

Instance Method Summary collapse

Methods included from Logging

#log

Constructor Details

#initialize(map) ⇒ Schema

Returns a new instance of Schema.



56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/mosql/schema.rb', line 56

def initialize(map)
  @map = {}
  map.each do |dbname, db|
    @map[dbname] = { :meta => parse_meta(db[:meta]) }
    db.each do |cname, spec|
      next unless cname.is_a?(String)
      begin
        @map[dbname][cname] = parse_spec("#{dbname}.#{cname}", spec)
      rescue KeyError => e
        raise SchemaError.new("In spec for #{dbname}.#{cname}: #{e}")
      end
    end
  end
end

Instance Method Details

#all_columns(schema, copy = false) ⇒ Object



202
203
204
205
206
207
208
209
210
211
# File 'lib/mosql/schema.rb', line 202

def all_columns(schema, copy=false)
  cols = []
  schema[:columns].each do |col|
    cols << col[:name] unless copy && !copy_column?(col)
  end
  if schema[:meta][:extra_props]
    cols << "_extra_props"
  end
  cols
end

#all_columns_for_copy(schema) ⇒ Object



213
214
215
# File 'lib/mosql/schema.rb', line 213

def all_columns_for_copy(schema)
  all_columns(schema, true)
end

#all_mongo_dbsObject



258
259
260
# File 'lib/mosql/schema.rb', line 258

def all_mongo_dbs
  @map.keys
end

#check_columns!(ns, spec) ⇒ Object



31
32
33
34
35
36
37
38
39
# File 'lib/mosql/schema.rb', line 31

def check_columns!(ns, spec)
  seen = Set.new
  spec[:columns].each do |col|
    if seen.include?(col[:source])
      raise SchemaError.new("Duplicate source #{col[:source]} in column definition #{col[:name]} for #{ns}.")
    end
    seen.add(col[:source])
  end
end

#collections_for_mongo_db(db) ⇒ Object



262
263
264
# File 'lib/mosql/schema.rb', line 262

def collections_for_mongo_db(db)
  (@map[db]||{}).keys
end

#copy_column?(col) ⇒ Boolean

Returns:

  • (Boolean)


198
199
200
# File 'lib/mosql/schema.rb', line 198

def copy_column?(col)
  col[:source] != '$timestamp'
end

#copy_data(db, ns, objs) ⇒ Object



217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/mosql/schema.rb', line 217

def copy_data(db, ns, objs)
  schema = find_ns!(ns)
  db.synchronize do |pg|
    sql = "COPY \"#{schema[:meta][:table]}\" " +
      "(#{all_columns_for_copy(schema).map {|c| "\"#{c}\""}.join(",")}) FROM STDIN"
    pg.execute(sql)
    objs.each do |o|
      pg.put_copy_data(transform_to_copy(ns, o, schema) + "\n")
    end
    pg.put_copy_end
    begin
      pg.get_result.check
    rescue PGError => e
      db.send(:raise_error, e)
    end
  end
end

#create_schema(db, clobber = false) ⇒ Object



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/mosql/schema.rb', line 71

def create_schema(db, clobber=false)
  @map.values.each do |dbspec|
    dbspec.each do |n, collection|
      next unless n.is_a?(String)
      meta = collection[:meta]
      log.info("Creating table '#{meta[:table]}'...")
      db.send(clobber ? :create_table! : :create_table?, meta[:table]) do
        collection[:columns].each do |col|
          opts = {}
          if col[:source] == '$timestamp'
            opts[:default] = Sequel.function(:now)
          end
          column col[:name], col[:type], opts

          if col[:source].to_sym == :_id
            primary_key [col[:name].to_sym]
          end
        end
        if meta[:extra_props]
          column '_extra_props', 'TEXT'
        end
      end
    end
  end
end

#fetch_and_delete_dotted(obj, dotted) ⇒ Object



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/mosql/schema.rb', line 124

def fetch_and_delete_dotted(obj, dotted)
  pieces = dotted.split(".")
  breadcrumbs = []
  while pieces.length > 1
    key = pieces.shift
    breadcrumbs << [obj, key]
    obj = obj[key]
    return nil unless obj.is_a?(Hash)
  end

  val = obj.delete(pieces.first)

  breadcrumbs.reverse.each do |obj, key|
    obj.delete(key) if obj[key].empty?
  end

  val
end

#fetch_special_source(obj, source) ⇒ Object



143
144
145
146
147
148
149
150
# File 'lib/mosql/schema.rb', line 143

def fetch_special_source(obj, source)
  case source
  when "$timestamp"
    Sequel.function(:now)
  else
    raise SchemaError.new("Unknown source: #{source}")
  end
end

#find_db(db) ⇒ Object



97
98
99
100
101
102
103
104
# File 'lib/mosql/schema.rb', line 97

def find_db(db)
  unless @map.key?(db)
    @map[db] = @map.values.find do |spec|
      spec && spec[:meta][:alias].any? { |a| a.match(db) }
    end
  end
  @map[db]
end

#find_ns(ns) ⇒ Object



106
107
108
109
110
111
112
113
114
115
116
# File 'lib/mosql/schema.rb', line 106

def find_ns(ns)
  db, collection = ns.split(".")
  unless spec = find_db(db)
    return nil
  end
  unless schema = spec[collection]
    log.debug("No mapping for ns: #{ns}")
    return nil
  end
  schema
end

#find_ns!(ns) ⇒ Object

Raises:



118
119
120
121
122
# File 'lib/mosql/schema.rb', line 118

def find_ns!(ns)
  schema = find_ns(ns)
  raise SchemaError.new("No mapping for namespace: #{ns}") if schema.nil?
  schema
end

#parse_meta(meta) ⇒ Object



48
49
50
51
52
53
54
# File 'lib/mosql/schema.rb', line 48

def parse_meta(meta)
  meta = {} if meta.nil?
  meta[:alias] = [] unless meta.key?(:alias)
  meta[:alias] = [meta[:alias]] unless meta[:alias].is_a?(Array)
  meta[:alias] = meta[:alias].map { |r| Regexp.new(r) }
  meta
end

#parse_spec(ns, spec) ⇒ Object



41
42
43
44
45
46
# File 'lib/mosql/schema.rb', line 41

def parse_spec(ns, spec)
  out = spec.dup
  out[:columns] = to_array(spec.fetch(:columns))
  check_columns!(ns, out)
  out
end

#primary_sql_key_for_ns(ns) ⇒ Object



266
267
268
# File 'lib/mosql/schema.rb', line 266

def primary_sql_key_for_ns(ns)
  find_ns!(ns)[:columns].find {|c| c[:source] == '_id'}[:name]
end

#quote_copy(val) ⇒ Object



235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/mosql/schema.rb', line 235

def quote_copy(val)
  case val
  when nil
    "\\N"
  when true
    't'
  when false
    'f'
  when Sequel::SQL::Function
    nil
  else
    val.to_s.gsub(/([\\\t\n\r])/, '\\\\\\1')
  end
end

#table_for_ns(ns) ⇒ Object



254
255
256
# File 'lib/mosql/schema.rb', line 254

def table_for_ns(ns)
  find_ns!(ns)[:meta][:table]
end

#to_array(lst) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/mosql/schema.rb', line 7

def to_array(lst)
  array = []
  lst.each do |ent|
    if ent.is_a?(Hash) && ent[:source].is_a?(String) && ent[:type].is_a?(String)
      # new configuration format
      array << {
        :source => ent.fetch(:source),
        :type   => ent.fetch(:type),
        :name   => (ent.keys - [:source, :type]).first,
      }
    elsif ent.is_a?(Hash) && ent.keys.length == 1 && ent.values.first.is_a?(String)
      array << {
        :source => ent.first.first,
        :name   => ent.first.first,
        :type   => ent.first.last
      }
    else
      raise SchemaError.new("Invalid ordered hash entry #{ent.inspect}")
    end

  end
  array
end

#transform(ns, obj, schema = nil) ⇒ Object



152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# File 'lib/mosql/schema.rb', line 152

def transform(ns, obj, schema=nil)
  schema ||= find_ns!(ns)

  obj = obj.dup
  row = []
  schema[:columns].each do |col|

    source = col[:source]
    type = col[:type]

    if source.start_with?("$")
      v = fetch_special_source(obj, source)
    else
      v = fetch_and_delete_dotted(obj, source)
      case v
      when BSON::Binary, BSON::ObjectId, Symbol
        v = v.to_s
      when Hash, Array
        v = JSON.dump(v)
      end
    end
    row << v
  end

  if schema[:meta][:extra_props]
    # Kludgily delete binary blobs from _extra_props -- they may
    # contain invalid UTF-8, which to_json will not properly encode.
    extra = {}
    obj.each do |k,v|
      case v
      when BSON::Binary
        next
      when Float
        # NaN is illegal in JSON. Translate into null.
        v = nil if v.nan?
      end
      extra[k] = v
    end
    row << JSON.dump(extra)
  end

  log.debug { "Transformed: #{row.inspect}" }

  row
end

#transform_to_copy(ns, row, schema = nil) ⇒ Object



250
251
252
# File 'lib/mosql/schema.rb', line 250

def transform_to_copy(ns, row, schema=nil)
  row.map { |c| quote_copy(c) }.compact.join("\t")
end