Package com.caucho.jaxb.property

Source Code of com.caucho.jaxb.property.QNameProperty

/*
* Copyright (c) 1998-2011 Caucho Technology -- all rights reserved
*
* This file is part of Resin(R) Open Source
*
* Each copy or derived work must preserve the copyright notice and this
* notice unmodified.
*
* Resin Open Source is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Resin Open Source 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, or any warranty
* of NON-INFRINGEMENT.  See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with Resin Open Source; if not, write to the
*
*   Free Software Foundation, Inc.
*   59 Temple Place, Suite 330
*   Boston, MA 02111-1307  USA
*
* @author Emil Ong
*/

package com.caucho.jaxb.property;

import java.io.IOException;
import java.util.ArrayList;

import javax.xml.XMLConstants;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.namespace.QName;
import javax.xml.namespace.NamespaceContext;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.stream.XMLStreamException;

import org.w3c.dom.Document;
import org.w3c.dom.Node;

import com.caucho.jaxb.BinderImpl;
import com.caucho.jaxb.JAXBUtil;
import com.caucho.jaxb.NodeIterator;
import com.caucho.jaxb.mapping.Namer;
import com.caucho.util.L10N;
import com.caucho.xml.stream.StaxUtil;

/**
* a qname property
*/
public class QNameProperty extends Property {
  public static final QName SCHEMA_TYPE =
    new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "QName", "xsd");

  private static final L10N L = new L10N(QNameProperty.class);

  public static final QNameProperty PROPERTY = new QNameProperty();

  private int _nsCounter = 0;

  public void write(Marshaller m, XMLStreamWriter out,
                    Object obj, Namer namer)
    throws IOException, XMLStreamException, JAXBException
  {
    QName qname = namer.getQName(obj);
    StaxUtil.writeStartElement(out, qname);

    if (obj != null) {
      QName name = (QName) obj;

      String namespace = name.getNamespaceURI();
      String prefix = name.getPrefix();

      // check if we need to declare this namespace prefix
      if (namespace != null && ! "".equals(namespace)) {
        String declaredPrefix = out.getPrefix(namespace);
       
        // 6 cases: the given prefix can be "" or not ""
        // and the declared prefix can be null, default (""), or not ""

        if (declaredPrefix == null) {
          if ("".equals(prefix)) {
            // use a dummy prefix... can use "n" all the time since we enter
            // and leave the element without any children... unless the name
            // of the element itself has a namespace with prefix "n"
            if ("n".equals(qname.getPrefix()))
              prefix = "d";
            else
              prefix = "n";

            out.writeNamespace(prefix, namespace);
          }
          else {
            // just write the given prefix
            out.writeNamespace(prefix, namespace);
          }
        }
        else if ("".equals(declaredPrefix)) {
          if (! "".equals(prefix)) {
            // need to declare this prefix
            out.writeNamespace(prefix, namespace);
          }
          // else if prefix == "" or prefix == null, do nothing
        }
        else {
          if ("".equals(prefix)) {
            // take on existing prefix
            prefix = declaredPrefix;
          }
          else if (! prefix.equals(declaredPrefix)) {
            // the given prefix doesn't match the existing one, so declare it
            out.writeNamespace(prefix, namespace);
          }
        }
      }

      if (prefix == null || "".equals(prefix))
        out.writeCharacters(name.getLocalPart());
      else
        out.writeCharacters(prefix + ":" + name.getLocalPart());
    }

    StaxUtil.writeEndElement(out, qname);
  }

  public Object bindFrom(BinderImpl binder, NodeIterator node, Object previous)
    throws JAXBException
  {
    throw new UnsupportedOperationException();
  }

  public Object readAttribute(XMLStreamReader in, int i)
    throws JAXBException
  {
    return resolveQName(in.getAttributeValue(i), in.getNamespaceContext());
  }

  // Can't use CDataProperty because we need access to the namespace map
  public Object read(Unmarshaller u, XMLStreamReader in, Object previous)
    throws IOException, XMLStreamException, JAXBException
  {
    in.next();
    Object ret = null;

    if (in.getEventType() == in.CHARACTERS) {
      String text = in.getText();
      ret = resolveQName(text, in.getNamespaceContext());

      // essentially a nextTag() that handles end of document gracefully
      while (in.hasNext()) {
        in.next();

        if (in.getEventType() == in.END_ELEMENT)
          break;
      }
    }

    // essentially a nextTag() that handles end of document gracefully
    while (in.hasNext()) {
      in.next();

      if (in.getEventType() == in.START_ELEMENT ||
          in.getEventType() == in.END_ELEMENT)
        break;
    }

    return ret;
  }

  public Node bindTo(BinderImpl binder, Node node,
                     Object obj, Namer namer)
    throws JAXBException
  {
    throw new UnsupportedOperationException();
  }

  // XXX default namespace?
  private QName resolveQName(String text, NamespaceContext context)
    throws JAXBException
  {
    int colon = text.indexOf(':');

    if (colon < 0)
      return new QName(text);
    else {
      String prefix = text.substring(0, colon);

      // NOTE!!! The Xerces StAX requires the prefixes to be interned for
      // some reason...
      String namespace = context.getNamespaceURI(prefix.intern());

      if (namespace == null)
        throw new JAXBException(L.l("No known namespace for prefix '{0}'", prefix));

      String localName = text.substring(colon + 1);

      if ("".equals(localName))
        throw new JAXBException(L.l("Malformed QName: empty localName"));

      return new QName(namespace, localName, prefix);
    }
  }

  public QName getSchemaType()
  {
    return SCHEMA_TYPE;
  }
}
TOP

Related Classes of com.caucho.jaxb.property.QNameProperty

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.