2002-05-19 20:44:19 -03:00
|
|
|
|
# Copyright (C) 2002 Python Software Foundation
|
|
|
|
|
# Author: barry@zope.com
|
|
|
|
|
|
2003-03-26 13:57:25 -04:00
|
|
|
|
"""Module containing compatibility functions for Python 2.2.
|
2002-05-19 20:44:19 -03:00
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from __future__ import generators
|
|
|
|
|
from __future__ import division
|
|
|
|
|
from cStringIO import StringIO
|
|
|
|
|
from types import StringTypes
|
|
|
|
|
|
2003-04-02 00:51:33 -04:00
|
|
|
|
# Python 2.2.x where x < 1 lacks True/False
|
2003-03-26 13:57:25 -04:00
|
|
|
|
try:
|
|
|
|
|
True, False
|
|
|
|
|
except NameError:
|
|
|
|
|
True = 1
|
|
|
|
|
False = 0
|
|
|
|
|
|
2002-05-19 20:44:19 -03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This function will become a method of the Message class
|
|
|
|
|
def walk(self):
|
|
|
|
|
"""Walk over the message tree, yielding each subpart.
|
|
|
|
|
|
|
|
|
|
The walk is performed in depth-first order. This method is a
|
|
|
|
|
generator.
|
|
|
|
|
"""
|
|
|
|
|
yield self
|
|
|
|
|
if self.is_multipart():
|
|
|
|
|
for subpart in self.get_payload():
|
|
|
|
|
for subsubpart in subpart.walk():
|
|
|
|
|
yield subsubpart
|
|
|
|
|
|
|
|
|
|
|
2002-06-02 15:59:06 -03:00
|
|
|
|
# Python 2.2 spells floor division //
|
|
|
|
|
def _floordiv(i, j):
|
|
|
|
|
"""Do a floor division, i/j."""
|
|
|
|
|
return i // j
|
2002-05-19 20:44:19 -03:00
|
|
|
|
|
|
|
|
|
|
2002-09-10 13:09:06 -03:00
|
|
|
|
def _isstring(obj):
|
|
|
|
|
return isinstance(obj, StringTypes)
|
|
|
|
|
|
|
|
|
|
|
2002-05-19 20:44:19 -03:00
|
|
|
|
|
|
|
|
|
# These two functions are imported into the Iterators.py interface module.
|
|
|
|
|
# The Python 2.2 version uses generators for efficiency.
|
2003-03-11 00:41:35 -04:00
|
|
|
|
def body_line_iterator(msg, decode=False):
|
|
|
|
|
"""Iterate over the parts, returning string payloads line-by-line.
|
|
|
|
|
|
|
|
|
|
Optional decode (default False) is passed through to .get_payload().
|
|
|
|
|
"""
|
2002-05-19 20:44:19 -03:00
|
|
|
|
for subpart in msg.walk():
|
2003-03-11 00:41:35 -04:00
|
|
|
|
payload = subpart.get_payload(decode=decode)
|
2002-09-10 13:09:06 -03:00
|
|
|
|
if _isstring(payload):
|
2002-05-19 20:44:19 -03:00
|
|
|
|
for line in StringIO(payload):
|
|
|
|
|
yield line
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def typed_subpart_iterator(msg, maintype='text', subtype=None):
|
|
|
|
|
"""Iterate over the subparts with a given MIME type.
|
|
|
|
|
|
|
|
|
|
Use `maintype' as the main MIME type to match against; this defaults to
|
|
|
|
|
"text". Optional `subtype' is the MIME subtype to match against; if
|
|
|
|
|
omitted, only the main type is matched.
|
|
|
|
|
"""
|
|
|
|
|
for subpart in msg.walk():
|
2003-03-26 13:57:25 -04:00
|
|
|
|
if subpart.get_content_maintype() == maintype:
|
|
|
|
|
if subtype is None or subpart.get_content_subtype() == subtype:
|
2002-05-19 20:44:19 -03:00
|
|
|
|
yield subpart
|