-
Notifications
You must be signed in to change notification settings - Fork 0
/
ds-findorphaned
executable file
·157 lines (152 loc) · 6.97 KB
/
ds-findorphaned
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/usr/bin/perl
#
# ds-findorphaned, v1.1.0, CLI
# Copyright © 2016-2017 Dmitry Sokolov
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Скрипт ищет в файлах, находящихся в указанных каталогах и с именами,
# соответствующими указанному регулярному выражению, упоминания файлов,
# находящихся в других указанных каталогах и с именами, соответствующими
# другому указанному регулярному выражению, и выводит список тех файлов,
# которые не упоминаются ни в одном из тех, по которым ведётся поиск.
# Опционально их также можно удалить.
#
# Зависимости: perl
# Рекомендуется: enca
#
# ds-findorphaned [-v] [-r] [-R] [-e кодировка] [-l лог-файл]
# [-d 'каталог[, каталог…]'] [-f 'маска']
# [-D 'каталог[, каталог…]'] [-F 'маска']
#
# -v — от verbose — Выводить суммирующую информацию
# и предлагать удаление осиротевших файлов
# (по умолчанию — нет, только построчное перечисление).
# -e — от encoding — Кодировка читаемых файлов
# (по умолчанию — * — автоопределение с помощью enca).
# -d — от directories — Каталоги, на упоминание файлов в которых
# идёт проверка (через запятую, по умолчанию — .).
# -r — от recursive — Анализировать рекурсивно каталоги, на упоминание
# файлов в которых идёт проверка (по умолчанию — нет).
# -f — от files — Регулярное выражение имён файлов, на упоминание
# которых идёт проверка (по умолчанию — .*).
# -D — от directories — Каталоги, в которых идёт проверка
# (через запятую, по умолчанию — .).
# -R — от recursive — Анализировать рекурсивно каталоги,
# в которых идёт проверка (по умолчанию — нет).
# -F — от files — Регулярное выражение имён файлов,
# в которых идёт проверка (по умолчанию — .*).
# -l — от log — Создаваемый лог-файл
# (по умолчанию не создаётся, а пишется на stdout).
#
# Пример: ds-findorphaned -v -r -R -e "CP1251" -l "~/log.txt" \
# -d "~/maybe_orphaned_images" -f ".*\.jpg$" \
# -D "~/search_here, ~/and_here" -F ".*\.php$"
#
# Результатом примера будет поиск во всех .php-файлах, находящихся
# в ~/search_here и ~/and_here (рекурсивно) на упоминание .jpg-файлов,
# находящихся в ~/maybe_orphaned_images (рекурсивно).
#
# Dmitry Sokolov <[email protected]>
use strict;
use warnings;
use utf8;
use open qw/:encoding(UTF-8) :std/;
use POSIX;
use Cwd qw/getcwd abs_path/;
use File::Find;
use Getopt::Std;
use Encode;
my (%opts, @notOrphaned, @isOrphaned, $opte, $inner, $mess, $decision, $log);
sub wantedForFiles {
if(!$inner) {$inner = 1; return;}
$File::Find::prune = 1 if !$File::Find::prune && !(exists $opts{r});
push @isOrphaned, {name => $_, path => $File::Find::name}
if(-f && $_ =~ m/$opts{f}/);
}
sub wantedInFiles {
if(!$inner) {$inner = 1; return;}
$File::Find::prune = 1 if !$File::Find::prune && !(exists $opts{R});
if(-f && -s && -T && $_ =~ m/$opts{F}/) {
my $source = undef;
if($opts{e} eq '*') {$opte = `enca -r '$_'` || "UTF-8"; chomp $opte;}
else {$opte = $opts{e};}
open(IN, "<:encoding($opte)", $File::Find::name)
or die "Can’t open $File::Find::name: $!\n";
while($_ = <IN>) {$source .= $_;}
close(IN);
for(my $i = 0; $i < @isOrphaned; $i++) {
if($source =~ m/\b\Q$isOrphaned[$i]->{name}\E\b/gms) {
push(@notOrphaned, splice(@isOrphaned, $i, 1));
$i = $i - 2;
}
}
}
}
getopts('vrRe:d:f:D:F:l:', \%opts);
$opts{e} = '*' unless exists $opts{e};
$opts{d} = exists $opts{d} ? [split(/\s*,\s*/, $opts{d})] : [abs_path(getcwd)];
$opts{D} = exists $opts{D} ? [split(/\s*,\s*/, $opts{D})] : [abs_path(getcwd)];
$opts{f} = '.*' unless exists $opts{f};
$opts{F} = '.*' unless exists $opts{F};
foreach(@{$opts{d}}) {
if(-d && -s) {$inner = 0; find(\&wantedForFiles, abs_path($_));}
}
foreach(@{$opts{D}}) {
if(-d && -s) {$inner = 0; find(\&wantedInFiles, abs_path($_));}
}
if(exists $opts{v}) {
$mess =
scalar(@isOrphaned) + scalar(@notOrphaned) .
" files found with mask /$opts{f}/ in director" .
(scalar(@{$opts{d}}) > 1 ? "ies" : "y") . " " .
join(", ", @{$opts{d}}) . "\n" .
scalar(@isOrphaned) .
" of them are not mentioned in any of the files with mask /$opts{F}/ " .
"in director" . (scalar(@{$opts{D}}) > 1 ? "ies" : "y") . " " .
join(", ", @{$opts{D}}) . "\n";
if(exists $opts{l}) {
$log .= $mess;
$log .= "List of unmentioned files:\n" . "-" x 80 . "\n" if @isOrphaned;
}
}
foreach(@isOrphaned) {
print "$_->{path}\n";
$log .= "$_->{path}\n" if exists $opts{l};
}
if(exists $opts{l} && $log) {
open(LOG, ">:encoding(UTF-8)", $opts{l})
or print "Can’t write log in file $opts{l}: $!\n";
print LOG $log;
close(LOG);
}
if(exists $opts{v}) {
print "-" x 80 . "\n" . $mess;
if(@isOrphaned) {
print
"Above there is a list of unmentioned files. " .
"Delete these files? (Yes/No): ";
chomp($decision = <STDIN>);
if($decision eq "Yes") {
foreach(@isOrphaned) {
unlink "$_->{path}"
or print "Can’t delete file $_->{path}: $!\n";
}
print "Files have been deleted.\n";
} else {
print "Files have not been deleted.\n";
}
}
}
exit 0;