-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmr
executable file
·1847 lines (1540 loc) · 45.5 KB
/
mr
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
#!/usr/bin/perl
=head1 NAME
mr - a Multiple Repository management tool
=head1 SYNOPSIS
B<mr> [options] checkout
B<mr> [options] update
B<mr> [options] status
B<mr> [options] commit [-m "message"]
B<mr> [options] record [-m "message"]
B<mr> [options] push
B<mr> [options] diff
B<mr> [options] log
B<mr> [options] run command [param ...]
B<mr> [options] bootstrap url [directory]
B<mr> [options] register [repository]
B<mr> [options] config section ["parameter=[value]" ...]
B<mr> [options] action [params ...]
B<mr> [options] [online|offline]
B<mr> [options] remember action [params ...]
=head1 DESCRIPTION
B<mr> is a Multiple Repository management tool. It can checkout, update, or
perform other actions on a set of repositories as if they were one combined
repository. It supports any combination of subversion, git, cvs, mercurial,
bzr, darcs and fossil repositories, and support for other revision
control systems can easily be added.
B<mr> cds into and operates on all registered repositories at or below your
working directory. Or, if you are in a subdirectory of a repository that
contains no other registered repositories, it will stay in that directory,
and work on only that repository,
B<mr> is configured by .mrconfig files, which list the repositories. It
starts by reading the .mrconfig file in your home directory, and this can
in turn chain load .mrconfig files from repositories. It also automatically
looks for a .mrconfig file in the current directory, or in one of its
parent directories.
These predefined commands should be fairly familiar to users of any revision
control system:
=over 4
=item checkout (or co)
Checks out any repositories that are not already checked out.
=item update
Updates each repository from its configured remote repository.
If a repository isn't checked out yet, it will first check it out.
=item status
Displays a status report for each repository, showing what
uncommitted changes are present in the repository.
=item commit (or ci)
Commits changes to each repository. (By default, changes are pushed to the
remote repository too, when using distributed systems like git. If you
don't like this default, you can change it in your .mrconfig, or use record
instead.)
The optional -m parameter allows specifying a commit message.
=item record
Records changes to the local repository, but does not push them to the
remote repository. Only supported for distributed revision control systems.
The optional -m parameter allows specifying a commit message.
=item push
Pushes committed local changes to the remote repository. A no-op for
centralized revision control systems.
=item diff
Show a diff of uncommitted changes.
=item log
Show the commit log.
=item run command [param ...]
Runs the specified command in each repository.
=back
These commands are also available:
=over 4
=item bootstrap url [directory]
Causes mr to download the url, and use it as a .mrconfig file
to checkout the repositories listed in it, into the specified directory.
The directory will be created if it does not exist. If no directory is
specified, the current directory will be used.
If the .mrconfig file includes a repository named ".", that
is checked out into the top of the specified directory.
=item list (or ls)
List the repositories that mr will act on.
=item register
Register an existing repository in a mrconfig file. By default, the
repository in the current directory is registered, or you can specify a
directory to register.
The mrconfig file that is modified is chosen by either the -c option, or by
looking for the closest known one at or in a parent of the current directory.
=item config
Adds, modifies, removes, or prints a value from a mrconfig file. The next
parameter is the name of the section the value is in. To add or modify
values, use one or more instances of "parameter=value". Use "parameter=" to
remove a parameter. Use just "parameter" to get the value of a parameter.
For example, to add (or edit) a repository in src/foo:
mr config src/foo checkout="svn co svn://example.com/foo/trunk foo"
To show the command that mr uses to update the repository in src/foo:
mr config src/foo update
To see the built-in library of shell functions contained in mr:
mr config DEFAULT lib
The mrconfig file that is used is chosen by either the -c option, or by
looking for the closest known one at or in a parent of the current directory.
=item offline
Advises mr that it is in offline mode. Any commands that fail in
offline mode will be remembered, and retried when mr is told it's online.
=item online
Advices mr that it is in online mode again. Commands that failed while in
offline mode will be re-run.
=item remember
Remember a command, to be run later when mr re-enters online mode. This
implicitly puts mr into offline mode. The command can be any regular mr
command. This is useful when you know that a command will fail due to being
offline, and so don't want to run it right now at all, but just remember
to run it when you go back online.
=item help
Displays this help.
=back
Actions can be abbreviated to any unambiguous substring, so
"mr st" is equivalent to "mr status", and "mr up" is equivalent to "mr
update"
Additional parameters can be passed to most commands, and are passed on
unchanged to the underlying revision control system. This is mostly useful
if the repositories mr will act on all use the same revision control
system.
=head1 OPTIONS
=over 4
=item -d directory
=item --directory directory
Specifies the topmost directory that B<mr> should work in. The default is
the current working directory.
=item -c mrconfig
=item --config mrconfig
Use the specified mrconfig file. The default is to use both B<~/.mrconfig>
as well as look for a .mrconfig file in the current directory, or in one
of its parent directories.
=item -v
=item --verbose
Be verbose.
=item -q
=item --quiet
Be quiet. This supresses mr's usual output, as well as any output from
commands that are run (including stderr output). If a command fails,
the output will be shown.
=item -k
=item --insecure
Accept untrusted SSL certificates when bootstrapping.
=item -s
=item --stats
Expand the statistics line displayed at the end to include information
about exactly which repositories failed and were skipped, if any.
=item -i
=item --interactive
Interactive mode. If a repository fails to be processed, a subshell will be
started which you can use to resolve or investigate the problem. Exit the
subshell to continue the mr run.
=item -n [number]
=item --no-recurse [number]
If no number if specified, just operate on the repository for the current
directory, do not recurse into deeper repositories.
If a number is specified, will recurse into repositories at most that many
subdirectories deep. For example, with -n 2 it would recurse into ./src/foo,
but not ./src/packages/bar.
=item -j [number]
=item --jobs [number]
Run the specified number of jobs in parallel, or an unlimited number of jobs
with no number specified. This can greatly speed up operations such as updates.
It is not recommended for interactive operations.
Note that running more than 10 jobs at a time is likely to run afoul of
ssh connection limits. Running between 3 and 5 jobs at a time will yield
a good speedup in updates without loading the machine too much.
=item -t
=item --trust-all
Trust all mrconfig files even if they are not listed in ~/.mrtrust.
Use with caution.
=item -p
=item --path
This obsolete flag is ignored.
=back
=head1 MRCONFIG FILES
Here is an example .mrconfig file:
[src]
checkout = svn co svn://svn.example.com/src/trunk src
chain = true
[src/linux-2.6]
checkout = git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git &&
cd linux-2.6 &&
git checkout -b mybranch origin/master
The .mrconfig file uses a variant of the INI file format. Lines starting with
"#" are comments. Values can be continued to the following line by
indenting the line with whitespace.
The "DEFAULT" section allows setting default values for the sections that
come after it.
The "ALIAS" section allows adding aliases for actions. Each parameter
is an alias, and its value is the action to use.
All other sections add repositories. The section header specifies the
directory where the repository is located. This is relative to the directory
that contains the mrconfig file, but you can also choose to use absolute
paths. (Note that you can use environment variables in section names; they
will be passed through the shell for expansion. For example,
"[$HOSTNAME]", or "[${HOSTNAME}foo]")
Within a section, each parameter defines a shell command to run to handle a
given action. mr contains default handlers for "update", "status",
"commit", and other standard actions. Normally you only need to specify what
to do for "checkout".
Note that these shell commands are run in a "set -e" shell
environment, where any additional parameters you pass are available in
"$@". The "checkout" command is run in the parent of the repository
directory, since the repository isn't checked out yet. All other commands
are run inside the repository, though not necessarily at the top of it.
The "MR_REPO" environment variable is set to the path to the top of the
repository. (For the "register" action, "MR_REPO" is instead set to the
basename of the directory that should be created when checking the
repository out.)
The "MR_CONFIG" environment variable is set to the .mrconfig file
that defines the repo being acted on, or, if the repo is not yet in a config
file, the .mrconfig file that should be modified to register the repo.
A few parameters have special meanings:
=over 4
=item skip
If the "skip" parameter is set and its command returns true, then B<mr>
will skip acting on that repository. The command is passed the action
name in $1.
Here are two examples. The first skips the repo unless
mr is run by joey. The second uses the hours_since function
(included in mr's built-in library) to skip updating the repo unless it's
been at least 12 hours since the last update.
skip = test `whoami` != joey
skip = [ "$1" = update ] && ! hours_since "$1" 12
=item order
The "order" parameter can be used to override the default ordering of
repositories. The default order value is 10. Use smaller values to make
repositories be processed earlier, and larger values to make repositories
be processed later.
Note that if a repository is located in a subdirectory of another
repository, ordering it to be processed earlier is not recommended.
=item chain
If the "chain" parameter is set and its command returns true, then B<mr>
will try to load a .mrconfig file from the root of the repository.
=item include
If the "include" parameter is set, its command is ran, and should output
additional mrconfig file content. The content is included as if it were
part of the including file.
Unlike all other parameters, this parameter does not need to be placed
within a section.
=item lib
The "lib" parameter can specify some shell code that will be run before each
command, this can be a useful way to define shell functions for other commands
to use.
=item fixups
If the "fixups" parameter is set, its command is run whenever a repository
is checked out, or updated. This provides an easy way to do things
like permissions fixups, or other tweaks to the repository content,
whenever the repository is changed.
=item pre_ and post_
If a "pre_action" parameter is set, its command is run before mr performs the
specified action. Similarly, "post_action" parameters are run after mr
successfully performs the specified action. For example, "pre_commit" is
run before committing; "post_update" is run after updating.
=back
When looking for a command to run for a given action, mr first looks for
a parameter with the same name as the action. If that is not found, it
looks for a parameter named "rcs_action" (substituting in the name of the
revision control system and the action). The name of the revision control
system is itself determined by running each defined "rcs_test" action,
until one succeeds.
Internally, mr has settings for "git_update", "svn_update", etc. To change
the action that is performed for a given revision control system, you can
override these rcs specific actions. To add a new revision control system,
you can just add rcs specific actions for it.
=head1 UNTRUSTED MRCONFIG FILES
Since mrconfig files can contain arbitrary shell commands, they can do
anything. This flexibility is good, but it also allows a malicious mrconfig
file to delete your whole home directory. Such a file might be contained
inside a repository that your main ~/.mrconfig checks out. To
avoid worries about evil commands in a mrconfig file, mr defaults to
reading all mrconfig files other than the main ~/.mrconfig in untrusted
mode. In untrusted mode, mrconfig files are limited to running only known
safe commands (like "git clone") in a carefully checked manner.
To configure mr to trust other mrconfig files, list them in ~/.mrtrust.
One mrconfig file should be listed per line. Either the full pathname
should be listed, or the pathname can start with "~/" to specify a file
relative to your home directory.
=head1 OFFLINE LOG FILE
The ~/.mrlog file contains commands that mr has remembered to run later,
due to being offline. You can delete or edit this file to remove commands,
or even to add other commands for 'mr online' to run. If the file is
present, mr assumes it is in offline mode.
=head1 EXTENSIONS
mr can be extended to support things such as unison and git-svn. Some
files providing such extensions are available in /usr/share/mr/. See
the documentation in the files for details about using them.
=head1 EXIT STATUS
mr returns nonzero if a command failed in any of the repositories.
=head1 AUTHOR
Copyright 2007-2011 Joey Hess <joey@kitenet.net>
Licensed under the GNU GPL version 2 or higher.
http://kitenet.net/~joey/code/mr/
=cut
use warnings;
use strict;
use Getopt::Long;
use Cwd qw(getcwd abs_path);
# things that can happen when mr runs a command
use constant {
OK => 0,
FAILED => 1,
SKIPPED => 2,
ABORT => 3,
};
# configurables
my $config_overridden=0;
my $verbose=0;
my $quiet=0;
my $stats=0;
my $insecure=0;
my $interactive=0;
my $max_depth;
my $no_chdir=0;
my $jobs=1;
my $trust_all=0;
my $directory=getcwd();
$ENV{MR_CONFIG}=find_mrconfig();
# globals :-(
my %config;
my %configfiles;
my %knownactions;
my %alias;
my (@ok, @failed, @skipped);
main();
my %rcs;
sub rcs_test {
my ($action, $dir, $topdir, $subdir) = @_;
if (exists $rcs{$dir}) {
return $rcs{$dir};
}
my $test="set -e\n";
foreach my $rcs_test (
sort {
length $a <=> length $b
||
$a cmp $b
} grep { /_test$/ } keys %{$config{$topdir}{$subdir}}) {
my ($rcs)=$rcs_test=~/(.*)_test/;
$test="my_$rcs_test() {\n$config{$topdir}{$subdir}{$rcs_test}\n}\n".$test;
$test.="if my_$rcs_test; then echo $rcs; fi\n";
}
$test=$config{$topdir}{$subdir}{lib}."\n".$test
if exists $config{$topdir}{$subdir}{lib};
print "mr $action: running rcs test >>$test<<\n" if $verbose;
my $rcs=`$test`;
chomp $rcs;
if ($rcs=~/\n/s) {
$rcs=~s/\n/, /g;
print STDERR "mr $action: found multiple possible repository types ($rcs) for ".fulldir($topdir, $subdir)."\n";
return undef;
}
if (! length $rcs) {
return $rcs{$dir}=undef;
}
else {
return $rcs{$dir}=$rcs;
}
}
sub findcommand {
my ($action, $dir, $topdir, $subdir, $is_checkout) = @_;
if (exists $config{$topdir}{$subdir}{$action}) {
return $config{$topdir}{$subdir}{$action};
}
if ($is_checkout) {
return undef;
}
my $rcs=rcs_test(@_);
if (defined $rcs &&
exists $config{$topdir}{$subdir}{$rcs."_".$action}) {
return $config{$topdir}{$subdir}{$rcs."_".$action};
}
else {
return undef;
}
}
sub fulldir {
my ($topdir, $subdir) = @_;
return $subdir =~ /^\// ? $subdir : $topdir.$subdir;
}
sub action {
my ($action, $dir, $topdir, $subdir, $force_checkout) = @_;
my $fulldir=fulldir($topdir, $subdir);
$ENV{MR_CONFIG}=$configfiles{$topdir};
my $lib=exists $config{$topdir}{$subdir}{lib} ?
$config{$topdir}{$subdir}{lib}."\n" : "";
my $is_checkout=($action eq 'checkout');
my $is_update=($action =~ /update/);
$ENV{MR_REPO}=$dir;
if ($is_checkout) {
if (! $force_checkout) {
if (-d $dir) {
print "mr $action: $dir already exists, skipping checkout\n" if $verbose;
return SKIPPED;
}
$dir=~s/^(.*)\/[^\/]+\/?$/$1/;
}
}
elsif ($is_update) {
if (! -d $dir) {
return action("checkout", $dir, $topdir, $subdir);
}
}
my $skiptest=findcommand("skip", $dir, $topdir, $subdir, $is_checkout);
my $command=findcommand($action, $dir, $topdir, $subdir, $is_checkout);
if (defined $skiptest) {
my $test="set -e;".$lib.
"my_action(){ $skiptest\n }; my_action '$action'";
print "mr $action: running skip test >>$test<<\n" if $verbose;
my $ret=system($test);
if ($ret != 0) {
if (($? & 127) == 2) {
print STDERR "mr $action: interrupted\n";
return ABORT;
}
elsif ($? & 127) {
print STDERR "mr $action: skip test received signal ".($? & 127)."\n";
return ABORT;
}
}
if ($ret >> 8 == 0) {
print "mr $action: $dir skipped per config file\n" if $verbose;
return SKIPPED;
}
}
if ($is_checkout && ! -d $dir) {
print "mr $action: creating parent directory $dir\n" if $verbose;
system("mkdir", "-p", $dir);
}
if (! $no_chdir && ! chdir($dir)) {
print STDERR "mr $action: failed to chdir to $dir: $!\n";
return FAILED;
}
elsif (! defined $command) {
my $rcs=rcs_test(@_);
if (! defined $rcs) {
print STDERR "mr $action: unknown repository type and no defined $action command for $fulldir\n";
return FAILED;
}
else {
print STDERR "mr $action: no defined action for $rcs repository $fulldir, skipping\n";
return SKIPPED;
}
}
else {
my $actionmsg;
if (! $no_chdir) {
$actionmsg="mr $action: $fulldir";
}
else {
my $s=$directory;
$s=~s/^\Q$fulldir\E\/?//;
$actionmsg="mr $action: $fulldir (in subdir $s)";
}
print "$actionmsg\n" unless $quiet;
my $hookret=hook("pre_$action", $topdir, $subdir);
return $hookret if $hookret != OK;
$command="set -e; ".$lib.
"my_action(){ $command\n }; my_action ".
join(" ", map { s/\\/\\\\/g; s/"/\"/g; '"'.$_.'"' } @ARGV);
print "mr $action: running >>$command<<\n" if $verbose;
my $ret;
if ($quiet) {
my $output = qx/$command 2>&1/;
$ret = $?;
if ($ret != 0) {
print "$actionmsg\n";
print STDERR $output;
}
}
else {
$ret=system($command);
}
if ($ret != 0) {
if (($? & 127) == 2) {
print STDERR "mr $action: interrupted\n";
return ABORT;
}
elsif ($? & 127) {
print STDERR "mr $action: received signal ".($? & 127)."\n";
return ABORT;
}
print STDERR "mr $action: failed ($ret)\n" if $verbose;
if ($ret >> 8 != 0) {
print STDERR "mr $action: command failed\n";
if (-e "$ENV{HOME}/.mrlog" && $action ne 'remember') {
# recreate original command line to
# remember, and avoid recursing
my @orig=@ARGV;
@ARGV=('-n', $action, @orig);
action("remember", $dir, $topdir, $subdir);
@ARGV=@orig;
}
}
elsif ($ret != 0) {
print STDERR "mr $action: command died ($ret)\n";
}
return FAILED;
}
else {
if ($is_checkout && ! -d $dir) {
print STDERR "mr $action: $dir missing after checkout\n";;
return FAILED;
}
my $ret=hook("post_$action", $topdir, $subdir);
return $ret if $ret != OK;
if (($is_checkout || $is_update)) {
my $ret=hook("fixups", $topdir, $subdir);
return $ret if $ret != OK;
}
return OK;
}
}
}
sub hook {
my ($hook, $topdir, $subdir) = @_;
my $command=$config{$topdir}{$subdir}{$hook};
return OK unless defined $command;
my $lib=exists $config{$topdir}{$subdir}{lib} ?
$config{$topdir}{$subdir}{lib}."\n" : "";
my $shell="set -e;".$lib.
"my_hook(){ $command\n }; my_hook";
print "mr $hook: running >>$shell<<\n" if $verbose;
my $ret;
if ($quiet) {
my $output = qx/$shell 2>&1/;
$ret = $?;
if ($ret != 0) {
print STDERR $output;
}
}
else {
$ret=system($shell);
}
if ($ret != 0) {
if (($? & 127) == 2) {
print STDERR "mr $hook: interrupted\n";
return ABORT;
}
elsif ($? & 127) {
print STDERR "mr $hook: received signal ".($? & 127)."\n";
return ABORT;
}
}
return OK;
}
# run actions on multiple repos, in parallel
sub mrs {
my $action=shift;
my @repos=@_;
$| = 1;
my @active;
my @fhs;
my @out;
my $running=0;
while (@fhs or @repos) {
while ((!$jobs || $running < $jobs) && @repos) {
$running++;
my $repo = shift @repos;
pipe(my $outfh, CHILD_STDOUT);
pipe(my $errfh, CHILD_STDERR);
my $pid;
unless ($pid = fork) {
die "mr $action: cannot fork: $!" unless defined $pid;
open(STDOUT, ">&CHILD_STDOUT") || die "mr $action cannot reopen stdout: $!";
open(STDERR, ">&CHILD_STDERR") || die "mr $action cannot reopen stderr: $!";
close CHILD_STDOUT;
close CHILD_STDERR;
close $outfh;
close $errfh;
exit action($action, @$repo);
}
close CHILD_STDOUT;
close CHILD_STDERR;
push @active, [$pid, $repo];
push @fhs, [$outfh, $errfh];
push @out, ['', ''];
}
my ($rin, $rout) = ('','');
my $nfound;
foreach my $fh (@fhs) {
next unless defined $fh;
vec($rin, fileno($fh->[0]), 1) = 1 if defined $fh->[0];
vec($rin, fileno($fh->[1]), 1) = 1 if defined $fh->[1];
}
$nfound = select($rout=$rin, undef, undef, 1);
foreach my $channel (0, 1) {
foreach my $i (0..$#fhs) {
next unless defined $fhs[$i];
my $fh = $fhs[$i][$channel];
next unless defined $fh;
if (vec($rout, fileno($fh), 1) == 1) {
my $r = '';
if (sysread($fh, $r, 1024) == 0) {
close($fh);
$fhs[$i][$channel] = undef;
if (! defined $fhs[$i][0] &&
! defined $fhs[$i][1]) {
waitpid($active[$i][0], 0);
print STDOUT $out[$i][0];
print STDERR $out[$i][1];
record($active[$i][1], $? >> 8);
splice(@fhs, $i, 1);
splice(@active, $i, 1);
splice(@out, $i, 1);
$running--;
}
}
$out[$i][$channel] .= $r;
}
}
}
}
}
sub record {
my $dir=shift()->[0];
my $ret=shift;
if ($ret == OK) {
push @ok, $dir;
print "\n" unless $quiet;
}
elsif ($ret == FAILED) {
if ($interactive) {
chdir($dir) unless $no_chdir;
print STDERR "mr: Starting interactive shell. Exit shell to continue.\n";
system((getpwuid($<))[8], "-i");
}
push @failed, $dir;
print "\n" unless $quiet;
}
elsif ($ret == SKIPPED) {
push @skipped, $dir;
}
elsif ($ret == ABORT) {
exit 1;
}
else {
die "unknown exit status $ret";
}
}
sub showstats {
my $action=shift;
if (! @ok && ! @failed && ! @skipped) {
die "mr $action: no repositories found to work on\n";
}
print "mr $action: finished (".join("; ",
showstat($#ok+1, "ok", "ok"),
showstat($#failed+1, "failed", "failed"),
showstat($#skipped+1, "skipped", "skipped"),
).")\n" unless $quiet;
if ($stats) {
if (@skipped) {
print "mr $action: (skipped: ".join(" ", @skipped).")\n" unless $quiet;
}
if (@failed) {
print STDERR "mr $action: (failed: ".join(" ", @failed).")\n";
}
}
}
sub showstat {
my $count=shift;
my $singular=shift;
my $plural=shift;
if ($count) {
return "$count ".($count > 1 ? $plural : $singular);
}
return;
}
# an ordered list of repos
sub repolist {
my @list;
foreach my $topdir (sort keys %config) {
foreach my $subdir (sort keys %{$config{$topdir}}) {
push @list, {
topdir => $topdir,
subdir => $subdir,
order => $config{$topdir}{$subdir}{order},
};
}
}
return sort {
$a->{order} <=> $b->{order}
||
$a->{topdir} cmp $b->{topdir}
||
$a->{subdir} cmp $b->{subdir}
} @list;
}
sub repodir {
my $repo=shift;
my $topdir=$repo->{topdir};
my $subdir=$repo->{subdir};
my $ret=($subdir =~/^\//) ? $subdir : $topdir.$subdir;
$ret=~s/\/\.$//;
return $ret;
}
# figure out which repos to act on
sub selectrepos {
my @repos;
foreach my $repo (repolist()) {
my $topdir=$repo->{topdir};
my $subdir=$repo->{subdir};
next if $subdir eq 'DEFAULT';
my $dir=repodir($repo);
my $d=$directory;
$dir.="/" unless $dir=~/\/$/;
$d.="/" unless $d=~/\/$/;
next if $dir ne $d && $dir !~ /^\Q$d\E/;
if (defined $max_depth) {
my @a=split('/', $dir);
my @b=split('/', $d);
do { } while (@a && @b && shift(@a) eq shift(@b));
next if @a > $max_depth || @b > $max_depth;
}
push @repos, [$dir, $topdir, $subdir];
}
if (! @repos) {
# fallback to find a leaf repo
foreach my $repo (reverse repolist()) {
my $topdir=$repo->{topdir};
my $subdir=$repo->{subdir};
next if $subdir eq 'DEFAULT';
my $dir=repodir($repo);
my $d=$directory;
$dir.="/" unless $dir=~/\/$/;
$d.="/" unless $d=~/\/$/;
if ($d=~/^\Q$dir\E/) {
push @repos, [$dir, $topdir, $subdir];
last;
}
}
$no_chdir=1;
}
return @repos;
}
sub expandenv {
my $val=shift;
if ($val=~/\$/) {
$val=`echo "$val"`;
chomp $val;
}
return $val;
}
my %trusted;
sub is_trusted_config {
my $config=shift; # must be abs_pathed already
# We always trust ~/.mrconfig.
return 1 if $config eq abs_path("$ENV{HOME}/.mrconfig");
return 1 if $trust_all;
my $trustfile=$ENV{HOME}."/.mrtrust";
if (! %trusted) {
$trusted{"$ENV{HOME}/.mrconfig"}=1;
if (open (TRUST, "<", $trustfile)) {
while (<TRUST>) {
chomp;
s/^~\//$ENV{HOME}\//;
$trusted{abs_path($_)}=1;
}
close TRUST;
}
}
return $trusted{$config};
}
sub is_trusted_repo {
my $repo=shift;
# Tightly limit what is allowed in a repo name.
# No ../, no absolute paths, and no unusual filenames
# that might try to escape to the shell.
return $repo =~ /^[-_.+\/A-Za-z0-9]+$/ &&
$repo !~ /\.\./ && $repo !~ /^\//;
}
sub is_trusted_checkout {
my $command=shift;
# To determine if the command is safe, compare it with the
# *_trusted_checkout config settings. Those settings are
# templates for allowed commands, so make sure that each word
# of the command matches the corresponding word of the template.
my @words;
foreach my $word (split(' ', $command)) {