- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 11 Aug 2009 16:05:39 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/response/parser In directory hutz:/tmp/cvs-serv2609/src/org/w3c/unicorn/response/parser Added Files: Tag: dev2 ResponseParser.java DefaultParser.java ResponseParserFactory.java Log Message: all initialization actions in Init.java + compatibility windows/linux --- NEW FILE: ResponseParserFactory.java --- package org.w3c.unicorn.response.parser; import java.io.IOException; import javax.xml.parsers.ParserConfigurationException; import org.w3c.unicorn.Framework; import org.w3c.unicorn.response.Response; import org.xml.sax.SAXException; /** * Factory to create ResponseParsers * */ public class ResponseParserFactory { /** * Creates a parser corresponding to the type of the response. * * @param responseType * The type of the response. * @return The created parser. * @throws SAXException * @throws ParserConfigurationException * @throws IOException */ public static ResponseParser createResponseParser(String responseType) throws SAXException, ParserConfigurationException, IOException { ResponseParser rsp = Framework.mapOfReponseParser.get(responseType); if (rsp == null) { rsp = new DefaultParser(); } return rsp; } /** * Parses the string thanks to a response parser and returns the response. * * @param r * the string * @param responseType * The type of the response. * @return The response parsed corresponding to the input. */ public static Response parse(String r, String responseType) { try { Response response = createResponseParser(responseType).parse(r); return response; } catch (SAXException e) { e.printStackTrace(); } catch (ParserConfigurationException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return null; } } --- NEW FILE: ResponseParser.java --- package org.w3c.unicorn.response.parser; import org.w3c.unicorn.response.Response; public interface ResponseParser { public Response parse(String r); } --- NEW FILE: DefaultParser.java --- package org.w3c.unicorn.response.parser; import java.math.BigInteger; import java.util.ArrayList; import java.util.Calendar; import java.util.GregorianCalendar; import java.util.List; import javax.xml.datatype.DatatypeConfigurationException; import javax.xml.datatype.DatatypeFactory; import javax.xml.datatype.XMLGregorianCalendar; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.xmlbeans.XmlCursor; import org.apache.xmlbeans.XmlObject; import org.w3.unicorn.observationresponse.ObservationresponseDocument; import org.w3.unicorn.observationresponse.ObservationresponseDocument.Observationresponse; import org.w3c.unicorn.response.A; import org.w3c.unicorn.response.Code; import org.w3c.unicorn.response.Error; import org.w3c.unicorn.response.Img; import org.w3c.unicorn.response.Info; import org.w3c.unicorn.response.Inline; import org.w3c.unicorn.response.Longmessage; import org.w3c.unicorn.response.Response; import org.w3c.unicorn.response.Result; import org.w3c.unicorn.response.Warning; import org.w3c.unicorn.util.LocalizedString; /** * Default parser class. * */ public class DefaultParser implements ResponseParser { protected static final Log logger = LogFactory .getLog("org.w3c.unicorn.response.parser.DefaultParser"); /** * Parses the input and returns the response. * * @param inputStream * The input stream. * @return The corresponding response. */ public Response parse(String r) { try { org.w3.unicorn.observationresponse.ObservationresponseDocument ord = org.w3.unicorn.observationresponse.ObservationresponseDocument.Factory .parse(r); return swap(ord); } catch (Exception e) { e.printStackTrace(); return null; } } /** * Creates and fills a Response object from a response document. * * @param x * The response document. * @param lang * The language of the response. * @return The response object. */ protected Response swap(ObservationresponseDocument ord) { Observationresponse or = ord.getObservationresponse(); Response res = new Response(); XMLGregorianCalendar xmlGregorianCalendar; if (or.getDate() != null) { try { xmlGregorianCalendar = DatatypeFactory.newInstance() .newXMLGregorianCalendar( (GregorianCalendar) or.getDate()); or.setDate(Calendar.getInstance()); res.setDate(xmlGregorianCalendar); } catch (DatatypeConfigurationException e) { e.printStackTrace(); logger.error("DatatypeConfigurationException erreur de date : " + e.getMessage(), e); return null; } } res.setCheckedby(or.getCheckedby()); res.setPassed(or.getPassed()); res.setUri(or.getUri()); res.setVersion(or.getVersion()); org.w3.unicorn.observationresponse.ResultDocument.Result result = or .getResult(); // Fill res.result if (result != null) { org.w3.unicorn.observationresponse.WarningsDocument.Warnings warnings = result .getWarnings(); if (warnings != null && warnings.getWarninglistArray() != null) { for (org.w3.unicorn.observationresponse.WarninglistDocument.Warninglist wl : warnings .getWarninglistArray()) { String lang = warnings.getLang(); Result r = new Result(lang, wl.getUri()); for (org.w3.unicorn.observationresponse.WarningDocument.Warning w : wl .getWarningArray()) { r.getWarnings().add(swap(w, lang)); } res.addResult(r); } } org.w3.unicorn.observationresponse.ErrorsDocument.Errors errors = result .getErrors(); if (errors != null && errors.getErrorlistArray() != null) { for (org.w3.unicorn.observationresponse.ErrorlistDocument.Errorlist el : errors .getErrorlistArray()) { String lang = errors.getLang(); Result r = new Result(errors.getLang(), el.getUri()); for (org.w3.unicorn.observationresponse.ErrorDocument.Error e : el .getErrorArray()) { r.getErrors().add(swap(e, lang)); } res.addResult(r); } } org.w3.unicorn.observationresponse.InformationsDocument.Informations informations = result .getInformations(); if (informations != null && informations.getInfolistArray() != null) { String lang = informations.getLang(); for (org.w3.unicorn.observationresponse.InfolistDocument.Infolist il : informations .getInfolistArray()) { Result r = new Result(informations.getLang(), il.getUri()); for (org.w3.unicorn.observationresponse.InfoDocument.Info i : il .getInfoArray()) { r.getInfos().add(swap(i, lang)); } res.addResult(r); } } } return res; } /** * Creates and fills a Warning object from a warning in a response. * * @param x * The warning from the document. * @param lang * The language of the warning. * @return The resulting Warning object. */ private Warning swap( org.w3.unicorn.observationresponse.WarningDocument.Warning x, String lang) { Warning y = new Warning(); y.setLine(x.getLine()); y.setColumn(x.getColumn()); y.setContext(x.getContext()); y.setLevel(x.getLevel()); y.setMessage(swapListMessage(x.getMessageArray(), lang)); y.setLongmessage(swapListLongmessage(x.getLongmessageArray(), lang)); return y; } /** * Creates and fills a Error object from an error in a response. * * @param x * The error from the document. * @param lang * The language of the Error. * @return The resulting Error object. */ private Error swap( org.w3.unicorn.observationresponse.ErrorDocument.Error x, String lang) { Error y = new Error(); y.setLine(x.getLine()); y.setColumn(x.getColumn()); y.setErrortype(x.getErrortype()); y.setContext(x.getContext()); y.setMessage(swapListMessage(x.getMessageArray(), lang)); y.setLongmessage(swapListLongmessage(x.getLongmessageArray(), lang)); return y; } /** * Creates and fills a Info object from an info in a response. * * @param x * The info from the document. * @param lang * The language of the Info. * @return The resulting Info object. */ private Info swap(org.w3.unicorn.observationresponse.InfoDocument.Info x, String lang) { Info y = new Info(); y.setLine(x.getLine()); y.setColumn(x.getColumn()); y.setContext(x.getContext()); y.setMessage(swapListMessage(x.getMessageArray(), lang)); y.setLongmessage(swapListLongmessage(x.getLongmessageArray(), lang)); return y; } /** * Returns a list of localized strings from a list of simple strings. and a * given language. * * @param x * The list of strings. * @param lang * The language of the list. * @return The new list of localized strings. */ private List<LocalizedString> swapListMessage(String[] x, String lang) { List<LocalizedString> y = new ArrayList<LocalizedString>(); for (Object ox : x) { String cox = (String) ox; LocalizedString coy = new LocalizedString(cox, lang); y.add(coy); } return y; } /** * Returns a list of Longmessage objects from a list of longmessage in a * response. and a given language. * * @param x * The list of longmessage. * @param lang * The language of the list. * @return The list of Longmessage objects. */ private List<Longmessage> swapListLongmessage( org.w3.unicorn.observationresponse.LongmessageDocument.Longmessage[] x, String lang) { List<Longmessage> y = new ArrayList<Longmessage>(); for (Object ox : x) { org.w3.unicorn.observationresponse.LongmessageDocument.Longmessage cox = (org.w3.unicorn.observationresponse.LongmessageDocument.Longmessage) ox; Longmessage coy = swap(cox, lang); y.add(coy); } return y; } /** * Creates and fills a Longmessage object from a longmessage in a response. * * @param x * The info document. * @param lang * The language of the Info. * @return The resulting Info object. */ private Longmessage swap( org.w3.unicorn.observationresponse.LongmessageDocument.Longmessage x, String lang) { Longmessage y = new Longmessage(); y.setLang(lang); List<Object> list = new ArrayList<Object>(); list = swapObj(x, lang); y.setContent(list); return y; } /** * Parses an Xml extract corresponding to an object and returns its content. * * @param obj * The xml extract. * @param lang * The language of the document. * @return The content of the XmlObject. */ private List<Object> swapObj(XmlObject obj, String lang) { List<Object> list = new ArrayList<Object>(); XmlCursor cursor = obj.newCursor(); int count = 0; cursor.toNextToken(); while (cursor.hasNextToken()) { if (cursor.isStart()) { count++; XmlObject current = cursor.getObject(); // Should be useless if (current instanceof org.w3.unicorn.observationresponse.impl.LongmessageDocumentImpl.LongmessageImpl || current instanceof org.w3.unicorn.observationresponse.impl.InfoDocumentImpl.InfoImpl) { break; } // Case : A else if (current instanceof org.w3.unicorn.observationresponse.impl.ADocumentImpl.AImpl) { org.w3.unicorn.observationresponse.ADocument.A a = (org.w3.unicorn.observationresponse.ADocument.A) current; A coy = new A(); List<Object> content = new ArrayList<Object>(); coy.setHref(a.getHref()); content = swapObj(current, lang); coy.setContent(content); list.add(coy); for (Object o : content) { if (o instanceof Inline) { count++; } } cursor.toEndToken(); } // Case : Code else if (current instanceof org.w3.unicorn.observationresponse.impl.CodeDocumentImpl.CodeImpl) { Code coy = new Code(); List<Object> content = new ArrayList<Object>(); content = swapObj(current, lang); coy.setContent(content); list.add(coy); for (Object o : content) { if (o instanceof Inline) { count++; } } cursor.toEndToken(); } // Case : Img else if (current instanceof org.w3.unicorn.observationresponse.impl.ImgDocumentImpl.ImgImpl) { org.w3.unicorn.observationresponse.ImgDocument.Img img = (org.w3.unicorn.observationresponse.ImgDocument.Img) current; Img coy = new Img(); coy.setAlt(img.getAlt()); coy.setHeight(img.getHeight()); coy.setLongdesc(img.getLongdesc()); coy.setName(img.getName()); coy.setSrc(img.getSrc()); coy.setWidth(img.getWidth()); list.add(coy); cursor.toEndToken(); } // If the class is not recognized, we check the name and // eventually // build the corresponding object // Case : A from XmlAnyTypeImpl else if (cursor.getName().toString().equals( "{http://www.w3.org/unicorn/observationresponse}a")) { A coy = new A(); List<Object> content = new ArrayList<Object>(); cursor.toNextToken(); coy.setHref(cursor.getTextValue()); cursor.toPrevToken(); cursor.push(); content = swapObj(current, lang); cursor.pop(); coy.setContent(content); list.add(coy); for (Object o : content) { if (o instanceof Inline) { count++; } } cursor.toEndToken(); count--; } // Case : Code from XmlAnyTypeImpl else if (cursor.getName().toString().equals( "{http://www.w3.org/unicorn/observationresponse}code")) { Code coy = new Code(); List<Object> content = new ArrayList<Object>(); cursor.push(); content = swapObj(current, lang); cursor.pop(); coy.setContent(content); list.add(coy); for (Object o : content) { if (o instanceof Inline) { count++; } } cursor.toEndToken(); count--; } // Case : Img from XmlAnyTypeImpl else if (cursor.getName().toString().equals( "{http://www.w3.org/unicorn/observationresponse}img")) { cursor.toNextToken(); Img coy = new Img(); while (cursor.isAttr() && cursor.hasNextToken()) { if (cursor.getName().toString().equals("src")) { coy.setSrc(cursor.getTextValue()); } else if (cursor.getName().toString().equals("alt")) { coy.setAlt(cursor.getTextValue()); } else if (cursor.getName().toString().equals( "longdesc")) { coy.setLongdesc(cursor.getTextValue()); } else if (cursor.getName().toString().equals("name")) { coy.setName(cursor.getTextValue()); } else if (cursor.getName().toString().equals("width")) { coy.setWidth(new BigInteger(cursor.getTextValue())); } else if (cursor.getName().toString().equals("height")) { coy .setHeight(new BigInteger(cursor .getTextValue())); } cursor.toNextToken(); } list.add(coy); cursor.toEndToken(); count--; } // We still want to append what's inside a block even if the // block's unknown else { cursor.push(); list.addAll(swapObj(current, lang)); cursor.pop(); cursor.toEndToken(); count--; } } else if (cursor.isText()) { LocalizedString ls = new LocalizedString(cursor.getChars(), lang); list.add(ls); } else if (cursor.isEnd()) { count--; if (count <= 0) { break; } } cursor.toNextToken(); } cursor.dispose(); return list; } }
Received on Tuesday, 11 August 2009 16:08:59 UTC