Class: PubliSci::Prov::Usage

Inherits:
Object
  • Object
show all
Includes:
Element
Defined in:
lib/publisci/metadata/prov/usage.rb

Instance Method Summary collapse

Methods included from Element

#__label=, #subject, #subject=, #subject_id

Methods included from CustomPredicate

#add_custom, #custom, #has

Methods included from Vocabulary

#vocabulary

Instance Method Details

#__labelObject



6
7
8
# File 'lib/publisci/metadata/prov/usage.rb', line 6

def __label
  @__label ||= Time.now.nsec.to_s(32)
end

#entity(entity = nil) ⇒ Object



10
11
12
# File 'lib/publisci/metadata/prov/usage.rb', line 10

def entity(entity=nil)
  basic_keyword(:entity,:entities,entity)
end

#had_role(*args, &block) ⇒ Object Also known as: role



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/publisci/metadata/prov/usage.rb', line 14

def had_role(*args, &block)
  if block_given?
    p = Prov::Role.new
    p.instance_eval(&block)
    p.__label=args[0]
    @role = p
    # puts p.class
    Prov.register(args[0], p)
  elsif args.size == 0
    if @role.is_a? Symbol
      raise "UnknownRole: #{@role}" unless (Prov.registry[:role]||={})[@role]
      @role = Prov.registry[:role][@role]
    end
    @role
  elsif args.size == 1
    unless (Prov.registry[:role]||={})[args[0]]
      p = Prov::Role.new
      p.__label=args[0]
      @role = p
      Prov.register(args[0], p)
    end
  else
    name = args.shift
    args = Hash[*args]
    p = Prov::Role.new

    p.__label=name
    p.subject args[:subject]
    (args.keys - [:subject]).map{|k|
      raise "Unkown Role setting #{k}" unless try_auto_set(p,k,args[k])
    }
    @role = p
    Prov.register(name, p)
  end
end

#to_n3Object



51
52
53
54
55
56
57
# File 'lib/publisci/metadata/prov/usage.rb', line 51

def to_n3
  str = "<#{subject}> a prov:Usage ;\n"
  str << "\tprov:entity <#{entity}> ;\n"
  str << "\tprov:hadRole <#{had_role}> ;\n" if had_role
  str[-2] = ".\n"
  str
end

#to_sObject



59
60
61
# File 'lib/publisci/metadata/prov/usage.rb', line 59

def to_s
  subject
end