
org.openrdf.http.server.repository.QueryResultView Maven / Gradle / Ivy
/*
* Licensed to Aduna under one or more contributor license agreements.
* See the NOTICE.txt file distributed with this work for additional
* information regarding copyright ownership.
*
* Aduna licenses this file to you under the terms of the Aduna BSD
* License (the "License"); you may not use this file except in compliance
* with the License. See the LICENSE.txt file distributed with this work
* for the full License.
*
* 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.openrdf.http.server.repository;
import static org.openrdf.http.protocol.Protocol.QUERY_PARAM_NAME;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.servlet.View;
import info.aduna.lang.FileFormat;
/**
* Base class for rendering query results.
*
* @author Herko ter Horst
* @author Arjohn Kampman
*/
public abstract class QueryResultView implements View {
private Logger logger = LoggerFactory.getLogger(this.getClass());
/**
* Key by which the query result is stored in the model.
*/
public static final String QUERY_RESULT_KEY = "queryResult";
/**
* Key by which the query result writer factory is stored in the model.
*/
public static final String FACTORY_KEY = "factory";
/**
* Key by which a filename hint is stored in the model. The filename hint may
* be used to present the client with a suggestion for a filename to use for
* storing the result.
*/
public static final String FILENAME_HINT_KEY = "filenameHint";
public static final String HEADERS_ONLY = "headersOnly";
protected void setContentType(HttpServletResponse response, FileFormat fileFormat)
throws IOException
{
String mimeType = fileFormat.getDefaultMIMEType();
if (fileFormat.hasCharset()) {
Charset charset = fileFormat.getCharset();
mimeType += "; charset=" + charset.name();
}
response.setContentType(mimeType);
}
@SuppressWarnings("rawtypes")
protected void setContentDisposition(Map model, HttpServletResponse response, FileFormat fileFormat)
throws IOException
{
// Report as attachment to make use in browser more convenient
String filename = (String)model.get(FILENAME_HINT_KEY);
if (filename == null || filename.length() == 0) {
filename = "result";
}
if (fileFormat.getDefaultFileExtension() != null) {
filename += "." + fileFormat.getDefaultFileExtension();
}
response.setHeader("Content-Disposition", "attachment; filename=" + filename);
}
protected void logEndOfRequest(HttpServletRequest request) {
if (logger.isInfoEnabled()) {
String queryStr = request.getParameter(QUERY_PARAM_NAME);
int qryCode = String.valueOf(queryStr).hashCode();
logger.info("Request for query {} is finished", qryCode);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy