Class: JSON::LD::BlankNodeNamer

Inherits:
BlankNodeMapper show all
Defined in:
lib/json/ld/utils.rb

Instance Method Summary collapse

Methods inherited from BlankNodeMapper

#get_name

Constructor Details

#initialize(prefix) ⇒ BlankNodeNamer

Returns a new instance of BlankNodeNamer.

Parameters:

  • prefix (String)


285
286
287
288
289
# File 'lib/json/ld/utils.rb', line 285

def initialize(prefix)
  @prefix = prefix.to_s
  @num = 0
  super
end

Instance Method Details

#get_sym(old = "") ⇒ String

Get a new symbol mapped from ‘old`

Parameters:

  • old (String) (defaults to: "")

    (“”)

Returns:

  • (String)


295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# File 'lib/json/ld/utils.rb', line 295

def get_sym(old = "")
  old = old.to_s.sub(/_:/, '')
  if !old.empty? && key?(old)
    self[old]
  elsif !old.empty?
    @num += 1
    # puts "allocate #{@prefix + (@num - 1).to_s} to #{old.inspect}"
    self[old] = @prefix + (@num - 1).to_s
  else
    # Not referenced, just return a new unique value
    @num += 1
    # puts "allocate #{@prefix + (@num - 1).to_s} to #{old.inspect}"
    @prefix + (@num - 1).to_s
  end
end