-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsdups-internal.cpp
1216 lines (1140 loc) · 48.6 KB
/
lsdups-internal.cpp
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
=== lsdups - manual ===
получает на вход список файлов и список хешей некоторых файлов (последнее необязательно)
выделяет файлы с одинаковыми размерами,
и среди тех из них у кого нет хеша - вычисляет его и записывает в файл с хешами
после чего рассматриваются только файлы с одинаковыми хешами
--- после чего идет умная сортировка ---
ГФ - группа файлов - группа одинаковых файлов (не меньше двух)
ГП - группа папок - набор папок, содержащих одинаковые файлы с одинаковыми именами
состоит из списка папок (не меньше двух) и списка файлов (1 или более) относительно каждой папки
в каждой ГФ:
ищутся файлы с самым длинным совпадающим с конца путем, вычисляется его длина
после чего ищутся файлы с совпадающим с конца путем этой длины,
совпадающая часть отбрасывается, и из полученного формируется список папок
И так в каждый список папок добавляется файл, а требуемая длина совпадающего с конца пути постепенно уменьшается
ГГПФ - группа групп папок и файлов - находящихся внутри определенной папки
в _ГГП помещается какая-то одна ГП
_ГГП имеет
список общих папок
и список общих файлов
по всем ГП ищется пересечение
списка общих папок со списком папок текущей ГП
списка общих файлов со списком фалов текущей ГП
если хотябы одно из них не пусто, то
эта ГП добавляется в _ГГП, и списки общих папок и общих файлов обновляются
после чего в списке общих папок ищется общий путь, и по нему эта _ГГП добавляется в ГГПФ
ГФы, которые учавствовали в ГПах игнорируются
но из ГФ с файлами размера 0 файлы, файлы которые учавствовали в ГП-ах просто удаляются,
и таким образом эта ГФ не может игнорироваться, и в ней может присутствовать 1 файл (или более)
для остальных ГФов для каджой ищется общий путь, и по нему она добавляется в ГГПФ
--- после чего идет вывод ---
он разбит на ГГПФ с заголовками #=== === и функцией f, с последующим ее вызовом, и выводом е размера
вначале выводятся все _ГГП, в конце отделенные #--- --- со статистикой
внутри выводяится ГПы - функция rmfromdir со статистикой и последующие ее вызовы
внутри rmfromdir() для каждого файла выводится
rm сам файл, # его размер, хэш,
количество файлов, которые учавствуют в ГП, но не относятся к текущему файлу в данной ГП (еще ...)
#rm -f файлы, которые принадлежат текущему ГФу, но не относятся ни к одной ГП
- но только при первом разе // убрано
потом выводятся вызовы #rmfromdir с указанием количества файлов в директории, которых нет в списке файлов этой ГП
и если их меньше пяти, то они просто перечисляются дальше
потом выводятся все ГФы, в конце #--- --- со статистикой
(им хэш не нужен, т.к. они все собраны в одном месте)
*/
#include <iostream>
#include <fstream>
#define ONE_SOURCE
#include <strstr/strin.h>
#include <string>
#include <algorithm>
#include <vector>
#include <map>
#include <utility>//pair
#include <iterator>//iterator_traits,inserters,movers
#include <limits.h>
#include <iomanip>
#include <set>
using std::cerr;
using std::cout;
using std::endl;
using namespace str;
using std::pair;
using std::make_pair;
using std::string;
using std::vector;
using std::multimap;
using std::map;
using std::set;
using std::move;
namespace quote_util{
//работа с экранированными и неэкранированными строками
char * quote_strcpy(char * to, const char * from){
while(*from){
if(*from=='"' || *from=='\\' || *from=='$' || *from=='`' )
*to++='\\';
*to++=*from++;
}
*to='\0';
return to;
}
size_t quote_strlen(const char * from){
size_t rez=strlen(from);
while(from+=strcspn(from,"\"\\$`"), *from)
rez++, from++;
return rez;
}
struct quote_out{
const char * s;
quote_out(const char * ss):s(ss){}
quote_out(const string & ss):s(ss.c_str()){}
};
std::ostream & operator<<(std::ostream & str, quote_out q){
const char * s=q.s;
while(*s){
if(*s=='\"' || *s=='\\' || *s=='$' || *s=='`')
str<<'\\';
str <<*s++;
}
return str;
}
}
namespace io_util{
template <class it_t, class mes_t>
void dump(it_t tmp, mes_t mes){
string s;
read_line(tmp,&s);
cerr <<mes <<::str::dump(s.c_str()) <<endl;
//это не рекурсия, это в forward_stream.h определено для дебага, и здесь тоже пригодилось
}
template<class int_t>
struct bytes_cont{
int_t size;
bytes_cont (int_t x):size(x){}
};
template<class int_t>
bytes_cont<int_t> bytes(int_t x){ return bytes_cont<int_t>(x); }
template<class int_t>
std::ostream & operator<<(std::ostream & str, bytes_cont<int_t> b){
double size2=b.size;
if(size2/1024<1.1)
return str<<b.size<<"B";
size2/=1024;
if(size2/1024<1.1)
return str<<std::setprecision(4)<<size2<<"kB";
size2/=1024;
if(size2/1024<1.1)
return str<<std::setprecision(4)<<size2<<"MB";
size2/=1024;
if(size2/1024<1.1)
return str<<std::setprecision(4)<<size2<<"GB";
return str<<std::setprecision(4)<<size2<<"GB";
}
struct datetime{
time_t tt;
datetime(time_t tttt):tt(tttt){}
};
std::ostream & operator<<(std::ostream & str, datetime dt){
tm * ptime = localtime(&dt.tt);
using namespace std;
return str<<setfill('0')<<setw(2)<<(ptime->tm_year+1900)<<"-"
<<setfill('0')<<setw(2)<<(ptime->tm_mon+1)<<"-"
<<setfill('0')<<setw(2)<<(ptime->tm_mday)<<"@"
<<setfill('0')<<setw(2)<<ptime->tm_hour<<"-"
<<setfill('0')<<setw(2)<<ptime->tm_min<<"-"
<<setfill('0')<<setw(2)<<ptime->tm_sec;
}
struct total_bytes{
long long b;
total_bytes(long long x):b(x){}
};
std::ostream & operator<<(std::ostream & str, total_bytes bb){
int x;
if(x=bb.b/1024/1024/1024)
str<<x<<"GB ";
bb.b%=(1024*1024*1024);
if(x=bb.b/1024/1024)
str<<x<<"MB ";
bb.b%=(1024*1024);
if(x=bb.b/1024)
str<<x<<"kB ";
bb.b%=(1024);
if(x=bb.b)
str<<x<<"B";
return str;
}
using quote_util::quote_out;
//vector<string>
std::ostream & operator<<(std::ostream & str, const vector<string> & names){
auto it=names.cbegin();
if(it!=names.cend())
str << quote_out(*it++);
for(;it!=names.cend(); it++)
str << '/'<<quote_out(*it);
return str;
}
}
typedef pair<string,pair<long long,long long>> sii_t; // string int int
typedef vector<sii_t> sii_cont;
typedef multimap<string,pair<string,long long>> hps_t; // hash path size
namespace input{
// читает в ppsd список файлов
int read_files(const char * name_of_files, sii_cont * ppsd /*pointer to path size date*/){
forward_adressed_stream files(true, new file_on_FILE(name_of_files,"r"));
if(!files){
cerr <<"не смог открыть файл "<<name_of_files <<endl;
return 1;
}
while(!atend(files.iter())){
sii_t sii;
if(!(read_dec(files.iter(),&sii.second.first) // read size
&&E2F(read_dec(files.iter(),&sii.second.second)) // read date
&&E2F(read_fix_char(files.iter(),'\t'))
&&E2F(read_until_charclass(files.iter(),spn_crlf,&sii.first).reset()) // read path
))
{ cerr <<"error in file of files "<<name_of_files<<" at " <<get_linecol(files.iter()) <<endl; return 1; }
read_start_line(files.iter());
ppsd->push_back(move(sii));
}
return 0;
}
int read_hashes(const char * name_of_hashes,
map<decltype(sii_t().first),decltype(sii_t().second)> * ppsd2,
hps_t * phps){
forward_adressed_stream hashes(true, new file_on_FILE(name_of_hashes,"r"));
if(hashes){
while(!atend(hashes.iter())){
string hash;
long long datetime;
string path;
if(!(read_until_char(hashes.iter(),'\t',&hash)
&&E2F(read_dec(hashes.iter(),&datetime))
&&E2F(read_fix_char(hashes.iter(),'\t'))
&&E2F(read_until_charclass(hashes.iter(),spn_crlf,&path).reset())
))
{ cerr <<"error in hashes-file at " <<get_linecol(hashes.iter()) <<endl; return 1; }
read_start_line(hashes.iter());
auto it = ppsd2->find(path);
if(it==ppsd2->end()) continue;
if(it->second.second/*date*/ != datetime) continue;
phps->insert(make_pair(move(hash),make_pair(it->first,it->second.first)));//hash path size
ppsd2->erase(it);
}
}
else
cerr <<"файл хешей "<<name_of_hashes<<" отсутствует"<<endl;
return 0; //нет файла - ну и хрен с ним - вычислим
} //hashes.close()
int calc_and_write_hashes(const char * name_of_hashes,
map<decltype(sii_t().first),decltype(sii_t().second)> * ppsd2,
hps_t * phps){
using namespace io_util;
int comstrlen=ARG_MAX-1000; // максимальная длина командной строки
{
forward_adressed_stream envlen(true, new file_on_FILE(popen("env | wc -c","r")));
if(!envlen){ cerr<<"не смог выполнить 'env | wc -c'"<<endl; return 1; }
int x;
if(!read_dec(envlen.iter(),&x)){ cerr<<"не смог прочитать число в 'env | wc -c'"<<endl; return 1; }
read_spcs(envlen.iter());
if(!atend(envlen.iter())){ cerr<<"после прочтения 'env | wc -c' что-то осталось"<<endl; return 1; }
comstrlen-=x; // уменьшаем comstrlen на суммарную длину переменных среды
}
//cerr<<"comstrlen="<<comstrlen<<endl;
std::ofstream hashes(name_of_hashes,std::ofstream::app);
if(!hashes){ cerr<<"не смог открыть "<<name_of_hashes<<endl; return 1; }
long long eval_size=0;
for(auto it = ppsd2->begin(); it!=ppsd2->end(); it++)
eval_size+=it->second.first;
while(!ppsd2->empty()) // для каждого набора файлов (его размер ограничивается comstrlen)
{
using namespace quote_util;
// формируем команду в array
//cerr<<"===================================================="<<endl
// <<"хотим посчитать хеши для следующих файлов"<<endl;
char array[comstrlen];
char * begin = array, * end = array+comstrlen;
const char * com = "openssl md5";
strcpy(begin,com);
begin += strlen(com);
auto it = ppsd2->begin();
while(it!=ppsd2->end() && (size_t)(end-begin)>quote_strlen(it->first.c_str())+4){
*begin++=' ';
*begin++='"';
begin=quote_strcpy(begin,it->first.c_str());
eval_size-=it->second.first;
//cerr<<it->first<<endl;
*begin++='"';
*begin='\0';
it++;
}
//cerr<<"------------------------"<<endl<<array<<endl<<"-----------------------------------"<<endl;
if(eval_size) cerr<<"осталось посчитать "<<bytes(eval_size)<<endl;
int iter_open=0;
// запускаем команду
try_open:
forward_adressed_stream md5(true,new file_on_FILE(popen(array,"r")));
if(!md5){
cerr<<"не смог вызвать openssl"<<endl;
if(++iter_open<10){
system("sleep 1");
goto try_open;
}
return 1;
}
// парсим ее результат
while(read_fix_str(md5.iter(),"MD5(")){
//dump(md5.iter(),"будет прочитано: ");
string hash;
//cerr <<"перед циклом"<<endl;
while(
ppsd2->begin()!=it &&
!reifnot_E(md5.iter(),read_it,read(read_it)>>fix_str(ppsd2->begin()->first.c_str())
>>")= ">>fix_length(32,&hash)>>'\n')
){
cerr<<"файл "<<ppsd2->begin()->first<<" не посчитался"<<endl;
ppsd2->erase(ppsd2->begin());
}
//cerr <<"после цикла"<<endl;
if(ppsd2->begin()==it){ dump(md5.iter(),"не понятно, что посчитал openssl md5:\n"); return 1; }
hashes<<hash<<'\t'<<ppsd2->begin()->second.second<<'\t'<<ppsd2->begin()->first<<endl;
phps->insert(move/*лишний?*/(make_pair(move(hash),make_pair(move(ppsd2->begin()->first),ppsd2->begin()->second.first))));
ppsd2->erase(ppsd2->begin());
}
while(ppsd2->begin()!=it){
cerr<<"файл "<<ppsd2->begin()->first<<" не посчитался"<<endl;
ppsd2->erase(ppsd2->begin());
}
if(!atend(md5.iter()))
{ cerr<<"ожидался конец файла"<<endl; }
}
return 0;
}
}
namespace my_algorithms{
//удаляет все, что не повторяется
template<class cont_t, typename comp_t>
void antiuniq(cont_t * pset, const comp_t & comp)
{
typedef typename cont_t::iterator it_t;
if(pset->begin()==pset->end())
return;
it_t l,r;
l=r=pset->begin();
r++;
bool fl=false;//в первой итерации первый и (не существующий) минус первый элементы НЕ равны
while(r!=pset->end()){
if(comp(*l,*r))//если равны
fl=true;//в будущем - были равны
else{//если не равны
if(!fl){//и не были равны
pset->erase(l);//удаляем того, кто не равен ни левому ни правому
}
fl=false;//в будущем они не были равны
}
l=r;
r++;
}
if(!fl)//если последний и предпоследний(может не существовать) элементы не равны
pset->erase(l);
}
template<class cont_t>
void antiuniq(cont_t * pset){
antiuniq(pset, [](const typename cont_t::value_type & l, const typename cont_t::value_type & r){return l==r;});
}
//копирует все, что повторяется
template<class init_t, class outit_t, typename comp_t>
outit_t antiuniq_copy(init_t first, init_t last, outit_t out, const comp_t & comp)
{
if(first==last) return out;
init_t l = first; first++;
bool f1 = false;
while(first!=last){
if(comp(*l,*first)){
if(!f1){
*out++ = *l;
f1=true;
}
*out++ = *first;
}
else
f1 = false;
l++;
first++;
}
return out;
}
template<class init_t, class outit_t>
outit_t antiuniq_copy(init_t first, init_t last, outit_t out)
{
typedef decltype(*first) val_t;
return antiuniq_copy(first,last,out,[](const val_t & l, const val_t & r){return l==r;});
}
}
/*
из <limits.h> получить ARG_MAX, из environ??? получить размер среды, вычесть его, вычесть еще 1000, и создать такого размера строку, и в нее дописывать
env | wc -c
openssl md5 "файл" "файл" файл...
отступление:
рекурсивное подтягивание хешей из подпапок в текущую папку - отдельная утилитка pull-hashes
анализ повторов, поиск повторяющихся ПАПОК и др. - отдельная утилитка dups-analys
псевдокод:
lsdups-internal.cpp файлы хеши > повторы
повторы:
\n
размер
файл
файл
файл
прочитать файлы (размер дата имя)
antiuniq<размер>
прочитать хеши (хеш дата имя)
выкинуть файлы, у которых уже посчитаны хеши с той же датой
{
подготовить строку для вызова
вызвать и перенаправить к нам
обработать и добавить в файл с хешами и в наш контейнер
}
antiuniq<хеш>
вывести результат
*/
void print_simple(const hps_t & hps);
void print_script_rmfiles(hps_t * phps);
void print_script_rmdirs(const hps_t * hps, const sii_cont & psd);
// === MAIN ===
int main(int argc, const char * argv[]){
using namespace io_util;
using namespace my_algorithms;
using namespace input;
int errcode;
if(argc!=3)
{
cerr << "usage: sldups-internal files-file hashes-file" << endl;
cerr<<"geted args:"<<endl;
for(int i = 1; i<argc; i++)
cerr <<argv[i]<<endl;
return 1;
}
const char * name_of_files=argv[1];
const char * name_of_hashes=argv[2];
//=== считываем файлы (размер дата имя) ===
sii_cont psd;//path size date - список всех файлов
if(errcode=read_files(name_of_files,&psd))
return errcode;
if(psd.empty()) cerr<<"files empty"<<endl;
std::sort(psd.begin(),psd.end(),
[](const pair<string,pair<long long,long long>> & l, const pair<string,pair<long long,long long>> & r){
return l.second.first<r.second.first;//size
}
);
long long int total_size=0;
for(auto it=psd.begin(); it!=psd.end(); it++)
total_size+=it->second.first;
cerr << "из "<<psd.size()<<" файлов, общим размером "<<bytes(total_size)<<endl;
//=== ищем кандидатов по размеру ===
map<decltype(sii_t().first),decltype(sii_t().second)> psd2;
antiuniq_copy(psd.begin(),psd.end(),inserter(psd2,psd2.end()),
[](const pair<string,pair<long long,long long>> & l, const pair<string,pair<long long,long long>> & r){
return l.second.first==r.second.first;//size
}
);
//с этого момента для определения дубликатов список всех файлов больше не нужен
cerr << psd2.size()<<" файлов с одинаковым размером"<<endl;
//=== считываем закешированные хеши (хеш дата имя) ===
hps_t hps;//hash path size
if(errcode=read_hashes(name_of_hashes,&psd2,&hps))
return errcode;
//=== вычисляем НЕзакешированные хеши ===
if(!psd2.empty()){
cerr <<"у "<<psd2.size()<<" файлов будут посчитаны хеши"<<endl;
if(errcode=calc_and_write_hashes(name_of_hashes,&psd2,&hps))
return errcode;
}
//с этого момента psd2 пуст
//=== ищем кандидатов по хешу ===
antiuniq(&hps,[](const pair<string,pair<string,long long>> & l, const pair<string,pair<string,long long>> & r)
{ return l.first==r.first; });
cerr <<hps.size()<<" файлов c одинаковым MD5"<<endl;
//=== вызываем анализ и вывод ===
//print_simple(hps);
//print_script_rmfiles(&hps);
std::sort(psd.begin(),psd.end(),
[](const pair<string,pair<long long,long long>> & l, const pair<string,pair<long long,long long>> & r){
return l.first<r.first;//path
}
);
print_script_rmdirs(&hps,psd);
}
//=== вывести простым способом ===
void print_simple(const hps_t & hps){
using namespace io_util;
auto sss=hps.cbegin();
long long size=0;
cout<<"///"<<hps.cbegin()->second.second<<endl;
for(auto it=hps.cbegin(); it!=hps.cend(); it++){
if(it->first!=sss->first){
sss=it;
size-=it->second.second;
cout<<"///"<<it->second.second<<endl;
}
size+=it->second.second;
cout <<it->second.first.c_str()<<endl;
}
cerr<<"итого "<<bytes(size)<<" избыточного"<<endl;
}
pair<const char *, const char *> str_mismatch(const char * s1, const char *s2){
while(*s1 && *s2 && *s1==*s2)
s1++, s2++;
return make_pair(s1,s2);
}
//возвращает расширение
const char * find_ext(const string * ps){
int dirpos=ps->rfind('/'), extpos=ps->rfind('.');
if(extpos>=0 && dirpos<extpos)
return ps->c_str()+extpos;
else
return "";
}
void print_script_rmfiles(hps_t * phps){
using namespace io_util;
using namespace quote_util;
map<string,map<string,multimap<long long,set<string>>>> dups;//comm_path,ext,size,diff_path
long long tot_size=0;
//=== сгруппировать по стартовым директориям и расширениям ===
//cerr<<"///"<<phps->begin()->second.second<<endl;
//cerr<<"итого "<<bytes(tot_size)<<" избыточного"<<endl;
if(phps->begin()!=phps->end()){
auto sss=phps->begin();
long long size= (phps->begin()==phps->end()) ? 0 : phps->begin()->second.second;
set<string> ldups;//файлы
for(auto it=phps->begin(); true; it++){
if(it==phps->end() || it->first!=sss->first){//вышли за предел повт. файлов или за предел массива
tot_size-=sss->second.second;
sss=it;//первый повт. файл
//cerr<<"///"<<it->second.second<<endl;
//cerr<<"итого "<<bytes(tot_size)<<" избыточного"<<endl;
string compath;//общий путь и удаление его из файлов
{
auto ff=ldups.begin(), ll=ldups.end(); ll--;
int comlen=str_mismatch(ff->c_str(),ll->c_str()).first-ff->c_str();
//cerr <<"from "<<*ff<<endl<<"to "<<*ll<<endl<<"lenis"<<comlen<<endl;
while(comlen>0 && ff->c_str()[comlen-1]!='/')
comlen--;
if(comlen){
compath.append(ff->c_str(),comlen);
for(auto it=ldups.begin(); it!=ldups.end(); it++)
const_cast<string&>(*it).erase(0,comlen);// !!! порядок не нарушится
}
}
string comext;//общее расширение
{
auto it=ldups.begin();
comext=find_ext(&*it++);
for(;it!=ldups.end(); it++)
if(comext!=find_ext(&*it))
comext.clear();
}
dups[compath][comext].insert(move(make_pair(size,move(ldups))));
if(it==phps->end()) break;
size= it->second.second;
ldups.clear();
}
tot_size+=it->second.second;
ldups.insert(move(it->second.first));
}
}
cerr<<"итого "<<bytes(tot_size)<<" избыточного"<<endl;
//=== вывести по стартовым директориям и расширениям ===
for(auto it_compath=dups.begin(); it_compath!=dups.end(); it_compath++){
if(!it_compath->first.empty())
cout <<"cd \""<<quote_out(it_compath->first.c_str())<<"\"";
long long size=0;
for(auto it_comext=it_compath->second.begin(); it_comext!=it_compath->second.end(); it_comext++)
for(auto it_size=it_comext->second.begin(); it_size!=it_comext->second.end(); it_size++)
size+=it_size->first*(it_size->second.size()-1);
cout << " #"<<bytes(size);
for(auto it_comext=it_compath->second.begin(); it_comext!=it_compath->second.end(); it_comext++){
long long size=0;
for(auto it_size=it_comext->second.begin(); it_size!=it_comext->second.end(); it_size++)
size+=it_size->first*(it_size->second.size()-1);
if(it_comext->first.size()>0)
cout<<endl<<"# "<< it_comext->first<<" ("<<bytes(size)<<")"<<endl;
else
cout<<endl<<"# no ext"<<" ("<<bytes(size)<<")"<<endl;
for(auto it_size=it_comext->second.begin(); it_size!=it_comext->second.end(); it_size++){
cout <<"# "<<it_size->first<<endl;
for(auto it_path=it_size->second.begin(); it_path!=it_size->second.end(); it_path++)
cout<<"#rm \"" <<quote_out(it_path->c_str())<<"\""<<endl;
}
}
if(!it_compath->first.empty())
cout <<"cd -"<<endl<<endl;
}
cout <<"lsdups # после выполнения этого скрипта снова найти пустые файлы и пересоздать этот скрипт"<<endl;
}
//=======================================================================================
struct reverse_less{
bool operator()(const vector<string> & l, const vector<string> & r){
return std::lexicographical_compare(l.crbegin(),l.crend(),r.crbegin(),r.crend());
}
};
//gcc-шная библиотека совершенно напрасно определяет операторы сравнения для векторов, сетов и наверно еще много чего
// группа одинаковых файлов
struct GF{
long long size;
map<vector<string>,bool,reverse_less> paths; // пути отсортированы с конца
// т.е. рядом файлы, с одинаково заканчивающимся путем
};
typedef map<string,GF> GF_cont;//по хешу
//преобразует строку в вектор строк
vector<string> s2vs(const char * str){
vector<string> name;
const char * a, * b;
a = str;
while((b=strchr(a,'/'))!=0){
name.push_back(string(a,b));
a = b+1;
}
name.push_back(a);
return move(name);
}
//=== сформировать ГФы (Группы Файлов) ===
void make_GFs(GF_cont * pGFs, const hps_t * phps){
for(auto it=phps->cbegin(); it!=phps->cend(); it++){
(*pGFs)[it->first].paths.insert(make_pair(s2vs(it->second.first.c_str()),false));
(*pGFs)[it->first].size = it->second.second;
}
}
//=== ГФ, size=0 ===
//pGF0->size=-1; - если GF0 отсутствует
void make_GF0(GF * pGF0, GF_cont * pGFs){
auto it0 = pGFs->begin();
for(; it0!=pGFs->end(); it0++)
if(it0->second.size==0)
break;
if(it0!=pGFs->end() && it0->second.size==0){
pGF0->size=0;
pGF0->paths=move(it0->second.paths);
pGFs->erase(it0);
}
else
pGF0->size=-1; // GF0 отсутствует
}
// контейнер групп папок
// отображение из списка папок в (отображение из списка файлов в указатели(итераторы) на группы файлов)
struct size_less{
bool operator()(const vector<string> & l, const vector<string> & r)const{
if(l.size()!=r.size())
return l.size()<r.size();
else
return std::lexicographical_compare(l.cbegin(),l.cend(),r.cbegin(),r.cend());
}
};
typedef map<set<vector<string>,size_less>,map<vector<string>,GF_cont::const_iterator,size_less>> GP_cont;
// === сформировать ГПы (Группы Папок) ===
//требуется reverse_less в map-е в GF
//true, если пары не использованы (bool==false) и последние n имен совпадают
bool end_eq_n(const pair<vector<string>,bool> & l, const pair<vector<string>,bool> & r, int n){
//cout <<"compare_"<<n<<" - "<<l.second<<r.second<<endl;
//cout <<l.first <<endl<<r.first<<endl;
if(l.second || r.second)
return false;
auto itn1=l.first.crbegin(), itn2=r.first.crbegin();
for(int i=0; itn1!=l.first.crend() && itn2!=r.first.crend() && i<n; itn1++, itn2++, i++)//
if(*itn1!=*itn2)
return false;
//cout <<"true"<<endl;
return true;
}
//возвращает скопированными первые size()-n имен (различающийся путь)
vector<string> my_vithout_tail(const vector<string> & src, int n){//tail_path
vector<string> q;
for(size_t i=0; i<src.size()-n; i++)
q.push_back(src[i]);
return move(q);
}
//возвращает скопированными последние n имен (совпадающий путь)
vector<string> my_tail(const vector<string> & src, int n){//vithout_tail_path
vector<string> q;
for(size_t i = src.size()-n; i<src.size(); i++)
q.push_back(src[i]);
return move(q);
}
//сформировать ГПы
void make_GPs(GP_cont * pGPs, GF_cont * pGFs){
// --- по всем группам файлов ---
for(auto itgf=pGFs->begin(); itgf!=pGFs->end(); itgf++){
// itgf->first - хеш группы файлов
// itgf->second - GF
//вывод ГФ-ов
//cout <<itgf->second.size <<"===================================="<<endl;
//for(auto it2=itgf->second.paths.cbegin(); it2!=itgf->second.paths.cend(); it2++)
// cout <<it2->first <<endl;
int max_nest_eq=0; // самя длинная совпадающая концовка
/*
типа для
a/b/c
e/f/c
g/f/c
это будет /f/c, и ее длина =2
*/
// --- по всем файлам в группе ---
auto itf1=itgf->second.paths.cbegin(), itf2=itgf->second.paths.cbegin();
std::advance(itf2,1);//гарантировано, что элементов по крайней мере 2
// itf1, itf2 - парочка соседних итераторов по GF::paths
// itf1/2->first - "path"
for(; itf2!=itgf->second.paths.cend(); itf1++, itf2++){
// --- ищем
auto itn1=itf1->first.crbegin(), itn2=itf2->first.crbegin();
for(int i=0; itn1!=itf1->first.crend() && itn2!=itf2->first.crend() && i<max_nest_eq; itn1++, itn2++, i++)//
if(*itn1!=*itn2)
goto break_continue;
for(; itn1!=itf1->first.crend() && itn2!=itf2->first.crend() && *itn1==*itn2; itn1++, itn2++)//
max_nest_eq++;
break_continue:
;
}
//вычислили максимальное количество одинаковых имен с конца
for(;max_nest_eq>0; max_nest_eq--){
//cout << "max_nest_eq = " << max_nest_eq <<endl;
using namespace std::placeholders;// для _1, _2
auto first = itgf->second.paths.begin();
auto last = itgf->second.paths.end();
// идем по всем путям группы файлов, и выбираем те, у которых концы путей длиной max_nest_eq совпадают
while((first = adjacent_find(first,last,bind(end_eq_n,_1,_2,max_nest_eq)))!=last){
auto next = first;
typename GP_cont::key_type
GP_param; // формируем список путей к набору файлов
GP_param.insert( my_vithout_tail(next->first,max_nest_eq) );
for(next++; next!=last && end_eq_n(*first,*next,max_nest_eq); next++){
GP_param.insert( my_vithout_tail(next->first,max_nest_eq) );
next ->second = true; // данный файл выцеплен=использован
}
first ->second = true; // данный файл выцеплен=использован
//for(auto it = GP_param.begin(); it!= GP_param.end(); it++)
// cout<<*it<<endl;
//cout <<"===>/"<<my_tail(first->first,max_nest_eq)<<endl;
// выбираем список путей, выбираем файл (конец пути), он соответствует группе файлов
// итератор на неё-то мы и присваиваем
(*pGPs) [move(GP_param)] [my_tail(first->first,max_nest_eq)] = itgf;
first=next;
}
}
}
}
// === расформировать GF.size==0 ===
//вспомогательная для next_hash
void inc_s(string * ps, size_t n){
if(n == ps->size())
(*ps)+='.';
else
if( (*ps)[n]==127 ){
(*ps)[n]='.';
inc_s(ps,n+1);
}
else
(*ps)[n]++;
}
//следующая строка (для перебора всех возможных строк)
void next_hash(string * ps){
inc_s(ps,0);
}
//расформировать GF.size==0
void kill_GF0(GP_cont * pGPs, GF_cont * pGFs, GF * pGF0){
// вычисляем максимальную длину совпадающих с конца путей
int max_nest_eq=0;
auto itf1=pGF0->paths.begin(), itf2=pGF0->paths.begin();
std::advance(itf2,1);//гарантировано, что элементов по крайней мере 2
for(; itf2!=pGF0->paths.end(); itf1++, itf2++){//по всем файлам в группе
auto itn1=itf1->first.rbegin(), itn2=itf2->first.rbegin();
for(int i=0; itn1!=itf1->first.rend() && itn2!=itf2->first.rend() && i<max_nest_eq; itn1++, itn2++, i++)//
if(*itn1!=*itn2)
goto break_continue2;
for(; itn1!=itf1->first.rend() && itn2!=itf2->first.rend() && *itn1==*itn2; itn1++, itn2++)//
max_nest_eq++;
break_continue2:
;
}
//вычислили максимальное количество одинаковых имен с конца
string newhash=".";
for(;max_nest_eq>0; max_nest_eq--){
//cout << "max_nest_eq = " << max_nest_eq <<endl;
using namespace std::placeholders;
auto first = pGF0->paths.begin();
auto last = pGF0->paths.end();
while((first = adjacent_find(first,last,bind(end_eq_n,_1,_2,max_nest_eq)))!=last){
auto next = first;
typename GP_cont::key_type
GP_param;
GP_param.insert( my_vithout_tail(next->first,max_nest_eq) );
for(next++; next!=last && end_eq_n(*first,*next,max_nest_eq); next++){
GP_param.insert( my_vithout_tail(next->first,max_nest_eq) );
next ->second = true;
}
first ->second = true;
//for(auto it = GP_param.begin(); it!= GP_param.end(); it++)
// cout<<*it<<endl;
//cout <<"===>/"<<my_tail(first->first,max_nest_eq)<<endl;
auto target = pGPs->find(move(GP_param));
if(target == pGPs->end()){
//если такой конфигурации нет - вернуть ее обратно
for(auto it=first; it!=next; it++)
it->second = false;
}
else{
GF ngf;//создать отдельный GF
ngf.size=0;
for(auto it=first; it!=next; it++)
ngf.paths.insert(*it);
auto source = pGFs->insert(make_pair(newhash,move(ngf))).first;//добавить его к остальным GFs-ам
next_hash(&newhash);
//и добавить на него ссылку в GPs
target->second[my_tail(source->second.paths.begin()->first,max_nest_eq)] = source;
}
first=next;
}
}
//удалить все вырезанные пути из GF0
for(auto it = pGF0->paths.begin(); it!=pGF0->paths.end();)
if(it->second){
auto itt = it;
it++;
pGF0->paths.erase(itt);
}
else
it++;
if(pGF0->paths.size()!=0)
//если остаток не пуст - обрабатывать его вместе со всеми GFs
pGFs->insert(make_pair(newhash,move(*pGF0)));
}
template <class it_t>
bool operator<(const it_t & l, const it_t & r){
return l->first < r->first;
}
typedef map<vector<string>,pair<set<GP_cont>,set<GF_cont::const_iterator>>> GGPsGFs_t;
// set<GP_cont> - возможны несколько ГГП с одинаковым путем
//=== сформировать ГГПы и разложить их по стартовым папкам ===
//вырезает элемент у правого и вставляет(добавляет) его в левого
template<class mapset, class it_t>
void mapset_splice(mapset * to, mapset * from, const it_t & it){
to->insert(*it);//как жаль, что нет библиотечной функции, делающей move
from->erase(it);
}
// проходится по from, и копирует it->second в to
template<class MapSet>
set<typename MapSet::mapped_type> discard_first(const MapSet & from){
set<typename MapSet::mapped_type> to;
for(auto it=from.cbegin(); it!=from.cend(); it++)
to.insert(it->second);
return move(to);
}
//копирует первые n строк
vector<string> my_head(const vector<string> & from, int n){
vector<string> to;
auto it = from.begin();
for(int i=0; i<n; i++, it++)
to.push_back(*it);
return move(to);
}
//сформировать ГГПы и разложить их по стартовым папкам
void make_GGPs(GGPsGFs_t * pGGPs, GP_cont * pGPs){
while(!pGPs->empty()){
GP_cont GGP;
mapset_splice(&GGP,pGPs,pGPs->begin()); // вырезали 1ю группу папок
auto union_folders = GGP.begin()->first;//copy, общие папки, инициализируются папками 1й ГП
decltype(typename GGPsGFs_t::mapped_type().second)
union_GFps = discard_first(GGP.begin()->second); //общие указатели на GFы,
// инициализируются указателями на ГФы 1й ГП
bool changed;
do{
changed=false;
// по всем группам папок
for(auto itgp = pGPs->begin(); itgp!=pGPs->end(); ){
decltype(union_folders) intersection_folders; // пересечение общих папок и папок текущей ГП
std::set_intersection(union_folders.begin(),union_folders.end(),itgp->first.begin(),itgp->first.end(),
inserter(intersection_folders,intersection_folders.end()));
decltype(union_GFps) from_GFps = discard_first(itgp->second);
decltype(union_GFps) intersection_GFps;
// пересечение общих указателей на ГФы и указателей на ГФы текущей ГП
std::set_intersection(union_GFps.begin(),union_GFps.end(),from_GFps.begin(),from_GFps.end(),
inserter(intersection_GFps,intersection_GFps.end()));
if(intersection_folders.empty() && intersection_GFps.empty())
itgp++;
else{
#if 0
using namespace io_util;
cout << "проверяем пересечения union_folders" <<endl;
for(typename set<vector<string>,size_less>::const_iterator it = union_folders.cbegin();
it!=union_folders.cend(); it++){
const vector<string> & xx = *it;
cout<<xx<<endl;
}
cout<<"-P-"<<endl;
for(auto it = itgp->first.begin(); it!=itgp->first.end(); it++)
cout<<*it<<endl;
cout<<"-EQ-"<<endl;
for(auto it = intersection_folders.begin(); it!=intersection_folders.end(); it++)
cout<<*it<<endl;
cout << "проверяем пересечения union_GFps" <<endl;
for(typename set<GF_cont::const_iterator>::const_iterator it = union_GFps.cbegin();
it!=union_GFps.cend(); it++)
cout<<(*it)->first<<endl;
cout<<"-P-"<<endl;
for(auto it = from_GFps.begin(); it!=from_GFps.end(); it++)
cout<<(*it)->first<<endl;
cout<<"-EQ-"<<endl;
for(auto it = intersection_GFps.begin(); it!=intersection_GFps.end(); it++)
cout<<(*it)->first<<endl;
#endif
changed = true;
for(auto it = itgp->first.begin(); it!=itgp->first.end(); it++)
union_folders.insert(*it);
for(auto it = from_GFps.begin(); it!=from_GFps.end(); it++)
union_GFps.insert(*it);
auto itgptmp = itgp++;
mapset_splice(&GGP,pGPs,itgptmp);
}
}
}while(changed);
//сформировали ГГП, теперь найдем общую папку
auto itf1 = union_folders.begin(), itf2 = union_folders.begin();
itf2++;//гарантированно их хотябы 2
int max_eq=0; // длина общего с начала пути в union_folders
for(auto it1=itf1->begin(), it2=itf2->begin(); it1!=itf1->end() && it2!=itf2->end() && *it1==*it2; it1++, it2++)
max_eq++;
for(itf1++, itf2++; itf2!=union_folders.end(); itf1++, itf2++){
int i=0;
for(auto it1=itf1->begin(), it2=itf2->begin(); i<max_eq; it1++, it2++, i++)
if(!(it1!=itf1->end() && it2!=itf2->end() && *it1==*it2)){
max_eq=i;
break;
}
}
if(max_eq==0) {
(*pGGPs)[vector<string>({string(".")})].first.insert(move(GGP));
}
else
(*pGGPs)[my_head(*union_folders.begin(),max_eq)].first.insert(move(GGP));
}
}
//=== разложить ГФы по стартовым папкам ===
void select_GFs(GGPsGFs_t * pGGFs, const GF_cont & GFs){
int gfcount=0;
for(auto itgf = GFs.cbegin(); itgf!=GFs.cend(); itgf++){
for(auto it = itgf->second.paths.begin(); it!=itgf->second.paths.end(); it++)
if(it->second)
goto break_continue; // ГФы, учавствующие в ГПах игнорируются
gfcount++;
{
auto itf1 = itgf->second.paths.begin(), itf2 = itgf->second.paths.begin();
itf2++;//гарантированно их хотябы 2 (а если size==0 их хотя бы 1)
int max_eq=0;
if(itgf->second.size!=0 || itf2!=itgf->second.paths.end()){
for(auto it1=itf1->first.begin(), it2=itf2->first.begin();
it1!=itf1->first.end() && it2!=itf2->first.end() && *it1==*it2;
it1++, it2++){
max_eq++;
}
for(itf1++, itf2++; itf2!=itgf->second.paths.end(); itf1++, itf2++){
int i=0;
for(auto it1=itf1->first.begin(), it2=itf2->first.begin(); i<max_eq; it1++, it2++, i++)
if(!(it1!=itf1->first.end() && it2!=itf2->first.end() && *it1==*it2)){
max_eq=i;
break;
}
}