Moving Spring JavaScript into its own module
This commit is contained in:
@@ -0,0 +1,317 @@
|
||||
/*
|
||||
* Copyright 2004-2008 the original author or authors.
|
||||
*
|
||||
* 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 org.springframework.js.resource;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.net.URLConnection;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.zip.GZIPOutputStream;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.ServletOutputStream;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.springframework.util.ClassUtils;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
* Special resource servlet for efficiently resolving and rendering static resources from within a JAR file.
|
||||
*
|
||||
* @author Jeremy Grelle
|
||||
*/
|
||||
public class ResourceServlet extends HttpServlet {
|
||||
|
||||
private static final String HTTP_CONTENT_LENGTH_HEADER = "Content-Length";
|
||||
|
||||
private static final String HTTP_LAST_MODIFIED_HEADER = "Last-Modified";
|
||||
|
||||
private static final String HTTP_EXPIRES_HEADER = "Expires";
|
||||
|
||||
private static final String HTTP_CACHE_CONTROL_HEADER = "Cache-Control";
|
||||
|
||||
private static final String GZIP_ENABLED_PARAM = "gzipEnabled";
|
||||
|
||||
private static final Log log = LogFactory.getLog(ResourceServlet.class);
|
||||
|
||||
private boolean gzipEnabled = true;
|
||||
|
||||
private Map defaultMimeTypes = new HashMap();
|
||||
{
|
||||
defaultMimeTypes.put(".css", "text/css");
|
||||
defaultMimeTypes.put(".gif", "image/gif");
|
||||
defaultMimeTypes.put(".ico", "image/vnd.microsoft.icon");
|
||||
defaultMimeTypes.put(".jpeg", "image/jpeg");
|
||||
defaultMimeTypes.put(".jpg", "image/jpeg");
|
||||
defaultMimeTypes.put(".js", "text/javascript");
|
||||
defaultMimeTypes.put(".png", "image/png");
|
||||
}
|
||||
|
||||
private Set compressedMimeTypes = new HashSet();
|
||||
{
|
||||
compressedMimeTypes.add("text/css");
|
||||
compressedMimeTypes.add("text/javascript");
|
||||
}
|
||||
|
||||
public void init() throws ServletException {
|
||||
String gzipEnabledParamValue = getServletConfig().getInitParameter(GZIP_ENABLED_PARAM);
|
||||
if (StringUtils.hasText(gzipEnabledParamValue)) {
|
||||
gzipEnabled = Boolean.valueOf(gzipEnabledParamValue).booleanValue();
|
||||
}
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
String rawResourcePath = request.getPathInfo();
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Attempting to GET resource: " + rawResourcePath);
|
||||
}
|
||||
|
||||
URL[] resources = getRequestResourceURLs(request);
|
||||
|
||||
if (resources == null || resources.length == 0) {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Resource not found: " + rawResourcePath);
|
||||
}
|
||||
response.setStatus(HttpServletResponse.SC_NOT_FOUND);
|
||||
return;
|
||||
}
|
||||
|
||||
prepareResponse(response, resources, rawResourcePath);
|
||||
|
||||
OutputStream out = selectOutputStream(request, response);
|
||||
|
||||
try {
|
||||
for (int i = 0; i < resources.length; i++) {
|
||||
URLConnection resourceConn = resources[i].openConnection();
|
||||
InputStream in = resourceConn.getInputStream();
|
||||
try {
|
||||
byte[] buffer = new byte[1024];
|
||||
while (in.available() > 0) {
|
||||
int len = in.read(buffer);
|
||||
out.write(buffer, 0, len);
|
||||
}
|
||||
} finally {
|
||||
in.close();
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
out.close();
|
||||
}
|
||||
}
|
||||
|
||||
private OutputStream selectOutputStream(HttpServletRequest request, HttpServletResponse response)
|
||||
throws IOException {
|
||||
|
||||
String acceptEncoding = request.getHeader("Accept-Encoding");
|
||||
String mimeType = response.getContentType();
|
||||
|
||||
if (gzipEnabled && StringUtils.hasText(acceptEncoding) && acceptEncoding.contains("gzip")
|
||||
&& compressedMimeTypes.contains(mimeType)) {
|
||||
log.debug("Enabling GZIP compression for the current response.");
|
||||
return new GZIPResponseStream(response);
|
||||
} else {
|
||||
return response.getOutputStream();
|
||||
}
|
||||
}
|
||||
|
||||
private void prepareResponse(HttpServletResponse response, URL[] resources, String rawResourcePath)
|
||||
throws IOException {
|
||||
long lastModified = -1;
|
||||
int contentLength = 0;
|
||||
String mimeType = null;
|
||||
for (int i = 0; i < resources.length; i++) {
|
||||
URLConnection resourceConn = resources[i].openConnection();
|
||||
if (resourceConn.getLastModified() > lastModified) {
|
||||
lastModified = resourceConn.getLastModified();
|
||||
}
|
||||
|
||||
String currentMimeType = getServletContext().getMimeType(resources[i].getPath());
|
||||
if (currentMimeType == null) {
|
||||
String extension = resources[i].getPath().substring(resources[i].getPath().lastIndexOf('.'));
|
||||
currentMimeType = (String) defaultMimeTypes.get(extension);
|
||||
}
|
||||
if (mimeType == null) {
|
||||
mimeType = currentMimeType;
|
||||
} else if (!mimeType.equals(currentMimeType)) {
|
||||
throw new MalformedURLException("Combined resource path: " + rawResourcePath
|
||||
+ " is invalid. All resources in a combined resource path must be of the same mime type.");
|
||||
}
|
||||
contentLength += resourceConn.getContentLength();
|
||||
}
|
||||
|
||||
response.setContentType(mimeType);
|
||||
response.setHeader(HTTP_CONTENT_LENGTH_HEADER, Long.toString(contentLength));
|
||||
response.setDateHeader(HTTP_LAST_MODIFIED_HEADER, lastModified);
|
||||
configureCaching(response, 31556926);
|
||||
}
|
||||
|
||||
protected long getLastModified(HttpServletRequest request) {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Checking last modified of resource: " + request.getPathInfo());
|
||||
}
|
||||
URL[] resources;
|
||||
try {
|
||||
resources = getRequestResourceURLs(request);
|
||||
} catch (MalformedURLException e) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (resources == null || resources.length == 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
long lastModified = -1;
|
||||
|
||||
for (int i = 0; i < resources.length; i++) {
|
||||
URLConnection resourceConn;
|
||||
try {
|
||||
resourceConn = resources[i].openConnection();
|
||||
} catch (IOException e) {
|
||||
return -1;
|
||||
}
|
||||
if (resourceConn.getLastModified() > lastModified) {
|
||||
lastModified = resourceConn.getLastModified();
|
||||
}
|
||||
}
|
||||
return lastModified;
|
||||
}
|
||||
|
||||
private URL[] getRequestResourceURLs(HttpServletRequest request) throws MalformedURLException {
|
||||
|
||||
String rawResourcePath = request.getPathInfo();
|
||||
String appendedPaths = request.getParameter("appended");
|
||||
if (StringUtils.hasText(appendedPaths)) {
|
||||
rawResourcePath = rawResourcePath + "," + appendedPaths;
|
||||
}
|
||||
String[] localResourcePaths = StringUtils.delimitedListToStringArray(rawResourcePath, ",");
|
||||
URL[] resources = new URL[localResourcePaths.length];
|
||||
for (int i = 0; i < localResourcePaths.length; i++) {
|
||||
String localResourcePath = localResourcePaths[i];
|
||||
URL resource = getServletContext().getResource(localResourcePath);
|
||||
if (resource == null) {
|
||||
String jarResourcePath = "META-INF" + localResourcePath;
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Searching classpath for resource: " + jarResourcePath);
|
||||
}
|
||||
resource = ClassUtils.getDefaultClassLoader().getResource(jarResourcePath);
|
||||
}
|
||||
if (resource == null) {
|
||||
if (resources.length > 1) {
|
||||
log.debug("Combined resource not found: " + localResourcePath);
|
||||
}
|
||||
return null;
|
||||
} else {
|
||||
resources[i] = resource;
|
||||
}
|
||||
}
|
||||
return resources;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set HTTP headers to allow caching for the given number of seconds.
|
||||
* @param seconds number of seconds into the future that the response should be cacheable for
|
||||
*/
|
||||
private void configureCaching(HttpServletResponse response, int seconds) {
|
||||
// HTTP 1.0 header
|
||||
response.setDateHeader(HTTP_EXPIRES_HEADER, System.currentTimeMillis() + seconds * 1000L);
|
||||
// HTTP 1.1 header
|
||||
response.setHeader(HTTP_CACHE_CONTROL_HEADER, "max-age=" + seconds);
|
||||
}
|
||||
|
||||
private class GZIPResponseStream extends ServletOutputStream {
|
||||
|
||||
private ByteArrayOutputStream byteStream = null;
|
||||
|
||||
private GZIPOutputStream gzipStream = null;
|
||||
|
||||
private boolean closed = false;
|
||||
|
||||
private HttpServletResponse response = null;
|
||||
|
||||
private ServletOutputStream servletStream = null;
|
||||
|
||||
public GZIPResponseStream(HttpServletResponse response) throws IOException {
|
||||
super();
|
||||
closed = false;
|
||||
this.response = response;
|
||||
this.servletStream = response.getOutputStream();
|
||||
byteStream = new ByteArrayOutputStream();
|
||||
gzipStream = new GZIPOutputStream(byteStream);
|
||||
}
|
||||
|
||||
public void close() throws IOException {
|
||||
if (closed) {
|
||||
throw new IOException("This output stream has already been closed");
|
||||
}
|
||||
gzipStream.finish();
|
||||
|
||||
byte[] bytes = byteStream.toByteArray();
|
||||
|
||||
response.setContentLength(bytes.length);
|
||||
response.addHeader("Content-Encoding", "gzip");
|
||||
servletStream.write(bytes);
|
||||
servletStream.flush();
|
||||
servletStream.close();
|
||||
closed = true;
|
||||
}
|
||||
|
||||
public void flush() throws IOException {
|
||||
if (closed) {
|
||||
throw new IOException("Cannot flush a closed output stream");
|
||||
}
|
||||
gzipStream.flush();
|
||||
}
|
||||
|
||||
public void write(int b) throws IOException {
|
||||
if (closed) {
|
||||
throw new IOException("Cannot write to a closed output stream");
|
||||
}
|
||||
gzipStream.write((byte) b);
|
||||
}
|
||||
|
||||
public void write(byte b[]) throws IOException {
|
||||
write(b, 0, b.length);
|
||||
}
|
||||
|
||||
public void write(byte b[], int off, int len) throws IOException {
|
||||
if (closed) {
|
||||
throw new IOException("Cannot write to a closed output stream");
|
||||
}
|
||||
gzipStream.write(b, off, len);
|
||||
}
|
||||
|
||||
public boolean closed() {
|
||||
return (this.closed);
|
||||
}
|
||||
|
||||
public void reset() {
|
||||
// noop
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user