Mercurial > pidgin
comparison fix-casts.sh @ 25835:b5385e13e32e
propagate from branch 'im.pidgin.pidgin' (head 42f888b4f8e15a19002abe6f40a5d89117ee59a7)
to branch 'im.pidgin.pidgin.next.minor' (head 7345d432974a072f33266e60156f16fb2c74261b)
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Fri, 14 Nov 2008 06:52:15 +0000 |
parents | c3ca613ab550 |
children |
comparison
equal
deleted
inserted
replaced
24426:f9503aa61fb4 | 25835:b5385e13e32e |
---|---|
1 #!/bin/sh | |
2 | |
3 if [ $# -eq 0 ]; then | |
4 echo "Usage: `basename "$0"` PurpleFoo..." | |
5 echo | |
6 echo "This script searches the *current working directory* and replaces casts" | |
7 echo "with GObject-style type checking and casting macros." | |
8 echo 'For example, "(PurpleBuddy *)b" becomes "PURPLE_BUDDY(b)".' | |
9 exit 0 | |
10 fi | |
11 | |
12 for struct in $* ; do | |
13 cast=`echo $struct | sed "s|[A-Z]|_\0|g" | tr "a-z" "A-Z" | sed "s|^_||"` | |
14 for file in `grep -rl "([[:space:]]*$struct[[:space:]]*\*[[:space:]]*)" . --include=*.c --exclude=purple-client-bindings.c` ; do | |
15 sed -i "s|([[:space:]]*$struct[[:space:]]*\*[[:space:]]*)[[:space:]]*(|$cast(|g" $file | |
16 sed -i "s|([[:space:]]*$struct[[:space:]]*\*[[:space:]]*)[[:space:]]*\([^(][^,);]*\)|$cast(\1)|g" $file | |
17 done | |
18 done |