]> git.donarmstrong.com Git - bin.git/blob - sa
update sa and add simple_ssl
[bin.git] / sa
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 use Getopt::Long;
7 use Pod::Usage;
8
9 =head1 NAME
10
11 sa - sync all
12
13 =head1 SYNOPSIS
14
15 sa [options] [status|update|checkout] [directories to sync]
16
17  Options:
18   --quick, -Q don't update external projects
19   --quiet, -q be quiet
20   --debug, -d debugging level (Default 0)
21   --help, -h display this help
22   --man, -m display manual
23
24 =head1 OPTIONS
25
26 =over
27
28 =item B<--debug, -d>
29
30 Debug verbosity. (Default 0)
31
32 =item B<--help, -h>
33
34 Display brief useage information.
35
36 =item B<--man, -m>
37
38 Display this manual.
39
40 =back
41
42 =head1 EXAMPLES
43
44 =cut
45
46
47
48 use User;
49 use IO::File;
50 use vars qw($DEBUG);
51
52 my %options = (quick           => 1,
53                quiet           => 1,
54                debug           => 0,
55                help            => 0,
56                man             => 0,
57               );
58
59 GetOptions(\%options,'quick|Q+','quiet|q!','debug|d+','help|h|?','man|m');
60
61 pod2usage() if $options{help};
62 pod2usage({verbose=>2}) if $options{man};
63
64 # parse configuration file
65
66 =head1 CONFIGURATION
67
68 Reads configuration information from Start by parsing /etc/sa.conf,
69 then ~/.sarc then ~/.sarc_$hostname, then ~/.sarc_local
70
71 The configuration file contains a list of svn repositories which
72 should be queried; each line can contain a tab, which indicates that
73 the command following the tab should be run fater the svn directory is
74 updated.
75
76 The configuration files are read in the order given above.
77
78 =cut
79
80 sub parse_config_file {
81      my ($repos,$filename,$home) = @_;
82      return unless -e $filename and -r _;
83      my $fh = new IO::File $filename, 'r' or die "Unable to read configuration file $filename $!";
84      while (<$fh>) {
85           chomp;
86           next if /^#/;
87           my ($repo,$command) = split /\t/,$_,2;
88           $repo =~ s/^\~/$home/;
89           $command =~ s/^\~/$home/ if defined $command;
90           $$repos{$repo} = $command;
91      }
92 }
93
94
95 my $HOME=User->Home;
96 my $HOSTNAME=qx(hostname);
97 $HOSTNAME=~s/\n//g;
98 my $CAN_IGNORE_EXTERNALS = 0;
99 qx(svn --version) =~ /\(r(\d+)\)/;
100 if ($1 > 13838) {
101      $CAN_IGNORE_EXTERNALS = 1;
102 }
103
104 my %repos;
105 for ('/etc/sa.conf', "${HOME}/.sarc", "${HOME}/.sarc_${HOSTNAME}", "${HOME}/.sarc_local") {
106      if (-e $_) {
107           parse_config_file(\%repos,$_,$HOME);
108      }
109 }
110
111 $DEBUG = $options{debug};
112
113 my $command;
114
115 if (@ARGV and $ARGV[0] =~ /^(st(?:atus)?|up(?:date)?|checkout)$/) {
116      $command = $ARGV[0];
117 }
118 else {
119      $command = 'status';
120 }
121
122 while (my ($repo,$run_after) = each(%repos)) {
123      if (-e "$repo/.svn") {
124           print "Checking [$repo]\n";
125           system('svn',
126                  $command,
127                  $options{quiet}?'-q':(),
128                  ($options{quick} and $CAN_IGNORE_EXTERNALS)?'--ignore-externals':(),
129                  $options{quick}>1?'-N':(),
130                  $repo,
131                 );
132      }
133      if ($command =~ /^up(?:date)|checkout$/) {
134           system($run_after,$repo) if defined $run_after and length $run_after;
135      }
136 }