kanrisuru 0.13.0 → 0.16.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -0
- data/README.md +5 -5
- data/kanrisuru.gemspec +7 -3
- data/lib/kanrisuru/command.rb +15 -1
- data/lib/kanrisuru/core/apt/commands/autoclean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/autoremove.rb +15 -0
- data/lib/kanrisuru/core/apt/commands/clean.rb +13 -0
- data/lib/kanrisuru/core/apt/commands/full_upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/install.rb +22 -0
- data/lib/kanrisuru/core/apt/commands/list.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/purge.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/remove.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/search.rb +18 -0
- data/lib/kanrisuru/core/apt/commands/show.rb +21 -0
- data/lib/kanrisuru/core/apt/commands/update.rb +14 -0
- data/lib/kanrisuru/core/apt/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/apt/commands.rb +14 -0
- data/lib/kanrisuru/core/apt/parser.rb +6 -0
- data/lib/kanrisuru/core/apt/parsers/base.rb +51 -0
- data/lib/kanrisuru/core/apt/parsers/list.rb +28 -0
- data/lib/kanrisuru/core/apt/parsers/search.rb +32 -0
- data/lib/kanrisuru/core/apt/parsers/show.rb +90 -0
- data/lib/kanrisuru/core/apt/types.rb +36 -0
- data/lib/kanrisuru/core/apt.rb +4 -284
- data/lib/kanrisuru/core/archive/commands/tar.rb +126 -0
- data/lib/kanrisuru/core/archive/commands.rb +3 -0
- data/lib/kanrisuru/core/archive/types.rb +9 -0
- data/lib/kanrisuru/core/archive.rb +3 -121
- data/lib/kanrisuru/core/disk/commands/blkid.rb +35 -0
- data/lib/kanrisuru/core/disk/commands/df.rb +26 -0
- data/lib/kanrisuru/core/disk/commands/du.rb +24 -0
- data/lib/kanrisuru/core/disk/commands/lsblk.rb +49 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/constants.rb +9 -0
- data/lib/kanrisuru/core/disk/parser.rb +7 -0
- data/lib/kanrisuru/core/disk/parsers/blkid.rb +72 -0
- data/lib/kanrisuru/core/disk/parsers/df.rb +33 -0
- data/lib/kanrisuru/core/disk/parsers/du.rb +25 -0
- data/lib/kanrisuru/core/disk/parsers/lsblk.rb +96 -0
- data/lib/kanrisuru/core/disk/parsers/lsblk_version.rb +21 -0
- data/lib/kanrisuru/core/disk/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +6 -290
- data/lib/kanrisuru/core/dmi/commands/dmi.rb +42 -0
- data/lib/kanrisuru/core/dmi/commands.rb +3 -0
- data/lib/kanrisuru/core/dmi/parser.rb +3 -0
- data/lib/kanrisuru/core/dmi/parsers/dmi.rb +149 -0
- data/lib/kanrisuru/core/dmi/types.rb +361 -0
- data/lib/kanrisuru/core/dmi.rb +4 -522
- data/lib/kanrisuru/core/file/commands/chmod.rb +29 -0
- data/lib/kanrisuru/core/file/commands/chown.rb +35 -0
- data/lib/kanrisuru/core/file/commands/copy.rb +54 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +42 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +41 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +34 -0
- data/lib/kanrisuru/core/file/commands/unlink.rb +13 -0
- data/lib/kanrisuru/core/file/commands/wc.rb +16 -0
- data/lib/kanrisuru/core/file/commands.rb +29 -0
- data/lib/kanrisuru/core/file/parser.rb +3 -0
- data/lib/kanrisuru/core/file/parsers/wc.rb +16 -0
- data/lib/kanrisuru/core/file/types.rb +9 -0
- data/lib/kanrisuru/core/file.rb +4 -312
- data/lib/kanrisuru/core/find/commands/find.rb +97 -0
- data/lib/kanrisuru/core/find/commands.rb +3 -0
- data/lib/kanrisuru/core/find/constants.rb +9 -0
- data/lib/kanrisuru/core/find/parser.rb +3 -0
- data/lib/kanrisuru/core/find/parsers/find.rb +18 -0
- data/lib/kanrisuru/core/find/types.rb +9 -0
- data/lib/kanrisuru/core/find.rb +5 -97
- data/lib/kanrisuru/core/group/commands/create_group.rb +21 -0
- data/lib/kanrisuru/core/group/commands/delete_group.rb +16 -0
- data/lib/kanrisuru/core/group/commands/get_gid.rb +17 -0
- data/lib/kanrisuru/core/group/commands/get_group.rb +29 -0
- data/lib/kanrisuru/core/group/commands/is_group.rb +14 -0
- data/lib/kanrisuru/core/group/commands/update_group.rb +23 -0
- data/lib/kanrisuru/core/group/commands.rb +8 -0
- data/lib/kanrisuru/core/group/parser.rb +4 -0
- data/lib/kanrisuru/core/group/parsers/gid.rb +15 -0
- data/lib/kanrisuru/core/group/parsers/group.rb +15 -0
- data/lib/kanrisuru/core/group/types.rb +10 -0
- data/lib/kanrisuru/core/group.rb +4 -81
- data/lib/kanrisuru/core/ip/commands/address.rb +86 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +54 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +116 -0
- data/lib/kanrisuru/core/ip/commands/link_set_opts.rb +61 -0
- data/lib/kanrisuru/core/ip/commands/link_type_opts.rb +313 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +42 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +72 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +152 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +57 -0
- data/lib/kanrisuru/core/ip/commands.rb +26 -0
- data/lib/kanrisuru/core/ip/constants.rb +25 -0
- data/lib/kanrisuru/core/ip/parser.rb +11 -0
- data/lib/kanrisuru/core/ip/parsers/address.rb +104 -0
- data/lib/kanrisuru/core/ip/parsers/address_label.rb +27 -0
- data/lib/kanrisuru/core/ip/parsers/base.rb +166 -0
- data/lib/kanrisuru/core/ip/parsers/link.rb +86 -0
- data/lib/kanrisuru/core/ip/parsers/maddress.rb +85 -0
- data/lib/kanrisuru/core/ip/parsers/neighbour.rb +89 -0
- data/lib/kanrisuru/core/ip/parsers/route.rb +76 -0
- data/lib/kanrisuru/core/ip/parsers/rule.rb +60 -0
- data/lib/kanrisuru/core/ip/parsers/version.rb +15 -0
- data/lib/kanrisuru/core/ip/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +15 -1002
- data/lib/kanrisuru/core/mount/commands/mount.rb +65 -0
- data/lib/kanrisuru/core/mount/commands/umount.rb +35 -0
- data/lib/kanrisuru/core/mount/commands.rb +49 -0
- data/lib/kanrisuru/core/mount.rb +2 -125
- data/lib/kanrisuru/core/path/commands/ls.rb +26 -0
- data/lib/kanrisuru/core/path/commands/pwd.rb +16 -0
- data/lib/kanrisuru/core/path/commands/readlink.rb +22 -0
- data/lib/kanrisuru/core/path/commands/realpath.rb +18 -0
- data/lib/kanrisuru/core/path/commands/which.rb +19 -0
- data/lib/kanrisuru/core/path/commands/whoami.rb +16 -0
- data/lib/kanrisuru/core/path/commands.rb +8 -0
- data/lib/kanrisuru/core/path/parser.rb +4 -0
- data/lib/kanrisuru/core/path/parsers/ls.rb +53 -0
- data/lib/kanrisuru/core/path/parsers/which.rb +18 -0
- data/lib/kanrisuru/core/path/types.rb +12 -0
- data/lib/kanrisuru/core/path.rb +4 -121
- data/lib/kanrisuru/core/socket/commands/ss.rb +44 -0
- data/lib/kanrisuru/core/socket/commands.rb +3 -0
- data/lib/kanrisuru/core/socket/constants.rb +29 -0
- data/lib/kanrisuru/core/socket/parser.rb +3 -0
- data/lib/kanrisuru/core/socket/parsers/ss.rb +109 -0
- data/lib/kanrisuru/core/socket/types.rb +18 -0
- data/lib/kanrisuru/core/socket.rb +5 -164
- data/lib/kanrisuru/core/stat/commands/stat.rb +62 -0
- data/lib/kanrisuru/core/stat/commands.rb +3 -0
- data/lib/kanrisuru/core/stat/parser.rb +3 -0
- data/lib/kanrisuru/core/stat/parsers/stat.rb +34 -0
- data/lib/kanrisuru/core/stat/types.rb +14 -0
- data/lib/kanrisuru/core/stat.rb +4 -81
- data/lib/kanrisuru/core/stream/commands/cat.rb +25 -0
- data/lib/kanrisuru/core/stream/commands/echo.rb +20 -0
- data/lib/kanrisuru/core/stream/commands/head.rb +18 -0
- data/lib/kanrisuru/core/stream/commands/read_file_chunk.rb +21 -0
- data/lib/kanrisuru/core/stream/commands/sed.rb +23 -0
- data/lib/kanrisuru/core/stream/commands/tail.rb +18 -0
- data/lib/kanrisuru/core/stream/commands.rb +27 -0
- data/lib/kanrisuru/core/stream/parser.rb +4 -0
- data/lib/kanrisuru/core/stream/parsers/echo.rb +17 -0
- data/lib/kanrisuru/core/stream/parsers/sed.rb +17 -0
- data/lib/kanrisuru/core/stream.rb +3 -104
- data/lib/kanrisuru/core/system/commands/cpu_info.rb +32 -0
- data/lib/kanrisuru/core/system/commands/free.rb +25 -0
- data/lib/kanrisuru/core/system/commands/kernel_statistics.rb +21 -0
- data/lib/kanrisuru/core/system/commands/kill.rb +22 -0
- data/lib/kanrisuru/core/system/commands/last.rb +31 -0
- data/lib/kanrisuru/core/system/commands/load_average.rb +16 -0
- data/lib/kanrisuru/core/system/commands/load_env.rb +16 -0
- data/lib/kanrisuru/core/system/commands/lscpu.rb +17 -0
- data/lib/kanrisuru/core/system/commands/lsof.rb +16 -0
- data/lib/kanrisuru/core/system/commands/poweroff.rb +42 -0
- data/lib/kanrisuru/core/system/commands/ps.rb +35 -0
- data/lib/kanrisuru/core/system/commands/reboot.rb +42 -0
- data/lib/kanrisuru/core/system/commands/uptime.rb +18 -0
- data/lib/kanrisuru/core/system/commands/w.rb +24 -0
- data/lib/kanrisuru/core/system/commands.rb +34 -0
- data/lib/kanrisuru/core/system/parser.rb +11 -0
- data/lib/kanrisuru/core/system/parsers/kernel_statistics.rb +56 -0
- data/lib/kanrisuru/core/system/parsers/last.rb +64 -0
- data/lib/kanrisuru/core/system/parsers/load_average.rb +15 -0
- data/lib/kanrisuru/core/system/parsers/load_env.rb +24 -0
- data/lib/kanrisuru/core/system/parsers/lscpu.rb +90 -0
- data/lib/kanrisuru/core/system/parsers/lsof.rb +62 -0
- data/lib/kanrisuru/core/system/parsers/ps.rb +71 -0
- data/lib/kanrisuru/core/system/parsers/uptime.rb +38 -0
- data/lib/kanrisuru/core/system/parsers/w.rb +30 -0
- data/lib/kanrisuru/core/system/types.rb +108 -0
- data/lib/kanrisuru/core/system.rb +4 -687
- data/lib/kanrisuru/core/transfer/commands/download.rb +26 -0
- data/lib/kanrisuru/core/transfer/commands/upload.rb +23 -0
- data/lib/kanrisuru/core/transfer/commands/wget.rb +168 -0
- data/lib/kanrisuru/core/transfer/commands.rb +5 -0
- data/lib/kanrisuru/core/transfer/constants.rb +10 -0
- data/lib/kanrisuru/core/transfer.rb +3 -199
- data/lib/kanrisuru/core/user/commands/create_user.rb +49 -0
- data/lib/kanrisuru/core/user/commands/delete_user.rb +20 -0
- data/lib/kanrisuru/core/user/commands/get_uid.rb +15 -0
- data/lib/kanrisuru/core/user/commands/get_user.rb +48 -0
- data/lib/kanrisuru/core/user/commands/is_user.rb +14 -0
- data/lib/kanrisuru/core/user/commands/update_user.rb +54 -0
- data/lib/kanrisuru/core/user/commands.rb +8 -0
- data/lib/kanrisuru/core/user/parser.rb +4 -0
- data/lib/kanrisuru/core/user/parsers/getent.rb +17 -0
- data/lib/kanrisuru/core/user/parsers/groups.rb +17 -0
- data/lib/kanrisuru/core/user/types.rb +11 -0
- data/lib/kanrisuru/core/user.rb +4 -182
- data/lib/kanrisuru/core/yum/commands/autoremove.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/clean.rb +23 -0
- data/lib/kanrisuru/core/yum/commands/erase.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/info.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/install.rb +18 -0
- data/lib/kanrisuru/core/yum/commands/list.rb +30 -0
- data/lib/kanrisuru/core/yum/commands/localinstall.rb +22 -0
- data/lib/kanrisuru/core/yum/commands/remove.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/repolist.rb +20 -0
- data/lib/kanrisuru/core/yum/commands/search.rb +21 -0
- data/lib/kanrisuru/core/yum/commands/update.rb +14 -0
- data/lib/kanrisuru/core/yum/commands/upgrade.rb +14 -0
- data/lib/kanrisuru/core/yum/commands.rb +39 -0
- data/lib/kanrisuru/core/yum/parser.rb +7 -0
- data/lib/kanrisuru/core/yum/parsers/base.rb +31 -0
- data/lib/kanrisuru/core/yum/parsers/info.rb +69 -0
- data/lib/kanrisuru/core/yum/parsers/list.rb +24 -0
- data/lib/kanrisuru/core/yum/parsers/repolist.rb +60 -0
- data/lib/kanrisuru/core/yum/parsers/search.rb +30 -0
- data/lib/kanrisuru/core/yum/types.rb +41 -0
- data/lib/kanrisuru/core/yum.rb +4 -347
- data/lib/kanrisuru/core/zypper/commands/add_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/add_repo.rb +38 -0
- data/lib/kanrisuru/core/zypper/commands/add_service.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/clean_cache.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/clean_locks.rb +17 -0
- data/lib/kanrisuru/core/zypper/commands/dist_upgrade.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/info.rb +25 -0
- data/lib/kanrisuru/core/zypper/commands/install.rb +39 -0
- data/lib/kanrisuru/core/zypper/commands/install_new_recommends.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands/list_locks.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/list_patches.rb +34 -0
- data/lib/kanrisuru/core/zypper/commands/list_repos.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/list_updates.rb +30 -0
- data/lib/kanrisuru/core/zypper/commands/modify_repo.rb +48 -0
- data/lib/kanrisuru/core/zypper/commands/modify_service.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch.rb +40 -0
- data/lib/kanrisuru/core/zypper/commands/patch_check.rb +29 -0
- data/lib/kanrisuru/core/zypper/commands/purge_kernels.rb +18 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_repos.rb +24 -0
- data/lib/kanrisuru/core/zypper/commands/refresh_services.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/remove.rb +26 -0
- data/lib/kanrisuru/core/zypper/commands/remove_lock.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/remove_repo.rb +32 -0
- data/lib/kanrisuru/core/zypper/commands/remove_service.rb +21 -0
- data/lib/kanrisuru/core/zypper/commands/rename_repo.rb +20 -0
- data/lib/kanrisuru/core/zypper/commands/search.rb +52 -0
- data/lib/kanrisuru/core/zypper/commands/source_install.rb +22 -0
- data/lib/kanrisuru/core/zypper/commands/update.rb +27 -0
- data/lib/kanrisuru/core/zypper/commands/verify.rb +23 -0
- data/lib/kanrisuru/core/zypper/commands.rb +109 -0
- data/lib/kanrisuru/core/zypper/constants.rb +19 -0
- data/lib/kanrisuru/core/zypper/parser.rb +11 -0
- data/lib/kanrisuru/core/zypper/parsers/base.rb +18 -0
- data/lib/kanrisuru/core/zypper/parsers/info.rb +77 -0
- data/lib/kanrisuru/core/zypper/parsers/list_locks.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_patches.rb +40 -0
- data/lib/kanrisuru/core/zypper/parsers/list_repos.rb +37 -0
- data/lib/kanrisuru/core/zypper/parsers/list_services.rb +36 -0
- data/lib/kanrisuru/core/zypper/parsers/list_updates.rb +32 -0
- data/lib/kanrisuru/core/zypper/parsers/patch_check.rb +34 -0
- data/lib/kanrisuru/core/zypper/parsers/search.rb +37 -0
- data/lib/kanrisuru/core/zypper/types.rb +88 -0
- data/lib/kanrisuru/core/zypper.rb +5 -998
- data/lib/kanrisuru/os_package.rb +2 -0
- data/lib/kanrisuru/result.rb +15 -0
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/archive_spec.rb +1 -1
- data/spec/functional/core/disk_spec.rb +77 -0
- data/spec/functional/core/dmi_spec.rb +78 -0
- data/spec/functional/core/file_spec.rb +284 -0
- data/spec/functional/core/group_spec.rb +62 -0
- data/spec/functional/core/ip/ip_address_label_spec.rb +81 -0
- data/spec/functional/core/ip/ip_address_spec.rb +95 -0
- data/spec/functional/core/ip/ip_link_spec.rb +814 -0
- data/spec/functional/core/ip/ip_maddress_spec.rb +78 -0
- data/spec/functional/core/ip/ip_neighbour_spec.rb +119 -0
- data/spec/functional/core/ip/ip_route_spec.rb +174 -0
- data/spec/functional/core/ip/ip_rule_spec.rb +75 -0
- data/spec/functional/core/ip/ip_spec.rb +27 -0
- data/spec/functional/core/system_spec.rb +135 -0
- data/spec/functional/core/user_spec.rb +97 -0
- data/spec/functional/result_spec.rb +91 -44
- data/spec/helper/stub_network.rb +6 -2
- data/spec/support/shared_examples/integration/core/transfer.rb +1 -1
- data/spec/unit/command_spec.rb +2 -0
- data/spec/unit/core/ip_spec.rb +12 -0
- data/spec/unit/util_spec.rb +16 -0
- metadata +253 -4
data/lib/kanrisuru/core/dmi.rb
CHANGED
@@ -1,533 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative 'dmi/types'
|
4
|
+
require_relative 'dmi/parser'
|
5
|
+
require_relative 'dmi/commands'
|
6
|
+
|
3
7
|
module Kanrisuru
|
4
8
|
module Core
|
5
9
|
module Dmi
|
6
10
|
extend OsPackage::Define
|
7
11
|
|
8
12
|
os_define :linux, :dmi
|
9
|
-
|
10
|
-
## Type 0: BIOS Information
|
11
|
-
BIOS = Struct.new(
|
12
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
13
|
-
:vendor, :version, :release_date, :address, :runtime_size,
|
14
|
-
:rom_size, :characteristics, :bios_revision, :firmware_revision
|
15
|
-
)
|
16
|
-
|
17
|
-
## Type 1: Sytem Information
|
18
|
-
System = Struct.new(
|
19
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
20
|
-
:manufacturer, :product_name, :version, :serial_number,
|
21
|
-
:uuid, :wake_up_type, :sku_number, :family
|
22
|
-
)
|
23
|
-
|
24
|
-
## Type 2: Baseboard Information
|
25
|
-
Baseboard = Struct.new(
|
26
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
27
|
-
:type, :manufacturer, :product_name, :version, :serial_number, :asset_tag,
|
28
|
-
:features, :location_in_chassis, :chassis_handle, :contained_object_handles
|
29
|
-
)
|
30
|
-
|
31
|
-
## Type 3: Chassis Information
|
32
|
-
Chassis = Struct.new(
|
33
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
34
|
-
:manufacturer, :type, :lock, :version, :serial_number,
|
35
|
-
:asset_tag, :boot_up_state, :power_supply_state, :thermal_state,
|
36
|
-
:security_status, :oem_information, :height, :number_of_power_cords,
|
37
|
-
:contained_elements, :sku_number
|
38
|
-
)
|
39
|
-
|
40
|
-
## Type 4: Processor Information
|
41
|
-
Processor = Struct.new(
|
42
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
43
|
-
:socket_designation, :type, :family, :manufacturer, :id, :signature, :flags,
|
44
|
-
:version, :voltage, :external_clock, :max_speed, :current_speed,
|
45
|
-
:status, :upgrade, :l1_cache_handle, :l2_cache_handle, :l3_cache_handle,
|
46
|
-
:serial_number, :asset_tag, :part_number, :core_count, :core_enabled, :thread_count,
|
47
|
-
:characteristics
|
48
|
-
)
|
49
|
-
|
50
|
-
## Type 5: Memory Controller Information
|
51
|
-
MemoryController = Struct.new(
|
52
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
53
|
-
:error_detecting_method, :error_correcting_capabilities, :supported_interleave,
|
54
|
-
:current_interleave, :maximum_memory_module_size, :maximum_total_memory_size,
|
55
|
-
:supported_seeds, :supported_memory_types, :memory_module_voltage, :associated_memory_slots,
|
56
|
-
:enabled_error_correcting_capabilities
|
57
|
-
)
|
58
|
-
|
59
|
-
## Type 6: Memory Module Information
|
60
|
-
MemoryModule = Struct.new(
|
61
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
62
|
-
:socket_designation, :bank_connections, :current_speed, :type, :installed_size, :enabled_size,
|
63
|
-
:error_status
|
64
|
-
)
|
65
|
-
|
66
|
-
## Type 7: Cache Information
|
67
|
-
Cache = Struct.new(
|
68
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
69
|
-
:socket_designation, :configuration, :operational_mode, :location,
|
70
|
-
:installed_size, :maximum_size, :supported_sram_types, :installed_sram_type,
|
71
|
-
:speed, :error_correction_type, :system_type, :associativity
|
72
|
-
)
|
73
|
-
|
74
|
-
## Type 8: Port Connector Information
|
75
|
-
PortConnector = Struct.new(
|
76
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
77
|
-
:internal_reference_designator,
|
78
|
-
:internal_connector_type,
|
79
|
-
:external_reference_designator,
|
80
|
-
:external_connector_type,
|
81
|
-
:port_type
|
82
|
-
)
|
83
|
-
|
84
|
-
## Type 9: Sytem Slots
|
85
|
-
SystemSlots = Struct.new(
|
86
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
87
|
-
:designation, :type, :current_usage, :slot_length,
|
88
|
-
:id, :characteristics, :bus_address,
|
89
|
-
:data_bus_width, :peer_devices
|
90
|
-
)
|
91
|
-
|
92
|
-
## Type 10: On Board Device Information
|
93
|
-
OnBoardDevice = Struct.new(
|
94
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
95
|
-
:type, :status, :description
|
96
|
-
)
|
97
|
-
|
98
|
-
## Type 11: OEM Strings
|
99
|
-
OEMStrings = Struct.new(
|
100
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
101
|
-
:strings
|
102
|
-
)
|
103
|
-
|
104
|
-
## Type 12: System Configuration Options
|
105
|
-
SystemConfigurationOptions = Struct.new(
|
106
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
107
|
-
:options
|
108
|
-
)
|
109
|
-
|
110
|
-
## Type 13: BIOS Language Information
|
111
|
-
BIOSLanguage = Struct.new(
|
112
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
113
|
-
:language_description_format, :installed_languages, :currently_installed_language
|
114
|
-
)
|
115
|
-
|
116
|
-
## Type 14: Group Associations
|
117
|
-
GroupAssociation = Struct.new(
|
118
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
119
|
-
:name, :items
|
120
|
-
)
|
121
|
-
|
122
|
-
## Type 15: System Event Log
|
123
|
-
SystemEventLog = Struct.new(
|
124
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
125
|
-
:area_length, :header_start_offset, :header_length, :data_start_offset,
|
126
|
-
:access_method, :change_token, :header_format, :supported_log_type_descriptors,
|
127
|
-
:descriptors
|
128
|
-
)
|
129
|
-
|
130
|
-
## Type 16: Physical Memory Array
|
131
|
-
PhysicalMemoryArray = Struct.new(
|
132
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
133
|
-
:location, :use, :error_correction_type, :maximum_capacity,
|
134
|
-
:error_information_handle, :number_of_devices
|
135
|
-
)
|
136
|
-
|
137
|
-
## Type 17: Memory Device
|
138
|
-
MemoryDevice = Struct.new(
|
139
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
140
|
-
:array_handle, :error_information_handle, :total_width,
|
141
|
-
:data_width, :mem_size, :form_factor, :set, :locator,
|
142
|
-
:bank_locator, :type, :type_detail, :speed,
|
143
|
-
:manufacturer, :serial_number, :asset_tag,
|
144
|
-
:part_number, :rank, :configured_clock_speed,
|
145
|
-
:minimum_voltage, :maximum_voltage,
|
146
|
-
:configured_voltage, :configured_memory_speed,
|
147
|
-
:firmware_version, :model_manufacturer_id, :module_product_id,
|
148
|
-
:memory_subsystem_controller_manufacturer_id,
|
149
|
-
:memory_subsystem_controller_product_id,
|
150
|
-
:non_volatile_size, :cache_size, :logical_size
|
151
|
-
)
|
152
|
-
|
153
|
-
## Type 18: 32-bit Memory Error Information
|
154
|
-
MemoryError32Bit = Struct.new(
|
155
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
156
|
-
:type, :granularity, :operation, :vendor_syndrome, :memory_array_address,
|
157
|
-
:device_address, :resolution
|
158
|
-
)
|
159
|
-
|
160
|
-
## Type 19: Memory Array Mapped Address
|
161
|
-
MemoryArrayMappedAddress = Struct.new(
|
162
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
163
|
-
:starting_address, :ending_address, :range_size,
|
164
|
-
:physical_array_handle, :partition_width
|
165
|
-
)
|
166
|
-
|
167
|
-
## Type 20: Memory Device Mapped Address
|
168
|
-
MemoryDeviceMappedAddress = Struct.new(
|
169
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
170
|
-
:starting_address, :ending_address, :range_size,
|
171
|
-
:physical_device_handle, :memory_array_mapped_address_handle,
|
172
|
-
:partition_row_position, :interleave_position,
|
173
|
-
:interleaved_data_depth
|
174
|
-
)
|
175
|
-
|
176
|
-
## Type 21: Built-In Pointing Device
|
177
|
-
BuiltInPointingDevice = Struct.new(
|
178
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
179
|
-
:type, :inteface, :buttons
|
180
|
-
)
|
181
|
-
|
182
|
-
## Type 22: Portable Battery
|
183
|
-
PortableBattery = Struct.new(
|
184
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
185
|
-
:location, :manufacturer, :manufacture_date,
|
186
|
-
:serial_number, :name, :chemistry,
|
187
|
-
:design_capacity, :design_voltage, :maximum_error,
|
188
|
-
:sbds_version, :sbds_serial_number, :sbds_manufacturer_date,
|
189
|
-
:sbds_chemistry, :oem_specific_information
|
190
|
-
)
|
191
|
-
|
192
|
-
## Type 23: System Reset
|
193
|
-
SystemReset = Struct.new(
|
194
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
195
|
-
:status, :watchdog_timer, :boot_option,
|
196
|
-
:boot_option_on_limit, :timer_interval,
|
197
|
-
:reset_count, :reset_limit, :timeout
|
198
|
-
)
|
199
|
-
|
200
|
-
## Type 24: Hardware Security
|
201
|
-
HardwareSecurity = Struct.new(
|
202
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
203
|
-
:power_on_password_status, :keyboard_password_status,
|
204
|
-
:administrator_password_status, :front_panel_reset_status
|
205
|
-
)
|
206
|
-
|
207
|
-
## Type 25: System Power Controls
|
208
|
-
SystemPowerControls = Struct.new(
|
209
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
210
|
-
:next_scheduled_power_on
|
211
|
-
)
|
212
|
-
|
213
|
-
## Type 26: Voltage Probe
|
214
|
-
VoltageProbe = Struct.new(
|
215
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
216
|
-
:description, :location, :status, :maximum_value,
|
217
|
-
:minimum_value, :resolution, :tolerance, :accuracy,
|
218
|
-
:oem_specific_information, :nominal_value
|
219
|
-
)
|
220
|
-
|
221
|
-
## Type 27: Cooling Device
|
222
|
-
CoolingDevice = Struct.new(
|
223
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
224
|
-
:temperature_probe_handle, :type,
|
225
|
-
:status, :cooling_unit_group, :oem_specific_information,
|
226
|
-
:nominal_speed, :description
|
227
|
-
)
|
228
|
-
|
229
|
-
## Type 28: Temperature Probe
|
230
|
-
TemperatureProbe = Struct.new(
|
231
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
232
|
-
:description, :location, :status,
|
233
|
-
:maximum_value, :minimum_value, :resolution,
|
234
|
-
:tolerance, :accuracy, :oem_specific_information,
|
235
|
-
:nominal_value
|
236
|
-
)
|
237
|
-
|
238
|
-
## Type 29: Electrical Current Probe
|
239
|
-
ElectricalCurrentProbe = Struct.new(
|
240
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
241
|
-
:description, :location, :status,
|
242
|
-
:maximum_value, :minimum_value, :resolution,
|
243
|
-
:tolerance, :accuracy, :oem_specific_information,
|
244
|
-
:nominal_value
|
245
|
-
)
|
246
|
-
|
247
|
-
## Type 30: Out-of-band Remote Access
|
248
|
-
OutOfBandRemoteAccess = Struct.new(
|
249
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
250
|
-
:manufacturer_name, :inbound_connection,
|
251
|
-
:outbound_connection
|
252
|
-
)
|
253
|
-
|
254
|
-
## Type 31: Boot Integrity Services Entry Point
|
255
|
-
BootIntegrityServices = Struct.new(
|
256
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
257
|
-
:checksum,
|
258
|
-
:sixteen_bit_entry_point_address,
|
259
|
-
:thirty_two_bit_entry_point_address
|
260
|
-
)
|
261
|
-
|
262
|
-
## Type 32: System Boot
|
263
|
-
SystemBoot = Struct.new(
|
264
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
265
|
-
:status
|
266
|
-
)
|
267
|
-
|
268
|
-
## Type 33: 64-bit Memory Error
|
269
|
-
MemoryError64Bit = Struct.new(
|
270
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
271
|
-
:type, :granularity, :operation, :vendor_syndrome, :memory_array_address,
|
272
|
-
:device_address, :resolution
|
273
|
-
)
|
274
|
-
|
275
|
-
## Type 34: Management Device
|
276
|
-
ManagementDevice = Struct.new(
|
277
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
278
|
-
:description, :type, :address, :address_type
|
279
|
-
)
|
280
|
-
|
281
|
-
## Type 35: Management Device Component
|
282
|
-
ManagementDeviceComponent = Struct.new(
|
283
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
284
|
-
:description, :management_device_handle, :component_handle,
|
285
|
-
:threshold_handle
|
286
|
-
)
|
287
|
-
|
288
|
-
## Type 36: Management Device Threshold Data
|
289
|
-
ManagementDeviceThresholdData = Struct.new(
|
290
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
291
|
-
:lower_non_critical_threshold,
|
292
|
-
:upper_non_critical_threshold,
|
293
|
-
:lower_critical_threshold,
|
294
|
-
:upper_critical_threshold,
|
295
|
-
:lower_non_recoverable_threshold,
|
296
|
-
:upper_non_recoverable_threshold
|
297
|
-
)
|
298
|
-
|
299
|
-
## Type 37: Memory Channel
|
300
|
-
MemoryChannelDevice = Struct.new(
|
301
|
-
:load,
|
302
|
-
:handle
|
303
|
-
)
|
304
|
-
|
305
|
-
MemoryChannel = Struct.new(
|
306
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
307
|
-
:type, :maximal_load, :devices
|
308
|
-
)
|
309
|
-
|
310
|
-
## Type 38: IPMI Device Information
|
311
|
-
IPMIDevice = Struct.new(
|
312
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
313
|
-
:interface_type, :specification_version, :i2c_slave_address,
|
314
|
-
:nv_storage_device_address, :nv_storage_device, :base_address, :register_spacing,
|
315
|
-
:interrupt_polarity, :interrupt_trigger_mode, :interrupt_number
|
316
|
-
)
|
317
|
-
|
318
|
-
## Type 39: System Power Supply
|
319
|
-
SystemPowerSupply = Struct.new(
|
320
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
321
|
-
:power_unit_group, :location, :name,
|
322
|
-
:manufacturer, :serial_number, :asset_tag, :model_part_number,
|
323
|
-
:revision, :max_power_capacity, :status,
|
324
|
-
:type, :input_voltage_range_switching,
|
325
|
-
:plugged, :hot_replaceable,
|
326
|
-
:input_voltage_probe_handle,
|
327
|
-
:cooling_device_handle,
|
328
|
-
:input_current_probe_handle
|
329
|
-
)
|
330
|
-
|
331
|
-
## Type 40: Additional Information
|
332
|
-
AdditionalInformation = Struct.new(
|
333
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
334
|
-
:referenced_handle, :referenced_offset,
|
335
|
-
:string, :value
|
336
|
-
)
|
337
|
-
|
338
|
-
## Type 41: On Board Devices Extended Information
|
339
|
-
OnboardDevicesExtendedInformation = Struct.new(
|
340
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
341
|
-
:reference_designation, :type, :status,
|
342
|
-
:type_instance, :bus_address
|
343
|
-
)
|
344
|
-
|
345
|
-
## Type 42: Management Controller Host Interface
|
346
|
-
ProtocolRecord = Struct.new(
|
347
|
-
:protocol_id,
|
348
|
-
:protocol_type_specific_data
|
349
|
-
)
|
350
|
-
|
351
|
-
ManagementControllerHostInterface = Struct.new(
|
352
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
353
|
-
:interface_type, :vendor_id, :device_type,
|
354
|
-
:protocol_records, :host_ip_assignment_type, :host_ip_address_format
|
355
|
-
)
|
356
|
-
|
357
|
-
## Type 43: TPM Device
|
358
|
-
TPMDevice = Struct.new(
|
359
|
-
:dmi_type, :dmi_handle, :dmi_size,
|
360
|
-
:specification_version, :firmware_revision,
|
361
|
-
:description, :characteristics, :oem_specific_information
|
362
|
-
)
|
363
|
-
|
364
|
-
def dmi(opts = {})
|
365
|
-
command = Kanrisuru::Command.new('dmidecode')
|
366
|
-
dmi_type_opts(command, opts)
|
367
|
-
|
368
|
-
execute_shell(command)
|
369
|
-
|
370
|
-
Kanrisuru::Result.new(command) do |cmd|
|
371
|
-
lines = cmd.to_a
|
372
|
-
|
373
|
-
rows = []
|
374
|
-
current_struct = nil
|
375
|
-
wrapped_field_line = nil
|
376
|
-
|
377
|
-
lines.each do |line|
|
378
|
-
next if Kanrisuru::Util.blank?(line)
|
379
|
-
|
380
|
-
case line
|
381
|
-
when /^Handle/
|
382
|
-
if current_struct
|
383
|
-
rows << current_struct
|
384
|
-
|
385
|
-
current_struct = nil
|
386
|
-
wrapped_field_line = nil
|
387
|
-
end
|
388
|
-
|
389
|
-
values = line.split(', ')
|
390
|
-
handle = values[0].split('Handle ')[1]
|
391
|
-
|
392
|
-
type = values[1].split(/(\d+)/)[1].to_i
|
393
|
-
type = Kanrisuru::Util::DmiType[type]
|
394
|
-
next if Kanrisuru::Util.blank?(type)
|
395
|
-
|
396
|
-
bytes = values[2].split(/(\d+)/)[1]
|
397
|
-
|
398
|
-
current_struct = dmi_type_to_struct(type)
|
399
|
-
current_struct.dmi_handle = handle
|
400
|
-
current_struct.dmi_type = type
|
401
|
-
current_struct.dmi_size = bytes.to_i
|
402
|
-
when /:/
|
403
|
-
values = line.split(': ')
|
404
|
-
|
405
|
-
field = values[0].strip
|
406
|
-
value = values[1] ? values[1].strip : ''
|
407
|
-
|
408
|
-
dmi_append_field(current_struct, field, value)
|
409
|
-
|
410
|
-
case line
|
411
|
-
when 'Characteristics:'
|
412
|
-
current_struct.characteristics = []
|
413
|
-
wrapped_field_line = :characteristics
|
414
|
-
when 'Flags:'
|
415
|
-
current_struct.flags = []
|
416
|
-
wrapped_field_line = :flags
|
417
|
-
when 'Supported SRAM Types:'
|
418
|
-
current_struct.supported_sram_types = []
|
419
|
-
wrapped_field_line = :supported_sram_types
|
420
|
-
when 'Features:'
|
421
|
-
current_struct.features = []
|
422
|
-
wrapped_field_line = :features
|
423
|
-
when 'Strings:'
|
424
|
-
current_struct.strings = []
|
425
|
-
wrapped_field_line = :strings
|
426
|
-
end
|
427
|
-
else
|
428
|
-
current_struct[wrapped_field_line] << line.strip if wrapped_field_line
|
429
|
-
end
|
430
|
-
end
|
431
|
-
|
432
|
-
rows << current_struct if current_struct
|
433
|
-
|
434
|
-
rows
|
435
|
-
end
|
436
|
-
end
|
437
|
-
|
438
|
-
private
|
439
|
-
|
440
|
-
def dmi_append_field(struct, field, value)
|
441
|
-
field = dmi_field_translate(struct, field)
|
442
|
-
field = field.to_sym
|
443
|
-
|
444
|
-
if struct.respond_to?(field)
|
445
|
-
case struct.dmi_type
|
446
|
-
when 'OEM Strings'
|
447
|
-
if struct.strings
|
448
|
-
struct[field] << value
|
449
|
-
else
|
450
|
-
struct.strings = [value]
|
451
|
-
end
|
452
|
-
else
|
453
|
-
struct[field] = value
|
454
|
-
end
|
455
|
-
else
|
456
|
-
Kanrisuru.logger.warn("Field does not exist for: #{struct.dmi_type}: #{field} => #{value}")
|
457
|
-
end
|
458
|
-
end
|
459
|
-
|
460
|
-
def dmi_field_translate(struct, field)
|
461
|
-
field = field.downcase
|
462
|
-
field = field.gsub(/\s/, '_')
|
463
|
-
field = field.gsub('-', '_')
|
464
|
-
field = field.gsub(':', '')
|
465
|
-
|
466
|
-
case struct.dmi_type
|
467
|
-
when 'Memory Device'
|
468
|
-
case field
|
469
|
-
when 'size'
|
470
|
-
return 'mem_size'
|
471
|
-
end
|
472
|
-
when 'System Slots'
|
473
|
-
case field
|
474
|
-
when 'length'
|
475
|
-
return 'slot_length'
|
476
|
-
end
|
477
|
-
when 'OEM Strings'
|
478
|
-
case field
|
479
|
-
when /^string/
|
480
|
-
return 'strings'
|
481
|
-
end
|
482
|
-
when 'Boot Integrity Services'
|
483
|
-
case field
|
484
|
-
when '16_bit_entry_point_address'
|
485
|
-
return 'sixteen_bit_entry_point_address'
|
486
|
-
when '32_bit_entry_point_address'
|
487
|
-
return 'thirty_two_bit_entry_point_address'
|
488
|
-
end
|
489
|
-
end
|
490
|
-
|
491
|
-
field
|
492
|
-
end
|
493
|
-
|
494
|
-
def dmi_type_to_struct(type)
|
495
|
-
type =
|
496
|
-
case type
|
497
|
-
when '32-bit Memory Error'
|
498
|
-
'Memory Error 32 Bit'
|
499
|
-
when '64-bit Memory Error'
|
500
|
-
'Memory Error 64 Bit'
|
501
|
-
else
|
502
|
-
type
|
503
|
-
end
|
504
|
-
|
505
|
-
type_camelized = Kanrisuru::Util.camelize(type.gsub(/\s/, ''))
|
506
|
-
struct_class = Kanrisuru::Core::Dmi.const_get(type_camelized)
|
507
|
-
struct_class.new
|
508
|
-
end
|
509
|
-
|
510
|
-
def dmi_type_opts(command, opts)
|
511
|
-
return unless Kanrisuru::Util.present?(opts[:types])
|
512
|
-
|
513
|
-
types = opts[:types]
|
514
|
-
types = [types] if types.instance_of?(String)
|
515
|
-
|
516
|
-
types.each do |type|
|
517
|
-
type = parse_dmi_type(type)
|
518
|
-
command.append_arg('--type', type)
|
519
|
-
end
|
520
|
-
end
|
521
|
-
|
522
|
-
def parse_dmi_type(type)
|
523
|
-
raise ArgumentError, 'Invalid DMI type' unless Kanrisuru::Util::DmiType.valid?(type)
|
524
|
-
|
525
|
-
if type.instance_of?(Integer)
|
526
|
-
type
|
527
|
-
else
|
528
|
-
Kanrisuru::Util::DmiType[type]
|
529
|
-
end
|
530
|
-
end
|
531
13
|
end
|
532
14
|
end
|
533
15
|
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def chmod(path, mode, opts = {})
|
7
|
+
recursive = opts[:recursive]
|
8
|
+
|
9
|
+
command =
|
10
|
+
if mode.instance_of?(String) && (mode.include?(',') || /[=+-]/.match(mode)) && mode.length < 10
|
11
|
+
Kanrisuru::Command.new("chmod #{mode} #{path}")
|
12
|
+
elsif mode.instance_of?(Kanrisuru::Mode)
|
13
|
+
Kanrisuru::Command.new("chmod #{mode.numeric} #{path}")
|
14
|
+
else
|
15
|
+
mode = Kanrisuru::Mode.new(mode)
|
16
|
+
Kanrisuru::Command.new("chmod #{mode.numeric} #{path}")
|
17
|
+
end
|
18
|
+
|
19
|
+
command.append_flag('-R', recursive)
|
20
|
+
|
21
|
+
execute_shell(command)
|
22
|
+
|
23
|
+
Kanrisuru::Result.new(command) do
|
24
|
+
stat(path).data
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def chown(path, opts = {})
|
7
|
+
owner = opts[:owner]
|
8
|
+
group = opts[:group]
|
9
|
+
|
10
|
+
uid = get_uid(owner).to_i if Kanrisuru::Util.present?(owner)
|
11
|
+
gid = get_gid(group).to_i if Kanrisuru::Util.present?(group)
|
12
|
+
|
13
|
+
## Don't chown a blank owner and group.
|
14
|
+
return false if Kanrisuru::Util.blank?(uid) && Kanrisuru::Util.blank?(gid)
|
15
|
+
|
16
|
+
command = Kanrisuru::Command.new('chown')
|
17
|
+
|
18
|
+
arg = ''
|
19
|
+
arg = uid.to_s if Kanrisuru::Util.present?(uid)
|
20
|
+
arg += ":#{gid}" if Kanrisuru::Util.present?(gid)
|
21
|
+
|
22
|
+
command.append_value(arg)
|
23
|
+
command.append_flag('-R', opts[:recursive])
|
24
|
+
|
25
|
+
command << path
|
26
|
+
|
27
|
+
execute_shell(command)
|
28
|
+
|
29
|
+
Kanrisuru::Result.new(command) do
|
30
|
+
stat(path).data
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def copy(source, dest, opts = {})
|
7
|
+
cp(source, dest, opts)
|
8
|
+
end
|
9
|
+
|
10
|
+
def cp(source, dest, opts = {})
|
11
|
+
backup = opts[:backup]
|
12
|
+
command = Kanrisuru::Command.new('cp')
|
13
|
+
|
14
|
+
command.append_flag('-R', opts[:recursive])
|
15
|
+
command.append_flag('-x', opts[:one_file_system])
|
16
|
+
command.append_flag('-u', opts[:update])
|
17
|
+
command.append_flag('-L', opts[:follow])
|
18
|
+
command.append_flag('-n', opts[:no_clobber])
|
19
|
+
command.append_flag('--strip-trailing-slashes', opts[:strip_trailing_slashes])
|
20
|
+
|
21
|
+
if backup.instance_of?(TrueClass)
|
22
|
+
command.append_flag('-b')
|
23
|
+
elsif Kanrisuru::Util.present?(backup)
|
24
|
+
raise ArgumentError, 'invalid backup control value' unless backup_control_valid?(backup)
|
25
|
+
|
26
|
+
command << "--backup=#{backup}"
|
27
|
+
end
|
28
|
+
|
29
|
+
if opts[:preserve].instance_of?(TrueClass)
|
30
|
+
command.append_flag('-p')
|
31
|
+
elsif Kanrisuru::Util.present?(opts[:preserve])
|
32
|
+
preserve = Kanrisuru::Util.array_join_string(opts[:preserve], ',')
|
33
|
+
command << "--preserve=#{preserve}"
|
34
|
+
end
|
35
|
+
|
36
|
+
if opts[:no_target_directory]
|
37
|
+
command.append_flag('-T')
|
38
|
+
command << source
|
39
|
+
command << dest
|
40
|
+
elsif opts[:target_directory]
|
41
|
+
command.append_arg('-t', dest)
|
42
|
+
command.append_array(source)
|
43
|
+
else
|
44
|
+
command.append_array(source)
|
45
|
+
command << dest
|
46
|
+
end
|
47
|
+
|
48
|
+
execute_shell(command)
|
49
|
+
|
50
|
+
Kanrisuru::Result.new(command)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def link(src, dest, opts = {})
|
7
|
+
ln(src, dest, opts)
|
8
|
+
end
|
9
|
+
|
10
|
+
def ln(src, dest, opts = {})
|
11
|
+
## Can't hardlink dirs
|
12
|
+
return false if dir?(src)
|
13
|
+
|
14
|
+
command = Kanrisuru::Command.new("ln #{src} #{dest}")
|
15
|
+
command.append_flag('-f', opts[:force])
|
16
|
+
|
17
|
+
execute_shell(command)
|
18
|
+
|
19
|
+
Kanrisuru::Result.new(command) do
|
20
|
+
stat(dest).data
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|