XSModel:获取模型组信息

时间:2013-11-02 19:26:52

标签: xml xsd xerces

使用Xerces SAX库的XSModel作为XSD语法的表示,如果我有一个引用模型组的复杂类型,我该如何检索模型组?似乎由Xerces提供的XSModel实例表示的复杂类型定义仅提供对组的展平(扩展)内容(pe组元素)的访问,而不是实际组或参考到群组定义(甚至群组名称; XSModelGroupImpl的{​​{1}} - 方法包含getName() ...)。

1 个答案:

答案 0 :(得分:6)

模型组很容易被Xerces暴露。 但是,您应该使用org.apache.xerces.xs包。 模型组可以在顶级声明中找到,也可以在复杂类型中找到。

以下是Java代码示例:

import org.apache.xerces.xs.*;
import org.apache.xerces.dom.DOMXSImplementationSourceImpl;
....

/**
 * Load an XSD file
 */
void loadSchema (String xsdURI)
{
  XSImplementation impl = (XSImplementation)
    (new DOMXSImplementationSourceImpl()).getDOMImplementation ("XS-Loader");

  XSLoader schemaLoader = impl.createXSLoader (null);

  XSModel xsModel = schemaLoader.loadURI (xsdURI);
}

/**
 * Process schema content
 */
private void processXSModel (XSModel xsModel)
{
  XSNamedMap xsMap;

  // process model group definitions
  xsMap = xsModel.getComponents (XSConstants.MODEL_GROUP_DEFINITION);
  for (int i = 0; i < xsMap.getLength(); i ++)
  {
    XSModelGroupDefinition xsGroupDef = (XSModelGroupDefinition) xsMap.item (i);
    XSModelGroup xsGroup = xsGroupDef.getModelGroup();
    ...
  }

  // process top-level type definitions
  xsMap = xsModel.getComponents (XSConstants.TYPE_DEFINITION);
  for (int i = 0; i < xsMap.getLength(); i ++)
  {
    XSTypeDefinition xsTDef = (XSTypeDefinition) xsMap.item (i);
    processXSTypeDef (xsTDef);
  }

  // process top-level element declarations
  xsMap = xsModel.getComponents (XSConstants.ELEMENT_DECLARATION);
  for (int i = 0; i < xsMap.getLength(); i ++)
  {
    XSElementDeclaration xsElementDecl = (XSElementDeclaration) xsMap.item (i);
    processXSElementDecl (xsElementDecl);
  }
}

/**
 * Process type definition
 */
private void processXSTypeDef (XSTypeDefinition xsTDef)
{
  switch (xsTDef.getTypeCategory())
  {
    case XSTypeDefinition.SIMPLE_TYPE:

      processXSSimpleType ((XSSimpleTypeDefinition) xsTDef);
      break;

    case XSTypeDefinition.COMPLEX_TYPE:

      XSComplexTypeDefinition xsCTDef = (XSComplexTypeDefinition) xsTDef;

      // element's attributes
      XSObjectList xsAttrList = xsCTDef.getAttributeUses();
      for (int i = 0; i < xsAttrList.getLength(); i ++)
      {
        processXSAttributeUse ((XSAttributeUse) xsAttrList.item (i));
      }

      // element content
      switch (xsCTDef.getContentType())
      {
        case XSComplexTypeDefinition.CONTENTTYPE_EMPTY:

          break;

        case XSComplexTypeDefinition.CONTENTTYPE_SIMPLE:

          parseValueType (xsCTDef.getSimpleType());
          break;

        case XSComplexTypeDefinition.CONTENTTYPE_ELEMENT:

          processXSParticle (xsCTDef.getParticle());
          break;

        case XSComplexTypeDefinition.CONTENTTYPE_MIXED:

          ...
          processXSParticle (xsCTDef.getParticle());
          break;
        }
      }

      break;
  }

  /**
   * Process particle
  */
  private void processXSParticle (XSParticle xsParticle)
  {
    XSTerm xsTerm = xsParticle.getTerm();
    switch (xsTerm.getType())
    {
      case XSConstants.ELEMENT_DECLARATION:

        processXSElementDecl ((XSElementDeclaration) xsTerm);
        break;

      case XSConstants.MODEL_GROUP:

        // this is one of the globally defined groups 
        // (found in top-level declarations)

        XSModelGroup xsGroup = (XSModelGroup) xsTerm;

        // it also consists of particles
        XSObjectList xsParticleList = xsGroup.getParticles();
        for (int i = 0; i < xsParticleList.getLength(); i ++)
        {
          processXSParticle ((XSParticle) xsParticleList.item (i));
        }

        ...
        break;

      case XSConstants.WILDCARD:

        ...
        break;
    }
  }