All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.xml.infer.InferHandler Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
package com.thaiopensource.xml.infer;

import com.thaiopensource.xml.util.Name;
import org.relaxng.datatype.DatatypeLibraryFactory;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.Vector;

public class InferHandler extends DefaultHandler {
  private final Map inferrerMap = new HashMap();
  private OpenElement openElement = null;
  private final Set startSet = new HashSet();
  private final List attributeNames = new Vector();
  private final DatatypeRepertoire datatypes;
  private final StringBuffer textBuffer = new StringBuffer();
  private final Set usedNamespaceUris = new HashSet();
  private final Schema schema = new Schema();
  private final Set assignedPrefixes = new HashSet();

  private static class OpenElement {
    final OpenElement parent;
    final ElementDeclInferrer inferrer;

    public OpenElement(OpenElement parent, ElementDeclInferrer inferrer) {
      this.parent = parent;
      this.inferrer = inferrer;
    }
  }

  public void startElement(String uri, String localName,
                           String qName, Attributes attributes)
          throws SAXException {
    Name name = makeName(uri, localName);
    if (openElement == null)
      startSet.add(name);
    else {
      if (textBuffer.length() > 0) {
        if (!DatatypeInferrer.isWhiteSpace(textBuffer.toString()))
          openElement.inferrer.addText();
        textBuffer.setLength(0);
      }
      openElement.inferrer.addElement(name);
    }
    for (int i = 0, len = attributes.getLength(); i < len; i++)
      attributeNames.add(makeName(attributes.getURI(i), attributes.getLocalName(i)));
    ElementDeclInferrer inferrer = inferrerMap.get(name);
    if (inferrer == null) {
      inferrer = new ElementDeclInferrer(datatypes, attributeNames);
      inferrerMap.put(name, inferrer);
    }
    else
      inferrer.addAttributeNames(attributeNames);
    for (int i = 0, len = attributes.getLength(); i < len; i++)
      inferrer.addAttributeValue(attributeNames.get(i), attributes.getValue(i));
    attributeNames.clear();
    openElement = new OpenElement(openElement, inferrer);
  }

  public void startPrefixMapping(String prefix, String uri)
          throws SAXException {
    if (prefix != null
        && !prefix.equals("")
        && schema.getPrefixMap().get(uri) == null
        && !assignedPrefixes.contains(prefix)) {
      assignedPrefixes.add(prefix);
      schema.getPrefixMap().put(uri, prefix);
    }
  }

  private Name makeName(String uri, String localName) {
    if (!uri.equals(""))
      usedNamespaceUris.add(uri);
    return new Name(uri, localName);
  }

  public void characters(char ch[], int start, int length)
          throws SAXException {
    if (openElement.inferrer.wantValue())
      textBuffer.append(ch, start, length);
    else {
      for (int i = 0; i < length; i++)
        switch (ch[start + i]) {
          case ' ':
          case '\t':
          case '\n':
          case '\r':
            break;
          default:
            openElement.inferrer.addText();
            return;
        }
    }
  }

  public void endElement(String uri, String localName, String qName)
          throws SAXException {
    if (openElement.inferrer.wantValue()) {
      openElement.inferrer.addValue(textBuffer.toString());
      textBuffer.setLength(0);
    }
    else
      openElement.inferrer.endSequence();
    openElement = openElement.parent;
  }

  public Schema getSchema() {
    for (Map.Entry entry : inferrerMap.entrySet()) {
      ElementDecl decl = (entry.getValue()).infer();
      Name name = entry.getKey();
      schema.getElementDecls().put(name, decl);
    }
    schema.setStart(makeStart());
    schema.getPrefixMap().keySet().retainAll(usedNamespaceUris);
    return schema;
  }

  private Particle makeStart() {
    Particle start = null;
    for (Name name : startSet) {
      Particle tem = new ElementParticle(name);
      if (start == null)
        start = tem;
      else
        start = new ChoiceParticle(start, tem);
    }
    return start;
  }

  public InferHandler(DatatypeLibraryFactory factory) {
    this.datatypes = new DatatypeRepertoire(factory);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy