aboutsummaryrefslogtreecommitdiff
path: root/src/website/lombok
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2017-05-22 21:35:35 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2017-05-29 21:03:04 +0200
commit7c8f9fa445e0b21f691367210dc5fb79e79b2afa (patch)
tree69a66f3c017c5c17dac1efa758209fb2adcd26ee /src/website/lombok
parentf447b13adb346ad92ab0c33d073a158ea5c968b5 (diff)
downloadlombok-7c8f9fa445e0b21f691367210dc5fb79e79b2afa.tar.gz
lombok-7c8f9fa445e0b21f691367210dc5fb79e79b2afa.tar.bz2
lombok-7c8f9fa445e0b21f691367210dc5fb79e79b2afa.zip
Final touches to the new website:
* htaccess for ‘nice looking’ URLs. * download-edge overwritten upon stable releases. * fixes to the build system. * Added google analytics pagetracker.
Diffstat (limited to 'src/website/lombok')
-rw-r--r--src/website/lombok/website/WebsiteMaker.java239
1 files changed, 175 insertions, 64 deletions
diff --git a/src/website/lombok/website/WebsiteMaker.java b/src/website/lombok/website/WebsiteMaker.java
index 85ae5156..4b1c0b01 100644
--- a/src/website/lombok/website/WebsiteMaker.java
+++ b/src/website/lombok/website/WebsiteMaker.java
@@ -67,112 +67,214 @@ public class WebsiteMaker {
}
}
- public static void main(String[] args) throws Exception {
+ private static void buildAll(String version, String fullVersion, String argIn, String argOut) throws Exception {
File in, out;
- String version, fullVersion;
- if (args.length < 2) {
- version = VersionFinder.getVersion();
- fullVersion = VersionFinder.getFullVersion();
+ if (argIn == null) {
+ in = new File(".");
+ if (new File(in, "build.xml").isFile() && new File(in, "website").isDirectory()) in = new File(in, "website");
} else {
- version = args[0];
- fullVersion = args[1];
+ in = new File(argIn);
}
- if (args.length < 3) {
+ if (argOut == null) {
+ if (new File("./build.xml").isFile() && new File("./website").isDirectory() && new File("./build").isDirectory()) {
+ out = new File("./build/website");
+ } else {
+ out = new File(in, "output");
+ }
+ } else {
+ out = new File(argOut);
+ }
+ WebsiteMaker maker = new WebsiteMaker(version, fullVersion, in, out);
+ maker.buildWebsite();
+ }
+
+ private static void buildChangelog(String version, String fullVersion, String argIn, String argOut) throws Exception {
+ File in, out;
+ if (argIn == null) {
in = new File(".");
if (new File(in, "build.xml").isFile() && new File(in, "website").isDirectory()) in = new File(in, "website");
} else {
- in = new File(args[2]);
+ in = new File(argIn);
}
- if (args.length < 4) {
+ if (argOut == null) {
if (new File("./build.xml").isFile() && new File("./website").isDirectory() && new File("./build").isDirectory()) {
- out = new File("./build/website");
+ out = new File("./build/website/changelog.html");
} else {
- out = new File(in, "output");
+ out = new File(in, "output/changelog.html");
}
} else {
- out = new File(args[3]);
+ out = new File(argOut);
+ }
+ WebsiteMaker maker = new WebsiteMaker(version, fullVersion, in, out.getParentFile());
+ maker.buildChangelog(out);
+ }
+
+ private static void buildDownloadEdge(String version, String fullVersion, String argIn, String argOut) throws Exception {
+ File in, out;
+ if (argIn == null) {
+ in = new File(".");
+ if (new File(in, "build.xml").isFile() && new File(in, "website").isDirectory()) in = new File(in, "website");
+ } else {
+ in = new File(argIn);
}
- WebsiteMaker maker = new WebsiteMaker(version, fullVersion, in, out);
+ if (argOut == null) {
+ if (new File("./build.xml").isFile() && new File("./website").isDirectory() && new File("./build").isDirectory()) {
+ out = new File("./build/website-edge/download-edge.html");
+ } else {
+ out = new File(in, "output/download-edge.html");
+ }
+ } else {
+ out = new File(argOut);
+ }
+ WebsiteMaker maker = new WebsiteMaker(version, fullVersion, in, out.getParentFile());
+ maker.buildDownloadEdge(out);
+ }
+
+ private static void buildChangelogLatest(String version, String fullVersion, String argIn, String argOut) throws Exception {
+ File in, out;
+ if (argIn == null) {
+ in = new File(".");
+ if (new File(in, "build.xml").isFile() && new File(in, "website").isDirectory()) in = new File(in, "website");
+ } else {
+ in = new File(argIn);
+ }
- maker.buildWebsite();
+ if (argOut == null) {
+ if (new File("./build.xml").isFile() && new File("./website").isDirectory() && new File("./build").isDirectory()) {
+ out = new File("./build/latestchanges.html");
+ } else {
+ out = new File(in, "output/latestchanges.html");
+ }
+ } else {
+ out = new File(argOut);
+ }
+ WebsiteMaker maker = new WebsiteMaker(version, fullVersion, in, out.getParentFile());
+ maker.buildChangelogLatest(out);
}
- public void buildWebsite() throws Exception {
+ public static void main(String[] args) throws Exception {
+ String version, fullVersion;
+
+ if (args.length < 2) {
+ version = VersionFinder.getVersion();
+ fullVersion = VersionFinder.getFullVersion();
+ } else {
+ version = args[0];
+ fullVersion = args[1];
+ }
+
+ if (args.length < 3 || args[2].equalsIgnoreCase("all")) {
+ buildAll(version, fullVersion, args.length < 4 ? null : args[3], args.length < 5 ? null : args[4]);
+ } else if (args[2].equalsIgnoreCase("changelog")) {
+ buildChangelog(version, fullVersion, args.length < 4 ? null : args[3], args.length < 5 ? null : args[4]);
+ } else if (args[2].equalsIgnoreCase("download-edge")) {
+ buildDownloadEdge(version, fullVersion, args.length < 4 ? null : args[3], args.length < 5 ? null : args[4]);
+ } else if (args[2].equalsIgnoreCase("changelog-latest")) {
+ buildChangelogLatest(version, fullVersion, args.length < 4 ? null : args[3], args.length < 5 ? null : args[4]);
+ } else {
+ throw new IllegalArgumentException("3rd argument must be one of 'all', 'changelog', 'download-edge', 'changelog-latest'");
+ }
+ }
+
+ private Configuration makeFreemarkerConfig() throws IOException {
Configuration freemarkerConfig = new Configuration(Configuration.VERSION_2_3_25);
freemarkerConfig.setEncoding(Locale.ENGLISH, "UTF-8");
freemarkerConfig.setOutputEncoding("UTF-8");
freemarkerConfig.setOutputFormat(HTMLOutputFormat.INSTANCE);
freemarkerConfig.setTemplateLoader(createLoader());
freemarkerConfig.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
+ return freemarkerConfig;
+ }
+
+ public void buildChangelog(File out) throws Exception {
+ Configuration freemarkerConfig = makeFreemarkerConfig();
+ outputDir.mkdirs();
+ convertChangelog(freemarkerConfig, out);
+ }
+
+ public void buildChangelogLatest(File out) throws Exception {
+ outputDir.mkdirs();
+ String htmlForLatest = CompileChangelog.getHtmlForLatest(baseDir.getParentFile(), version);
+ FileOutputStream fos = new FileOutputStream(out);
+ try {
+ BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fos, "UTF-8"));
+ bw.write(htmlForLatest);
+ bw.close();
+ } finally {
+ fos.close();
+ }
+ }
+
+ public void buildDownloadEdge(File out) throws Exception {
+ Configuration freemarkerConfig = new Configuration(Configuration.VERSION_2_3_25);
+ freemarkerConfig.setEncoding(Locale.ENGLISH, "UTF-8");
+ freemarkerConfig.setOutputEncoding("UTF-8");
+ freemarkerConfig.setOutputFormat(HTMLOutputFormat.INSTANCE);
+ freemarkerConfig.setTemplateLoader(createLoader("extra"));
+ freemarkerConfig.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
- deleteAll(outputDir, 0);
outputDir.mkdirs();
- copyResources();
- convertTemplates(freemarkerConfig);
+ convertDownloadEdge(freemarkerConfig, out);
}
- private static void deleteAll(File outputDir, int depth) {
- if (!outputDir.isDirectory()) return;
- if (depth > 50) throw new IllegalArgumentException("50 levels is too deep: " + outputDir);
+ public void buildWebsite() throws Exception {
+ Configuration freemarkerConfig = makeFreemarkerConfig();
- for (File f : outputDir.listFiles()) {
- String n = f.getName();
- if (n.equals(".") || n.equals("..")) continue;
- if (f.isDirectory()) deleteAll(f, depth + 1);
- f.delete();
- }
+ outputDir.mkdirs();
+ convertTemplates(freemarkerConfig);
}
- private void copyResources() throws Exception {
- File resourcesLoc = new File(baseDir, "resources");
- byte[] b = new byte[65536];
- copyResources_(resourcesLoc, outputDir, b, 0);
+ private TemplateLoader createLoader() throws IOException {
+ return createLoader("templates");
}
- private void copyResources_(File from, File to, byte[] b, int depth) throws IOException {
- if (depth > 50) throw new IllegalArgumentException("50 levels is too deep: " + from);
- if (!to.exists()) to.mkdirs();
- for (File f : from.listFiles()) {
- if (f.isDirectory()) copyResources_(f, new File(to, f.getName()), b, depth + 1);
- if (!f.isFile()) continue;
-
- FileInputStream fIn = new FileInputStream(f);
- try {
- FileOutputStream fOut = new FileOutputStream(new File(to, f.getName()));
- try {
- while (true) {
- int r = fIn.read(b);
- if (r == -1) break;
- fOut.write(b, 0, r);
- }
- } finally {
- fOut.close();
- }
- } finally {
- fIn.close();
- }
+ private TemplateLoader createLoader(String base) throws IOException {
+ return new FileTemplateLoader(new File(baseDir, base));
+ }
+
+ private void convertChangelog(Configuration freemarker, File outFile) throws Exception {
+ Map<String, Object> dataModel = createBasicDataModel();
+
+ Template template = freemarker.getTemplate("changelog.html");
+ FileOutputStream fileOut = new FileOutputStream(outFile);
+ try {
+ Writer wr = new BufferedWriter(new OutputStreamWriter(fileOut, "UTF-8"));
+ template.process(dataModel, wr);
+ wr.close();
+ } finally {
+ fileOut.close();
}
}
- private TemplateLoader createLoader() throws IOException {
- return new FileTemplateLoader(new File(baseDir, "templates"));
+ private void convertDownloadEdge(Configuration freemarker, File outFile) throws Exception {
+ Map<String, Object> dataModel = createBasicDataModel();
+
+ Template template = freemarker.getTemplate("download-edge.html");
+ FileOutputStream fileOut = new FileOutputStream(outFile);
+ try {
+ Writer wr = new BufferedWriter(new OutputStreamWriter(fileOut, "UTF-8"));
+ template.process(dataModel, wr);
+ wr.close();
+ } finally {
+ fileOut.close();
+ }
}
private void convertTemplates(Configuration freemarker) throws Exception {
File basePagesLoc = new File(baseDir, "templates");
- convertTemplates_(freemarker, "", basePagesLoc, outputDir, 0);
+ Map<String, Object> dataModel = createBasicDataModel();
+ dataModel.putAll(createExtendedDataModel());
+ convertTemplates_(freemarker, "", basePagesLoc, outputDir, 0, dataModel);
}
- private void convertTemplates_(Configuration freemarker, String prefix, File from, File to, int depth) throws Exception {
+ private void convertTemplates_(Configuration freemarker, String prefix, File from, File to, int depth, Map<String, Object> dataModel) throws Exception {
if (depth > 50) throw new IllegalArgumentException("50 levels is too deep: " + from);
- Map<String, Object> dataModel = createDataModel();
-
for (File f : from.listFiles()) {
- if (f.isDirectory()) convertTemplates_(freemarker, prefix + f.getName() + "/", f, new File(to, f.getName()), depth + 1);
+ if (f.isDirectory()) convertTemplates_(freemarker, prefix + f.getName() + "/", f, new File(to, f.getName()), depth + 1, dataModel);
if (!f.isFile() || !f.getName().endsWith(".html") || f.getName().startsWith("_")) continue;
to.mkdirs();
Template template = freemarker.getTemplate(prefix + f.getName());
@@ -187,12 +289,22 @@ public class WebsiteMaker {
}
}
- private static final Pattern LOMBOK_LINK = Pattern.compile("^.*<a(?: (?:id|class|rel|rev|download|target|type)(?:=\"[^\"]*\")?)* href=\"(downloads/[^\"]+)\"(?: (?:id|class|rel|rev|download|target|type)(?:=\"[^\"]*\")?)*>([^<]+)</a>.*$");
- private Map<String, Object> createDataModel() throws IOException {
+ private Map<String, Object> createBasicDataModel() throws IOException {
Map<String, Object> data = new HashMap<String, Object>();
+
data.put("version", version);
data.put("fullVersion", fullVersion);
data.put("year", "" + new GregorianCalendar().get(Calendar.YEAR));
+ data.put("changelog", CompileChangelog.getHtml(baseDir.getParentFile()));
+ data.put("changelogEdge", CompileChangelog.getHtmlForEdge(baseDir.getParentFile(), version));
+
+ return data;
+ }
+
+ private static final Pattern LOMBOK_LINK = Pattern.compile("^.*<a(?: (?:id|class|rel|rev|download|target|type)(?:=\"[^\"]*\")?)* href=\"(downloads/[^\"]+)\"(?: (?:id|class|rel|rev|download|target|type)(?:=\"[^\"]*\")?)*>([^<]+)</a>.*$");
+ private Map<String, Object> createExtendedDataModel() throws IOException {
+ Map<String, Object> data = new HashMap<String, Object>();
+
data.put("usages", new HtmlMaker(new File(baseDir, "usageExamples")));
InputStream in = new URL("https://projectlombok.org/all-versions.html").openStream();
ArrayList<List<String>> links = new ArrayList<List<String>>();
@@ -207,7 +319,6 @@ public class WebsiteMaker {
}
data.put("linksToVersions", links);
- data.put("changelog", CompileChangelog.getHtml(baseDir.getParentFile()));
return data;
}