com.landawn.abacus.http.AbstractHttpServlet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abacus-android Show documentation
Show all versions of abacus-android Show documentation
A general and simple library for Android
/*
* Copyright (C) 2015 HaiYang Li
*
* 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.landawn.abacus.http;
import static com.landawn.abacus.http.HTTP.URL_ENCODED;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Map;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.landawn.abacus.util.N;
import com.landawn.abacus.util.UncloseableInputStream;
import com.landawn.abacus.util.UncloseableOutputStream;
/**
*
* @since 0.8
*
* @author Haiyang Li
*/
public abstract class AbstractHttpServlet extends HttpServlet {
private static final long serialVersionUID = -6025259563199941531L;
@Override
public void init() throws ServletException {
super.init();
}
protected String getInitParameter(ServletConfig config, String parameterName) {
String parameterValue = config.getInitParameter(parameterName);
return N.isNullOrEmpty(parameterValue) ? parameterValue : parameterValue.trim();
}
protected boolean isUrlEncoded(HttpServletRequest request) throws IOException {
String contentType = request.getHeader(HttpHeaders.Names.CONTENT_TYPE);
return N.notNullOrEmpty(contentType) && contentType.indexOf(URL_ENCODED) >= 0;
}
protected ContentFormat getContentFormat(HttpServletRequest request) {
String contentType = request.getHeader(HttpHeaders.Names.CONTENT_TYPE);
String contentEncoding = request.getHeader(HttpHeaders.Names.CONTENT_ENCODING);
ContentFormat contentFormat = HTTP.getContentFormat(contentType, contentEncoding);
return contentFormat == ContentFormat.NONE ? ContentFormat.JSON : contentFormat;
}
protected InputStream getInputStream(HttpServletRequest request, final ContentFormat contentFormat) throws IOException {
final InputStream is = new UncloseableInputStream(request.getInputStream());
return N.defaultIfNull(HTTP.wrapInputStream(is, contentFormat), N.emptyInputStream());
}
protected OutputStream getOutputStream(HttpServletResponse response, ContentFormat contentFormat) throws IOException {
final String contentType = HTTP.getContentType(contentFormat);
if (N.notNullOrEmpty(contentType)) {
response.setContentType(contentType);
}
final String contentEncoding = HTTP.getContentEncoding(contentFormat);
if (N.notNullOrEmpty(contentEncoding)) {
response.setHeader(HttpHeaders.Names.CONTENT_ENCODING, contentEncoding);
}
final OutputStream os = new UncloseableOutputStream(response.getOutputStream());
return HTTP.wrapOutputStream(os, contentFormat);
}
protected void flush(OutputStream os) throws IOException {
HTTP.flush(os);
}
protected String getParameter(Map parameterMap, String parameterName) {
final String[] values = parameterMap.get(parameterName);
return N.isNullOrEmpty(values) ? null : values[0];
}
protected String getParameter(Map parameterMap, String parameterName, String defaultValue) {
final String[] values = parameterMap.get(parameterName);
return N.isNullOrEmpty(values) ? defaultValue : values[0];
}
protected T getParameter(Class cls, Map parameterMap, String parameterName) {
final String[] values = parameterMap.get(parameterName);
return N.isNullOrEmpty(values) ? N.defaultValueOf(cls) : N.convert(values[0], cls);
}
protected T getParameter(Class cls, Map parameterMap, String parameterName, T defaultValue) {
final String[] values = parameterMap.get(parameterName);
return N.isNullOrEmpty(values) ? defaultValue : N.convert(values[0], cls);
}
}