| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | # Very simple test - Parse a file and print what happens | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # XXX TypeErrors on calling handlers, or on bad return values from a | 
					
						
							|  |  |  | # handler, are obscure and unhelpful. | 
					
						
							| 
									
										
										
										
											2000-10-23 17:22:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-23 04:47:56 +00:00
										 |  |  | from xml.parsers import expat | 
					
						
							| 
									
										
										
										
											2000-10-23 17:22:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | class Outputter: | 
					
						
							|  |  |  |     def StartElementHandler(self, name, attrs): | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |         print 'Start element:\n\t', repr(name), attrs | 
					
						
							| 
									
										
										
										
											2000-10-23 17:22:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  |     def EndElementHandler(self, name): | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |         print 'End element:\n\t', repr(name) | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def CharacterDataHandler(self, data): | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  |         data = data.strip() | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  |         if data: | 
					
						
							|  |  |  |             print 'Character data:' | 
					
						
							|  |  |  |             print '\t', repr(data) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def ProcessingInstructionHandler(self, target, data): | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |         print 'PI:\n\t', repr(target), repr(data) | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def StartNamespaceDeclHandler(self, prefix, uri): | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |         print 'NS decl:\n\t', repr(prefix), repr(uri) | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def EndNamespaceDeclHandler(self, prefix): | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |         print 'End of NS decl:\n\t', repr(prefix) | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def StartCdataSectionHandler(self): | 
					
						
							| 
									
										
										
										
											2000-04-02 05:15:38 +00:00
										 |  |  |         print 'Start of CDATA section' | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def EndCdataSectionHandler(self): | 
					
						
							| 
									
										
										
										
											2000-04-02 05:15:38 +00:00
										 |  |  |         print 'End of CDATA section' | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def CommentHandler(self, text): | 
					
						
							| 
									
										
										
										
											2000-04-02 05:15:38 +00:00
										 |  |  |         print 'Comment:\n\t', repr(text) | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def NotationDeclHandler(self, *args): | 
					
						
							|  |  |  |         name, base, sysid, pubid = args | 
					
						
							| 
									
										
										
										
											2000-04-02 05:15:38 +00:00
										 |  |  |         print 'Notation declared:', args | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def UnparsedEntityDeclHandler(self, *args): | 
					
						
							|  |  |  |         entityName, base, systemId, publicId, notationName = args | 
					
						
							|  |  |  |         print 'Unparsed entity decl:\n\t', args | 
					
						
							| 
									
										
										
										
											2000-10-23 17:22:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  |     def NotStandaloneHandler(self, userData): | 
					
						
							|  |  |  |         print 'Not standalone' | 
					
						
							|  |  |  |         return 1 | 
					
						
							| 
									
										
										
										
											2000-10-23 17:22:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |     def ExternalEntityRefHandler(self, *args): | 
					
						
							|  |  |  |         context, base, sysId, pubId = args | 
					
						
							|  |  |  |         print 'External entity ref:', args | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  |         return 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def DefaultHandler(self, userData): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def DefaultHandlerExpand(self, userData): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  | def confirm(ok): | 
					
						
							|  |  |  |     if ok: | 
					
						
							|  |  |  |         print "OK." | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         print "Not OK." | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | out = Outputter() | 
					
						
							| 
									
										
										
										
											2000-09-23 04:47:56 +00:00
										 |  |  | parser = expat.ParserCreate(namespace_separator='!') | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Test getting/setting returns_unicode | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  | parser.returns_unicode = 0; confirm(parser.returns_unicode == 0) | 
					
						
							|  |  |  | parser.returns_unicode = 1; confirm(parser.returns_unicode == 1) | 
					
						
							|  |  |  | parser.returns_unicode = 2; confirm(parser.returns_unicode == 1) | 
					
						
							|  |  |  | parser.returns_unicode = 0; confirm(parser.returns_unicode == 0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HANDLER_NAMES = [ | 
					
						
							|  |  |  |     'StartElementHandler', 'EndElementHandler', | 
					
						
							|  |  |  |     'CharacterDataHandler', 'ProcessingInstructionHandler', | 
					
						
							|  |  |  |     'UnparsedEntityDeclHandler', 'NotationDeclHandler', | 
					
						
							|  |  |  |     'StartNamespaceDeclHandler', 'EndNamespaceDeclHandler', | 
					
						
							|  |  |  |     'CommentHandler', 'StartCdataSectionHandler', | 
					
						
							|  |  |  |     'EndCdataSectionHandler', | 
					
						
							|  |  |  |     'DefaultHandler', 'DefaultHandlerExpand', | 
					
						
							|  |  |  |     #'NotStandaloneHandler', | 
					
						
							|  |  |  |     'ExternalEntityRefHandler' | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | for name in HANDLER_NAMES: | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  |     setattr(parser, name, getattr(out, name)) | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  | data = '''\
 | 
					
						
							|  |  |  | <?xml version="1.0" encoding="iso-8859-1" standalone="no"?> | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | <?xml-stylesheet href="stylesheet.css"?> | 
					
						
							|  |  |  | <!-- comment data --> | 
					
						
							|  |  |  | <!DOCTYPE quotations SYSTEM "quotations.dtd" [ | 
					
						
							|  |  |  | <!ELEMENT root ANY> | 
					
						
							|  |  |  | <!NOTATION notation SYSTEM "notation.jpeg"> | 
					
						
							|  |  |  | <!ENTITY acirc "â"> | 
					
						
							|  |  |  | <!ENTITY external_entity SYSTEM "entity.file"> | 
					
						
							|  |  |  | <!ENTITY unparsed_entity SYSTEM "entity.file" NDATA notation> | 
					
						
							|  |  |  | %unparsed_entity; | 
					
						
							|  |  |  | ]> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | <root attr1="value1" attr2="value2ὀ"> | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | <myns:subelement xmlns:myns="http://www.python.org/namespace"> | 
					
						
							|  |  |  |      Contents of subelements | 
					
						
							|  |  |  | </myns:subelement> | 
					
						
							|  |  |  | <sub2><![CDATA[contents of CDATA section]]></sub2> | 
					
						
							|  |  |  | &external_entity; | 
					
						
							|  |  |  | </root> | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  | '''
 | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | # Produce UTF-8 output | 
					
						
							|  |  |  | parser.returns_unicode = 0 | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     parser.Parse(data, 1) | 
					
						
							| 
									
										
										
										
											2000-09-23 04:47:56 +00:00
										 |  |  | except expat.error: | 
					
						
							|  |  |  |     print '** Error', parser.ErrorCode, expat.ErrorString(parser.ErrorCode) | 
					
						
							| 
									
										
										
										
											2000-03-31 15:44:52 +00:00
										 |  |  |     print '** Line', parser.ErrorLineNumber | 
					
						
							|  |  |  |     print '** Column', parser.ErrorColumnNumber | 
					
						
							|  |  |  |     print '** Byte', parser.ErrorByteIndex | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | # Try the parse again, this time producing Unicode output | 
					
						
							| 
									
										
										
										
											2000-09-23 04:47:56 +00:00
										 |  |  | parser = expat.ParserCreate(namespace_separator='!') | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | parser.returns_unicode = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | for name in HANDLER_NAMES: | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  |     setattr(parser, name, getattr(out, name)) | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     parser.Parse(data, 1) | 
					
						
							| 
									
										
										
										
											2000-09-23 04:47:56 +00:00
										 |  |  | except expat.error: | 
					
						
							|  |  |  |     print '** Error', parser.ErrorCode, expat.ErrorString(parser.ErrorCode) | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |     print '** Line', parser.ErrorLineNumber | 
					
						
							|  |  |  |     print '** Column', parser.ErrorColumnNumber | 
					
						
							|  |  |  |     print '** Byte', parser.ErrorByteIndex | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Try parsing a file | 
					
						
							| 
									
										
										
										
											2000-09-23 04:47:56 +00:00
										 |  |  | parser = expat.ParserCreate(namespace_separator='!') | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | parser.returns_unicode = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | for name in HANDLER_NAMES: | 
					
						
							| 
									
										
										
										
											2000-09-21 20:32:13 +00:00
										 |  |  |     setattr(parser, name, getattr(out, name)) | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  | import StringIO | 
					
						
							|  |  |  | file = StringIO.StringIO(data) | 
					
						
							|  |  |  | try: | 
					
						
							|  |  |  |     parser.ParseFile(file) | 
					
						
							| 
									
										
										
										
											2000-09-23 04:47:56 +00:00
										 |  |  | except expat.error: | 
					
						
							|  |  |  |     print '** Error', parser.ErrorCode, expat.ErrorString(parser.ErrorCode) | 
					
						
							| 
									
										
										
										
											2000-06-27 00:37:25 +00:00
										 |  |  |     print '** Line', parser.ErrorLineNumber | 
					
						
							|  |  |  |     print '** Column', parser.ErrorColumnNumber | 
					
						
							|  |  |  |     print '** Byte', parser.ErrorByteIndex |