浏览代码

Added shell script and simple python script to run continuously

bmallred 11 年之前
父节点
当前提交
71c6b3b6b2
共有 2 个文件被更改,包括 81 次插入0 次删除
  1. 21 0
      check-incoming.py
  2. 60 0
      check-incoming.sh

+ 21 - 0
check-incoming.py

@ -0,0 +1,21 @@
1
#!/usr/bin/env python
2
3
import time
4
import subprocess
5
6
class Job:
7
    def __init__(self, job):
8
        # Initialize something
9
        self.job = job 
10
11
    def run(self):
12
        while True:
13
            self.execute()
14
            time.sleep(60 * 15)
15
16
    def execute(self):
17
        subprocess.call(self.job, shell=False)
18
19
if __name__ == "__main__":
20
    job = Job("./check-incoming.sh")
21
    job.run()

+ 60 - 0
check-incoming.sh

@ -0,0 +1,60 @@
1
#!/usr/bin/zsh
2
3
# Setup our variables.
4
pwd=$( pwd )
5
home=$( getent passwd "$USER" | cut -d: -f6 )
6
message=""
7
8
# Search for Git repositories.
9
for repository in $( find $home -name ".git" | awk -F "/.git" '{print$1}' | awk -F "$home/" '{print$2}' )
10
do
11
    cd $home/$repository
12
    
13
    if [ $( git remote | wc -l ) -gt 0 ]
14
    then
15
        count=$( git remote update -p > /dev/null; git log ..@{u} 2> /dev/null | grep -c ^commit )
16
        if [ $count -gt 0 ]
17
        then
18
            message="$message($count) $repository\n"
19
        fi
20
    fi
21
done
22
23
# Search for Mercurial repositories.
24
for repository in $( find $home -name ".hg" | awk -F "/.hg" '{print$1}' | awk -F "$home/" '{print$2}' )
25
do
26
    cd $home/$repository
27
28
    if [ $( hg paths 2> /dev/null | wc -l ) -gt 0 ]
29
    then
30
        count=$( hg incoming 2> /dev/null | grep -c ^changeset )
31
        if [ $count -gt 0 ]
32
        then
33
            message="$message($count) $repository\n"
34
        fi
35
    fi
36
done
37
38
# Search for Bazaar repositories.
39
for repository in $( find $home -name ".bzr" | awk -F "/.bzr" '{print$1}' | awk -F "$home/" '{print$2}' )
40
do
41
    cd $home/$repository
42
43
    if [ $( bzr missing 2> /dev/null | wc -l ) -gt 0 ]
44
    then
45
        count=$( bzr missing 2> /dev/null | grep -c ^revno )
46
        if [ $count -gt 0 ]
47
        then
48
            message="$message($count) $repository\n"
49
        fi
50
    fi
51
done
52
53
# Return to the original working directory.
54
cd $pwd 
55
56
if [ $( echo "$message" | wc -c ) -gt 1 ]
57
then
58
    # Send notification display.
59
    notify-send -u low "Incoming Changesets" "$message"
60
fi