/isorelax-release-20050331-src/src/org/iso_relax/dispatcher/impl/IgnoreVerifier.java

# · Java · 92 lines · 38 code · 10 blank · 44 comment · 2 complexity · 16b1e30b67fac46284c4800f2a164bd7 MD5 · raw file

  1. /*
  2. * @(#)$Id: IgnoreVerifier.java,v 1.5 2003/05/30 23:46:32 kkawa Exp $
  3. *
  4. * Copyright 2001 Kohsuke KAWAGUCHI
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sublicense, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included
  15. * in all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  20. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  21. * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  22. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  23. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. */
  25. package org.iso_relax.dispatcher.impl;
  26. import org.iso_relax.dispatcher.Dispatcher;
  27. import org.iso_relax.dispatcher.ElementDecl;
  28. import org.iso_relax.dispatcher.IslandSchema;
  29. import org.iso_relax.dispatcher.IslandVerifier;
  30. import org.xml.sax.Attributes;
  31. import org.xml.sax.SAXException;
  32. import org.xml.sax.helpers.DefaultHandler;
  33. /**
  34. * ignores namespaces which have no associated grammar.
  35. *
  36. * @author
  37. * <a href="mailto:k-kawa@bigfoot.com">Kohsuke KAWAGUCHI</a>
  38. */
  39. public final class IgnoreVerifier
  40. extends DefaultHandler
  41. implements IslandVerifier
  42. {
  43. private final ElementDecl[] rules;
  44. /**
  45. *
  46. * @param assignedRules
  47. * this Verifier is supposed to validate these rules.
  48. * since this IslandVerifier actually does nothing,
  49. * all these rules will be reported as satisfied
  50. * upon completion.
  51. */
  52. public IgnoreVerifier( String namespaceToIgnore, ElementDecl[] assignedRules )
  53. {
  54. this.namespaceToIgnore = namespaceToIgnore;
  55. this.rules = assignedRules;
  56. }
  57. /**
  58. * elements in this namespace is validated by this IgnoreVerifier.
  59. */
  60. private final String namespaceToIgnore;
  61. public ElementDecl[] endIsland() { return rules; }
  62. public void endChildIsland( String uri, ElementDecl[] assignedLabels ){}
  63. private Dispatcher dispatcher;
  64. public void setDispatcher( Dispatcher disp ) { this.dispatcher=disp; }
  65. public void startElement( String namespaceURI, String localName, String qName, Attributes attributes )
  66. throws SAXException
  67. {
  68. if( namespaceToIgnore.equals(namespaceURI) )
  69. return; // this element is "validated".
  70. // try to locate a grammar of this namespace
  71. IslandSchema is = dispatcher.getSchemaProvider().getSchemaByNamespace(namespaceURI);
  72. if( is==null )
  73. {// no grammar is declared with this namespace URI.
  74. return; // continue ignoring.
  75. }
  76. // a schema is found: revert to normal mode and validate them.
  77. IslandVerifier iv = is.createNewVerifier( namespaceURI, is.getElementDecls() );
  78. dispatcher.switchVerifier(iv);
  79. // simulate this startElement method.
  80. iv.startElement(namespaceURI,localName,qName,attributes);
  81. }
  82. }