kanrisuru 0.13.0 → 0.16.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (282) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +23 -0
  3. data/README.md +5 -5
  4. data/kanrisuru.gemspec +7 -3
  5. data/lib/kanrisuru/command.rb +15 -1
  6. data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
  7. data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
  8. data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
  9. data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
  10. data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
  11. data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
  12. data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
  13. data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
  14. data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
  15. data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
  16. data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
  17. data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
  18. data/lib/kanrisuru/core/apt/commands.rb +14 -0
  19. data/lib/kanrisuru/core/apt/parser.rb +6 -0
  20. data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
  21. data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
  22. data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
  23. data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
  24. data/lib/kanrisuru/core/apt/types.rb +36 -0
  25. data/lib/kanrisuru/core/apt.rb +4 -284
  26. data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
  27. data/lib/kanrisuru/core/archive/commands.rb +3 -0
  28. data/lib/kanrisuru/core/archive/types.rb +9 -0
  29. data/lib/kanrisuru/core/archive.rb +3 -121
  30. data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
  31. data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
  32. data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
  33. data/lib/kanrisuru/core/disk/commands/lsblk.rb +49 -0
  34. data/lib/kanrisuru/core/disk/commands.rb +6 -0
  35. data/lib/kanrisuru/core/disk/constants.rb +9 -0
  36. data/lib/kanrisuru/core/disk/parser.rb +7 -0
  37. data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
  38. data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
  39. data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
  40. data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
  41. data/lib/kanrisuru/core/disk/parsers/lsblk_version.rb +21 -0
  42. data/lib/kanrisuru/core/disk/types.rb +21 -0
  43. data/lib/kanrisuru/core/disk.rb +6 -290
  44. data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
  45. data/lib/kanrisuru/core/dmi/commands.rb +3 -0
  46. data/lib/kanrisuru/core/dmi/parser.rb +3 -0
  47. data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
  48. data/lib/kanrisuru/core/dmi/types.rb +361 -0
  49. data/lib/kanrisuru/core/dmi.rb +4 -522
  50. data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
  51. data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
  52. data/lib/kanrisuru/core/file/commands/copy.rb +54 -0
  53. data/lib/kanrisuru/core/file/commands/link.rb +25 -0
  54. data/lib/kanrisuru/core/file/commands/mkdir.rb +42 -0
  55. data/lib/kanrisuru/core/file/commands/move.rb +48 -0
  56. data/lib/kanrisuru/core/file/commands/rm.rb +41 -0
  57. data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
  58. data/lib/kanrisuru/core/file/commands/touch.rb +34 -0
  59. data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
  60. data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
  61. data/lib/kanrisuru/core/file/commands.rb +29 -0
  62. data/lib/kanrisuru/core/file/parser.rb +3 -0
  63. data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
  64. data/lib/kanrisuru/core/file/types.rb +9 -0
  65. data/lib/kanrisuru/core/file.rb +4 -312
  66. data/lib/kanrisuru/core/find/commands/find.rb +97 -0
  67. data/lib/kanrisuru/core/find/commands.rb +3 -0
  68. data/lib/kanrisuru/core/find/constants.rb +9 -0
  69. data/lib/kanrisuru/core/find/parser.rb +3 -0
  70. data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
  71. data/lib/kanrisuru/core/find/types.rb +9 -0
  72. data/lib/kanrisuru/core/find.rb +5 -97
  73. data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
  74. data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
  75. data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
  76. data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
  77. data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
  78. data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
  79. data/lib/kanrisuru/core/group/commands.rb +8 -0
  80. data/lib/kanrisuru/core/group/parser.rb +4 -0
  81. data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
  82. data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
  83. data/lib/kanrisuru/core/group/types.rb +10 -0
  84. data/lib/kanrisuru/core/group.rb +4 -81
  85. data/lib/kanrisuru/core/ip/commands/address.rb +86 -0
  86. data/lib/kanrisuru/core/ip/commands/address_label.rb +54 -0
  87. data/lib/kanrisuru/core/ip/commands/link.rb +116 -0
  88. data/lib/kanrisuru/core/ip/commands/link_set_opts.rb +61 -0
  89. data/lib/kanrisuru/core/ip/commands/link_type_opts.rb +313 -0
  90. data/lib/kanrisuru/core/ip/commands/maddress.rb +42 -0
  91. data/lib/kanrisuru/core/ip/commands/neighbour.rb +72 -0
  92. data/lib/kanrisuru/core/ip/commands/route.rb +152 -0
  93. data/lib/kanrisuru/core/ip/commands/rule.rb +57 -0
  94. data/lib/kanrisuru/core/ip/commands.rb +26 -0
  95. data/lib/kanrisuru/core/ip/constants.rb +25 -0
  96. data/lib/kanrisuru/core/ip/parser.rb +11 -0
  97. data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
  98. data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
  99. data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
  100. data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
  101. data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
  102. data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
  103. data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
  104. data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
  105. data/lib/kanrisuru/core/ip/parsers/version.rb +15 -0
  106. data/lib/kanrisuru/core/ip/types.rb +46 -0
  107. data/lib/kanrisuru/core/ip.rb +15 -1002
  108. data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
  109. data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
  110. data/lib/kanrisuru/core/mount/commands.rb +49 -0
  111. data/lib/kanrisuru/core/mount.rb +2 -125
  112. data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
  113. data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
  114. data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
  115. data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
  116. data/lib/kanrisuru/core/path/commands/which.rb +19 -0
  117. data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
  118. data/lib/kanrisuru/core/path/commands.rb +8 -0
  119. data/lib/kanrisuru/core/path/parser.rb +4 -0
  120. data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
  121. data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
  122. data/lib/kanrisuru/core/path/types.rb +12 -0
  123. data/lib/kanrisuru/core/path.rb +4 -121
  124. data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
  125. data/lib/kanrisuru/core/socket/commands.rb +3 -0
  126. data/lib/kanrisuru/core/socket/constants.rb +29 -0
  127. data/lib/kanrisuru/core/socket/parser.rb +3 -0
  128. data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
  129. data/lib/kanrisuru/core/socket/types.rb +18 -0
  130. data/lib/kanrisuru/core/socket.rb +5 -164
  131. data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
  132. data/lib/kanrisuru/core/stat/commands.rb +3 -0
  133. data/lib/kanrisuru/core/stat/parser.rb +3 -0
  134. data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
  135. data/lib/kanrisuru/core/stat/types.rb +14 -0
  136. data/lib/kanrisuru/core/stat.rb +4 -81
  137. data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
  138. data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
  139. data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
  140. data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
  141. data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
  142. data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
  143. data/lib/kanrisuru/core/stream/commands.rb +27 -0
  144. data/lib/kanrisuru/core/stream/parser.rb +4 -0
  145. data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
  146. data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
  147. data/lib/kanrisuru/core/stream.rb +3 -104
  148. data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
  149. data/lib/kanrisuru/core/system/commands/free.rb +25 -0
  150. data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
  151. data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
  152. data/lib/kanrisuru/core/system/commands/last.rb +31 -0
  153. data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
  154. data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
  155. data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
  156. data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
  157. data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
  158. data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
  159. data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
  160. data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
  161. data/lib/kanrisuru/core/system/commands/w.rb +24 -0
  162. data/lib/kanrisuru/core/system/commands.rb +34 -0
  163. data/lib/kanrisuru/core/system/parser.rb +11 -0
  164. data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
  165. data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
  166. data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
  167. data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
  168. data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
  169. data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
  170. data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
  171. data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
  172. data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
  173. data/lib/kanrisuru/core/system/types.rb +108 -0
  174. data/lib/kanrisuru/core/system.rb +4 -687
  175. data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
  176. data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
  177. data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
  178. data/lib/kanrisuru/core/transfer/commands.rb +5 -0
  179. data/lib/kanrisuru/core/transfer/constants.rb +10 -0
  180. data/lib/kanrisuru/core/transfer.rb +3 -199
  181. data/lib/kanrisuru/core/user/commands/create_user.rb +49 -0
  182. data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
  183. data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
  184. data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
  185. data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
  186. data/lib/kanrisuru/core/user/commands/update_user.rb +54 -0
  187. data/lib/kanrisuru/core/user/commands.rb +8 -0
  188. data/lib/kanrisuru/core/user/parser.rb +4 -0
  189. data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
  190. data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
  191. data/lib/kanrisuru/core/user/types.rb +11 -0
  192. data/lib/kanrisuru/core/user.rb +4 -182
  193. data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
  194. data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
  195. data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
  196. data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
  197. data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
  198. data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
  199. data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
  200. data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
  201. data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
  202. data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
  203. data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
  204. data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
  205. data/lib/kanrisuru/core/yum/commands.rb +39 -0
  206. data/lib/kanrisuru/core/yum/parser.rb +7 -0
  207. data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
  208. data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
  209. data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
  210. data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
  211. data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
  212. data/lib/kanrisuru/core/yum/types.rb +41 -0
  213. data/lib/kanrisuru/core/yum.rb +4 -347
  214. data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
  215. data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
  216. data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
  217. data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
  218. data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
  219. data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
  220. data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
  221. data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
  222. data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
  223. data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
  224. data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
  225. data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
  226. data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
  227. data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
  228. data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
  229. data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
  230. data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
  231. data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
  232. data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
  233. data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
  234. data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
  235. data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
  236. data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
  237. data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
  238. data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
  239. data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
  240. data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
  241. data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
  242. data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
  243. data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
  244. data/lib/kanrisuru/core/zypper/commands.rb +109 -0
  245. data/lib/kanrisuru/core/zypper/constants.rb +19 -0
  246. data/lib/kanrisuru/core/zypper/parser.rb +11 -0
  247. data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
  248. data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
  249. data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
  250. data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
  251. data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
  252. data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
  253. data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
  254. data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
  255. data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
  256. data/lib/kanrisuru/core/zypper/types.rb +88 -0
  257. data/lib/kanrisuru/core/zypper.rb +5 -998
  258. data/lib/kanrisuru/os_package.rb +2 -0
  259. data/lib/kanrisuru/result.rb +15 -0
  260. data/lib/kanrisuru/version.rb +1 -1
  261. data/spec/functional/core/archive_spec.rb +1 -1
  262. data/spec/functional/core/disk_spec.rb +77 -0
  263. data/spec/functional/core/dmi_spec.rb +78 -0
  264. data/spec/functional/core/file_spec.rb +284 -0
  265. data/spec/functional/core/group_spec.rb +62 -0
  266. data/spec/functional/core/ip/ip_address_label_spec.rb +81 -0
  267. data/spec/functional/core/ip/ip_address_spec.rb +95 -0
  268. data/spec/functional/core/ip/ip_link_spec.rb +814 -0
  269. data/spec/functional/core/ip/ip_maddress_spec.rb +78 -0
  270. data/spec/functional/core/ip/ip_neighbour_spec.rb +119 -0
  271. data/spec/functional/core/ip/ip_route_spec.rb +174 -0
  272. data/spec/functional/core/ip/ip_rule_spec.rb +75 -0
  273. data/spec/functional/core/ip/ip_spec.rb +27 -0
  274. data/spec/functional/core/system_spec.rb +135 -0
  275. data/spec/functional/core/user_spec.rb +97 -0
  276. data/spec/functional/result_spec.rb +91 -44
  277. data/spec/helper/stub_network.rb +6 -2
  278. data/spec/support/shared_examples/integration/core/transfer.rb +1 -1
  279. data/spec/unit/command_spec.rb +2 -0
  280. data/spec/unit/core/ip_spec.rb +12 -0
  281. data/spec/unit/util_spec.rb +16 -0
  282. metadata +253 -4
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'commands/dmi'
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'parsers/dmi'
@@ -0,0 +1,149 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Dmi
6
+ module Parser
7
+ class Dmi
8
+ class << self
9
+ def parse(command)
10
+ lines = command.to_a
11
+
12
+ rows = []
13
+ current_struct = nil
14
+ wrapped_field_line = nil
15
+
16
+ lines.each do |line|
17
+ next if Kanrisuru::Util.blank?(line)
18
+
19
+ case line
20
+ when /^Handle/
21
+ if current_struct
22
+ rows << current_struct
23
+
24
+ current_struct = nil
25
+ wrapped_field_line = nil
26
+ end
27
+
28
+ values = line.split(', ')
29
+ handle = values[0].split('Handle ')[1]
30
+
31
+ type = values[1].split(/(\d+)/)[1].to_i
32
+ type = Kanrisuru::Util::DmiType[type]
33
+ next if Kanrisuru::Util.blank?(type)
34
+
35
+ bytes = values[2].split(/(\d+)/)[1]
36
+
37
+ current_struct = dmi_type_to_struct(type)
38
+ current_struct.dmi_handle = handle
39
+ current_struct.dmi_type = type
40
+ current_struct.dmi_size = bytes.to_i
41
+ when /:/
42
+ values = line.split(': ')
43
+
44
+ field = values[0].strip
45
+ value = values[1] ? values[1].strip : ''
46
+
47
+ dmi_append_field(current_struct, field, value)
48
+
49
+ case line
50
+ when 'Characteristics:'
51
+ current_struct.characteristics = []
52
+ wrapped_field_line = :characteristics
53
+ when 'Flags:'
54
+ current_struct.flags = []
55
+ wrapped_field_line = :flags
56
+ when 'Supported SRAM Types:'
57
+ current_struct.supported_sram_types = []
58
+ wrapped_field_line = :supported_sram_types
59
+ when 'Features:'
60
+ current_struct.features = []
61
+ wrapped_field_line = :features
62
+ when 'Strings:'
63
+ current_struct.strings = []
64
+ wrapped_field_line = :strings
65
+ end
66
+ else
67
+ current_struct[wrapped_field_line] << line.strip if wrapped_field_line
68
+ end
69
+ end
70
+
71
+ rows << current_struct if current_struct
72
+ rows
73
+ end
74
+
75
+ def dmi_append_field(struct, field, value)
76
+ field = dmi_field_translate(struct, field)
77
+ field = field.to_sym
78
+
79
+ if struct.respond_to?(field)
80
+ case struct.dmi_type
81
+ when 'OEM Strings'
82
+ if struct.strings
83
+ struct[field] << value
84
+ else
85
+ struct.strings = [value]
86
+ end
87
+ else
88
+ struct[field] = value
89
+ end
90
+ else
91
+ Kanrisuru.logger.warn("Field does not exist for: #{struct.dmi_type}: #{field} => #{value}")
92
+ end
93
+ end
94
+
95
+ def dmi_field_translate(struct, field)
96
+ field = field.downcase
97
+ field = field.gsub(/\s/, '_')
98
+ field = field.gsub('-', '_')
99
+ field = field.gsub(':', '')
100
+
101
+ case struct.dmi_type
102
+ when 'Memory Device'
103
+ case field
104
+ when 'size'
105
+ return 'mem_size'
106
+ end
107
+ when 'System Slots'
108
+ case field
109
+ when 'length'
110
+ return 'slot_length'
111
+ end
112
+ when 'OEM Strings'
113
+ case field
114
+ when /^string/
115
+ return 'strings'
116
+ end
117
+ when 'Boot Integrity Services'
118
+ case field
119
+ when '16_bit_entry_point_address'
120
+ return 'sixteen_bit_entry_point_address'
121
+ when '32_bit_entry_point_address'
122
+ return 'thirty_two_bit_entry_point_address'
123
+ end
124
+ end
125
+
126
+ field
127
+ end
128
+
129
+ def dmi_type_to_struct(type)
130
+ type =
131
+ case type
132
+ when '32-bit Memory Error'
133
+ 'Memory Error 32 Bit'
134
+ when '64-bit Memory Error'
135
+ 'Memory Error 64 Bit'
136
+ else
137
+ type
138
+ end
139
+
140
+ type_camelized = Kanrisuru::Util.camelize(type.gsub(/\s/, ''))
141
+ struct_class = Kanrisuru::Core::Dmi.const_get(type_camelized)
142
+ struct_class.new
143
+ end
144
+ end
145
+ end
146
+ end
147
+ end
148
+ end
149
+ end
@@ -0,0 +1,361 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kanrisuru
4
+ module Core
5
+ module Dmi
6
+ ## Type 0: BIOS Information
7
+ BIOS = Struct.new(
8
+ :dmi_type, :dmi_handle, :dmi_size,
9
+ :vendor, :version, :release_date, :address, :runtime_size,
10
+ :rom_size, :characteristics, :bios_revision, :firmware_revision
11
+ )
12
+
13
+ ## Type 1: Sytem Information
14
+ System = Struct.new(
15
+ :dmi_type, :dmi_handle, :dmi_size,
16
+ :manufacturer, :product_name, :version, :serial_number,
17
+ :uuid, :wake_up_type, :sku_number, :family
18
+ )
19
+
20
+ ## Type 2: Baseboard Information
21
+ Baseboard = Struct.new(
22
+ :dmi_type, :dmi_handle, :dmi_size,
23
+ :type, :manufacturer, :product_name, :version, :serial_number, :asset_tag,
24
+ :features, :location_in_chassis, :chassis_handle, :contained_object_handles
25
+ )
26
+
27
+ ## Type 3: Chassis Information
28
+ Chassis = Struct.new(
29
+ :dmi_type, :dmi_handle, :dmi_size,
30
+ :manufacturer, :type, :lock, :version, :serial_number,
31
+ :asset_tag, :boot_up_state, :power_supply_state, :thermal_state,
32
+ :security_status, :oem_information, :height, :number_of_power_cords,
33
+ :contained_elements, :sku_number
34
+ )
35
+
36
+ ## Type 4: Processor Information
37
+ Processor = Struct.new(
38
+ :dmi_type, :dmi_handle, :dmi_size,
39
+ :socket_designation, :type, :family, :manufacturer, :id, :signature, :flags,
40
+ :version, :voltage, :external_clock, :max_speed, :current_speed,
41
+ :status, :upgrade, :l1_cache_handle, :l2_cache_handle, :l3_cache_handle,
42
+ :serial_number, :asset_tag, :part_number, :core_count, :core_enabled, :thread_count,
43
+ :characteristics
44
+ )
45
+
46
+ ## Type 5: Memory Controller Information
47
+ MemoryController = Struct.new(
48
+ :dmi_type, :dmi_handle, :dmi_size,
49
+ :error_detecting_method, :error_correcting_capabilities, :supported_interleave,
50
+ :current_interleave, :maximum_memory_module_size, :maximum_total_memory_size,
51
+ :supported_seeds, :supported_memory_types, :memory_module_voltage, :associated_memory_slots,
52
+ :enabled_error_correcting_capabilities
53
+ )
54
+
55
+ ## Type 6: Memory Module Information
56
+ MemoryModule = Struct.new(
57
+ :dmi_type, :dmi_handle, :dmi_size,
58
+ :socket_designation, :bank_connections, :current_speed, :type, :installed_size, :enabled_size,
59
+ :error_status
60
+ )
61
+
62
+ ## Type 7: Cache Information
63
+ Cache = Struct.new(
64
+ :dmi_type, :dmi_handle, :dmi_size,
65
+ :socket_designation, :configuration, :operational_mode, :location,
66
+ :installed_size, :maximum_size, :supported_sram_types, :installed_sram_type,
67
+ :speed, :error_correction_type, :system_type, :associativity
68
+ )
69
+
70
+ ## Type 8: Port Connector Information
71
+ PortConnector = Struct.new(
72
+ :dmi_type, :dmi_handle, :dmi_size,
73
+ :internal_reference_designator,
74
+ :internal_connector_type,
75
+ :external_reference_designator,
76
+ :external_connector_type,
77
+ :port_type
78
+ )
79
+
80
+ ## Type 9: Sytem Slots
81
+ SystemSlots = Struct.new(
82
+ :dmi_type, :dmi_handle, :dmi_size,
83
+ :designation, :type, :current_usage, :slot_length,
84
+ :id, :characteristics, :bus_address,
85
+ :data_bus_width, :peer_devices
86
+ )
87
+
88
+ ## Type 10: On Board Device Information
89
+ OnBoardDevice = Struct.new(
90
+ :dmi_type, :dmi_handle, :dmi_size,
91
+ :type, :status, :description
92
+ )
93
+
94
+ ## Type 11: OEM Strings
95
+ OEMStrings = Struct.new(
96
+ :dmi_type, :dmi_handle, :dmi_size,
97
+ :strings
98
+ )
99
+
100
+ ## Type 12: System Configuration Options
101
+ SystemConfigurationOptions = Struct.new(
102
+ :dmi_type, :dmi_handle, :dmi_size,
103
+ :options
104
+ )
105
+
106
+ ## Type 13: BIOS Language Information
107
+ BIOSLanguage = Struct.new(
108
+ :dmi_type, :dmi_handle, :dmi_size,
109
+ :language_description_format, :installed_languages, :currently_installed_language
110
+ )
111
+
112
+ ## Type 14: Group Associations
113
+ GroupAssociation = Struct.new(
114
+ :dmi_type, :dmi_handle, :dmi_size,
115
+ :name, :items
116
+ )
117
+
118
+ ## Type 15: System Event Log
119
+ SystemEventLog = Struct.new(
120
+ :dmi_type, :dmi_handle, :dmi_size,
121
+ :area_length, :header_start_offset, :header_length, :data_start_offset,
122
+ :access_method, :change_token, :header_format, :supported_log_type_descriptors,
123
+ :descriptors
124
+ )
125
+
126
+ ## Type 16: Physical Memory Array
127
+ PhysicalMemoryArray = Struct.new(
128
+ :dmi_type, :dmi_handle, :dmi_size,
129
+ :location, :use, :error_correction_type, :maximum_capacity,
130
+ :error_information_handle, :number_of_devices
131
+ )
132
+
133
+ ## Type 17: Memory Device
134
+ MemoryDevice = Struct.new(
135
+ :dmi_type, :dmi_handle, :dmi_size,
136
+ :array_handle, :error_information_handle, :total_width,
137
+ :data_width, :mem_size, :form_factor, :set, :locator,
138
+ :bank_locator, :type, :type_detail, :speed,
139
+ :manufacturer, :serial_number, :asset_tag,
140
+ :part_number, :rank, :configured_clock_speed,
141
+ :minimum_voltage, :maximum_voltage,
142
+ :configured_voltage, :configured_memory_speed,
143
+ :firmware_version, :model_manufacturer_id, :module_product_id,
144
+ :memory_subsystem_controller_manufacturer_id,
145
+ :memory_subsystem_controller_product_id,
146
+ :non_volatile_size, :cache_size, :logical_size
147
+ )
148
+
149
+ ## Type 18: 32-bit Memory Error Information
150
+ MemoryError32Bit = Struct.new(
151
+ :dmi_type, :dmi_handle, :dmi_size,
152
+ :type, :granularity, :operation, :vendor_syndrome, :memory_array_address,
153
+ :device_address, :resolution
154
+ )
155
+
156
+ ## Type 19: Memory Array Mapped Address
157
+ MemoryArrayMappedAddress = Struct.new(
158
+ :dmi_type, :dmi_handle, :dmi_size,
159
+ :starting_address, :ending_address, :range_size,
160
+ :physical_array_handle, :partition_width
161
+ )
162
+
163
+ ## Type 20: Memory Device Mapped Address
164
+ MemoryDeviceMappedAddress = Struct.new(
165
+ :dmi_type, :dmi_handle, :dmi_size,
166
+ :starting_address, :ending_address, :range_size,
167
+ :physical_device_handle, :memory_array_mapped_address_handle,
168
+ :partition_row_position, :interleave_position,
169
+ :interleaved_data_depth
170
+ )
171
+
172
+ ## Type 21: Built-In Pointing Device
173
+ BuiltInPointingDevice = Struct.new(
174
+ :dmi_type, :dmi_handle, :dmi_size,
175
+ :type, :inteface, :buttons
176
+ )
177
+
178
+ ## Type 22: Portable Battery
179
+ PortableBattery = Struct.new(
180
+ :dmi_type, :dmi_handle, :dmi_size,
181
+ :location, :manufacturer, :manufacture_date,
182
+ :serial_number, :name, :chemistry,
183
+ :design_capacity, :design_voltage, :maximum_error,
184
+ :sbds_version, :sbds_serial_number, :sbds_manufacturer_date,
185
+ :sbds_chemistry, :oem_specific_information
186
+ )
187
+
188
+ ## Type 23: System Reset
189
+ SystemReset = Struct.new(
190
+ :dmi_type, :dmi_handle, :dmi_size,
191
+ :status, :watchdog_timer, :boot_option,
192
+ :boot_option_on_limit, :timer_interval,
193
+ :reset_count, :reset_limit, :timeout
194
+ )
195
+
196
+ ## Type 24: Hardware Security
197
+ HardwareSecurity = Struct.new(
198
+ :dmi_type, :dmi_handle, :dmi_size,
199
+ :power_on_password_status, :keyboard_password_status,
200
+ :administrator_password_status, :front_panel_reset_status
201
+ )
202
+
203
+ ## Type 25: System Power Controls
204
+ SystemPowerControls = Struct.new(
205
+ :dmi_type, :dmi_handle, :dmi_size,
206
+ :next_scheduled_power_on
207
+ )
208
+
209
+ ## Type 26: Voltage Probe
210
+ VoltageProbe = Struct.new(
211
+ :dmi_type, :dmi_handle, :dmi_size,
212
+ :description, :location, :status, :maximum_value,
213
+ :minimum_value, :resolution, :tolerance, :accuracy,
214
+ :oem_specific_information, :nominal_value
215
+ )
216
+
217
+ ## Type 27: Cooling Device
218
+ CoolingDevice = Struct.new(
219
+ :dmi_type, :dmi_handle, :dmi_size,
220
+ :temperature_probe_handle, :type,
221
+ :status, :cooling_unit_group, :oem_specific_information,
222
+ :nominal_speed, :description
223
+ )
224
+
225
+ ## Type 28: Temperature Probe
226
+ TemperatureProbe = Struct.new(
227
+ :dmi_type, :dmi_handle, :dmi_size,
228
+ :description, :location, :status,
229
+ :maximum_value, :minimum_value, :resolution,
230
+ :tolerance, :accuracy, :oem_specific_information,
231
+ :nominal_value
232
+ )
233
+
234
+ ## Type 29: Electrical Current Probe
235
+ ElectricalCurrentProbe = Struct.new(
236
+ :dmi_type, :dmi_handle, :dmi_size,
237
+ :description, :location, :status,
238
+ :maximum_value, :minimum_value, :resolution,
239
+ :tolerance, :accuracy, :oem_specific_information,
240
+ :nominal_value
241
+ )
242
+
243
+ ## Type 30: Out-of-band Remote Access
244
+ OutOfBandRemoteAccess = Struct.new(
245
+ :dmi_type, :dmi_handle, :dmi_size,
246
+ :manufacturer_name, :inbound_connection,
247
+ :outbound_connection
248
+ )
249
+
250
+ ## Type 31: Boot Integrity Services Entry Point
251
+ BootIntegrityServices = Struct.new(
252
+ :dmi_type, :dmi_handle, :dmi_size,
253
+ :checksum,
254
+ :sixteen_bit_entry_point_address,
255
+ :thirty_two_bit_entry_point_address
256
+ )
257
+
258
+ ## Type 32: System Boot
259
+ SystemBoot = Struct.new(
260
+ :dmi_type, :dmi_handle, :dmi_size,
261
+ :status
262
+ )
263
+
264
+ ## Type 33: 64-bit Memory Error
265
+ MemoryError64Bit = Struct.new(
266
+ :dmi_type, :dmi_handle, :dmi_size,
267
+ :type, :granularity, :operation, :vendor_syndrome, :memory_array_address,
268
+ :device_address, :resolution
269
+ )
270
+
271
+ ## Type 34: Management Device
272
+ ManagementDevice = Struct.new(
273
+ :dmi_type, :dmi_handle, :dmi_size,
274
+ :description, :type, :address, :address_type
275
+ )
276
+
277
+ ## Type 35: Management Device Component
278
+ ManagementDeviceComponent = Struct.new(
279
+ :dmi_type, :dmi_handle, :dmi_size,
280
+ :description, :management_device_handle, :component_handle,
281
+ :threshold_handle
282
+ )
283
+
284
+ ## Type 36: Management Device Threshold Data
285
+ ManagementDeviceThresholdData = Struct.new(
286
+ :dmi_type, :dmi_handle, :dmi_size,
287
+ :lower_non_critical_threshold,
288
+ :upper_non_critical_threshold,
289
+ :lower_critical_threshold,
290
+ :upper_critical_threshold,
291
+ :lower_non_recoverable_threshold,
292
+ :upper_non_recoverable_threshold
293
+ )
294
+
295
+ ## Type 37: Memory Channel
296
+ MemoryChannelDevice = Struct.new(
297
+ :load,
298
+ :handle
299
+ )
300
+
301
+ MemoryChannel = Struct.new(
302
+ :dmi_type, :dmi_handle, :dmi_size,
303
+ :type, :maximal_load, :devices
304
+ )
305
+
306
+ ## Type 38: IPMI Device Information
307
+ IPMIDevice = Struct.new(
308
+ :dmi_type, :dmi_handle, :dmi_size,
309
+ :interface_type, :specification_version, :i2c_slave_address,
310
+ :nv_storage_device_address, :nv_storage_device, :base_address, :register_spacing,
311
+ :interrupt_polarity, :interrupt_trigger_mode, :interrupt_number
312
+ )
313
+
314
+ ## Type 39: System Power Supply
315
+ SystemPowerSupply = Struct.new(
316
+ :dmi_type, :dmi_handle, :dmi_size,
317
+ :power_unit_group, :location, :name,
318
+ :manufacturer, :serial_number, :asset_tag, :model_part_number,
319
+ :revision, :max_power_capacity, :status,
320
+ :type, :input_voltage_range_switching,
321
+ :plugged, :hot_replaceable,
322
+ :input_voltage_probe_handle,
323
+ :cooling_device_handle,
324
+ :input_current_probe_handle
325
+ )
326
+
327
+ ## Type 40: Additional Information
328
+ AdditionalInformation = Struct.new(
329
+ :dmi_type, :dmi_handle, :dmi_size,
330
+ :referenced_handle, :referenced_offset,
331
+ :string, :value
332
+ )
333
+
334
+ ## Type 41: On Board Devices Extended Information
335
+ OnboardDevicesExtendedInformation = Struct.new(
336
+ :dmi_type, :dmi_handle, :dmi_size,
337
+ :reference_designation, :type, :status,
338
+ :type_instance, :bus_address
339
+ )
340
+
341
+ ## Type 42: Management Controller Host Interface
342
+ ProtocolRecord = Struct.new(
343
+ :protocol_id,
344
+ :protocol_type_specific_data
345
+ )
346
+
347
+ ManagementControllerHostInterface = Struct.new(
348
+ :dmi_type, :dmi_handle, :dmi_size,
349
+ :interface_type, :vendor_id, :device_type,
350
+ :protocol_records, :host_ip_assignment_type, :host_ip_address_format
351
+ )
352
+
353
+ ## Type 43: TPM Device
354
+ TPMDevice = Struct.new(
355
+ :dmi_type, :dmi_handle, :dmi_size,
356
+ :specification_version, :firmware_revision,
357
+ :description, :characteristics, :oem_specific_information
358
+ )
359
+ end
360
+ end
361
+ end