Module: OraUtils::TitleParser

Includes:
OracleAccess
Defined in:
lib/orabase/utils/title_parser.rb

Constant Summary

Constants included from OracleAccess

OracleAccess::OS_USER_NAME

Instance Method Summary collapse

Methods included from OracleAccess

#add_sid_to, #execute_on_sid, included, #sid_from, #sid_from_resource, #sql, #sql_on, #sql_on_all_asm_sids, #sql_on_all_database_sids, #sql_on_all_sids, #sql_on_sids, #timeout_specified

Instance Method Details

#default_asm_sidObject

Retrieve the default sid on this system



74
75
76
77
78
79
# File 'lib/orabase/utils/title_parser.rb', line 74

def default_asm_sid
  oratab = OraUtils::OraTab.new
  oratab.default_asm_sid
rescue
  ''
end

#default_database_sidObject

Retrieve the default sid on this system



66
67
68
69
70
71
# File 'lib/orabase/utils/title_parser.rb', line 66

def default_database_sid
  oratab = OraUtils::OraTab.new
  oratab.default_database_sid
rescue
  ''
end

#map_title_to_asm_sid(*attributes, &proc) ⇒ Object



59
60
61
62
# File 'lib/orabase/utils/title_parser.rb', line 59

def map_title_to_asm_sid(*attributes, &proc)
  all_attributes = [[:name, parse_asm_name]] + attributes + [[:sid, parse_asm_sid]]
  map_title_to_attributes(*all_attributes, &proc)
end

#map_title_to_sid(*attributes, &proc) ⇒ Object



54
55
56
57
# File 'lib/orabase/utils/title_parser.rb', line 54

def map_title_to_sid(*attributes, &proc)
  all_attributes = [[:name, parse_database_name]] + attributes + [[:sid, parse_database_sid]]
  map_title_to_attributes(*all_attributes, &proc)
end

#parse_asm_nameObject

TODO: Check how we can remove this duplication



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/orabase/utils/title_parser.rb', line 36

def parse_asm_name
  lambda do |name|
    begin
      groups      = name.scan(/^((@?.*?)?(\@.*?)?)$/).flatten
      sid         = parse_asm_sid.call(groups.last)
      object_name = groups[1]
      if self.name != :ora_exec && object_name.include?('/')
        Puppet.deprecation_warning("Using 'sid/name' in title is deprecated. Use 'name@sid'.")
        sid, object_name = object_name.scan(/^(.*)\/(.*)$/).flatten.flatten
      end
      "#{object_name}@#{sid}"
    rescue
      fail ArgumentError, 'a failure in parsing the asm object title. Check the documentation for the correct syntax of the title'
    end
  end
end

#parse_asm_sidObject



12
13
14
15
# File 'lib/orabase/utils/title_parser.rb', line 12

def parse_asm_sid
  # Chopping of @ end using length of 16 because max length of SID is 16
  lambda { |sid_name| sid_name.nil? ? default_asm_sid : sid_name[1..17]} 
end

#parse_database_nameObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/orabase/utils/title_parser.rb', line 18

def parse_database_name
  lambda do |name|
    begin
      groups      = name.scan(/^((@?.*?)?(\@.*?)?)$/).flatten
      sid         = parse_database_sid.call(groups.last)
      object_name = groups[1]
      if self.name != :ora_exec && object_name.include?('/')
        Puppet.deprecation_warning("Using 'sid/name' in title is deprecated. Use 'name@sid'.")
        sid, object_name = object_name.scan(/^(.*)\/(.*)$/).flatten.flatten
      end
      "#{object_name}@#{sid}"
    rescue
      fail ArgumentError, 'a failure in parsing the database object title. Check the documentation for the correct syntax of the title'
    end
  end
end

#parse_database_sidObject



7
8
9
10
# File 'lib/orabase/utils/title_parser.rb', line 7

def parse_database_sid
  # Chopping of @ end using length of 16 because max length of SID is 16
  lambda { |sid_name| sid_name.nil? ? default_database_sid : sid_name[1..17]} 
end