ohai 6.24.2 → 7.0.0.rc.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (259) hide show
  1. data/lib/ohai.rb +1 -1
  2. data/lib/ohai/application.rb +5 -12
  3. data/lib/ohai/common/dmi.rb +126 -0
  4. data/lib/ohai/config.rb +9 -9
  5. data/lib/ohai/{plugins/darwin/hostname.rb → dsl.rb} +7 -7
  6. data/lib/ohai/dsl/plugin.rb +186 -0
  7. data/lib/ohai/dsl/plugin/versionvi.rb +62 -0
  8. data/lib/ohai/dsl/plugin/versionvii.rb +106 -0
  9. data/lib/ohai/exception.rb +11 -2
  10. data/lib/ohai/hints.rb +48 -0
  11. data/lib/ohai/loader.rb +205 -0
  12. data/lib/ohai/mixin/command.rb +14 -18
  13. data/lib/ohai/mixin/constant_helper.rb +53 -0
  14. data/lib/ohai/mixin/gce_metadata.rb +0 -2
  15. data/lib/ohai/{plugins/freebsd/uptime.rb → mixin/network_constants.rb} +15 -13
  16. data/lib/ohai/mixin/os.rb +59 -0
  17. data/lib/ohai/mixin/seconds_to_human.rb +48 -0
  18. data/lib/ohai/plugins/aix/cpu.rb +26 -22
  19. data/lib/ohai/plugins/aix/filesystem.rb +47 -48
  20. data/lib/ohai/plugins/aix/kernel.rb +11 -7
  21. data/lib/ohai/plugins/aix/memory.rb +8 -4
  22. data/lib/ohai/plugins/aix/network.rb +73 -82
  23. data/lib/ohai/plugins/aix/platform.rb +9 -6
  24. data/lib/ohai/plugins/aix/uptime.rb +14 -12
  25. data/lib/ohai/plugins/azure.rb +33 -11
  26. data/lib/ohai/plugins/c.rb +103 -78
  27. data/lib/ohai/plugins/chef.rb +20 -8
  28. data/lib/ohai/plugins/cloud.rb +234 -230
  29. data/lib/ohai/plugins/command.rb +6 -2
  30. data/lib/ohai/plugins/darwin/cpu.rb +10 -4
  31. data/lib/ohai/plugins/darwin/filesystem.rb +32 -32
  32. data/lib/ohai/plugins/darwin/network.rb +157 -154
  33. data/lib/ohai/plugins/darwin/platform.rb +18 -16
  34. data/lib/ohai/plugins/darwin/system_profiler.rb +49 -46
  35. data/lib/ohai/plugins/dmi.rb +102 -102
  36. data/lib/ohai/plugins/ec2.rb +30 -28
  37. data/lib/ohai/plugins/erlang.rb +19 -16
  38. data/lib/ohai/plugins/eucalyptus.rb +37 -36
  39. data/lib/ohai/plugins/freebsd/cpu.rb +34 -29
  40. data/lib/ohai/plugins/freebsd/filesystem.rb +32 -32
  41. data/lib/ohai/plugins/freebsd/memory.rb +35 -25
  42. data/lib/ohai/plugins/freebsd/network.rb +94 -89
  43. data/lib/ohai/plugins/freebsd/platform.rb +10 -4
  44. data/lib/ohai/plugins/freebsd/virtualization.rb +62 -61
  45. data/lib/ohai/plugins/gce.rb +30 -36
  46. data/lib/ohai/plugins/groovy.rb +14 -11
  47. data/lib/ohai/plugins/hostname.rb +132 -10
  48. data/lib/ohai/plugins/ip_scopes.rb +31 -16
  49. data/lib/ohai/plugins/java.rb +45 -21
  50. data/lib/ohai/plugins/kernel.rb +186 -19
  51. data/lib/ohai/plugins/keys.rb +6 -2
  52. data/lib/ohai/plugins/languages.rb +6 -2
  53. data/lib/ohai/plugins/linode.rb +38 -30
  54. data/lib/ohai/plugins/linux/block_device.rb +19 -15
  55. data/lib/ohai/plugins/linux/cpu.rb +42 -38
  56. data/lib/ohai/plugins/linux/filesystem.rb +70 -130
  57. data/lib/ohai/plugins/linux/lsb.rb +35 -35
  58. data/lib/ohai/plugins/linux/memory.rb +65 -61
  59. data/lib/ohai/plugins/linux/network.rb +343 -362
  60. data/lib/ohai/plugins/linux/platform.rb +90 -88
  61. data/lib/ohai/plugins/linux/virtualization.rb +95 -90
  62. data/lib/ohai/plugins/lua.rb +14 -10
  63. data/lib/ohai/plugins/mono.rb +17 -13
  64. data/lib/ohai/plugins/netbsd/cpu.rb +25 -23
  65. data/lib/ohai/plugins/netbsd/filesystem.rb +32 -32
  66. data/lib/ohai/plugins/netbsd/memory.rb +59 -59
  67. data/lib/ohai/plugins/netbsd/network.rb +92 -88
  68. data/lib/ohai/plugins/netbsd/platform.rb +10 -3
  69. data/lib/ohai/plugins/netbsd/virtualization.rb +41 -38
  70. data/lib/ohai/plugins/network.rb +131 -130
  71. data/lib/ohai/plugins/network_listeners.rb +26 -22
  72. data/lib/ohai/plugins/nodejs.rb +14 -10
  73. data/lib/ohai/plugins/ohai.rb +11 -6
  74. data/lib/ohai/plugins/ohai_time.rb +6 -2
  75. data/lib/ohai/plugins/openbsd/cpu.rb +20 -15
  76. data/lib/ohai/plugins/openbsd/filesystem.rb +32 -32
  77. data/lib/ohai/plugins/openbsd/memory.rb +59 -59
  78. data/lib/ohai/plugins/openbsd/network.rb +92 -88
  79. data/lib/ohai/plugins/openbsd/platform.rb +10 -4
  80. data/lib/ohai/plugins/openbsd/virtualization.rb +41 -39
  81. data/lib/ohai/plugins/openstack.rb +23 -21
  82. data/lib/ohai/plugins/os.rb +8 -32
  83. data/lib/ohai/plugins/passwd.rb +27 -22
  84. data/lib/ohai/plugins/perl.rb +21 -16
  85. data/lib/ohai/plugins/php.rb +15 -12
  86. data/lib/ohai/plugins/platform.rb +9 -9
  87. data/lib/ohai/plugins/{linux/kernel.rb → ps.rb} +13 -12
  88. data/lib/ohai/plugins/python.rb +16 -12
  89. data/lib/ohai/plugins/rackspace.rb +82 -77
  90. data/lib/ohai/plugins/root_group.rb +13 -9
  91. data/lib/ohai/plugins/ruby.rb +50 -48
  92. data/lib/ohai/plugins/sigar/cpu.rb +21 -17
  93. data/lib/ohai/plugins/sigar/filesystem.rb +26 -23
  94. data/lib/ohai/plugins/sigar/memory.rb +17 -14
  95. data/lib/ohai/plugins/sigar/network.rb +133 -67
  96. data/lib/ohai/plugins/sigar/network_route.rb +33 -28
  97. data/lib/ohai/plugins/sigar/platform.rb +10 -6
  98. data/lib/ohai/plugins/solaris2/cpu.rb +41 -33
  99. data/lib/ohai/plugins/solaris2/dmi.rb +146 -146
  100. data/lib/ohai/plugins/solaris2/filesystem.rb +74 -77
  101. data/lib/ohai/plugins/{aix/hostname.rb → solaris2/memory.rb} +7 -4
  102. data/lib/ohai/plugins/solaris2/network.rb +91 -86
  103. data/lib/ohai/plugins/solaris2/platform.rb +40 -36
  104. data/lib/ohai/plugins/solaris2/virtualization.rb +54 -59
  105. data/lib/ohai/plugins/solaris2/zpools.rb +38 -38
  106. data/lib/ohai/plugins/ssh_host_key.rb +49 -45
  107. data/lib/ohai/plugins/uptime.rb +87 -25
  108. data/lib/ohai/plugins/virtualization.rb +59 -55
  109. data/lib/ohai/plugins/windows/cpu.rb +44 -40
  110. data/lib/ohai/plugins/windows/filesystem.rb +28 -22
  111. data/lib/ohai/plugins/windows/network.rb +88 -79
  112. data/lib/ohai/plugins/windows/platform.rb +10 -3
  113. data/lib/ohai/provides_map.rb +184 -0
  114. data/lib/ohai/runner.rb +109 -0
  115. data/lib/ohai/system.rb +103 -184
  116. data/lib/ohai/version.rb +4 -3
  117. data/spec/data/plugins/___lib64___libc.so.6.output +135 -0
  118. data/spec/data/plugins/___lib___libc.so.6.output +135 -0
  119. data/spec/data/plugins/cc.output +135 -0
  120. data/spec/data/plugins/cl.output +135 -0
  121. data/spec/data/plugins/devenv.com.output +135 -0
  122. data/spec/data/plugins/env.output +71 -0
  123. data/spec/data/plugins/erl.output +144 -0
  124. data/spec/data/plugins/gcc.output +135 -0
  125. data/spec/data/plugins/groovy.output +159 -0
  126. data/spec/data/plugins/java.output +143 -0
  127. data/spec/data/plugins/lua.output +143 -0
  128. data/spec/data/plugins/messages.rb +8 -0
  129. data/spec/data/plugins/node.output +143 -0
  130. data/spec/data/plugins/perl.output +143 -0
  131. data/spec/data/plugins/php.output +143 -0
  132. data/spec/data/plugins/python.output +143 -0
  133. data/spec/data/plugins/uname.output +71 -0
  134. data/spec/data/plugins/v6message.rb +2 -0
  135. data/spec/data/plugins/v7message.rb +7 -0
  136. data/spec/data/plugins/what.output +135 -0
  137. data/spec/data/plugins/xlc.output +135 -0
  138. data/spec/spec_helper.rb +52 -18
  139. data/spec/support/integration_helper.rb +44 -0
  140. data/spec/unit/dsl/plugin_spec.rb +298 -0
  141. data/spec/unit/hints_spec.rb +65 -0
  142. data/spec/unit/loader_spec.rb +226 -0
  143. data/spec/unit/mixin/ec2_metadata_spec.rb +9 -9
  144. data/spec/unit/plugins/aix/cpu_spec.rb +17 -18
  145. data/spec/unit/plugins/aix/filesystem_spec.rb +20 -18
  146. data/spec/unit/plugins/aix/hostname_spec.rb +8 -4
  147. data/spec/unit/plugins/aix/kernel_spec.rb +13 -12
  148. data/spec/unit/plugins/aix/network_spec.rb +66 -45
  149. data/spec/unit/plugins/aix/platform_spec.rb +11 -10
  150. data/spec/unit/plugins/aix/uptime_spec.rb +7 -8
  151. data/spec/unit/plugins/azure_spec.rb +20 -21
  152. data/spec/unit/plugins/c_spec.rb +88 -87
  153. data/spec/unit/plugins/chef_spec.rb +5 -6
  154. data/spec/unit/plugins/cloud_spec.rb +81 -82
  155. data/spec/unit/plugins/darwin/cpu_spec.rb +8 -9
  156. data/spec/unit/plugins/darwin/hostname_spec.rb +23 -11
  157. data/spec/unit/plugins/darwin/kernel_spec.rb +39 -16
  158. data/spec/unit/plugins/darwin/network_spec.rb +375 -378
  159. data/spec/unit/plugins/darwin/platform_spec.rb +23 -50
  160. data/spec/unit/plugins/darwin/system_profiler_spec.rb +7 -8
  161. data/spec/unit/plugins/dmi_spec.rb +7 -12
  162. data/spec/unit/plugins/ec2_spec.rb +70 -59
  163. data/spec/unit/plugins/erlang_spec.rb +18 -20
  164. data/spec/unit/plugins/eucalyptus_spec.rb +37 -33
  165. data/spec/unit/plugins/fail_spec.rb +276 -23
  166. data/spec/unit/plugins/freebsd/hostname_spec.rb +11 -9
  167. data/spec/unit/plugins/freebsd/kernel_spec.rb +8 -8
  168. data/spec/unit/plugins/freebsd/platform_spec.rb +9 -10
  169. data/spec/unit/plugins/freebsd/virtualization_spec.rb +32 -32
  170. data/spec/unit/plugins/gce_spec.rb +19 -25
  171. data/spec/unit/plugins/groovy_spec.rb +10 -16
  172. data/spec/unit/plugins/hostname_spec.rb +45 -20
  173. data/spec/unit/plugins/ip_scopes_spec.rb +97 -0
  174. data/spec/unit/plugins/java_spec.rb +145 -99
  175. data/spec/unit/plugins/kernel_spec.rb +51 -15
  176. data/spec/unit/plugins/linode_spec.rb +31 -29
  177. data/spec/unit/plugins/linux/cpu_spec.rb +42 -43
  178. data/spec/unit/plugins/linux/filesystem_spec.rb +143 -324
  179. data/spec/unit/plugins/linux/hostname_spec.rb +16 -23
  180. data/spec/unit/plugins/linux/kernel_spec.rb +22 -8
  181. data/spec/unit/plugins/linux/lsb_spec.rb +54 -56
  182. data/spec/unit/plugins/linux/network_spec.rb +196 -238
  183. data/spec/unit/plugins/linux/platform_spec.rb +186 -205
  184. data/spec/unit/plugins/linux/uptime_spec.rb +13 -25
  185. data/spec/unit/plugins/linux/virtualization_spec.rb +149 -129
  186. data/spec/unit/plugins/lua_spec.rb +12 -15
  187. data/spec/unit/plugins/mono_spec.rb +10 -15
  188. data/spec/unit/plugins/netbsd/hostname_spec.rb +17 -7
  189. data/spec/unit/plugins/netbsd/kernel_spec.rb +8 -8
  190. data/spec/unit/plugins/netbsd/platform_spec.rb +8 -10
  191. data/spec/unit/plugins/network_spec.rb +358 -235
  192. data/spec/unit/plugins/nodejs_spec.rb +13 -15
  193. data/spec/unit/plugins/ohai_spec.rb +3 -4
  194. data/spec/unit/plugins/ohai_time_spec.rb +8 -9
  195. data/spec/unit/plugins/openbsd/hostname_spec.rb +21 -11
  196. data/spec/unit/plugins/openbsd/kernel_spec.rb +8 -8
  197. data/spec/unit/plugins/openbsd/platform_spec.rb +6 -12
  198. data/spec/unit/plugins/openstack_spec.rb +214 -0
  199. data/spec/unit/plugins/os_spec.rb +13 -16
  200. data/spec/unit/plugins/passwd_spec.rb +12 -13
  201. data/spec/unit/plugins/perl_spec.rb +20 -44
  202. data/spec/unit/plugins/php_spec.rb +20 -15
  203. data/spec/unit/plugins/platform_spec.rb +24 -29
  204. data/spec/unit/plugins/python_spec.rb +13 -17
  205. data/spec/unit/plugins/rackspace_spec.rb +90 -57
  206. data/spec/unit/plugins/root_group_spec.rb +17 -19
  207. data/spec/unit/plugins/ruby_spec.rb +15 -16
  208. data/spec/unit/plugins/sigar/network_route_spec.rb +12 -13
  209. data/spec/unit/plugins/solaris2/cpu_spec.rb +82 -0
  210. data/spec/unit/plugins/solaris2/hostname_spec.rb +12 -13
  211. data/spec/unit/plugins/solaris2/kernel_spec.rb +11 -15
  212. data/{lib/ohai/plugins/openbsd/uptime.rb → spec/unit/plugins/solaris2/memory_spec.rb} +10 -12
  213. data/spec/unit/plugins/solaris2/network_spec.rb +44 -20
  214. data/spec/unit/plugins/solaris2/platform_spec.rb +13 -22
  215. data/spec/unit/plugins/solaris2/virtualization_spec.rb +37 -45
  216. data/spec/unit/plugins/ssh_host_keys_spec.rb +11 -15
  217. data/spec/unit/provides_map_spec.rb +208 -0
  218. data/spec/unit/runner_spec.rb +488 -0
  219. data/spec/unit/system_spec.rb +639 -104
  220. metadata +151 -87
  221. checksums.yaml +0 -7
  222. data/lib/ohai/mixin/from_file.rb +0 -36
  223. data/lib/ohai/plugins/aix/ps.rb +0 -23
  224. data/lib/ohai/plugins/darwin/kernel.rb +0 -37
  225. data/lib/ohai/plugins/darwin/ps.rb +0 -23
  226. data/lib/ohai/plugins/darwin/uptime.rb +0 -32
  227. data/lib/ohai/plugins/dmi_common.rb +0 -121
  228. data/lib/ohai/plugins/freebsd/hostname.rb +0 -22
  229. data/lib/ohai/plugins/freebsd/kernel.rb +0 -37
  230. data/lib/ohai/plugins/freebsd/ps.rb +0 -24
  231. data/lib/ohai/plugins/hpux/cpu.rb +0 -19
  232. data/lib/ohai/plugins/hpux/filesystem.rb +0 -19
  233. data/lib/ohai/plugins/hpux/hostname.rb +0 -19
  234. data/lib/ohai/plugins/hpux/memory.rb +0 -19
  235. data/lib/ohai/plugins/hpux/network.rb +0 -19
  236. data/lib/ohai/plugins/hpux/platform.rb +0 -19
  237. data/lib/ohai/plugins/hpux/ps.rb +0 -23
  238. data/lib/ohai/plugins/hpux/uptime.rb +0 -19
  239. data/lib/ohai/plugins/linux/hostname.rb +0 -40
  240. data/lib/ohai/plugins/linux/ps.rb +0 -23
  241. data/lib/ohai/plugins/linux/uptime.rb +0 -28
  242. data/lib/ohai/plugins/netbsd/hostname.rb +0 -22
  243. data/lib/ohai/plugins/netbsd/kernel.rb +0 -35
  244. data/lib/ohai/plugins/netbsd/ps.rb +0 -24
  245. data/lib/ohai/plugins/netbsd/uptime.rb +0 -31
  246. data/lib/ohai/plugins/openbsd/hostname.rb +0 -22
  247. data/lib/ohai/plugins/openbsd/kernel.rb +0 -35
  248. data/lib/ohai/plugins/openbsd/ps.rb +0 -24
  249. data/lib/ohai/plugins/sigar/hostname.rb +0 -28
  250. data/lib/ohai/plugins/sigar/uptime.rb +0 -27
  251. data/lib/ohai/plugins/solaris2/hostname.rb +0 -34
  252. data/lib/ohai/plugins/solaris2/kernel.rb +0 -40
  253. data/lib/ohai/plugins/solaris2/ps.rb +0 -23
  254. data/lib/ohai/plugins/solaris2/uptime.rb +0 -36
  255. data/lib/ohai/plugins/windows/hostname.rb +0 -33
  256. data/lib/ohai/plugins/windows/kernel.rb +0 -58
  257. data/lib/ohai/plugins/windows/kernel_devices.rb +0 -39
  258. data/lib/ohai/plugins/windows/uptime.rb +0 -23
  259. data/spec/unit/mixin/from_file_spec.rb +0 -53
@@ -15,56 +15,59 @@
15
15
  # See the License for the specific language governing permissions and
16
16
  # limitations under the License.
17
17
  #
18
- provides "system_profile"
19
18
 
20
- begin
21
- require 'plist'
19
+ Ohai.plugin(:SystemProfile) do
20
+ provides "system_profile"
22
21
 
23
- system_profile Array.new
24
- items Array.new
25
- detail_level = {
26
- 'mini' => [
27
- "SPParallelATAData",
28
- "SPAudioData",
29
- "SPBluetoothData",
30
- "SPCardReaderData",
31
- "SPDiagnosticsData",
32
- "SPDiscBurningData",
33
- "SPEthernetData",
34
- "SPFibreChannelData",
35
- "SPFireWireData",
36
- "SPDisplaysData",
37
- "SPHardwareRAIDData",
38
- "SPMemoryData",
39
- "SPModemData",
40
- "SPNetworkData",
41
- "SPPCIData",
42
- "SPParallelSCSIData",
43
- "SPPrintersSoftwareData",
44
- "SPPrintersData",
45
- "SPSASData",
46
- "SPSerialATAData",
47
- "SPSoftwareData",
48
- "SPThunderboltData",
49
- "SPUSBData",
50
- "SPWWANData",
51
- "SPAirPortData"
52
- ],
53
- 'full' => [
54
- "SPHardwareDataType"
55
- ]
56
- }
22
+ collect_data(:darwin) do
23
+ begin
24
+ require 'plist'
57
25
 
58
- detail_level.each do |level, data_types|
59
- popen4("system_profiler -xml -detailLevel #{level} #{data_types.join(' ')}") do |pid, stdin, stdout, stderr|
60
- stdin.close
61
- Plist::parse_xml(stdout.read).each do |e|
62
- items << e
26
+ system_profile Array.new
27
+ items = Array.new
28
+ detail_level = {
29
+ 'mini' => [
30
+ "SPParallelATAData",
31
+ "SPAudioData",
32
+ "SPBluetoothData",
33
+ "SPCardReaderData",
34
+ "SPDiagnosticsData",
35
+ "SPDiscBurningData",
36
+ "SPEthernetData",
37
+ "SPFibreChannelData",
38
+ "SPFireWireData",
39
+ "SPDisplaysData",
40
+ "SPHardwareRAIDData",
41
+ "SPMemoryData",
42
+ "SPModemData",
43
+ "SPNetworkData",
44
+ "SPPCIData",
45
+ "SPParallelSCSIData",
46
+ "SPPrintersSoftwareData",
47
+ "SPPrintersData",
48
+ "SPSASData",
49
+ "SPSerialATAData",
50
+ "SPSoftwareData",
51
+ "SPThunderboltData",
52
+ "SPUSBData",
53
+ "SPWWANData",
54
+ "SPAirPortData"
55
+ ],
56
+ 'full' => [
57
+ "SPHardwareDataType"
58
+ ]
59
+ }
60
+
61
+ detail_level.each do |level, data_types|
62
+ so = shell_out("system_profiler -xml -detailLevel #{level} #{data_types.join(' ')}")
63
+ Plist::parse_xml(so.stdout).each do |e|
64
+ items << e
65
+ end
63
66
  end
67
+
68
+ system_profile items.sort_by { |h| h['_dataType'] }
69
+ rescue LoadError => e
70
+ Ohai::Log.debug("Can't load gem: #{e})")
64
71
  end
65
72
  end
66
-
67
- system_profile items.sort_by { |h| h['_dataType'] }
68
- rescue LoadError => e
69
- Ohai::Log.debug("Can't load gem: #{e})")
70
73
  end
@@ -16,110 +16,110 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- require "ohai/plugins/dmi_common"
20
-
21
- provides "dmi"
22
-
23
- # dmidecode does not return data without access to /dev/mem (or its equivalent)
24
-
25
- dmi Mash.new
26
-
27
- # all output lines should fall within one of these patterns
28
- handle_line = /^Handle (0x[0-9A-F]{4}), DMI type (\d+), (\d+) bytes/
29
- type_line = /^([A-Z][a-zA-Z ]+)( Information)?/
30
- blank_line = /^\s*$/
31
- data_line = /^\t([^:]+):(?: (.*))?/
32
- extended_data_line = /^\t\t(.+)/
33
- # first lines may contain some interesting information:
34
- # # dmidecode 2.10
35
- # SMBIOS 2.5 present.
36
- # 5 structures occupying 352 bytes.
37
- # Table at 0x000E1000.
38
- dmidecode_version_line = /^# dmidecode (\d+\.\d+)/
39
- smbios_version_line = /^SMBIOS (\d+\.\d+) present\./
40
- structures_line = /^(\d+) structures occupying (\d+) bytes\./
41
- table_location_line = /^Table at (0x[0-9A-E]+)\./
42
-
43
- dmi_record = nil
44
- field = nil
45
-
46
- popen4("dmidecode") do |pid, stdin, stdout, stderr|
47
- stdin.close
48
-
49
- # ==== EXAMPLE RECORD: ====
50
- #Handle 0x0000, DMI type 0, 24 bytes
51
- #BIOS Information
52
- # Vendor: American Megatrends Inc.
53
- # Version: 080012
54
- # ... similar lines trimmed
55
- # Characteristics:
56
- # ISA is supported
57
- # PCI is supported
58
- # ... similar lines trimmed
59
- stdout.each do |line|
60
- next if blank_line.match(line)
61
-
62
- if dmidecode_version = dmidecode_version_line.match(line)
63
- dmi[:dmidecode_version] = dmidecode_version[1]
64
-
65
- elsif smbios_version = smbios_version_line.match(line)
66
- dmi[:smbios_version] = smbios_version[1]
67
-
68
- elsif structures = structures_line.match(line)
69
- dmi[:structures] = Mash.new
70
- dmi[:structures][:count] = structures[1]
71
- dmi[:structures][:size] = structures[2]
72
-
73
- elsif table_location = table_location_line.match(line)
74
- dmi[:table_location] = table_location[1]
75
-
76
- elsif handle = handle_line.match(line)
77
- # Don't overcapture for now (OHAI-260)
78
- next unless DMI::IdToCapture.include?(handle[2].to_i)
79
-
80
- dmi_record = {:type => DMI.id_lookup(handle[2])}
81
-
82
- dmi[dmi_record[:type]] = Mash.new unless dmi.has_key?(dmi_record[:type])
83
- dmi[dmi_record[:type]][:all_records] = [] unless dmi[dmi_record[:type]].has_key?(:all_records)
84
- dmi_record[:position] = dmi[dmi_record[:type]][:all_records].length
85
- dmi[dmi_record[:type]][:all_records].push(Mash.new)
86
- dmi[dmi_record[:type]][:all_records][dmi_record[:position]][:record_id] = handle[1]
87
- dmi[dmi_record[:type]][:all_records][dmi_record[:position]][:size] = handle[2]
88
- field = nil
89
-
90
- elsif type = type_line.match(line)
91
- if dmi_record == nil
92
- Ohai::Log.debug("unexpected data line found before header; discarding:\n#{line}")
93
- next
94
- end
95
- dmi[dmi_record[:type]][:all_records][dmi_record[:position]][:application_identifier] = type[1]
19
+ Ohai.plugin(:DMI) do
20
+ provides "dmi"
21
+
22
+ # dmidecode does not return data without access to /dev/mem (or its equivalent)
23
+
24
+ collect_data do
25
+ require 'ohai/common/dmi'
26
+ dmi Mash.new
27
+
28
+ # all output lines should fall within one of these patterns
29
+ handle_line = /^Handle (0x[0-9A-F]{4}), DMI type (\d+), (\d+) bytes/
30
+ type_line = /^([A-Z][a-zA-Z ]+)( Information)?/
31
+ blank_line = /^\s*$/
32
+ data_line = /^\t([^:]+):(?: (.*))?/
33
+ extended_data_line = /^\t\t(.+)/
34
+ # first lines may contain some interesting information:
35
+ # # dmidecode 2.10
36
+ # SMBIOS 2.5 present.
37
+ # 5 structures occupying 352 bytes.
38
+ # Table at 0x000E1000.
39
+ dmidecode_version_line = /^# dmidecode (\d+\.\d+)/
40
+ smbios_version_line = /^SMBIOS (\d+\.\d+) present\./
41
+ structures_line = /^(\d+) structures occupying (\d+) bytes\./
42
+ table_location_line = /^Table at (0x[0-9A-E]+)\./
43
+
44
+ dmi_record = nil
45
+ field = nil
46
+
47
+ so = shell_out("dmidecode")
48
+ # ==== EXAMPLE RECORD: ====
49
+ #Handle 0x0000, DMI type 0, 24 bytes
50
+ #BIOS Information
51
+ # Vendor: American Megatrends Inc.
52
+ # Version: 080012
53
+ # ... similar lines trimmed
54
+ # Characteristics:
55
+ # ISA is supported
56
+ # PCI is supported
57
+ # ... similar lines trimmed
58
+ so.stdout.lines do |line|
59
+ next if blank_line.match(line)
60
+
61
+ if dmidecode_version = dmidecode_version_line.match(line)
62
+ dmi[:dmidecode_version] = dmidecode_version[1]
63
+
64
+ elsif smbios_version = smbios_version_line.match(line)
65
+ dmi[:smbios_version] = smbios_version[1]
66
+
67
+ elsif structures = structures_line.match(line)
68
+ dmi[:structures] = Mash.new
69
+ dmi[:structures][:count] = structures[1]
70
+ dmi[:structures][:size] = structures[2]
71
+
72
+ elsif table_location = table_location_line.match(line)
73
+ dmi[:table_location] = table_location[1]
74
+
75
+ elsif handle = handle_line.match(line)
76
+ # Don't overcapture for now (OHAI-260)
77
+ next unless Ohai::Common::DMI::IdToCapture.include?(handle[2].to_i)
78
+
79
+ dmi_record = {:type => Ohai::Common::DMI.id_lookup(handle[2])}
80
+
81
+ dmi[dmi_record[:type]] = Mash.new unless dmi.has_key?(dmi_record[:type])
82
+ dmi[dmi_record[:type]][:all_records] = [] unless dmi[dmi_record[:type]].has_key?(:all_records)
83
+ dmi_record[:position] = dmi[dmi_record[:type]][:all_records].length
84
+ dmi[dmi_record[:type]][:all_records].push(Mash.new)
85
+ dmi[dmi_record[:type]][:all_records][dmi_record[:position]][:record_id] = handle[1]
86
+ dmi[dmi_record[:type]][:all_records][dmi_record[:position]][:size] = handle[2]
87
+ field = nil
88
+
89
+ elsif type = type_line.match(line)
90
+ if dmi_record == nil
91
+ Ohai::Log.debug("unexpected data line found before header; discarding:\n#{line}")
92
+ next
93
+ end
94
+ dmi[dmi_record[:type]][:all_records][dmi_record[:position]][:application_identifier] = type[1]
95
+
96
+ elsif data = data_line.match(line)
97
+ if dmi_record == nil
98
+ Ohai::Log.debug("unexpected data line found before header; discarding:\n#{line}")
99
+ next
100
+ end
101
+ dmi[dmi_record[:type]][:all_records][dmi_record[:position]][data[1]] = data[2]
102
+ field = data[1]
103
+
104
+ elsif extended_data = extended_data_line.match(line)
105
+ if dmi_record == nil
106
+ Ohai::Log.debug("unexpected extended data line found before header; discarding:\n#{line}")
107
+ next
108
+ end
109
+ if field == nil
110
+ Ohai::Log.debug("unexpected extended data line found outside data section; discarding:\n#{line}")
111
+ next
112
+ end
113
+ # overwrite "raw" value with a new Mash
114
+ dmi[dmi_record[:type]][:all_records][dmi_record[:position]][field] = Mash.new unless dmi[dmi_record[:type]][:all_records][dmi_record[:position]][field].class.to_s == 'Mash'
115
+ dmi[dmi_record[:type]][:all_records][dmi_record[:position]][field][extended_data[1]] = nil
116
+
117
+ else
118
+ Ohai::Log.debug("unrecognized output line; discarding:\n#{line}")
96
119
 
97
- elsif data = data_line.match(line)
98
- if dmi_record == nil
99
- Ohai::Log.debug("unexpected data line found before header; discarding:\n#{line}")
100
- next
101
- end
102
- dmi[dmi_record[:type]][:all_records][dmi_record[:position]][data[1]] = data[2]
103
- field = data[1]
104
-
105
- elsif extended_data = extended_data_line.match(line)
106
- if dmi_record == nil
107
- Ohai::Log.debug("unexpected extended data line found before header; discarding:\n#{line}")
108
- next
109
120
  end
110
- if field == nil
111
- Ohai::Log.debug("unexpected extended data line found outside data section; discarding:\n#{line}")
112
- next
113
- end
114
- # overwrite "raw" value with a new Mash
115
- dmi[dmi_record[:type]][:all_records][dmi_record[:position]][field] = Mash.new unless dmi[dmi_record[:type]][:all_records][dmi_record[:position]][field].class.to_s == 'Mash'
116
- dmi[dmi_record[:type]][:all_records][dmi_record[:position]][field][extended_data[1]] = nil
117
-
118
- else
119
- Ohai::Log.debug("unrecognized output line; discarding:\n#{line}")
120
-
121
121
  end
122
+
123
+ Ohai::Common::DMI.convenience_keys(dmi)
122
124
  end
123
125
  end
124
-
125
- DMI.convenience_keys(dmi)
@@ -17,41 +17,43 @@
17
17
  # See the License for the specific language governing permissions and
18
18
  # limitations under the License.
19
19
 
20
- provides "ec2"
21
-
22
20
  require 'ohai/mixin/ec2_metadata'
23
21
 
24
- require_plugin "hostname"
25
- require_plugin "kernel"
26
- require_plugin "network"
22
+ Ohai.plugin(:EC2) do
23
+ include Ohai::Mixin::Ec2Metadata
24
+
25
+ provides "ec2"
27
26
 
28
- extend Ohai::Mixin::Ec2Metadata
27
+ depends "network/interfaces"
29
28
 
30
- def has_ec2_mac?
31
- network[:interfaces].values.each do |iface|
32
- unless iface[:arp].nil?
33
- if iface[:arp].value?("fe:ff:ff:ff:ff:ff")
34
- Ohai::Log.debug("has_ec2_mac? == true")
35
- return true
29
+ def has_ec2_mac?
30
+ network[:interfaces].values.each do |iface|
31
+ unless iface[:arp].nil?
32
+ if iface[:arp].value?("fe:ff:ff:ff:ff:ff")
33
+ Ohai::Log.debug("has_ec2_mac? == true")
34
+ return true
35
+ end
36
36
  end
37
37
  end
38
+ Ohai::Log.debug("has_ec2_mac? == false")
39
+ false
38
40
  end
39
- Ohai::Log.debug("has_ec2_mac? == false")
40
- false
41
- end
42
41
 
43
- def looks_like_ec2?
44
- # Try non-blocking connect so we don't "block" if
45
- # the Xen environment is *not* EC2
46
- hint?('ec2') || has_ec2_mac? && can_metadata_connect?(EC2_METADATA_ADDR,80)
47
- end
42
+ def looks_like_ec2?
43
+ # Try non-blocking connect so we don't "block" if
44
+ # the Xen environment is *not* EC2
45
+ hint?('ec2') || has_ec2_mac? && can_metadata_connect?(Ohai::Mixin::Ec2Metadata::EC2_METADATA_ADDR,80)
46
+ end
48
47
 
49
- if looks_like_ec2?
50
- Ohai::Log.debug("looks_like_ec2? == true")
51
- ec2 Mash.new
52
- fetch_metadata.each {|k, v| ec2[k] = v }
53
- ec2[:userdata] = self.fetch_userdata
54
- else
55
- Ohai::Log.debug("looks_like_ec2? == false")
56
- false
48
+ collect_data do
49
+ if looks_like_ec2?
50
+ Ohai::Log.debug("looks_like_ec2? == true")
51
+ ec2 Mash.new
52
+ fetch_metadata.each {|k, v| ec2[k] = v }
53
+ ec2[:userdata] = self.fetch_userdata
54
+ else
55
+ Ohai::Log.debug("looks_like_ec2? == false")
56
+ false
57
+ end
58
+ end
57
59
  end
@@ -16,25 +16,28 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- provides "languages/erlang"
19
+ Ohai.plugin(:Erlang) do
20
+ provides "languages/erlang"
20
21
 
21
- require_plugin "languages"
22
+ depends "languages"
22
23
 
23
- output = nil
24
+ collect_data do
25
+ output = nil
24
26
 
25
- erlang = Mash.new
26
- status, stdout, stderr = run_command(:no_status_check => true, :command => "erl +V")
27
-
28
- if status == 0
29
- output = stderr.split
30
- if output.length >= 6
31
- options = output[1]
32
- options.gsub!(/(\(|\))/, '')
33
- erlang[:version] = output[5]
34
- erlang[:options] = options.split(',')
35
- erlang[:emulator] = output[2].gsub!(/(\(|\))/, '')
36
- if erlang[:version] and erlang[:options] and erlang[:emulator]
37
- languages[:erlang] = erlang
27
+ erlang = Mash.new
28
+ so = shell_out("erl +V")
29
+ if so.exitstatus == 0
30
+ output = so.stderr.split
31
+ if output.length >= 6
32
+ options = output[1]
33
+ options.gsub!(/(\(|\))/, '')
34
+ erlang[:version] = output[5]
35
+ erlang[:options] = options.split(',')
36
+ erlang[:emulator] = output[2].gsub!(/(\(|\))/, '')
37
+ if erlang[:version] and erlang[:options] and erlang[:emulator]
38
+ languages[:erlang] = erlang
39
+ end
40
+ end
38
41
  end
39
42
  end
40
43
  end
@@ -17,49 +17,50 @@
17
17
  # See the License for the specific language governing permissions and
18
18
  # limitations under the License.
19
19
 
20
- provides "eucalyptus"
21
-
22
20
  require 'ohai/mixin/ec2_metadata'
23
21
 
24
- require_plugin "hostname"
25
- require_plugin "kernel"
26
- require_plugin "network"
22
+ Ohai.plugin(:Eucalyptus) do
23
+ include Ohai::Mixin::Ec2Metadata
27
24
 
28
- extend Ohai::Mixin::Ec2Metadata
25
+ provides "eucalyptus"
29
26
 
30
- def get_mac_address(addresses)
31
- detected_addresses = addresses.detect { |address, keypair| keypair == {"family"=>"lladdr"} }
32
- if detected_addresses
33
- return detected_addresses.first
34
- else
35
- return ""
36
- end
37
- end
27
+ depends "network/interfaces"
38
28
 
39
- def has_euca_mac?
40
- network[:interfaces].values.each do |iface|
41
- has_mac = (get_mac_address(iface[:addresses]) =~ /^[dD]0:0[dD]:/)
42
- Ohai::Log.debug("has_euca_mac? == #{!!has_mac}")
43
- return true if has_mac
29
+ def get_mac_address(addresses)
30
+ detected_addresses = addresses.detect { |address, keypair| keypair == {"family"=>"lladdr"} }
31
+ if detected_addresses
32
+ return detected_addresses.first
33
+ else
34
+ return ""
35
+ end
44
36
  end
45
37
 
46
- Ohai::Log.debug("has_euca_mac? == false")
47
- false
48
- end
38
+ def has_euca_mac?
39
+ network[:interfaces].values.each do |iface|
40
+ has_mac = (get_mac_address(iface[:addresses]) =~ /^[dD]0:0[dD]:/)
41
+ Ohai::Log.debug("has_euca_mac? == #{!!has_mac}")
42
+ return true if has_mac
43
+ end
49
44
 
50
- def looks_like_euca?
51
- # Try non-blocking connect so we don't "block" if
52
- # the Xen environment is *not* EC2
53
- hint?('eucalyptus') || has_euca_mac? && can_metadata_connect?(EC2_METADATA_ADDR,80)
54
- end
45
+ Ohai::Log.debug("has_euca_mac? == false")
46
+ false
47
+ end
55
48
 
56
- if looks_like_euca?
57
- Ohai::Log.debug("looks_like_euca? == true")
58
- eucalyptus Mash.new
59
- self.fetch_metadata.each {|k, v| eucalyptus[k] = v }
60
- eucalyptus[:userdata] = self.fetch_userdata
61
- else
62
- Ohai::Log.debug("looks_like_euca? == false")
63
- false
64
- end
49
+ def looks_like_euca?
50
+ # Try non-blocking connect so we don't "block" if
51
+ # the Xen environment is *not* EC2
52
+ hint?('eucalyptus') || has_euca_mac? && can_metadata_connect?(Ohai::Mixin::Ec2Metadata::EC2_METADATA_ADDR,80)
53
+ end
65
54
 
55
+ collect_data do
56
+ if looks_like_euca?
57
+ Ohai::Log.debug("looks_like_euca? == true")
58
+ eucalyptus Mash.new
59
+ self.fetch_metadata.each {|k, v| eucalyptus[k] = v }
60
+ eucalyptus[:userdata] = self.fetch_userdata
61
+ else
62
+ Ohai::Log.debug("looks_like_euca? == false")
63
+ false
64
+ end
65
+ end
66
+ end