diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-18 14:30:37 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-18 14:58:13 +0100 |
commit | eb976220e0d1fb156fe1e3e839a85c9ed78fea73 (patch) | |
tree | 00c2c88ddf34053129841ea8aac7f593102a7392 /solenv/bin/update_pch.sh | |
parent | a2279bb2f52ee5bbe8d38433aac55aa1a16661fb (diff) |
update update_pch.sh
Change-Id: I8353ab9808e5a496ec1b484ef7c80949534ab640
Diffstat (limited to 'solenv/bin/update_pch.sh')
-rwxr-xr-x | solenv/bin/update_pch.sh | 57 |
1 files changed, 44 insertions, 13 deletions
diff --git a/solenv/bin/update_pch.sh b/solenv/bin/update_pch.sh index 864d0df3bdcb..3756083a13ab 100755 --- a/solenv/bin/update_pch.sh +++ b/solenv/bin/update_pch.sh @@ -10,7 +10,7 @@ root=`dirname $0` root=`cd $root/../.. && pwd` -if test -z $1; then +if test -z "$1"; then headers=`ls $root/*/inc/pch/precompiled_*.hxx` else headers="$1" @@ -21,24 +21,32 @@ header=$x echo updating `echo $header | sed -e s%$root/%%` module=`echo $header | sed -e s%$root/%% -e s%/.*%%` name=`echo $header | sed -e s/.*precompiled_// -e s/\.hxx//` -makefile="$root/$module/Library_$name.mk" +makefile="Library_$name.mk" tmpfile=`mktemp` -cat "$makefile" | sed 's#\\$##' | \ +cat "$root/$module/$makefile" | sed 's#\\$##' | \ ( inobjects= + ifstack=0 while read line ; do if (test "$line" = "))") || (echo $line | grep -q ", "); then inobjects= elif echo $line | grep -q -e add_exception_objects -e add_noexception_objects -e add_cxxobject -e add_cxxobjects ; then inobjects=1 - elif test -n "$inobjects"; then + if test $ifstack -ne 0 ; then + echo Sources in a conditional, ignoring for now. >&2 + fi + elif echo $line | grep -q ^if ; then + ifstack=$((ifstack + 1)) + elif echo $line | grep -q ^endif ; then + ifstack=$((ifstack - 1)) + elif test -n "$inobjects" -a $ifstack -eq 0; then file=$line if ! test -f "$root/$file".cxx ; then - echo No file $file in makefile `echo $makefile | sed -e s%$root/%%` >&2 + echo No file $file in $module/$makefile >&2 else - cat "$root/$file".cxx | grep -e '^\s*#include' | sed 's/\(#include [<"][^<"]*[>"]\).*/\1/' | sed 's#\.\./##g#' >>$tmpfile + cat "$root/$file".cxx | grep -e '^\s*#include' | sed 's/\(#include [<"][^>"]*[>"]\).*/\1/' | sed 's#\.\./##g#' >>$tmpfile fi fi done @@ -56,24 +64,47 @@ cat >$header <<EOF EOF -localdir="`dirname $makefile`" +# Library_svx needs this (sendreportw32.cxx) +if test "$makefile" = Library_svx.mk ; then + cat >>$header <<EOF +#ifdef WNT +#define UNICODE +#define _UNICODE +#endif + +EOF +fi function local_file() ( file="$1" - find "$localdir" -type f | grep /"$file"'$' -q + echo "$file" | grep -q ^"$module"/ && exit 0 +# find "$root/$module" -type f | grep -v "$root/$module/inc/" | grep /"$file"'$' && exit 0 + find "$root/$module" -type f | grep /"$file"'$' -q && exit 0 + if echo "$file" | grep -F . -q; then + find "$root/$module" -type f | grep -q /`echo "$file" | sed 's/\.hxx$/.sdi/'` && exit 0 + fi + # not local + exit 1 ) -function skip_ignore() +function filter_ignore() ( - grep -v -F -e '#include "gperffasttoken.hxx"' +# - filter out all files that are not normal headers +# - gperffasttoken.hxx is not a problem header +# - sores.hxx provides BMP_PLUGIN, which is redefined +# - some sources play ugly #define tricks with editeng/eeitemid.hxx + grep -e '\.h[">]$' -e '\.hpp[">]$' -e '\.hdl[">]$' -e '\.hxx[">]$' -e '^[^\.]*>$' | \ + grep -v -F -e '#include "gperffasttoken.hxx"' | \ + grep -v -F -e '#include <svtools/sores.hxx>' | \ + grep -v -F -e '#include <editeng/eeitemid.hxx>' ) # " in #include "foo" breaks echo down below, so " -> @ -cat $tmpfile | sort -u | skip_ignore | sed 's/"/@/g' | \ +cat $tmpfile | sort -u | filter_ignore | sed 's/"/@/g' | \ ( while read line; do - file=`echo $line | sed 's/.*[<"@]\(.*\)[>"@].*/\1/'` + file=`echo $line | sed 's/.*[<"@]\([^>"@]*\)[>"@].*/\1/'` if ! local_file "$file"; then echo $line | sed 's/@/"/g' >>$header fi @@ -85,8 +116,8 @@ cat >>$header <<EOF /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ EOF - rm $tmpfile done + #echo Done. exit 0 |