File: dirtyvcs

package info (click to toggle)
hobbit-plugins 20120532
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 312 kB
  • sloc: perl: 1,778; makefile: 64; sh: 24
file content (88 lines) | stat: -rwxr-xr-x 3,097 bytes parent folder | download
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
#!/usr/bin/perl -w

# Copyright (C) 2010-2012 Axel Beckert <abe@debian.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.

my $ext_vcs_config = "/etc/hobbit";
use strict;
use Hobbit qw(file_to_list_of_globs);

my $dirty_vcs_dirs_file = $ext_vcs_config."/dirty_vcs_dirs";
my @possible_repos = file_to_list_of_globs($dirty_vcs_dirs_file);

$ENV{'PATH'} = '/bin:/sbin:/usr/bin:/usr/sbin';
$ENV{'LC_ALL'} = 'C';
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};

my $bb = new Hobbit('dirtyvcs');

my $empty_re = qr/^\s*$/s;
my %vcs_to_dir = (
    'git' => { dir => '.git',
	       clean => qr/nothing to commit \(working directory clean\)/ },
    'bzr' => { dir => '.bzr',
	       clean => $empty_re },
    'hg'  => { dir => '.hg',
	       clean => $empty_re },
    'svn' => { dir => '.svn',
	       clean => $empty_re },
);

my $repos_found = 0;
foreach my $vcs (sort keys %vcs_to_dir) {
    my $vcs_avail = `/usr/bin/which $vcs`;
    chomp($vcs_avail);

    foreach my $path (sort @possible_repos) {
	foreach my $repo (sort grep { -d "$_/$vcs_to_dir{$vcs}{dir}" and
				     !-d "$_/../$vcs_to_dir{$vcs}{dir}" } glob("$path")) {
	    $repos_found++;
	    if ($vcs_avail) {
		chdir($repo);
		my $status = `$vcs status 2>&1`;
		if ($status =~ $vcs_to_dir{$vcs}{clean} and
		    $status =~ /warning|permission denied|fatal|abort|unable/i) {
		    $bb->color_line('yellow', "$repo ($vcs) is clean, but has warnings or errors:\n".
				    "<blockquote>$status</blockquote>");
		} elsif ($status =~ $vcs_to_dir{$vcs}{clean}) {
		    $bb->color_line('green', "$repo ($vcs) is clean".
				    ($vcs_to_dir{$vcs}{clean} eq $empty_re ?
				     ".\n" : ":\n<blockquote>$status</blockquote>"));
		} else {
		    $bb->color_line('yellow', "$repo ($vcs) is dirty:\n".
				    "<blockquote>$status</blockquote>");
		}
	    } else {
		$bb->color_line('yellow', "$repo ($vcs) exists, but $vcs seems not installed.\n");
	    }
	}
    }
}

if ($repos_found) {
    $bb->print("\n$repos_found VCS repositories found.");
} else {
    $bb->color_line('green', "No VCS repositories found.");
}

$bb->send;