kanrisuru 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- 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 +54 -0
- data/lib/kanrisuru/core/disk/commands.rb +6 -0
- data/lib/kanrisuru/core/disk/parser.rb +6 -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/types.rb +21 -0
- data/lib/kanrisuru/core/disk.rb +5 -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 +56 -0
- data/lib/kanrisuru/core/file/commands/link.rb +25 -0
- data/lib/kanrisuru/core/file/commands/mkdir.rb +37 -0
- data/lib/kanrisuru/core/file/commands/move.rb +48 -0
- data/lib/kanrisuru/core/file/commands/rm.rb +38 -0
- data/lib/kanrisuru/core/file/commands/symlink.rb +46 -0
- data/lib/kanrisuru/core/file/commands/touch.rb +33 -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 +69 -0
- data/lib/kanrisuru/core/ip/commands/address_label.rb +38 -0
- data/lib/kanrisuru/core/ip/commands/link.rb +74 -0
- data/lib/kanrisuru/core/ip/commands/maddress.rb +33 -0
- data/lib/kanrisuru/core/ip/commands/neighbour.rb +55 -0
- data/lib/kanrisuru/core/ip/commands/route.rb +115 -0
- data/lib/kanrisuru/core/ip/commands/rule.rb +42 -0
- data/lib/kanrisuru/core/ip/commands.rb +24 -0
- data/lib/kanrisuru/core/ip/constants.rb +13 -0
- data/lib/kanrisuru/core/ip/parser.rb +10 -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/types.rb +46 -0
- data/lib/kanrisuru/core/ip.rb +5 -995
- 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 +57 -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 +63 -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/version.rb +1 -1
- data/spec/unit/util_spec.rb +16 -0
- metadata +231 -2
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def mkdir(path, opts = {})
|
7
|
+
owner = opts[:owner]
|
8
|
+
group = opts[:group]
|
9
|
+
recursive = opts[:recursive]
|
10
|
+
|
11
|
+
command = Kanrisuru::Command.new("mkdir #{path}")
|
12
|
+
command.append_flag('-p', opts[:silent])
|
13
|
+
|
14
|
+
if Kanrisuru::Util.present?(opts[:mode])
|
15
|
+
mode = opts[:mode]
|
16
|
+
if mode.instance_of?(Kanrisuru::Mode)
|
17
|
+
mode = mode.numeric
|
18
|
+
elsif mode.instance_of?(String) && (mode.include?(',') || /[=+-]/.match(mode))
|
19
|
+
mode = Kanrisuru::Mode.new(mode).numeric
|
20
|
+
end
|
21
|
+
|
22
|
+
command.append_arg('-m', mode)
|
23
|
+
end
|
24
|
+
|
25
|
+
execute_shell(command)
|
26
|
+
|
27
|
+
Kanrisuru::Result.new(command) do
|
28
|
+
if Kanrisuru::Util.present?(owner) || Kanrisuru::Util.present?(group)
|
29
|
+
chown(path, owner: owner, group: group, recursive: recursive)
|
30
|
+
end
|
31
|
+
|
32
|
+
stat(path).data
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def move(source, dest, opts = {})
|
7
|
+
mv(source, dest, opts)
|
8
|
+
end
|
9
|
+
|
10
|
+
def mv(source, dest, opts = {})
|
11
|
+
backup = opts[:backup]
|
12
|
+
command = Kanrisuru::Command.new('mv')
|
13
|
+
|
14
|
+
command.append_flag('--strip-trailing-slashes', opts[:strip_trailing_slashes])
|
15
|
+
|
16
|
+
if opts[:force]
|
17
|
+
command.append_flag('-f')
|
18
|
+
elsif opts[:no_clobber]
|
19
|
+
command.append_flag('-n')
|
20
|
+
end
|
21
|
+
|
22
|
+
if backup.instance_of?(TrueClass)
|
23
|
+
command.append_flag('-b')
|
24
|
+
elsif Kanrisuru::Util.present?(backup)
|
25
|
+
raise ArgumentError, 'invalid backup control value' unless backup_control_valid?(backup)
|
26
|
+
|
27
|
+
command << "--backup=#{backup}"
|
28
|
+
end
|
29
|
+
|
30
|
+
if opts[:no_target_directory]
|
31
|
+
command.append_flag('-T')
|
32
|
+
command << source
|
33
|
+
command << dest
|
34
|
+
elsif opts[:target_directory]
|
35
|
+
command.append_arg('-t', dest)
|
36
|
+
command.append_array(source)
|
37
|
+
else
|
38
|
+
command.append_array(source)
|
39
|
+
command << dest
|
40
|
+
end
|
41
|
+
|
42
|
+
execute_shell(command)
|
43
|
+
|
44
|
+
Kanrisuru::Result.new(command)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def rm(paths, opts = {})
|
7
|
+
paths = [paths] if paths.instance_of?(String)
|
8
|
+
|
9
|
+
paths.each do |path|
|
10
|
+
raise ArgumentError, "Can't delete root path" if path == '/' || realpath(path).path == '/'
|
11
|
+
end
|
12
|
+
|
13
|
+
command = Kanrisuru::Command.new("rm #{paths.join(' ')} --preserve-root")
|
14
|
+
command.append_flag('-f', opts[:force])
|
15
|
+
command.append_flag('-r', opts[:recursive])
|
16
|
+
|
17
|
+
execute_shell(command)
|
18
|
+
|
19
|
+
Kanrisuru::Result.new(command)
|
20
|
+
end
|
21
|
+
|
22
|
+
def rmdir(paths, opts = {})
|
23
|
+
paths = [paths] if paths.instance_of?(String)
|
24
|
+
paths.each do |path|
|
25
|
+
raise ArgumentError, "Can't delete root path" if path == '/' || realpath(path).path == '/'
|
26
|
+
end
|
27
|
+
|
28
|
+
command = Kanrisuru::Command.new("rmdir #{paths.join(' ')}")
|
29
|
+
command.append_flag('--ignore-fail-on-non-empty', opts[:silent])
|
30
|
+
command.append_flag('--parents', opts[:parents])
|
31
|
+
|
32
|
+
execute_shell(command)
|
33
|
+
|
34
|
+
Kanrisuru::Result.new(command)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def symlink(src, dest, opts = {})
|
7
|
+
ln_s(src, dest, opts)
|
8
|
+
end
|
9
|
+
|
10
|
+
def ln_s(src, dest, opts = {})
|
11
|
+
return if src == dest
|
12
|
+
|
13
|
+
## Use absolute path for source
|
14
|
+
real_src = realpath(src).path
|
15
|
+
|
16
|
+
## Not valid if no real path, not an existing inode, or root
|
17
|
+
raise ArgumentError, 'Invalid path' if Kanrisuru::Util.blank?(real_src) || !inode?(real_src) || real_src == '/'
|
18
|
+
|
19
|
+
dest_is_dir = dir?(dest)
|
20
|
+
|
21
|
+
## Don't symlink inside an already existing symlink
|
22
|
+
return if symlink?(dest) && dest_is_dir
|
23
|
+
|
24
|
+
real_dest =
|
25
|
+
if dest_is_dir
|
26
|
+
## Use real path for destination
|
27
|
+
realpath(dest).path
|
28
|
+
else
|
29
|
+
## Use standard path
|
30
|
+
dest
|
31
|
+
end
|
32
|
+
|
33
|
+
return unless real_dest
|
34
|
+
|
35
|
+
command = Kanrisuru::Command.new("ln -s #{real_src} #{real_dest}")
|
36
|
+
command.append_flag('-f', opts[:force])
|
37
|
+
|
38
|
+
execute_shell(command)
|
39
|
+
|
40
|
+
Kanrisuru::Result.new(command) do
|
41
|
+
stat(real_dest).data
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def touch(paths, opts = {})
|
7
|
+
date = opts[:date]
|
8
|
+
|
9
|
+
paths = [paths] if paths.instance_of?(String)
|
10
|
+
command = Kanrisuru::Command.new("touch #{paths.join(' ')}")
|
11
|
+
|
12
|
+
command.append_flag('-a', opts[:atime])
|
13
|
+
command.append_flag('-m', opts[:mtime])
|
14
|
+
command.append_flag('-c', opts[:nofiles])
|
15
|
+
|
16
|
+
if Kanrisuru::Util.present?(date)
|
17
|
+
date = Date.parse(date) if date.instance_of?(String)
|
18
|
+
command.append_arg('-d', date)
|
19
|
+
end
|
20
|
+
|
21
|
+
command.append_arg('-r', opts[:reference])
|
22
|
+
|
23
|
+
execute_shell(command)
|
24
|
+
|
25
|
+
Kanrisuru::Result.new(command) do
|
26
|
+
paths.map do |path|
|
27
|
+
stat(path).data
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
def wc(file)
|
7
|
+
command = Kanrisuru::Command.new("wc #{file}")
|
8
|
+
execute_shell(command)
|
9
|
+
|
10
|
+
Kanrisuru::Result.new(command) do |cmd|
|
11
|
+
Parser::Wc.parse(cmd)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'commands/chmod'
|
4
|
+
require_relative 'commands/chown'
|
5
|
+
require_relative 'commands/copy'
|
6
|
+
require_relative 'commands/link'
|
7
|
+
require_relative 'commands/mkdir'
|
8
|
+
require_relative 'commands/move'
|
9
|
+
require_relative 'commands/rm'
|
10
|
+
require_relative 'commands/symlink'
|
11
|
+
require_relative 'commands/touch'
|
12
|
+
require_relative 'commands/unlink'
|
13
|
+
require_relative 'commands/wc'
|
14
|
+
|
15
|
+
module Kanrisuru
|
16
|
+
module Core
|
17
|
+
module File
|
18
|
+
private
|
19
|
+
|
20
|
+
def backup_control_valid?(backup)
|
21
|
+
opts = %w[
|
22
|
+
none off numbered t existing nil simple never
|
23
|
+
]
|
24
|
+
|
25
|
+
opts.include?(backup)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Kanrisuru
|
4
|
+
module Core
|
5
|
+
module File
|
6
|
+
module Parser
|
7
|
+
class Wc
|
8
|
+
def self.parse(command)
|
9
|
+
items = command.to_s.split
|
10
|
+
Kanrisuru::Core::File::FileCount.new(items[0].to_i, items[1].to_i, items[2].to_i)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
data/lib/kanrisuru/core/file.rb
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
require 'date'
|
4
4
|
|
5
|
+
require_relative 'file/types'
|
6
|
+
require_relative 'file/parser'
|
7
|
+
require_relative 'file/commands'
|
8
|
+
|
5
9
|
module Kanrisuru
|
6
10
|
module Core
|
7
11
|
module File
|
@@ -27,318 +31,6 @@ module Kanrisuru
|
|
27
31
|
os_define :linux, :rmdir
|
28
32
|
|
29
33
|
os_define :linux, :wc
|
30
|
-
|
31
|
-
FileCount = Struct.new(:lines, :words, :characters)
|
32
|
-
|
33
|
-
def cp(source, dest, opts = {})
|
34
|
-
backup = opts[:backup]
|
35
|
-
command = Kanrisuru::Command.new('cp')
|
36
|
-
|
37
|
-
command.append_flag('-R', opts[:recursive])
|
38
|
-
command.append_flag('-x', opts[:one_file_system])
|
39
|
-
command.append_flag('-u', opts[:update])
|
40
|
-
command.append_flag('-L', opts[:follow])
|
41
|
-
command.append_flag('-n', opts[:no_clobber])
|
42
|
-
command.append_flag('--strip-trailing-slashes', opts[:strip_trailing_slashes])
|
43
|
-
|
44
|
-
if backup.instance_of?(TrueClass)
|
45
|
-
command.append_flag('-b')
|
46
|
-
elsif Kanrisuru::Util.present?(backup)
|
47
|
-
raise ArgumentError, 'invalid backup control value' unless backup_control_valid?(backup)
|
48
|
-
|
49
|
-
command << "--backup=#{backup}"
|
50
|
-
end
|
51
|
-
|
52
|
-
if opts[:preserve].instance_of?(TrueClass)
|
53
|
-
command.append_flag('-p')
|
54
|
-
elsif Kanrisuru::Util.present?(opts[:preserve])
|
55
|
-
preserve =
|
56
|
-
(opts[:preserve].join(',') if opts[:preserve].instance_of?(Array))
|
57
|
-
|
58
|
-
command << "--preserve=#{preserve}"
|
59
|
-
end
|
60
|
-
|
61
|
-
if opts[:no_target_directory]
|
62
|
-
command.append_flag('-T')
|
63
|
-
command << source
|
64
|
-
command << dest
|
65
|
-
elsif opts[:target_directory]
|
66
|
-
command.append_arg('-t', dest)
|
67
|
-
command.append_array(source)
|
68
|
-
else
|
69
|
-
command.append_array(source)
|
70
|
-
command << dest
|
71
|
-
end
|
72
|
-
|
73
|
-
execute_shell(command)
|
74
|
-
|
75
|
-
Kanrisuru::Result.new(command)
|
76
|
-
end
|
77
|
-
|
78
|
-
def copy(source, dest, opts = {})
|
79
|
-
cp(source, dest, opts)
|
80
|
-
end
|
81
|
-
|
82
|
-
def mv(source, dest, opts = {})
|
83
|
-
backup = opts[:backup]
|
84
|
-
command = Kanrisuru::Command.new('mv')
|
85
|
-
|
86
|
-
command.append_flag('--strip-trailing-slashes', opts[:strip_trailing_slashes])
|
87
|
-
|
88
|
-
if opts[:force]
|
89
|
-
command.append_flag('-f')
|
90
|
-
elsif opts[:no_clobber]
|
91
|
-
command.append_flag('-n')
|
92
|
-
end
|
93
|
-
|
94
|
-
if backup.instance_of?(TrueClass)
|
95
|
-
command.append_flag('-b')
|
96
|
-
elsif Kanrisuru::Util.present?(backup)
|
97
|
-
raise ArgumentError, 'invalid backup control value' unless backup_control_valid?(backup)
|
98
|
-
|
99
|
-
command << "--backup=#{backup}"
|
100
|
-
end
|
101
|
-
|
102
|
-
if opts[:no_target_directory]
|
103
|
-
command.append_flag('-T')
|
104
|
-
command << source
|
105
|
-
command << dest
|
106
|
-
elsif opts[:target_directory]
|
107
|
-
command.append_arg('-t', dest)
|
108
|
-
command.append_array(source)
|
109
|
-
else
|
110
|
-
command.append_array(source)
|
111
|
-
command << dest
|
112
|
-
end
|
113
|
-
|
114
|
-
execute_shell(command)
|
115
|
-
|
116
|
-
Kanrisuru::Result.new(command)
|
117
|
-
end
|
118
|
-
|
119
|
-
def move(source, dest, opts = {})
|
120
|
-
mv(source, dest, opts)
|
121
|
-
end
|
122
|
-
|
123
|
-
def link(src, dest, opts = {})
|
124
|
-
ln(src, dest, opts)
|
125
|
-
end
|
126
|
-
|
127
|
-
def symlink(src, dest, opts = {})
|
128
|
-
ln_s(src, dest, opts)
|
129
|
-
end
|
130
|
-
|
131
|
-
def ln(src, dest, opts = {})
|
132
|
-
## Can't hardlink dirs
|
133
|
-
return false if dir?(src)
|
134
|
-
|
135
|
-
command = Kanrisuru::Command.new("ln #{src} #{dest}")
|
136
|
-
command.append_flag('-f', opts[:force])
|
137
|
-
|
138
|
-
execute_shell(command)
|
139
|
-
|
140
|
-
Kanrisuru::Result.new(command) do
|
141
|
-
stat(dest).data
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
|
-
def ln_s(src, dest, opts = {})
|
146
|
-
return if src == dest
|
147
|
-
|
148
|
-
## Use absolute path for source
|
149
|
-
real_src = realpath(src).path
|
150
|
-
|
151
|
-
## Not valid if no real path, not an existing inode, or root
|
152
|
-
raise ArgumentError, 'Invalid path' if Kanrisuru::Util.blank?(real_src) || !inode?(real_src) || real_src == '/'
|
153
|
-
|
154
|
-
dest_is_dir = dir?(dest)
|
155
|
-
|
156
|
-
## Don't symlink inside an already existing symlink
|
157
|
-
return if symlink?(dest) && dest_is_dir
|
158
|
-
|
159
|
-
real_dest =
|
160
|
-
if dest_is_dir
|
161
|
-
## Use real path for destination
|
162
|
-
realpath(dest).path
|
163
|
-
else
|
164
|
-
## Use standard path
|
165
|
-
dest
|
166
|
-
end
|
167
|
-
|
168
|
-
return unless real_dest
|
169
|
-
|
170
|
-
command = Kanrisuru::Command.new("ln -s #{real_src} #{real_dest}")
|
171
|
-
command.append_flag('-f', opts[:force])
|
172
|
-
|
173
|
-
execute_shell(command)
|
174
|
-
|
175
|
-
Kanrisuru::Result.new(command) do
|
176
|
-
stat(real_dest).data
|
177
|
-
end
|
178
|
-
end
|
179
|
-
|
180
|
-
def unlink(path)
|
181
|
-
command = Kanrisuru::Command.new("unlink #{path}")
|
182
|
-
execute_shell(command)
|
183
|
-
Kanrisuru::Result.new(command)
|
184
|
-
end
|
185
|
-
|
186
|
-
def rm(paths, opts = {})
|
187
|
-
paths = [paths] if paths.instance_of?(String)
|
188
|
-
|
189
|
-
paths.each do |path|
|
190
|
-
raise ArgumentError, "Can't delete root path" if path == '/' || realpath(path).path == '/'
|
191
|
-
end
|
192
|
-
|
193
|
-
command = Kanrisuru::Command.new("rm #{paths.join(' ')} --preserve-root")
|
194
|
-
command.append_flag('-f', opts[:force])
|
195
|
-
command.append_flag('-r', opts[:recursive])
|
196
|
-
|
197
|
-
execute_shell(command)
|
198
|
-
|
199
|
-
Kanrisuru::Result.new(command)
|
200
|
-
end
|
201
|
-
|
202
|
-
def rmdir(paths, opts = {})
|
203
|
-
paths = [paths] if paths.instance_of?(String)
|
204
|
-
paths.each do |path|
|
205
|
-
raise ArgumentError, "Can't delete root path" if path == '/' || realpath(path).path == '/'
|
206
|
-
end
|
207
|
-
|
208
|
-
command = Kanrisuru::Command.new("rmdir #{paths.join(' ')}")
|
209
|
-
command.append_flag('--ignore-fail-on-non-empty', opts[:silent])
|
210
|
-
command.append_flag('--parents', opts[:parents])
|
211
|
-
|
212
|
-
execute_shell(command)
|
213
|
-
|
214
|
-
Kanrisuru::Result.new(command)
|
215
|
-
end
|
216
|
-
|
217
|
-
def mkdir(path, opts = {})
|
218
|
-
owner = opts[:owner]
|
219
|
-
group = opts[:group]
|
220
|
-
recursive = opts[:recursive]
|
221
|
-
|
222
|
-
command = Kanrisuru::Command.new("mkdir #{path}")
|
223
|
-
command.append_flag('-p', opts[:silent])
|
224
|
-
|
225
|
-
if Kanrisuru::Util.present?(opts[:mode])
|
226
|
-
mode = opts[:mode]
|
227
|
-
if mode.instance_of?(Kanrisuru::Mode)
|
228
|
-
mode = mode.numeric
|
229
|
-
elsif mode.instance_of?(String) && (mode.include?(',') || /[=+-]/.match(mode))
|
230
|
-
mode = Kanrisuru::Mode.new(mode).numeric
|
231
|
-
end
|
232
|
-
|
233
|
-
command.append_arg('-m', mode)
|
234
|
-
end
|
235
|
-
|
236
|
-
execute_shell(command)
|
237
|
-
|
238
|
-
Kanrisuru::Result.new(command) do
|
239
|
-
if Kanrisuru::Util.present?(owner) || Kanrisuru::Util.present?(group)
|
240
|
-
chown(path, owner: owner, group: group, recursive: recursive)
|
241
|
-
end
|
242
|
-
|
243
|
-
stat(path).data
|
244
|
-
end
|
245
|
-
end
|
246
|
-
|
247
|
-
def touch(paths, opts = {})
|
248
|
-
date = opts[:date]
|
249
|
-
|
250
|
-
paths = [paths] if paths.instance_of?(String)
|
251
|
-
command = Kanrisuru::Command.new("touch #{paths.join(' ')}")
|
252
|
-
|
253
|
-
command.append_flag('-a', opts[:atime])
|
254
|
-
command.append_flag('-m', opts[:mtime])
|
255
|
-
command.append_flag('-c', opts[:nofiles])
|
256
|
-
|
257
|
-
if Kanrisuru::Util.present?(date)
|
258
|
-
date = Date.parse(date) if date.instance_of?(String)
|
259
|
-
command.append_arg('-d', date)
|
260
|
-
end
|
261
|
-
|
262
|
-
command.append_arg('-r', opts[:reference])
|
263
|
-
|
264
|
-
execute_shell(command)
|
265
|
-
|
266
|
-
Kanrisuru::Result.new(command) do
|
267
|
-
paths.map do |path|
|
268
|
-
stat(path).data
|
269
|
-
end
|
270
|
-
end
|
271
|
-
end
|
272
|
-
|
273
|
-
def chmod(path, mode, opts = {})
|
274
|
-
recursive = opts[:recursive]
|
275
|
-
|
276
|
-
command =
|
277
|
-
if mode.instance_of?(String) && (mode.include?(',') || /[=+-]/.match(mode))
|
278
|
-
Kanrisuru::Command.new("chmod #{mode} #{path}")
|
279
|
-
elsif mode.instance_of?(Kanrisuru::Mode)
|
280
|
-
Kanrisuru::Command.new("chmod #{mode.numeric} #{path}")
|
281
|
-
else
|
282
|
-
mode = Kanrisuru::Mode.new(mode)
|
283
|
-
Kanrisuru::Command.new("chmod #{mode.numeric} #{path}")
|
284
|
-
end
|
285
|
-
|
286
|
-
command.append_flag('-R', recursive)
|
287
|
-
|
288
|
-
execute_shell(command)
|
289
|
-
|
290
|
-
Kanrisuru::Result.new(command) do
|
291
|
-
stat(path).data
|
292
|
-
end
|
293
|
-
end
|
294
|
-
|
295
|
-
def chown(path, opts = {})
|
296
|
-
owner = opts[:owner]
|
297
|
-
group = opts[:group]
|
298
|
-
|
299
|
-
uid = get_uid(owner).to_i if Kanrisuru::Util.present?(owner)
|
300
|
-
gid = get_gid(group).to_i if Kanrisuru::Util.present?(group)
|
301
|
-
|
302
|
-
## Don't chown a blank owner and group.
|
303
|
-
return false if Kanrisuru::Util.blank?(uid) && Kanrisuru::Util.blank?(gid)
|
304
|
-
|
305
|
-
command = Kanrisuru::Command.new('chown')
|
306
|
-
|
307
|
-
arg = ''
|
308
|
-
arg = uid.to_s if Kanrisuru::Util.present?(uid)
|
309
|
-
arg += ":#{gid}" if Kanrisuru::Util.present?(gid)
|
310
|
-
|
311
|
-
command.append_value(arg)
|
312
|
-
command.append_flag('-R', opts[:recursive])
|
313
|
-
|
314
|
-
command << path
|
315
|
-
|
316
|
-
execute_shell(command)
|
317
|
-
|
318
|
-
Kanrisuru::Result.new(command) do
|
319
|
-
stat(path).data
|
320
|
-
end
|
321
|
-
end
|
322
|
-
|
323
|
-
def wc(file)
|
324
|
-
command = Kanrisuru::Command.new("wc #{file}")
|
325
|
-
execute_shell(command)
|
326
|
-
|
327
|
-
Kanrisuru::Result.new(command) do |cmd|
|
328
|
-
items = cmd.to_s.split
|
329
|
-
FileCount.new(items[0].to_i, items[1].to_i, items[2].to_i)
|
330
|
-
end
|
331
|
-
end
|
332
|
-
|
333
|
-
private
|
334
|
-
|
335
|
-
def backup_control_valid?(backup)
|
336
|
-
opts = %w[
|
337
|
-
none off numbered t existing nil simple never
|
338
|
-
]
|
339
|
-
|
340
|
-
opts.include?(backup)
|
341
|
-
end
|
342
34
|
end
|
343
35
|
end
|
344
36
|
end
|