blob: 9383271ae209053ed49a76acdabb5bc8b8bfddfc [file] [log] [blame]
rice@google.comfb6847e2010-10-08 14:35:39 +00001#!/bin/bash
2set noglob
3
4OUTFILE=packages.properties
5TMPFILE=/tmp/gwt-javadoc-packages$$
6
7# Regex patterns to exclude from the list of packages
8EXCLUSIONS="\
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
32cat > ${OUTFILE} <<EOF
33# THIS FILE IS AUTOMATICALLY GENERATED
34#
35# This file contains all of the user javadoc packages
36#
37# JRE emulation packages
38LANG_PKGS=\\
39java.lang;\\
40java.lang.annotation;\\
41java.io;\\
42java.sql;\\
43java.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
47USER_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
54USER_PKGS=\\
55EOF
56
57rm -f ${TMPFILE}
58
59# Create a list of all packages with at least one Java source file
60# List all source files
61for dir in ../user/src ../user/javadoc ../user/super ../dev/core/src ../dev/core/super
62do
63(cd ${dir}; find . -name '*.java') >> ${TMPFILE}
64done
65
66cat ${TMPFILE} | \
67# Remove source file names
68sed 's@/[-A-Za-z0-9_]*\.java$@@'| \
69# Removce initial './'
70sed s@^\./@@ | \
71# Remove .../super/ and .../translatable prefixes
72sed s@^.*/super/@@ | \
73sed s@^.*/translatable/@@ | \
74# Change slashes to dots
75sed s@/@.@g | \
76# Remove excluded patters
77egrep -v ${EXCLUSIONS} > ${TMPFILE}-2
78mv ${TMPFILE}-2 ${TMPFILE}
79
80# Re-add whitelisted packages that would otherwise be excluded
81echo com.google.gwt.i18n.rebind.format >> ${TMPFILE}
82echo com.google.gwt.i18n.rebind.keygen >> ${TMPFILE}
83echo com.google.gwt.junit.client >> ${TMPFILE}
84
85# Sort, uniqify, and add ';\' to each line except the last
86cat ${TMPFILE} | \
87sort | \
88uniq | \
89sed '$q;s@$@;\\@' >> ${OUTFILE}
90echo '# The last package should not have a trailing semicolon' >> ${OUTFILE}
91
92# Clean up
93rm -f ${TMPFILE}