-
Notifications
You must be signed in to change notification settings - Fork 0
/
sync.pl
2122 lines (1838 loc) · 68 KB
/
sync.pl
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
#! perl
use strict;
use warnings;
# 全自動で同期する
# 指定は相互のディレクトリ名(できればフルパス)
# 両方にファイルがあったら、新しいファイルでコピー
# ないファイルが見つかったら、ディレクトリの更新時刻を見て新しい方に合わせて削除・コピー
# ファイルとディレクトリが違っていて両方にあったら、エラーをログに出力(ディレクトリ側はもう入らない)
# ディレクトリ、ファイル、symlink以外(?)は、エラーをログに出力
my (%OPTS, %OPTS_RAW);
use Getopt::Long;
my @ORG_ARGV = @ARGV;
GetOptions(\%OPTS_RAW,
'dryrun',
'shallow',
'service:i', # [interval]
'ldustbox=s',
'rdustbox=s',
'config=s', # conf_file
'statuslog=s', # log_file
'log=s', # log_file
'mapping=s', # mapping_file
'diffrelax=i', # sec
'verbose=i', # 0: no message, 1: minimal, 2: verbose
'encode=s',
'except=s', # pattern
);
# remote local [day_limit]
my $ERROR=0;
my $INFO=1;
my $LOG=2;
my $DEBUG=3;
my $STATUS1=4;
my $STATUS2=5;
my $before_log = "";
my $last_size = 0;
my $log_count = 0;
# initialize LOG filehandle
open LOG, ">/dev/null";
open STATUSLOG, ">/dev/null";
#######
### agelog
#######
my $AGELOG_MES = "";
sub next_file( $$$ ) {
my ( $body, $count, $ext ) = @_;
if ( not defined($OPTS{".agelogformat"}) ) {
my $len = ( $OPTS{agelogmax} < 100 ? 2 : length($OPTS{agelogmax}) );
$OPTS{".agelogformat"} = "%s_%0${len}d%s";
}
sprintf($OPTS{".agelogformat"}, $body, $count, $ext);
}
sub rm_next_next_file ( $$$ ) {
my ( $body, $count, $ext ) = @_;
$count++;
my ( $next_next_file ) = next_file( $body, $count, $ext);
if ( -e $next_next_file ) {
$AGELOG_MES .= "<time>agelog: /bin/rm $next_next_file\n";
system("/bin/rm $next_next_file");
}
}
sub next_aLOG_file ( $ ) {
my ( $file ) = @_;
use File::Basename;
my ($basename, $dirname, $ext) = fileparse($file, qr/\.[^.]*/);
my ($body) = "$dirname$basename";
foreach my $count ( 0 .. $OPTS{agelogmax} ) {
my $next_file = next_file( $body, $count, $ext);
if ( not -e $next_file ) {
rm_next_next_file( $body, $count, $ext);
return $next_file
}
}
my $count = "00";
my $next_file = next_file( $body, $count, $ext);
rm_next_next_file( $body, $count, $ext);
return $next_file
}
sub archive_LOG () {
if ( not defined $OPTS{log} or not defined $OPTS{agelogmax} ) {
return;
}
flush LOG;
my $nextfile = next_aLOG_file( $OPTS{log});
$AGELOG_MES .= sprintf( "<time>agelog: %s %s %s\n", "/bin/cp", $OPTS{log}, $nextfile );
if (system("/bin/cp", $OPTS{log}, $nextfile ) == 0) {
$AGELOG_MES .= sprintf( "<time>agelog: reopen %s\n", $OPTS{log});
open(LOG, ">", $OPTS{log});
}
}
sub count_line ( $ ) {
my ( $mes ) = @_;
my @c = ($mes =~ /\n/g);
return @c+0;
}
#####
### LOG
#####
sub out_LOG ( $$@ );
sub out_LOG ( $$@ ) {
my ( $level, $format, @args ) = @_;
use POSIX qw/strftime/;
my $date = strftime "%y/%m/%d_%H:%M:%S: ", localtime;
my $mes;
if (!defined($format)) {
$mes = "out_LOG\n";
} else {
$mes = sprintf($format, @args);
}
$mes =~ s/<time>/$date/g;
$mes = $date . $mes;
if ( $level == $STATUS1 ) {
print STATUSLOG $mes, "\n";
$before_log = "";
print STDERR ' ' x $last_size . "\r";
print STDERR $mes;
print STDERR "\r";
$last_size = length( $mes );
} elsif ( $level == $STATUS2 ) {
print STATUSLOG $mes;
$before_log = $mes;
# print STDERR "debug: before_log='$mes'\n";
} else {
if ( $OPTS{log} and $level <= $INFO) {
$log_count += count_line($before_log);
$log_count += count_line($mes);
if ( defined($OPTS{ageloglines}) and $log_count > $OPTS{ageloglines} ) {
$AGELOG_MES = '';
$AGELOG_MES .= sprintf( "<time>agelog: log lines exceed ageloglines: %d > %d\n", $log_count, $OPTS{ageloglines} );
archive_LOG();
$log_count = 0;
out_LOG $INFO, "%s", $AGELOG_MES;
$AGELOG_MES = '';
}
print LOG $before_log;
print LOG $mes;
}
if ( $level <= $OPTS{verbose} ) {
print STDERR ' ' x $last_size . "\r";
print STDERR $before_log;
print STDERR $mes;
print STATUSLOG $mes, "\n";
$before_log = "";
$last_size = 0;
}
# print STDERR "debug: level= $level mes='$mes' before_log='${before_log}' \n";
}
}
# コンソールの状態
# 1. 行頭にあって、行には何も表示していない
# 2. 行頭にあって、行に表示されている
# エントリーポイントは 1.
# 消されてもよい1行を表示すると2.
# 1.の状態で、
# 消されても良い1行 ⇒ そのまま出力して 2.
# 消されても良い複数行 ⇒ バッファリングして 1.のまま
# 消されてはいけない行 ⇒ バッファを書いて1.
# 2.の状態で、
# 消されても良い1行 ⇒ 行をクリアしてから、出力して 2.
# 消されても良い複数行 ⇒ バッファリングして 2.のまま
# 消されてはいけない行 ⇒ 行をクリアしてから、バッファを書いて1.
# 消されても良い1行の情報は、
# 表示した後で行頭に戻る(\r)
# 次に消されても良い情報が来たら、古いものを上書きする
# ログは、statuslogだけ出力する
# コンソールには、" \r"を出力。次に何か出力する前に " \n"を出力
# 次のハートビートは、コンソールには、" \r"を出力。次に何か出力する前に " \n"を出力
sub oneline_stauts_LOG ( $$@ ) {
my ( $format, @args ) = @_;
use POSIX qw/strftime/;
my $date = strftime "%y/%m/%d_%H:%M:%S: ", localtime;
my $mes;
if (!defined($format)) {
$mes = "out_LOG\n";
} else {
$mes = sprintf($format, @args);
}
$mes = $date . $mes;
print STATUSLOG $mes,"\n";
$before_log = "";
print STDERR ' ' x $last_size . "\r";
print STDERR $mes;
$last_size = length( $mes );
print STDERR "\r";
}
# 消されても良い複数行の情報は、
# 必要になるまでメモリに入れておき、必要になったら(消されてはいけない情報を出力する時に)出力する。消されても良い情報を出力する時には古いものは出力せずに消す。
# ログは、statuslogにすぐに出力する
sub multiline_status_LOG ( $ ) {
my ( $format, @args ) = @_;
use POSIX qw/strftime/;
my $date = strftime "%y/%m/%d_%H:%M:%S: ", localtime;
my $mes;
if (!defined($format)) {
$mes = "out_LOG\n";
} else {
$mes = sprintf($format, @args);
}
$mes = $date . $mes;
print STATUSLOG $mes;
$before_log = $mes;
}
sub normal_LOG ( $ ) {
}
# 消されてはいけない情報は、
# 消されても良い1行の情報を上書きし、過去の消されても良い複数行の情報を出力し、本当の出力をする
# ログは、過去の消されても良い複数行の情報を出力し、本当の出力を 更新ログに出力する。
# ハートビート: 消されても良い1行
# エラー: 消されてはいけない情報
# 更新: 消されてはいけない情報
# 設定情報: 消されてはいけない情報
# 動作情報: 消されても良い複数行の情報
# デバッグ用情報: 消されてはいけない情報
sub out_HB ( $ ) {
# ハートビートを出す。
# ログには、
# コンソールには、" \r"を出力。次に何か出力する前に " \n"を出力
}
sub open_LOG ( $ ) {
my ( $file ) = @_;
$log_count = 0;
if ( $file ) {
open LOG, "<", $file;
while ( <LOG> ) {
$log_count++;
}
open LOG, ">>", $file;
LOG->autoflush(1);
out_LOG $DEBUG, "agelog: log_count=%d\n", $log_count;
} else {
open LOG, ">", "/dev/null";
}
}
sub read_file ( $ ) {
my ($file) = @_;
if ( open( my $filehandle, "<", $file ) ) {
local $/;
my $content = <$filehandle>;
close $filehandle;
return $content;
}
}
sub read_jsonfile ( $ ) {
my ($file) = @_;
my $confstring = read_file( $file );
my $conf;
if ( defined($confstring) ) {
$@="";
eval {
$conf = JSON->new->relaxed->decode( $confstring );
};
if ($@) {
$@ .= "Reading $file\n";
}
}
return $conf
}
sub write_jsonfile ( $$;$ ) {
my ($file, $content, $last_json_text) = @_;
use JSON::PP ();
my $new_json_text = JSON::PP->new->allow_blessed->as_nonblessed->canonical->pretty->encode( $content );
out_LOG $DEBUG, "%s\n%s\n%s\n", $file, ($last_json_text || ""), $new_json_text;
if (not $last_json_text or $last_json_text ne $new_json_text) {
if (open( my $json_file, ">", $file ) ) {
print $json_file $new_json_text;
close( $json_file );
out_LOG $DEBUG, "Wrote\n";
return $new_json_text;
}
out_LOG $DEBUG, "Failed to write\n";
return ""; # failed to write!
} else {
out_LOG $DEBUG, "No need to write\n";
return $new_json_text; # no need to write but ok.
}
}
sub read_conf ( $;$ );
sub read_conf ( $;$ ) {
# JSON
# 上記オプションも、未セットなら入れる(--optの方が優先)
# PATTERNSは構わず追加
my ($file, $base) = @_;
use JSON;
# $JSON::BareKey = 1;
# $JSON::QuotApos = 1;
my $conf = read_jsonfile( $file );
if ($@) {
return;
}
if (! defined( $conf ) ) {
# error!
return;
}
return if (ref($conf) ne "HASH");
if ( $conf->{opts}{config} ) {
$@="";
my $conf_in_conf = read_conf( $conf->{opts}{config} );
if ( $@ ) {
# printf STDERR $@;
out_LOG $ERROR, $@;
$@="";
}
if ( $conf_in_conf ) {
$conf->{'.CONF'} = $conf_in_conf;
}
}
use File::Spec;
foreach my $dir ( @{ $conf->{files} } ) {
if ( ref($dir) eq "" ) {
# files に 文字列があれば、ディレクトリ名として解釈し、そこにある _sync_conf.txt を設定ファイルとして読み込む
# $dir は $base からの相対パスも許可する
if ( defined($base) ) {
$dir = File::Spec->rel2abs( $dir, $base ) ;
}
# "*" と書いたら、 $base/* それぞれで実行する
foreach my $dir2 ( glob( $dir ) ) {
next if ( not -d $dir2 );
my $sub_file = "$dir2/_sync_conf.txt";
next if ( not -f $sub_file );
my $conf_in_file = # eval {
read_conf( $sub_file, $dir2 );
# };
if ( $@ ) {
out_LOG $ERROR, $@;
$@="";
next;
}
if ( $conf_in_file ) {
# $conf_in_file->{local} = $file;
$conf_in_file->{'.BASE'} = $dir2;
push @{ $conf->{'.FILES'} }, $conf_in_file;
}
}
}
}
return $conf;
}
sub opts_overwrite ( $$ ) {
my ( $from_opts, $to_opts ) = @_;
# キーを上書き
foreach my $key ( keys( %{ $from_opts } )) {
$to_opts->{$key} = $from_opts->{$key};
}
}
sub is_prefix ( $$ ) {
my ( $pre, $string ) = @_;
return (substr($string, 0, length($pre)) eq $pre);
}
sub file_complete ( $$$ ) {
my ( $file, $conf, $opts ) = @_;
if ( ref($file) eq "HASH" ) {
# localは.BASEからの相対参照を許す。
# $file->{local} は $conf->{'.BASE'} からの相対参照で置き換える
if ( defined( $conf->{'.BASE'} ) ) {
$file->{local} = File::Spec->rel2abs( $file->{local}, $conf->{'.BASE'} ) ;
}
if ( defined $opts->{pattern} ) {
foreach my $p ( @{ $opts->{pattern} } ) {
if ( is_prefix( $p->{prefix}, $file->{ $p->{name} } ) ) {
while ( my ($k, $v) = each %{ $p->{add} } ) {
if ( not defined($file->{$k}) ) {
$file->{$k} = $v;
}
}
}
}
}
return 1;
}
}
sub equal_object ( $$ ) {
my ( $a, $b ) = @_;
my $a_json = (defined($a) ? JSON->new->canonical->encode($a) : '');
my $b_json = (defined($b) ? JSON->new->canonical->encode($b) : '');
return ($a_json eq $b_json);
}
sub conf_final ( $$$ );
sub conf_final ( $$$ ) {
my ( $files, $opts, $conf ) = @_;
if ( defined($conf->{'.CONF'}) ) {
conf_final( $files, $opts, $conf->{'.CONF'} );
}
# 上の層のoptsで上書き
opts_overwrite( $conf->{opts}, $opts );
# 上の層ので追加(push)
if ( defined($conf->{files} ) ) {
push @$files, (
# grep {
# if ( ref($_) eq "HASH" ) {
# # localは.BASEからの相対参照を許す。
# # $_->{local} は $conf->{'.BASE'} からの相対参照で置き換える
# if ( defined( $conf->{'.BASE'} ) ) {
# $_->{local} = File::Spec->rel2abs( $_->{local}, $conf->{'.BASE'} ) ;
# }
# # foreach $p ( @{ $conf->{pattern} } ) { if ($_->{$p->{name}} =prefix $p->{prefix}) { $p->{add}; last }}
# 1;
# };
# } @{ $conf->{files} } );
grep { file_complete( $_, $conf, $opts) } @{ $conf->{files} } );
}
use File::Spec;
# $conf->{'.FILES'} からたどれるものを追加。
if ( defined( $conf->{'.FILES'} ) ) {
foreach my $f ( @{ $conf->{'.FILES'} } ) {
my $dummy_opts = { %$opts };
conf_final( $files, $dummy_opts, $f );
if ( not equal_object( $dummy_opts, $opts)) {
out_LOG $ERROR, "options in sub-folder config is ignored: %s %s\n", $f->{'.BASE'}, JSON->new->pretty->canonical->encode($dummy_opts);
# $conf->{'.FILES'}{'.CONF'} は当面無視。使おうとするとファイルによって異なるoptsを使う結果になり、意味がややこしくなりすぎるので。
# いきなり$filesを更新せず、ここで得られたfiles に $dummy_optsを展開してからpushすればよい。
# いや、なかなか厄介だ。
}
}
}
}
sub match ( $$ ) {
my ($name, $pattern) = @_;
my $res = ( $name =~ $pattern ) ;
return $res;
# foreach my $pat (@$patterns) {
# if ($name =~ $pat) {
# return 1;
# }
# }
# return 0;
}
sub match_2 ( $$ ) {
my ($name, $pattern) = @_;
if ($name eq "_last.json" or
$name eq "_sync_conf.txt" or
$name eq "_original" or
$name =~ /\.conflict[0-9]{6}_[0-9]{6}/ or
$name =~ /^\.#/
) {
return 1;
}
return match($name, $pattern);
}
###
### update_now/ get_latest
###
{
my %updated;
sub update_now ($$) {
my ($key, $value) =@_;
$updated{$key} = [ time(), $value ];
}
sub sort_0 (@) {
return sort { $b->[0] <=> $a->[0] } @_;
}
sub get_latest ($) {
my ($count) = @_;
if (not defined($count)) {
return ();
}
my @values = values(%updated);
@values = sort_0(@values);
if ( $count > 0 and $#values > $count-1 ) {
@values = @values[0..$count-1];
# あんまり長くなりすぎないように削る。削らなくても用は足りる。
my ( $oldest_time ) = $values[-1]->[0];
foreach my $k ( keys( %updated ) ) {
if ( $updated{$k}->[0] < $oldest_time ) {
delete $updated{$k}
}
}
}
return( map { $_->[1] } @values );
}
}
###
### local/remote string util
###
{
my $remotetop;
my $localtop;
my $toptimestring;
sub get_toptimestring () {
$toptimestring;
}
my $toptimestring1;
sub get_toptimestring1 () {
$toptimestring1;
}
sub top_dir ( $$ ) {
my ($r, $l) = @_;
$remotetop = $r;
$localtop = $l;
use File::Basename;
my $topbase = basename($localtop);
use POSIX qw/strftime/;
my $time = time();
$toptimestring1 = strftime( "%y%m%d_%H%M%S", localtime($time));
$toptimestring = sprintf("%s_%s", $toptimestring1,
$topbase);
out_LOG $STATUS1, "LOCAL: %s", $localtop;
my $mes = "";
$mes .= sprintf("---\n");
# $mes .= sprintf("<time>REMOTE: %s\n", $remotetop);
$mes .= sprintf("<time>LOCAL: %s\n", $localtop);
$mes .= sprintf("<time>toptimestring: %s\n", get_toptimestring());
out_LOG $STATUS2, "%s", $mes;
}
sub remove_prefix( $$ ) {
my ( $str, $pre ) = @_;
my $str_pre = substr( $str, 0, length( $pre ) );
if ( $str_pre eq $pre ) {
my $str_sub = substr( $str, length( $pre ) );
$str_sub =~ s!^[/\\]!! ;
return $str_sub;
}
return undef;
}
sub dir_part ( $ ) {
my ( $dir ) = @_;
my $subdir;
$subdir = remove_prefix($dir, $remotetop);
if ( defined($subdir) ) {
return "REMOTE", $subdir;
}
$subdir = remove_prefix($dir, $localtop);
if ( defined($subdir) ) {
return "LOCAL", $subdir;
}
return "ABS", $dir;
}
}
sub from_to_top ( $$ ) {
my ($from_top, $to_top) = @_;
if ($from_top eq "LOCAL" and $to_top eq "REMOTE") {
return "LOCAL -> REMOTE";
} elsif ($from_top eq "REMOTE" and $to_top eq "LOCAL") {
return "LOCAL <- REMOTE";
} else {
return sprintf("%6s", $from_top);
}
}
sub from_to_string ( $$ ) {
my ($from, $to) = @_;
my ($from_top, $from_sub) = dir_part( $from );
my ($to_top, $to_sub) = dir_part( $to );
if ( ($from_top eq "REMOTE" or $from_top eq "LOCAL") and
($to_top eq "REMOTE" or $to_top eq "LOCAL") ) {
my $from_to_top = from_to_top( $from_top, $to_top );
if ($from_sub eq $to_sub) {
return sprintf("%s %s\n", $from_to_top, $from_sub);
} else {
my $subdir = remove_prefix($from_sub, $to_sub);
if ( defined($subdir) ) {
return sprintf("%s %s\n", $from_to_top, $from_sub);
} else {
return sprintf("%s\n\t\t\t%s\t\t\t%s\n", $from_to_top, $from_sub, $to_sub);
}
}
} else {
return sprintf("%6s -->%6s\n\t\t\t%s\t\t\t%s\n", $from_top, $to_top, $from_sub, $to_sub);
}
}
sub dir_string ( $$ ) {
my ($from,$mes) = @_;
my ($from_top, $from_sub) = dir_part( $from );
return sprintf("%-6s %-9s %s\n", $from_top, $mes, $from_sub);
}
sub to_local_remote ( $$ ) {
my ($from, $to) = @_;
my ($from_top, $from_sub) = dir_part( $from );
my ($to_top, $to_sub) = dir_part( $to );
if ( $to_top eq "LOCAL" or $from_top eq "REMOTE" ) {
return ($to, $from);
} elsif ( $from_top eq "LOCAL" or $to_top eq "REMOTE" ) {
return ($from, $to);
} else {
return ($from, $to);
}
}
###
### file utils
###
sub files ( $ ) {
my ( $dir ) = @_;
# return @files, except ".", "..";
opendir DIR, $dir
or return;
my @filenames = readdir DIR;
closedir DIR
or die "Cannot close dir $dir: $!";
stat( "$dir/." )
or die "Failed to re-stat dir $dir: $!";
out_LOG $DEBUG, "%10s stat(%s)\n", "files re-stat", "$dir/." ;
my @return;
foreach my $f ( @filenames ) {
if ( $f eq "." or $f eq ".." ) {
next;
}
push @return, $f;
}
return @return;
}
sub sort_uniq (@) {
my (@files) = @_;
@files = sort @files;
my @return;
my $last = "";
for my $f ( @files ) {
if ($f ne $last) {
push @return, $f;
$last = $f;
}
}
return @return;
}
sub attr ( $ ) {
my ( $file ) = @_;
use File::stat;
my $attr = stat( $file )
or return;
out_LOG $DEBUG, "%10s stat(%s)\n", "attr", $file ;
attr_file($attr, $file);
if ( -d $attr ) {
attr_type($attr, "dir");
opendir( my $tmp, $file )
or die "stat success but opendir fail: $file $!";
if ( $tmp ) {
closedir $tmp;
} else {
die "stat success but opendir sets null handler: $file";
}
} elsif ( -f $attr ) {
attr_type($attr, "file");
open( my $tmp, "<", $file )
or die "stat success but open fail: $file $!";
if ( $tmp ) {
close $tmp;
} else {
die "stat success but open sets null handler: $file";
}
} elsif ( -l $attr ) {
attr_type($attr, "link");
} else {
attr_type($attr, "other");
}
return $attr;
}
#$!$!$! $$:$にして、$valをセットしないときを簡単に書けるようにすべき
sub attr_index ( $$$ ) {
my ($attr, $val, $index) = @_;
if (defined($val)) {
$attr->[$index] = $val;
}
return $attr->[$index];
}
sub attr_type ( $;$ ) {
my ($attr, $val) = @_;
attr_index($attr, $val, 13) or "";
}
sub attr_file ( $;$ ) {
my ($attr, $val) = @_;
attr_index($attr, $val, 14);
}
sub attr_mtime ( $ ) {
return( attr_index( $_[0], undef, 9) or 0 );
# return $_[0]->mtime;
# my ($attr) = @_;
# if (attr_type($attr) eq 'dir' ) {
# return $attr->mtime;
# }
#
# if ( $attr-> mtime > $attr->ctime ) {
# return $attr->mtime;
# } else {
# return $attr->ctime;
# }
}
sub attr_atime ( $ ) {
return attr_index( $_[0], undef, 8);
# return $_[0]->atime;
}
sub attr_mtime_str ( $ ) {
my ($attr) = @_;
my ($mtime) = attr_mtime($attr);
if ( $mtime ) {
$mtime += 0;
use POSIX qw/strftime/;
return strftime( "%y/%m/%d %H:%M:%S", localtime($mtime));
# return "".localtime( $mtime );
} else {
return "[NO TIME INFO] ";
}
}
# 二つのattrで更新時刻を比較して、以下を返す
# 同じなら 0
# 第一引数の方が新しければ +1
# 第二引数の方が新しければ -1
# どちらかがundefならundef
sub newer ( $$ ) {
my ( $a_attr, $b_attr ) = @_;
# もしかしたら $a_attr eq "dir"の時は別の属性で比較するのかも。
if (! defined($a_attr) or !defined($b_attr) ) {
return undef;
}
if ( abs(attr_mtime($a_attr) - attr_mtime($b_attr)) < $OPTS{diffrelax} ) {
return 0;
} elsif ( attr_mtime($a_attr) - attr_mtime($b_attr) < 0 ) {
return -1;
} else {
return 1;
}
}
sub defined_newer ( $$ ) {
my ( $a_attr, $b_attr ) = @_;
if (! defined($a_attr) or !defined($b_attr) ) {
return -1;
}
if ( abs(attr_mtime($a_attr) - attr_mtime($b_attr)) < $OPTS{diffrelax} ) {
return 0;
} elsif ( attr_mtime($a_attr) - attr_mtime($b_attr) < 0 ) {
return -1;
} else {
return 1;
}
}
sub defined_older ( $$ ) {
my ( $a_attr, $b_attr ) = @_;
if (! defined($a_attr) and !defined($b_attr) ) {
return 0;
}
if (! defined($a_attr) ) {
return 1;
}
if (! defined($b_attr) ) {
return -1;
}
if ( abs(attr_mtime($a_attr) - attr_mtime($b_attr)) < $OPTS{diffrelax} ) {
return 0;
} elsif ( attr_mtime($a_attr) - attr_mtime($b_attr) < 0 ) {
return 1;
} else {
return -1;
}
}
sub choose_newer ( $$ ) {
#$!$!$! うまくアクセスできないと、 24/05/20 15:07:31 (= 1716185251 )になってしまい、新しく見えてしまう
#$!$!$! うまくアクセスできないと、 27/09/05 15:48:15 (= ???? )になってしまい、新しく見えてしまう
#$!$!$! 2015/09/18_17:38:26にperlを起動すると、27/09/05 10:04:40になってしまう。全てではない //fileserv-kawa7だけ //nas.kawasaki, //teamsite //ueda-pc2 は大丈夫。different typeが出るのも//fileserv-kawa7.ad. だけ。同じユーザーによる複数のユーザー名での接続もそこだけ。perlの起動時に何かしているかも知れない。
#$!$!$! 2015/09/18_17:48:26にperlを起動すると、27/09/05 10:04:40 スリープしたが関係ない
#$!$!$! nowより1年以上未来だったら信用しないとかquickfix してみるか
my ( $a_attr, $b_attr ) = @_;
if (! defined($a_attr) or attr_mtime($a_attr) > time() + 3600*24*365 ) {
return $b_attr;
}
if (! defined($b_attr) or attr_mtime($b_attr) > time() + 3600*24*365 ) {
return $a_attr;
}
if ( abs(attr_mtime($a_attr) - attr_mtime($b_attr)) < $OPTS{diffrelax} ) {
return $b_attr;
} elsif ( attr_mtime($a_attr) - attr_mtime($b_attr) < 0 ) {
return $b_attr;
} else {
return $a_attr;
}
}
sub newer_date ( $$ ) {
my ($file_attr, $day_limit) = @_;
if ( !defined($day_limit) ) {
return 1;
}
# $file_attr - 今日の日付 < $day_limit なら true
my $now = time();
my $today = (sprintf("%d", ($now /60/60/24 )) + 1) *60*60*24 -1 - 9*60*60; # 今日の 23:59 の時刻 (JST)
my $diff_time = $today - attr_mtime($file_attr);
# use DateTime;
# my $diff_time = DateTime->today()->epoch() - attr_mtime($file_attr);
my $diff_days = sprintf("%d", $diff_time / 60 / 60 / 24); # 今日できたばかりのファイルは 0
out_LOG $DEBUG, "newer_date %d<%d\n\t%s\n", $diff_days, $day_limit, attr_file($file_attr);
return ($diff_days < $day_limit);
}
###
### file/dir operation
###
sub updated_dir ( @ ) {
my ( $local, $remote ) = @_;
my $sync = {};
opts_overwrite( \%OPTS, $sync );
$sync->{local} = $local;
$sync->{remote} = $remote;
update_now($local, $sync);
}
sub copy_file ( $$$$$;$$ ) {
my ( $file, $src_attr, $dst, $dstdir, $day_limit, $dustbox, $last_files ) = @_;
if ( match_2( $file, $OPTS{except} ) ) {
return;
}
return if ( ! newer_date( $src_attr, $day_limit ) );
my ($src) = attr_file($src_attr);
my $is_dir = undef;
if (attr_type($src_attr) eq 'dir') {
$is_dir = 1;
}
use File::Basename;
my $srcdir = dirname($src);
my ($l, $r) = to_local_remote( $srcdir, $dstdir );
updated_dir( $l, $r );
# copy overwrite, copy timestamp (cp -p); or out_LOG if dryrun
if ( $OPTS{dryrun} ) {
out_LOG $INFO, "copy_file (dryrun) %s", from_to_string($src, $dst);
} else {
# tree にはない
# 上書きする前にバックアップを取る
if ( $is_dir and -e $dst ) {
out_LOG $ERROR, "Internal Error: copy_file try to copy to existing directory: %s", from_to_string($src, $dst);
return ;
}
# バックアップはコピーで取っているが、tmpファイルに転送が終わってから、バックアップへの移動とtmpファイルからの移動をした方が効率が良い
if (defined($dustbox) and -e $dst ) {
my ($dir_part) = dir_part($dst);
out_LOG $DEBUG, " copy_file backup %s\n", $dir_part;
cpto_dustbox( $dst, $dustbox);
}
out_LOG $INFO, "copy_file %-6s", from_to_string($src, $dst);
# tree にはない
if ( not $is_dir ) {
use File::Path qw(make_path);
make_path( $dstdir, {mode=>0777} );
}
if ($OPTS{log} ) {
# ' を含むファイル名は失敗する
my $dsttmp = sprintf("%s/.#%s", $dstdir, $file);
$src =~ s/'/'"'"'/g;
$dst =~ s/'/'"'"'/g;
$dsttmp =~ s/'/'"'"'/g;
# system("/bin/cp --preserve=timestamps,links '$src' '$dst' 2>&1 | /usr/bin/tee -a $OPTS{log}") == 0
# or die "copy_file failed: $src $dst: $!";
# exit status は tee のものになるので、cpに失敗してもdieできない。
$? = 0;
# tree の時は -r をつける
my $ropt = ( $is_dir ? " -r " : "" );
# my $msg = `/bin/cp --preserve=timestamps,links '$src' '$dst' 2>&1 `;
my $msg = `/bin/cp --force $ropt --preserve=timestamps,links '$src' '$dsttmp' </dev/null 2>&1 && /bin/mv --force '$dsttmp' '$dst' </dev/null 2>&1`;
my $status = $?;
# system("/bin/rm --force '$dsttmp' >/dev/null 2>&1");
print STDERR $msg;
print LOG $msg;
if ( $status ) {
die "copy_file failed: $src $dst: $!";
}
} else {
system("/bin/cp", "--preserve=timestamps,links", $src, $dst) == 0
or die "copy_file failed: $src $dst: $!";
}
$last_files->{$file} = $src_attr;
my ($dirpart) = dir_part($dst);
$last_files->{"/UPDATE_$dirpart"} = 1;
$last_files->{"/last_update"} = 1;
}
}
{
my $lasttime = 0;
my $lastcount = 0;