author | thartmann |
Fri, 24 Aug 2018 08:17:23 +0200 | |
changeset 51514 | 1e332d63bd96 |
parent 51266 | f8696e0ab9b7 |
child 51565 | 7e5f08c619e3 |
permissions | -rw-r--r-- |
37861 | 1 |
#!/bin/sh |
2 |
# |
|
3 |
# Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved. |
|
4 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
# |
|
6 |
# This code is free software; you can redistribute it and/or modify it |
|
7 |
# under the terms of the GNU General Public License version 2 only, as |
|
8 |
# published by the Free Software Foundation. |
|
9 |
# |
|
10 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
# accompanied this code). |
|
15 |
# |
|
16 |
# You should have received a copy of the GNU General Public License version |
|
17 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
# |
|
20 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
# or visit www.oracle.com if you need additional information or have any |
|
22 |
# questions. |
|
23 |
# |
|
24 |
||
25 |
# Shell script for generating an IDEA project from a given list of modules |
|
26 |
||
27 |
usage() { |
|
47217 | 28 |
echo "usage: $0 [-h|--help] [-v|--verbose] [-o|--output <path>] [modules]+" |
37861 | 29 |
exit 1 |
30 |
} |
|
31 |
||
32 |
SCRIPT_DIR=`dirname $0` |
|
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
33 |
#assume TOP is the dir from which the script has been called |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
34 |
TOP=`pwd` |
37861 | 35 |
cd $SCRIPT_DIR; SCRIPT_DIR=`pwd` |
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
36 |
cd $TOP; |
37861 | 37 |
|
38 |
IDEA_OUTPUT=$TOP/.idea |
|
39 |
VERBOSE="false" |
|
40 |
while [ $# -gt 0 ] |
|
41 |
do |
|
42 |
case $1 in |
|
43 |
-h | --help ) |
|
44 |
usage |
|
45 |
;; |
|
46 |
||
47 |
-v | --vebose ) |
|
48 |
VERBOSE="true" |
|
49 |
;; |
|
50 |
||
51 |
-o | --output ) |
|
52 |
IDEA_OUTPUT=$2 |
|
53 |
shift |
|
54 |
;; |
|
55 |
||
56 |
-*) # bad option |
|
57 |
usage |
|
58 |
;; |
|
59 |
||
60 |
* ) # non option |
|
61 |
break |
|
62 |
;; |
|
63 |
esac |
|
64 |
shift |
|
65 |
done |
|
66 |
||
67 |
mkdir $IDEA_OUTPUT || exit 1 |
|
68 |
cd $IDEA_OUTPUT; IDEA_OUTPUT=`pwd` |
|
69 |
||
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
70 |
MAKE_DIR="$SCRIPT_DIR/../make" |
51266
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
71 |
SUPPORT_DIR="$SCRIPT_DIR/../build/.idea-support" |
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
72 |
IDEA_MAKE="$MAKE_DIR/idea" |
37861 | 73 |
IDEA_TEMPLATE="$IDEA_MAKE/template" |
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
74 |
|
51266
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
75 |
mkdir -p $SUPPORT_DIR |
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
76 |
|
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
77 |
cp -r "$IDEA_TEMPLATE"/* "$IDEA_OUTPUT" |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
78 |
|
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
79 |
#init template variables |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
80 |
for file in `ls -p $IDEA_TEMPLATE | grep -v /`; do |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
81 |
VAR_SUFFIX=`echo $file | cut -d'.' -f1 | tr [:lower:] [:upper:]` |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
82 |
eval "$VAR_SUFFIX"_TEMPLATE="$IDEA_TEMPLATE"/$file |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
83 |
eval IDEA_"$VAR_SUFFIX"="$IDEA_OUTPUT"/$file |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
84 |
done |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
85 |
|
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
86 |
#override template variables |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
87 |
if [ -d "$TEMPLATES_OVERRIDE" ] ; then |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
88 |
for file in `ls -p "$TEMPLATES_OVERRIDE" | grep -v /`; do |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
89 |
cp "$TEMPLATES_OVERRIDE"/$file "$IDEA_OUTPUT"/ |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
90 |
VAR_SUFFIX=`echo $file | cut -d'.' -f1 | tr [:lower:] [:upper:]` |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
91 |
eval "$VAR_SUFFIX"_TEMPLATE="$TEMPLATES_OVERRIDE"/$file |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
92 |
done |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
93 |
fi |
37861 | 94 |
|
95 |
if [ "$VERBOSE" = "true" ] ; then |
|
96 |
echo "output dir: $IDEA_OUTPUT" |
|
97 |
echo "idea template dir: $IDEA_TEMPLATE" |
|
98 |
fi |
|
99 |
||
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
100 |
if [ ! -f "$JDK_TEMPLATE" ] ; then |
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
101 |
echo "FATAL: cannot find $JDK_TEMPLATE" >&2; exit 1 |
37861 | 102 |
fi |
103 |
||
104 |
if [ ! -f "$ANT_TEMPLATE" ] ; then |
|
105 |
echo "FATAL: cannot find $ANT_TEMPLATE" >&2; exit 1 |
|
106 |
fi |
|
107 |
||
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
108 |
cd $TOP ; make -f "$IDEA_MAKE/idea.gmk" -I $MAKE_DIR/.. idea MAKEOVERRIDES= OUT=$IDEA_OUTPUT/env.cfg MODULES="$*" || exit 1 |
37861 | 109 |
cd $SCRIPT_DIR |
110 |
||
111 |
. $IDEA_OUTPUT/env.cfg |
|
112 |
||
113 |
# Expect MODULE_ROOTS, MODULE_NAMES, BOOT_JDK & SPEC to be set |
|
114 |
if [ "x$MODULE_ROOTS" = "x" ] ; then |
|
115 |
echo "FATAL: MODULE_ROOTS is empty" >&2; exit 1 |
|
116 |
fi |
|
117 |
||
118 |
if [ "x$MODULE_NAMES" = "x" ] ; then |
|
119 |
echo "FATAL: MODULE_NAMES is empty" >&2; exit 1 |
|
120 |
fi |
|
121 |
||
122 |
if [ "x$BOOT_JDK" = "x" ] ; then |
|
123 |
echo "FATAL: BOOT_JDK is empty" >&2; exit 1 |
|
124 |
fi |
|
125 |
||
126 |
if [ "x$SPEC" = "x" ] ; then |
|
127 |
echo "FATAL: SPEC is empty" >&2; exit 1 |
|
128 |
fi |
|
129 |
||
51266
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
130 |
# move build.xml out of .idea, see IDEA-189915 |
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
131 |
IDEA_BUILD_OLD=$IDEA_BUILD |
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
132 |
IDEA_BUILD=$SUPPORT_DIR/build.xml |
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
133 |
mv $IDEA_BUILD_OLD $IDEA_BUILD |
f8696e0ab9b7
8208524: IntelliJ support broken since 2018.2
mcimadamore
parents:
48667
diff
changeset
|
134 |
|
37861 | 135 |
SOURCE_FOLDER=" <sourceFolder url=\"file://\$MODULE_DIR\$/####\" isTestSource=\"false\" />" |
136 |
SOURCE_FOLDERS_DONE="false" |
|
137 |
||
138 |
addSourceFolder() { |
|
139 |
root=$@ |
|
140 |
relativePath="`echo "$root" | sed -e s@"$TOP/\(.*$\)"@"\1"@`" |
|
141 |
folder="`echo "$SOURCE_FOLDER" | sed -e s@"\(.*/\)####\(.*\)"@"\1$relativePath\2"@`" |
|
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
142 |
printf "%s\n" "$folder" >> $IDEA_JDK |
37861 | 143 |
} |
144 |
||
145 |
### Generate project iml |
|
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
146 |
|
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
147 |
rm -f $IDEA_JDK |
37861 | 148 |
while IFS= read -r line |
149 |
do |
|
150 |
if echo "$line" | egrep "^ .* <sourceFolder.*####" > /dev/null ; then |
|
47217 | 151 |
if [ "$SOURCE_FOLDERS_DONE" = "false" ] ; then |
37861 | 152 |
SOURCE_FOLDERS_DONE="true" |
153 |
for root in $MODULE_ROOTS; do |
|
154 |
addSourceFolder $root |
|
155 |
done |
|
156 |
fi |
|
157 |
else |
|
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
158 |
printf "%s\n" "$line" >> $IDEA_JDK |
37861 | 159 |
fi |
48667
f2344724a475
8196081: Add support for customized intellij project templates
mcimadamore
parents:
47217
diff
changeset
|
160 |
done < "$JDK_TEMPLATE" |
37861 | 161 |
|
162 |
||
163 |
MODULE_NAME=" <property name=\"module.name\" value=\"####\" />" |
|
164 |
||
165 |
addModuleName() { |
|
166 |
mn="`echo "$MODULE_NAME" | sed -e s@"\(.*\)####\(.*\)"@"\1$MODULE_NAMES\2"@`" |
|
167 |
printf "%s\n" "$mn" >> $IDEA_ANT |
|
168 |
} |
|
169 |
||
170 |
BUILD_DIR=" <property name=\"build.target.dir\" value=\"####\" />" |
|
171 |
||
172 |
addBuildDir() { |
|
173 |
DIR=`dirname $SPEC` |
|
174 |
mn="`echo "$BUILD_DIR" | sed -e s@"\(.*\)####\(.*\)"@"\1$DIR\2"@`" |
|
175 |
printf "%s\n" "$mn" >> $IDEA_ANT |
|
176 |
} |
|
177 |
||
178 |
### Generate ant.xml |
|
179 |
||
180 |
rm -f $IDEA_ANT |
|
181 |
while IFS= read -r line |
|
182 |
do |
|
183 |
if echo "$line" | egrep "^ .* <property name=\"module.name\"" > /dev/null ; then |
|
184 |
addModuleName |
|
185 |
elif echo "$line" | egrep "^ .* <property name=\"build.target.dir\"" > /dev/null ; then |
|
186 |
addBuildDir |
|
187 |
else |
|
188 |
printf "%s\n" "$line" >> $IDEA_ANT |
|
189 |
fi |
|
190 |
done < "$ANT_TEMPLATE" |
|
191 |
||
47217 | 192 |
### Generate misc.xml |
193 |
||
194 |
rm -f $IDEA_MISC |
|
195 |
||
196 |
JTREG_HOME=" <path>####</path>" |
|
197 |
||
198 |
IMAGES_DIR=" <jre alt=\"true\" value=\"####\" />" |
|
199 |
||
200 |
addImagesDir() { |
|
201 |
DIR=`dirname $SPEC`/images/jdk |
|
202 |
mn="`echo "$IMAGES_DIR" | sed -e s@"\(.*\)####\(.*\)"@"\1$DIR\2"@`" |
|
203 |
printf "%s\n" "$mn" >> $IDEA_MISC |
|
204 |
} |
|
205 |
||
206 |
addJtregHome() { |
|
207 |
DIR=`dirname $SPEC` |
|
208 |
mn="`echo "$JTREG_HOME" | sed -e s@"\(.*\)####\(.*\)"@"\1$JT_HOME\2"@`" |
|
209 |
printf "%s\n" "$mn" >> $IDEA_MISC |
|
210 |
} |
|
211 |
||
212 |
rm -f $MISC_ANT |
|
213 |
while IFS= read -r line |
|
214 |
do |
|
215 |
if echo "$line" | egrep "^ .*<path>jtreg_home</path>" > /dev/null ; then |
|
216 |
addJtregHome |
|
217 |
elif echo "$line" | egrep "^ .*<jre alt=\"true\" value=\"images_jdk\"" > /dev/null ; then |
|
218 |
addImagesDir |
|
219 |
else |
|
220 |
printf "%s\n" "$line" >> $IDEA_MISC |
|
221 |
fi |
|
222 |
done < "$MISC_TEMPLATE" |
|
223 |
||
37861 | 224 |
### Compile the custom Logger |
225 |
||
226 |
CLASSES=$IDEA_OUTPUT/classes |
|
227 |
||
228 |
if [ "x$ANT_HOME" = "x" ] ; then |
|
229 |
# try some common locations, before giving up |
|
230 |
if [ -f "/usr/share/ant/lib/ant.jar" ] ; then |
|
231 |
ANT_HOME="/usr/share/ant" |
|
232 |
elif [ -f "/usr/local/Cellar/ant/1.9.4/libexec/lib/ant.jar" ] ; then |
|
233 |
ANT_HOME="/usr/local/Cellar/ant/1.9.4/libexec" |
|
234 |
else |
|
235 |
echo "FATAL: cannot find ant. Try setting ANT_HOME." >&2; exit 1 |
|
236 |
fi |
|
237 |
fi |
|
238 |
CP=$ANT_HOME/lib/ant.jar |
|
239 |
rm -rf $CLASSES; mkdir $CLASSES |
|
240 |
||
241 |
if [ "x$CYGPATH" = "x" ] ; then ## CYGPATH may be set in env.cfg |
|
242 |
JAVAC_SOURCE_FILE=$IDEA_OUTPUT/src/idea/JdkIdeaAntLogger.java |
|
243 |
JAVAC_CLASSES=$CLASSES |
|
244 |
JAVAC_CP=$CP |
|
245 |
else |
|
246 |
JAVAC_SOURCE_FILE=`cygpath -am $IDEA_OUTPUT/src/idea/JdkIdeaAntLogger.java` |
|
247 |
JAVAC_CLASSES=`cygpath -am $CLASSES` |
|
248 |
JAVAC_CP=`cygpath -am $CP` |
|
249 |
fi |
|
250 |
||
251 |
$BOOT_JDK/bin/javac -d $JAVAC_CLASSES -cp $JAVAC_CP $JAVAC_SOURCE_FILE |