blob: 203e864d48e2f2b18ea5dd123d572f4896de5bd7 [file] [log] [blame]
// Copyright (C) 2009 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.httpd.raw;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@Singleton
public class PrettifyServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
private static final String VERSION = "20090521";
private final byte[] content;
@Inject
PrettifyServlet(final ServletContext servletContext) throws IOException {
final String myDir = "/gerrit/prettify" + VERSION + "/";
final ByteArrayOutputStream buffer = new ByteArrayOutputStream();
load(buffer, servletContext, myDir + "prettify.js");
for (Object p : servletContext.getResourcePaths(myDir)) {
String name = (String) p;
if (name.startsWith(myDir + "lang-") && name.endsWith(".js")) {
load(buffer, servletContext, name);
}
}
content = buffer.toByteArray();
}
private void load(final OutputStream buffer,
final ServletContext servletContext, final String path)
throws IOException {
final InputStream in = servletContext.getResourceAsStream(path);
if (in != null) {
try {
final byte[] tmp = new byte[4096];
int cnt;
while ((cnt = in.read(tmp)) > 0) {
buffer.write(tmp, 0, cnt);
}
buffer.write(';');
buffer.write('\n');
in.close();
} catch (IOException e) {
throw new IOException("Cannot read " + path, e);
}
}
}
@Override
protected void doGet(final HttpServletRequest req,
final HttpServletResponse rsp) throws IOException {
final String want = req.getPathInfo();
if (want.equals("/" + VERSION + ".js")) {
final long now = System.currentTimeMillis();
rsp.setHeader("Cache-Control", "max-age=31536000,public");
rsp.setDateHeader("Expires", now + 31536000000L);
rsp.setDateHeader("Date", now);
rsp.setContentType("application/x-javascript");
rsp.setContentLength(content.length);
rsp.getOutputStream().write(content);
} else {
rsp.setHeader("Expires", "Fri, 01 Jan 1980 00:00:00 GMT");
rsp.setHeader("Pragma", "no-cache");
rsp.setHeader("Cache-Control", "no-cache, must-revalidate");
rsp.setDateHeader("Date", System.currentTimeMillis());
rsp.sendError(HttpServletResponse.SC_NOT_FOUND);
}
}
}