package uws.job.serializer;
/*
* This file is part of UWSLibrary.
*
* UWSLibrary is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* UWSLibrary is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with UWSLibrary. If not, see .
*
* Copyright 2012-2017 - UDS/Centre de Données astronomiques de Strasbourg (CDS),
* Astronomisches Rechen Institut (ARI)
*/
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.Iterator;
import uws.ISO8601Format;
import uws.UWSException;
import uws.job.ErrorSummary;
import uws.job.JobList;
import uws.job.Result;
import uws.job.UWSJob;
import uws.job.jobInfo.JobInfo;
import uws.job.serializer.filter.JobListRefiner;
import uws.job.user.JobOwner;
import uws.service.UWS;
import uws.service.UWSUrl;
import uws.service.request.UploadFile;
/**
* Lets serializing any UWS resource in XML.
*
* @author Grégory Mantelet (CDS;ARI)
* @version 4.3 (10/2017)
*/
public class XMLSerializer extends UWSSerializer {
private static final long serialVersionUID = 1L;
/** Tab to add just before each next XML node. */
protected String tabPrefix = "";
/** The path of the XSLT style-sheet. */
protected String xsltPath = null;
/**
* Builds a XML serializer.
*/
public XMLSerializer(){
;
}
/**
* Builds a XML serializer with a XSLT link.
*
* @param xsltPath Path of a XSLT style-sheet.
*/
public XMLSerializer(final String xsltPath){
this.xsltPath = xsltPath;
}
/**
* Gets the path/URL of the XSLT style-sheet to use.
*
* @return XSLT path/url.
*/
public final String getXSLTPath(){
return xsltPath;
}
/**
* Sets the path/URL of the XSLT style-sheet to use.
*
* @param path The new XSLT path/URL.
*/
public final void setXSLTPath(final String path){
if (path == null)
xsltPath = null;
else{
xsltPath = path.trim();
if (xsltPath.isEmpty())
xsltPath = null;
}
}
/**
* Gets the XML file header (xml version, encoding and the xslt
* style-sheet link if any).
*
*
* It is always called by the implementation of the UWSSerializer functions
* if their boolean parameter (root) is true.
*
*
* @return The XML file header.
*/
public String getHeader(){
StringBuffer xmlHeader = new StringBuffer("\n");
if (xsltPath != null)
xmlHeader.append("\n");
return xmlHeader.toString();
}
/**
* Gets all UWS namespaces declarations needed for an XML representation of
* a UWS object.
*
* @return The UWS namespaces:
(i.e. = "xmlns:uws=[...]
* xmlns:xlink=[...] xmlns:xs=[...] xmlns:xsi=[...]
* xsi:schemaLocation=[...]").
*/
public String getUWSNamespace(){
return "xmlns=\"http://www.ivoa.net/xml/UWS/v1.0\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.ivoa.net/xml/UWS/v1.0 http://www.ivoa.net/xml/UWS/v1.0 http://www.w3.org/1999/xlink http://www.w3.org/1999/xlink.xsd http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd\"";
}
/**
* Gets the node attributes which declare the UWS namespace.
*
* @param root false if the attribute to serialize will be included
* in a top level serialization (for a job attribute: job),
* true otherwise.
*
* @return "" if root is false, " "+UWSNamespace
* otherwise.
*
* @see #getUWSNamespace()
*/
protected final String getUWSNamespace(boolean root){
if (root)
return " " + getUWSNamespace();
else
return "";
}
@Override
public final String getMimeType(){
return MIME_TYPE_XML;
}
@Override
public String getUWS(final UWS uws, final JobOwner user){
String name = uws.getName(), description = uws.getDescription();
StringBuffer xml = new StringBuffer(getHeader());
xml.append("\n");
if (description != null)
xml.append("\t\n").append(escapeXMLData(description)).append("\n\t\n");
xml.append("\t\n");
for(JobList jobList : uws){
UWSUrl jlUrl = jobList.getUrl();
xml.append("\t\t\n");
}
xml.append("\t\n");
xml.append("\n");
return xml.toString();
}
@Override
public String getJobList(final JobList jobsList, final JobOwner owner, final JobListRefiner listRefiner, final boolean root) throws Exception{
StringBuffer xml = new StringBuffer(getHeader());
xml.append("');
UWSUrl jobsListUrl = jobsList.getUrl();
// Security filter: retrieve only the jobs of the specified owner:
Iterator it = jobsList.getJobs(owner);
/* User filter: filter the jobs in function of filters specified by the
* user: */
if (listRefiner != null)
it = listRefiner.refine(it);
// Append the jobs' description:
while(it.hasNext())
xml.append("\n\t").append(getJobRef(it.next(), jobsListUrl));
xml.append("\n");
return xml.toString();
}
@Override
public String getJob(final UWSJob job, final boolean root) throws UWSException{
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
String newLine = "\n\t";
// general information:
xml.append("');
xml.append(newLine).append(getJobID(job, false));
if (job.getRunId() != null)
xml.append(newLine).append(getRunID(job, false));
xml.append(newLine).append(getOwnerID(job, false));
xml.append(newLine).append(getPhase(job, false));
xml.append(newLine).append(getQuote(job, false));
xml.append(newLine).append(getCreationTime(job, false));
xml.append(newLine).append(getStartTime(job, false));
xml.append(newLine).append(getEndTime(job, false));
xml.append(newLine).append(getExecutionDuration(job, false));
xml.append(newLine).append(getDestructionTime(job, false));
tabPrefix = "\t";
newLine = "\n";
// parameters:
xml.append(newLine).append(getAdditionalParameters(job, false));
// results:
xml.append(newLine).append(getResults(job, false));
// errorSummary:
if (job.getErrorSummary() != null)
xml.append(newLine).append(getErrorSummary(job.getErrorSummary(), false));
// jobInfo:
if (job.getJobInfo() != null)
xml.append(newLine).append(getJobInfo(job));
tabPrefix = "";
return xml.append("\n").toString();
}
@Override
public String getJobRef(final UWSJob job, final UWSUrl jobsListUrl){
String url = null;
if (jobsListUrl != null){
jobsListUrl.setJobId(job.getJobId());
url = jobsListUrl.getRequestURL();
}
StringBuffer xml = new StringBuffer("');
// [MANDATORY] Append the execution phase:
xml.append("\n\t\t").append(getPhase(job, false));
// [OPTIONAL] Append the RUN ID (name/label of the job set by the user), if any:
if (job.getRunId() != null)
xml.append("\n\t\t").append(getRunID(job, false));
// [OPTIONAL] Append the job owner, if any:
if (job.getOwner() != null)
xml.append("\n\t\t").append(getOwnerID(job, false));
// [OPTIONAL] Append the creation time:
xml.append("\n\t\t").append(getCreationTime(job, false));
xml.append("\n\t");
return xml.toString();
}
@Override
public String getJobID(final UWSJob job, final boolean root){
return (new StringBuffer(root ? getHeader() : "")).append("').append(escapeXMLData(job.getJobId())).append("").toString();
}
@Override
public String getRunID(final UWSJob job, final boolean root){
if (job.getRunId() != null){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append("').append(escapeXMLData(job.getRunId())).append("");
return xml.toString();
}else
return "";
}
@Override
public String getOwnerID(final UWSJob job, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append("");
else
xml.append('>').append(escapeXMLData(job.getOwner().getPseudo())).append("");
return xml.toString();
}
@Override
public String getPhase(final UWSJob job, final boolean root){
return (new StringBuffer(root ? getHeader() : "")).append("').append(job.getPhase()).append("").toString();
}
@Override
public String getQuote(final UWSJob job, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append("
");
else
xml.append('>').append(job.getQuote()).append("");
return xml.toString();
}
@Override
public String getCreationTime(final UWSJob job, final boolean root){
return (new StringBuffer(root ? getHeader() : "")).append("').append(ISO8601Format.format(job.getCreationTime())).append("").toString();
}
@Override
public String getStartTime(final UWSJob job, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append("");
else
xml.append('>').append(ISO8601Format.format(job.getStartTime())).append("");
return xml.toString();
}
@Override
public String getEndTime(final UWSJob job, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append("");
else
xml.append('>').append(ISO8601Format.format(job.getEndTime())).append("");
return xml.toString();
}
@Override
public String getDestructionTime(final UWSJob job, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append("");
else
xml.append('>').append(ISO8601Format.format(job.getDestructionTime())).append("");
return xml.toString();
}
@Override
public String getExecutionDuration(final UWSJob job, final boolean root){
return (new StringBuffer(root ? getHeader() : "")).append("').append(job.getExecutionDuration()).append("").toString();
}
@Override
public String getErrorSummary(final ErrorSummary error, final boolean root){
if (error != null){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append(tabPrefix).append("");
xml.append("\n\t").append(tabPrefix).append("").append(escapeXMLData(error.getMessage())).append("");
xml.append('\n').append(tabPrefix).append("");
return xml.toString();
}else
return "";
}
@Override
public String getAdditionalParameters(final UWSJob job, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append(tabPrefix).append("");
String newLine = "\n\t" + tabPrefix;
for(String paramName : job.getAdditionalParameters())
xml.append(newLine).append(getAdditionalParameter(paramName, job.getAdditionalParameterValue(paramName), false));
xml.append('\n').append(tabPrefix).append("");
return xml.toString();
}
@Override
public String getAdditionalParameter(final String paramName, final Object paramValue, final boolean root){
if (paramName != null && paramValue != null){
// If ROOT, just the value must be returned:
if (root){
if (paramValue.getClass().isArray()){
StringBuffer buf = new StringBuffer();
for(Object o : (Object[])paramValue){
if (buf.length() > 0)
buf.append(';');
buf.append(o.toString());
}
return buf.toString();
}else
return paramValue.toString();
}
// OTHERWISE, return the XML description:
else{
StringBuffer buf = new StringBuffer();
// if array (=> multiple occurrences of the parameter), each item must be one individual parameter:
if (paramValue.getClass().isArray()){
for(Object o : (Object[])paramValue){
if (buf.length() > 0)
buf.append("\n\t").append(tabPrefix);
buf.append(getAdditionalParameter(paramName, o, root));
}
}
// otherwise, just return the XML parameter description:
else{
buf.append("').append(escapeXMLData(paramValue.toString())).append("");
}
return buf.toString();
}
}
// If NO VALUE or NO NAME, return an empty string:
else
return "";
}
@Override
public String getResults(final UWSJob job, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append(tabPrefix).append("");
Iterator it = job.getResults();
String newLine = "\n\t" + tabPrefix;
while(it.hasNext())
xml.append(newLine).append(getResult(it.next(), false));
xml.append('\n').append(tabPrefix).append("");
return xml.toString();
}
@Override
public String getResult(final Result result, final boolean root){
StringBuffer xml = new StringBuffer(root ? getHeader() : "");
xml.append("= 0)
xml.append(" size=\"").append(result.getSize()).append('"');
return xml.append(" />").toString();
}
/**
* Serialize into XML the {@link JobInfo} of the given job, if any.
*
* Important note:
* By default, this function wrap the XML content returned by
* {@link JobInfo#getXML(String)} inside an XML node "jobInfo".
* To change this behavior, you should overwrite this function.
*
*
* @param job The job whose the jobInfo must be serialized into XML.
*
* @return The XML serialization of the given job's jobInfo,
* or an empty string if the given job has no jobInfo.
*
* @since 4.2
*/
public String getJobInfo(final UWSJob job) throws UWSException{
if (job.getJobInfo() != null){
StringBuffer xml = new StringBuffer();
xml.append(tabPrefix).append("");
xml.append("\n\t").append(tabPrefix).append(job.getJobInfo().getXML("\n\t" + tabPrefix));
xml.append('\n').append(tabPrefix).append("");
return xml.toString();
}else
return "";
}
/* ************** */
/* ESCAPE METHODS */
/* ************** */
/**
* Escapes the content of a node (data between the open and the close tags).
*
* @param data Data to escape.
*
* @return Escaped data.
*/
public static String escapeXMLData(final String data){
StringBuffer encoded = new StringBuffer();
for(int i = 0; i < data.length(); i++){
char c = data.charAt(i);
switch(c){
case '&':
encoded.append("&");
break;
case '<':
encoded.append("<");
break;
case '>':
encoded.append(">");
break;
default:
encoded.append(ensureLegalXml(c));
}
}
return encoded.toString();
}
/**
* Escapes the given value of an XML attribute.
*
* @param value Value of an XML attribute.
*
* @return The escaped value.
*/
public static String escapeXMLAttribute(final String value){
StringBuffer encoded = new StringBuffer();
for(int i = 0; i < value.length(); i++){
char c = value.charAt(i);
switch(c){
case '&':
encoded.append("&");
break;
case '<':
encoded.append("<");
break;
case '>':
encoded.append(">");
break;
case '"':
encoded.append(""");
break;
default:
encoded.append(ensureLegalXml(c));
}
}
return encoded.toString();
}
/**
* Escapes the given URL.
*
* @param url URL to escape.
*
* @return The escaped URL.
*
* @see URLEncoder
* @see #escapeXMLAttribute(String)
*/
public static String escapeURL(final String url){
try{
return URLEncoder.encode(url, "UTF-8");
}catch(UnsupportedEncodingException e){
return escapeXMLAttribute(url);
}
}
/**
* Returns a legal XML character corresponding to an input character.
* Certain characters are simply illegal in XML (regardless of encoding).
* If the input character is legal in XML, it is returned;
* otherwise some other weird but legal character
* (currently the inverted question mark, "\u00BF") is returned instead.
*
* Note:
* copy of the STILTS VOSerializer.ensureLegalXml(char) function.
*
*
* @param c input character
* @return legal XML character, c if possible
*
* @since 4.1
*/
public static char ensureLegalXml(char c){
return ((c >= '\u0020' && c <= '\uD7FF') || (c >= '\uE000' && c <= '\uFFFD') || ((c) == 0x09 || (c) == 0x0A || (c) == 0x0D)) ? c : '\u00BF';
}
/** Regular expression for the first character of a valid XML node name.
* Note:
* This rule comes from the XML 1.1 standard by the W3C:
* https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-NameStartChar
*
* @since 4.2 */
private final static String XML_START_NODE_NAME_REGEX = ":A-Z_a-z\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\x{2FF}\\x{370}-\\x{37D}\\x{37F}-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\x{10000}-\\x{EFFFF}";
/**
* Regular expression of a whole valid XML node name.
* Note:
* This rule comes from the XML 1.1 standard by the W3C:
* https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-Name
*
* @since 4.2 */
private final static String XML_NODE_NAME_REGEX = "[" + XML_START_NODE_NAME_REGEX + "][" + XML_START_NODE_NAME_REGEX + "\\-.0-9\\xB7\\u0300-\\u036F\\u203F-\\u2040]*";
/**
* Determine whether the given name is a valid XML node name
* according to the W3C (XML 1.1).
*
* Note:
* In addition of validating the given name against the regular expression
* provided by the W3C (see {@link #XML_NODE_NAME_REGEX}), this function
* ensures the given name does not start with "XML" according to the
* following W3C note:
* https://www.w3.org/TR/2006/REC-xml11-20060816/#dt-name
*
*
* @param nodeName XML node name to test.
*
* @return true if the given node name is valid,
* false otherwise.
*
* @since 4.2
*/
public static boolean isValidXMLNodeName(final String nodeName){
return nodeName.matches(XML_NODE_NAME_REGEX) && !nodeName.toLowerCase().startsWith("xml");
}
}