rice@google.com | fb6847e | 2010-10-08 14:35:39 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | set noglob |
| 3 | |
| 4 | OUTFILE=packages.properties |
| 5 | TMPFILE=/tmp/gwt-javadoc-packages$$ |
| 6 | |
| 7 | # Regex patterns to exclude from the list of packages |
| 8 | EXCLUSIONS="\ |
| 9 | ^com\.example\.|\ |
| 10 | ^com\.google\.gwt\.dev(\.|$)|\ |
| 11 | ^com\.google\.gwt\.emul\.|\ |
| 12 | ^com\.google\.gwt\.examples(\.|$)|\ |
| 13 | ^com\.google\.gwt\.i18n\.server(\.|$)|\ |
| 14 | ^com\.google\.gwt\.i18n\.tools|\ |
| 15 | ^com\.google\.gwt\.lang|\ |
| 16 | ^com\.google\.gwt\.junit(\.|$)|\ |
| 17 | ^com\.google\.gwt\.resources\.css(\.|$)|\ |
| 18 | ^com\.google\.gwt\.resources\.rg(\.|$)|\ |
| 19 | ^com\.google\.gwt\.rpc\.client\.ast(\.|$)|\ |
| 20 | ^com\.google\.gwt\.soyc(\.|$)|\ |
| 21 | ^com\.google\.gwt\.validation(.|$)|\ |
| 22 | ^com\.google\.gwt\.user\.client\.rpc\.core\.|\ |
| 23 | ^javax\.|\ |
| 24 | ^junit\.|\ |
| 25 | ^org\.|\ |
| 26 | \.impl(\.|$)|\ |
| 27 | \.rebind(\.|$)" |
| 28 | |
| 29 | # Generate the packages.properties file |
| 30 | # Changes to LANG_PKGS and USER_CLASSES go here |
| 31 | # Note that line continuation backslashes must be escaped |
| 32 | cat > ${OUTFILE} <<EOF |
| 33 | # THIS FILE IS AUTOMATICALLY GENERATED |
| 34 | # |
| 35 | # This file contains all of the user javadoc packages |
| 36 | # |
| 37 | # JRE emulation packages |
| 38 | LANG_PKGS=\\ |
| 39 | java.lang;\\ |
| 40 | java.lang.annotation;\\ |
| 41 | java.io;\\ |
| 42 | java.sql;\\ |
| 43 | java.util |
| 44 | # The last package should not have a trailing semicolon |
| 45 | |
| 46 | # Individual classes to include when we don't want to include an entire package |
| 47 | USER_CLASSES=\\ |
| 48 | \${gwt.root}/user/src/com/google/gwt/junit/tools/GWTTestSuite.java:\\ |
| 49 | \${gwt.root}/user/src/com/google/gwt/i18n/rebind/LocaleUtils.java:\\ |
| 50 | \${gwt.root}/user/src/com/google/gwt/i18n/server/GwtLocaleFactoryImpl.java:\\ |
| 51 | \${gwt.root}/user/src/com/google/gwt/i18n/server/GwtLocaleImpl.java |
| 52 | |
| 53 | # Packages to include |
| 54 | USER_PKGS=\\ |
| 55 | EOF |
| 56 | |
| 57 | rm -f ${TMPFILE} |
| 58 | |
| 59 | # Create a list of all packages with at least one Java source file |
| 60 | # List all source files |
| 61 | for dir in ../user/src ../user/javadoc ../user/super ../dev/core/src ../dev/core/super |
| 62 | do |
| 63 | (cd ${dir}; find . -name '*.java') >> ${TMPFILE} |
| 64 | done |
| 65 | |
| 66 | cat ${TMPFILE} | \ |
| 67 | # Remove source file names |
| 68 | sed 's@/[-A-Za-z0-9_]*\.java$@@'| \ |
| 69 | # Removce initial './' |
| 70 | sed s@^\./@@ | \ |
| 71 | # Remove .../super/ and .../translatable prefixes |
| 72 | sed s@^.*/super/@@ | \ |
| 73 | sed s@^.*/translatable/@@ | \ |
| 74 | # Change slashes to dots |
| 75 | sed s@/@.@g | \ |
| 76 | # Remove excluded patters |
| 77 | egrep -v ${EXCLUSIONS} > ${TMPFILE}-2 |
| 78 | mv ${TMPFILE}-2 ${TMPFILE} |
| 79 | |
| 80 | # Re-add whitelisted packages that would otherwise be excluded |
| 81 | echo com.google.gwt.i18n.rebind.format >> ${TMPFILE} |
| 82 | echo com.google.gwt.i18n.rebind.keygen >> ${TMPFILE} |
| 83 | echo com.google.gwt.junit.client >> ${TMPFILE} |
| 84 | |
| 85 | # Sort, uniqify, and add ';\' to each line except the last |
| 86 | cat ${TMPFILE} | \ |
| 87 | sort | \ |
| 88 | uniq | \ |
| 89 | sed '$q;s@$@;\\@' >> ${OUTFILE} |
| 90 | echo '# The last package should not have a trailing semicolon' >> ${OUTFILE} |
| 91 | |
| 92 | # Clean up |
| 93 | rm -f ${TMPFILE} |