SVGKParserDOM.m 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #import "SVGKParserDOM.h"
  2. #import "Node+Mutable.h"
  3. @implementation SVGKParserDOM
  4. /**
  5. This is a special, magical parser that matches "no namespace" - i.e. matches what happens when no namespace was declared
  6. */
  7. -(NSArray*) supportedNamespaces
  8. {
  9. return [NSArray array];
  10. }
  11. /**
  12. This is a special, magical parser that matches "all tags"
  13. */
  14. -(NSArray*) supportedTags
  15. {
  16. return [NSMutableArray array];
  17. }
  18. - (Node*) handleStartElement:(NSString *)name document:(SVGKSource*) SVGKSource namePrefix:(NSString*)prefix namespaceURI:(NSString*) XMLNSURI attributes:(NSMutableDictionary *)attributeObjects parseResult:(SVGKParseResult *)parseResult parentNode:(Node*) parentNode
  19. {
  20. if( [[self supportedNamespaces] count] == 0
  21. || [[self supportedNamespaces] containsObject:XMLNSURI] ) // unnecesary here, but allows safe updates to this parser's matching later
  22. {
  23. NSString* qualifiedName = (prefix == nil) ? name : [NSString stringWithFormat:@"%@:%@", prefix, name];
  24. /** NB: must supply a NON-qualified name if we have no specific prefix here ! */
  25. // FIXME: we always return an empty Element here; for DOM spec, should we be detecting things like "comment" nodes? I dont know how libxml handles those and sends them to us. I've never seen one in action...
  26. Element *blankElement = [[Element alloc] initWithQualifiedName:qualifiedName inNameSpaceURI:XMLNSURI attributes:attributeObjects];
  27. return blankElement;
  28. }
  29. return nil;
  30. }
  31. -(void)handleEndElement:(Node *)newNode document:(SVGKSource *)document parseResult:(SVGKParseResult *)parseResult
  32. {
  33. }
  34. /***
  35. None of this can be used any more; text-processing (the only part that used it) CANNOT be handled
  36. generically, because of the way that the DOM is defined and the libxml XML parser works.
  37. Instead, text-handling, and creation of text nodes, MUST be hard-coded into the SVGKParser core parser :(
  38. -(BOOL) createdNodeShouldStoreContent:(Node*) item
  39. {
  40. switch( item.nodeType )
  41. {
  42. case DOMNodeType_ATTRIBUTE_NODE:
  43. case DOMNodeType_DOCUMENT_FRAGMENT_NODE:
  44. case DOMNodeType_DOCUMENT_NODE:
  45. case DOMNodeType_DOCUMENT_TYPE_NODE:
  46. case DOMNodeType_ELEMENT_NODE:
  47. case DOMNodeType_ENTITY_NODE:
  48. case DOMNodeType_ENTITY_REFERENCE_NODE:
  49. case DOMNodeType_NOTATION_NODE:
  50. {
  51. return FALSE; // do nothing, according to the table in : http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1950641247
  52. } break;
  53. case DOMNodeType_CDATA_SECTION_NODE:
  54. case DOMNodeType_COMMENT_NODE:
  55. case DOMNodeType_PROCESSING_INSTRUCTION_NODE:
  56. case DOMNodeType_TEXT_NODE:
  57. {
  58. return TRUE;
  59. } break;
  60. }
  61. }
  62. -(void) handleStringContent:(NSMutableString*) content forNode:(Node*) node parseResult:(SVGKParseResult *)parseResult
  63. {
  64. switch( node.nodeType )
  65. {
  66. case DOMNodeType_ATTRIBUTE_NODE:
  67. case DOMNodeType_DOCUMENT_FRAGMENT_NODE:
  68. case DOMNodeType_DOCUMENT_NODE:
  69. case DOMNodeType_DOCUMENT_TYPE_NODE:
  70. case DOMNodeType_ELEMENT_NODE:
  71. case DOMNodeType_ENTITY_NODE:
  72. case DOMNodeType_ENTITY_REFERENCE_NODE:
  73. case DOMNodeType_NOTATION_NODE:
  74. {
  75. // do nothing, according to the table in : http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-1950641247
  76. } break;
  77. case DOMNodeType_CDATA_SECTION_NODE:
  78. case DOMNodeType_COMMENT_NODE:
  79. case DOMNodeType_PROCESSING_INSTRUCTION_NODE:
  80. case DOMNodeType_TEXT_NODE:
  81. {
  82. node.nodeValue = content;
  83. } break;
  84. }
  85. }
  86. */
  87. @end