I have a large XML data file (>160M) to process, and it seems like SAX/expat/pulldom parsing is the way to go. I'd like to have a thread that sifts through the nodes and pushes nodes to be processed onto a queue, and then other worker threads pull the next available node off the queue and process it.
I have the following (it should have locks, I know - it will, later)
import sys, time
import xml.parsers.expat
import threadingq = []def start_handler(name, attrs):q.append(name)def do_expat():p = xml.parsers.expat.ParserCreate()p.StartElementHandler = start_handlerp.buffer_text = Trueprint("opening {0}".format(sys.argv[1]))with open(sys.argv[1]) as f:print("file is open")p.ParseFile(f)print("parsing complete")t = threading.Thread(group=None, target=do_expat)
t.start()while True:print(q)time.sleep(1)
The problem is that the body of the while
block gets called only once, and then I can't even ctrl-C interrupt it. On smaller files, the output is as expected, but that seems to indicate that the handler only gets called when the document is fully parsed, which seems to defeat the purpose of a SAX parser.
I'm sure it's my own ignorance, but I don't see where I'm making the mistake.
PS: I also tried changing start_handler
thus:
def start_handler(name, attrs):def app():q.append(name)u = threading.Thread(group=None, target=app)u.start()
No love, though.