2000-02-04 11:10:34 -04:00
|
|
|
"""MH interface -- purely object-oriented (well, almost)
|
|
|
|
|
|
|
|
Executive summary:
|
|
|
|
|
|
|
|
import mhlib
|
|
|
|
|
|
|
|
mh = mhlib.MH() # use default mailbox directory and profile
|
|
|
|
mh = mhlib.MH(mailbox) # override mailbox location (default from profile)
|
|
|
|
mh = mhlib.MH(mailbox, profile) # override mailbox and profile
|
|
|
|
|
|
|
|
mh.error(format, ...) # print error message -- can be overridden
|
|
|
|
s = mh.getprofile(key) # profile entry (None if not set)
|
|
|
|
path = mh.getpath() # mailbox pathname
|
|
|
|
name = mh.getcontext() # name of current folder
|
|
|
|
mh.setcontext(name) # set name of current folder
|
|
|
|
|
|
|
|
list = mh.listfolders() # names of top-level folders
|
|
|
|
list = mh.listallfolders() # names of all folders, including subfolders
|
|
|
|
list = mh.listsubfolders(name) # direct subfolders of given folder
|
|
|
|
list = mh.listallsubfolders(name) # all subfolders of given folder
|
|
|
|
|
|
|
|
mh.makefolder(name) # create new folder
|
|
|
|
mh.deletefolder(name) # delete folder -- must have no subfolders
|
|
|
|
|
|
|
|
f = mh.openfolder(name) # new open folder object
|
|
|
|
|
|
|
|
f.error(format, ...) # same as mh.error(format, ...)
|
|
|
|
path = f.getfullname() # folder's full pathname
|
|
|
|
path = f.getsequencesfilename() # full pathname of folder's sequences file
|
|
|
|
path = f.getmessagefilename(n) # full pathname of message n in folder
|
|
|
|
|
|
|
|
list = f.listmessages() # list of messages in folder (as numbers)
|
|
|
|
n = f.getcurrent() # get current message
|
|
|
|
f.setcurrent(n) # set current message
|
|
|
|
list = f.parsesequence(seq) # parse msgs syntax into list of messages
|
|
|
|
n = f.getlast() # get last message (0 if no messagse)
|
|
|
|
f.setlast(n) # set last message (internal use only)
|
|
|
|
|
|
|
|
dict = f.getsequences() # dictionary of sequences in folder {name: list}
|
|
|
|
f.putsequences(dict) # write sequences back to folder
|
|
|
|
|
|
|
|
f.createmessage(n, fp) # add message from file f as number n
|
|
|
|
f.removemessages(list) # remove messages in list from folder
|
|
|
|
f.refilemessages(list, tofolder) # move messages in list to other folder
|
|
|
|
f.movemessage(n, tofolder, ton) # move one message to a given destination
|
|
|
|
f.copymessage(n, tofolder, ton) # copy one message to a given destination
|
|
|
|
|
|
|
|
m = f.openmessage(n) # new open message object (costs a file descriptor)
|
|
|
|
m is a derived class of mimetools.Message(rfc822.Message), with:
|
|
|
|
s = m.getheadertext() # text of message's headers
|
|
|
|
s = m.getheadertext(pred) # text of message's headers, filtered by pred
|
|
|
|
s = m.getbodytext() # text of message's body, decoded
|
|
|
|
s = m.getbodytext(0) # text of message's body, not decoded
|
|
|
|
"""
|
|
|
|
|
1994-06-23 09:06:02 -03:00
|
|
|
# XXX To do, functionality:
|
|
|
|
# - annotate messages
|
1999-02-24 12:25:17 -04:00
|
|
|
# - send messages
|
1994-06-23 09:06:02 -03:00
|
|
|
#
|
1995-01-02 14:38:23 -04:00
|
|
|
# XXX To do, organization:
|
1994-06-23 09:06:02 -03:00
|
|
|
# - move IntSet to separate file
|
|
|
|
# - move most Message functionality to module mimetools
|
|
|
|
|
|
|
|
|
|
|
|
# Customizable defaults
|
|
|
|
|
|
|
|
MH_PROFILE = '~/.mh_profile'
|
|
|
|
PATH = '~/Mail'
|
|
|
|
MH_SEQUENCES = '.mh_sequences'
|
Merged revisions 55817-55961 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
................
r55837 | guido.van.rossum | 2007-06-08 16:04:42 -0700 (Fri, 08 Jun 2007) | 2 lines
PEP 3119 -- the abc module.
................
r55838 | guido.van.rossum | 2007-06-08 17:38:55 -0700 (Fri, 08 Jun 2007) | 2 lines
Implement part of PEP 3119 -- One Trick Ponies.
................
r55847 | guido.van.rossum | 2007-06-09 08:28:06 -0700 (Sat, 09 Jun 2007) | 2 lines
Different way to do one trick ponies, allowing registration (per PEP strawman).
................
r55849 | guido.van.rossum | 2007-06-09 18:06:38 -0700 (Sat, 09 Jun 2007) | 3 lines
Make sure that the magic looking for __hash__ (etc.) doesn't apply to
real subclasses of Hashable.
................
r55852 | guido.van.rossum | 2007-06-10 08:29:51 -0700 (Sun, 10 Jun 2007) | 2 lines
Add some more examples, e.g. generators and dict views.
................
r55853 | guido.van.rossum | 2007-06-10 08:31:59 -0700 (Sun, 10 Jun 2007) | 2 lines
keys() and items() *are* containers -- just values() isn't.
................
r55864 | georg.brandl | 2007-06-10 15:29:40 -0700 (Sun, 10 Jun 2007) | 2 lines
PEP 3127: new octal literals, binary literals.
................
r55865 | georg.brandl | 2007-06-10 15:31:37 -0700 (Sun, 10 Jun 2007) | 2 lines
Some octal literal fixes in Tools.
................
r55866 | georg.brandl | 2007-06-10 15:37:43 -0700 (Sun, 10 Jun 2007) | 2 lines
Tokenizer changes for PEP 3127.
................
r55867 | georg.brandl | 2007-06-10 15:37:55 -0700 (Sun, 10 Jun 2007) | 2 lines
Some docs for PEP 3127.
................
r55868 | georg.brandl | 2007-06-10 15:44:39 -0700 (Sun, 10 Jun 2007) | 2 lines
Missed a place in intobject.c. Is that used anymore anyway?
................
r55871 | neal.norwitz | 2007-06-10 18:31:49 -0700 (Sun, 10 Jun 2007) | 182 lines
Merged revisions 55729-55868 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r55731 | neal.norwitz | 2007-06-01 00:29:12 -0700 (Fri, 01 Jun 2007) | 7 lines
SF 1668596/1720897: distutils now copies data files
even if package_dir is empty.
This needs to be backported. I'm too tired tonight. It would be great
if someone backports this if the buildbots are ok with it. Otherwise,
I will try to get to it tomorrow.
........
r55732 | georg.brandl | 2007-06-01 04:33:33 -0700 (Fri, 01 Jun 2007) | 2 lines
Bug #1722484: remove docstrings again when running with -OO.
........
r55735 | georg.brandl | 2007-06-01 12:20:27 -0700 (Fri, 01 Jun 2007) | 2 lines
Fix wrong issue number.
........
r55739 | brett.cannon | 2007-06-01 20:02:29 -0700 (Fri, 01 Jun 2007) | 3 lines
Have configure raise an error when building on AtheOS. Code specific to AtheOS
will be removed in Python 2.7.
........
r55746 | neal.norwitz | 2007-06-02 11:33:53 -0700 (Sat, 02 Jun 2007) | 1 line
Update expected birthday of 2.6
........
r55751 | neal.norwitz | 2007-06-03 13:32:50 -0700 (Sun, 03 Jun 2007) | 10 lines
Backout the original 'fix' to 1721309 which had no effect.
Different versions of Berkeley DB handle this differently.
The comments and bug report should have the details. Memory is allocated
in 4.4 (and presumably earlier), but not in 4.5. Thus
4.5 has the free error, but not earlier versions.
Mostly update comments, plus make the free conditional.
This fix was already applied to the 2.5 branch.
........
r55752 | brett.cannon | 2007-06-03 16:13:41 -0700 (Sun, 03 Jun 2007) | 6 lines
Make _strptime.TimeRE().pattern() use ``\s+`` for matching whitespace instead
of ``\s*``. This prevents patterns from "stealing" bits from other patterns in
order to make a match work.
Closes bug #1730389. Will be backported.
........
r55766 | hyeshik.chang | 2007-06-05 11:16:52 -0700 (Tue, 05 Jun 2007) | 4 lines
Fix build on FreeBSD. Bluetooth HCI API in FreeBSD is quite different
from Linux's. Just fix the build for now but the code doesn't
support the complete capability of HCI on FreeBSD yet.
........
r55770 | hyeshik.chang | 2007-06-05 11:58:51 -0700 (Tue, 05 Jun 2007) | 4 lines
Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when it
reads a file that ends with incomplete sequence and sizehint argument
for .read() is specified.
........
r55775 | hyeshik.chang | 2007-06-05 12:28:15 -0700 (Tue, 05 Jun 2007) | 2 lines
Fix for Windows: close a temporary file before trying to delete it.
........
r55783 | guido.van.rossum | 2007-06-05 14:24:47 -0700 (Tue, 05 Jun 2007) | 2 lines
Patch by Tim Delany (missing DECREF). SF #1731330.
........
r55785 | collin.winter | 2007-06-05 17:17:35 -0700 (Tue, 05 Jun 2007) | 3 lines
Patch #1731049: make threading.py use a proper "raise" when checking internal state, rather than assert statements (which get stripped out by -O).
........
r55786 | facundo.batista | 2007-06-06 08:13:37 -0700 (Wed, 06 Jun 2007) | 4 lines
FTP.ntransfercmd method now uses create_connection when passive,
using the timeout received in connection time.
........
r55792 | facundo.batista | 2007-06-06 10:15:23 -0700 (Wed, 06 Jun 2007) | 7 lines
Added an optional timeout parameter to function urllib2.urlopen,
with tests in test_urllib2net.py (must have network resource
enabled to execute them). Also modified test_urllib2.py because
testing mock classes must take it into acount. Docs are also
updated.
........
r55793 | thomas.heller | 2007-06-06 13:19:19 -0700 (Wed, 06 Jun 2007) | 1 line
Build _ctypes and _ctypes_test in the ReleaseAMD64 configuration.
........
r55802 | georg.brandl | 2007-06-07 06:23:24 -0700 (Thu, 07 Jun 2007) | 3 lines
Disallow function calls like foo(None=1).
Backport from py3k rev. 55708 by Guido.
........
r55804 | georg.brandl | 2007-06-07 06:30:24 -0700 (Thu, 07 Jun 2007) | 2 lines
Make reindent.py executable.
........
r55805 | georg.brandl | 2007-06-07 06:34:10 -0700 (Thu, 07 Jun 2007) | 2 lines
Patch #1667860: Fix UnboundLocalError in urllib2.
........
r55821 | kristjan.jonsson | 2007-06-07 16:53:49 -0700 (Thu, 07 Jun 2007) | 1 line
Fixing changes to getbuildinfo.c that broke linux builds
........
r55828 | thomas.heller | 2007-06-08 09:10:27 -0700 (Fri, 08 Jun 2007) | 1 line
Make this test work with older Python releases where struct has no 't' format character.
........
r55829 | martin.v.loewis | 2007-06-08 10:29:20 -0700 (Fri, 08 Jun 2007) | 3 lines
Bug #1733488: Fix compilation of bufferobject.c on AIX.
Will backport to 2.5.
........
r55831 | thomas.heller | 2007-06-08 11:20:09 -0700 (Fri, 08 Jun 2007) | 2 lines
[ 1715718 ] x64 clean compile patch for _ctypes, by Kristj?n Valur
with small modifications.
........
r55832 | thomas.heller | 2007-06-08 12:01:06 -0700 (Fri, 08 Jun 2007) | 1 line
Fix gcc warnings intruduced by passing Py_ssize_t to PyErr_Format calls.
........
r55833 | thomas.heller | 2007-06-08 12:08:31 -0700 (Fri, 08 Jun 2007) | 2 lines
Fix wrong documentation, and correct the punktuation.
Closes [1700455].
........
r55834 | thomas.heller | 2007-06-08 12:14:23 -0700 (Fri, 08 Jun 2007) | 1 line
Fix warnings by using proper function prototype.
........
r55839 | neal.norwitz | 2007-06-08 20:36:34 -0700 (Fri, 08 Jun 2007) | 7 lines
Prevent expandtabs() on string and unicode objects from causing a segfault when
a large width is passed on 32-bit platforms. Found by Google.
It would be good for people to review this especially carefully and verify
I don't have an off by one error and there is no other way to cause overflow.
........
r55841 | neal.norwitz | 2007-06-08 21:48:22 -0700 (Fri, 08 Jun 2007) | 1 line
Use macro version of GET_SIZE to avoid Coverity warning (#150) about a possible error.
........
r55842 | martin.v.loewis | 2007-06-09 00:42:52 -0700 (Sat, 09 Jun 2007) | 3 lines
Patch #1733960: Allow T_LONGLONG to accept ints.
Will backport to 2.5.
........
r55843 | martin.v.loewis | 2007-06-09 00:58:05 -0700 (Sat, 09 Jun 2007) | 2 lines
Fix Windows build.
........
r55845 | martin.v.loewis | 2007-06-09 03:10:26 -0700 (Sat, 09 Jun 2007) | 2 lines
Provide LLONG_MAX for S390.
........
r55854 | thomas.heller | 2007-06-10 08:59:17 -0700 (Sun, 10 Jun 2007) | 4 lines
First version of build scripts for Windows/AMD64 (no external
components are built yet, and 'kill_python' is disabled).
........
r55855 | thomas.heller | 2007-06-10 10:55:51 -0700 (Sun, 10 Jun 2007) | 3 lines
For now, disable the _bsddb, _sqlite3, _ssl, _testcapi, _tkinter
modules in the ReleaseAMD64 configuration because they do not compile.
........
r55856 | thomas.heller | 2007-06-10 11:27:54 -0700 (Sun, 10 Jun 2007) | 1 line
Need to set the environment variables, otherwise devenv.com is not found.
........
r55860 | thomas.heller | 2007-06-10 14:01:17 -0700 (Sun, 10 Jun 2007) | 1 line
Revert commit 55855.
........
................
r55880 | neal.norwitz | 2007-06-10 22:07:36 -0700 (Sun, 10 Jun 2007) | 5 lines
Fix the refleak counter on test_collections. The ABC metaclass creates
a registry which must be cleared on each run. Otherwise, there *seem*
to be refleaks when there really aren't any. (The class is held within
the registry even though it's no longer needed.)
................
r55884 | neal.norwitz | 2007-06-10 22:46:33 -0700 (Sun, 10 Jun 2007) | 1 line
These tests have been removed, so they are no longer needed here
................
r55886 | georg.brandl | 2007-06-11 00:26:37 -0700 (Mon, 11 Jun 2007) | 3 lines
Optimize access to True and False in the compiler (if True)
and the peepholer (LOAD_NAME True).
................
r55905 | georg.brandl | 2007-06-11 10:02:26 -0700 (Mon, 11 Jun 2007) | 5 lines
Remove __oct__ and __hex__ and use __index__ for converting
non-ints before formatting in a base.
Add a bin() builtin.
................
r55906 | georg.brandl | 2007-06-11 10:04:44 -0700 (Mon, 11 Jun 2007) | 2 lines
int(x, 0) does not "guess".
................
r55907 | georg.brandl | 2007-06-11 10:05:47 -0700 (Mon, 11 Jun 2007) | 2 lines
Add a comment to explain that nb_oct and nb_hex are nonfunctional.
................
r55908 | guido.van.rossum | 2007-06-11 10:49:18 -0700 (Mon, 11 Jun 2007) | 2 lines
Get rid of unused imports and comment.
................
r55910 | guido.van.rossum | 2007-06-11 13:05:17 -0700 (Mon, 11 Jun 2007) | 2 lines
_Abstract.__new__ now requires either no arguments or __init__ overridden.
................
r55911 | guido.van.rossum | 2007-06-11 13:07:49 -0700 (Mon, 11 Jun 2007) | 7 lines
Move the collections ABCs to a separate file, _abcoll.py, in order to avoid
needing to import _collections.so during the bootstrap (this will become
apparent in the next submit of os.py).
Add (plain and mutable) ABCs for Set, Mapping, Sequence.
................
r55912 | guido.van.rossum | 2007-06-11 13:09:31 -0700 (Mon, 11 Jun 2007) | 2 lines
Rewrite the _Environ class to use the new collections ABCs.
................
r55913 | guido.van.rossum | 2007-06-11 13:59:45 -0700 (Mon, 11 Jun 2007) | 72 lines
Merged revisions 55869-55912 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r55869 | neal.norwitz | 2007-06-10 17:42:11 -0700 (Sun, 10 Jun 2007) | 1 line
Add Atul Varma for patch # 1667860
........
r55870 | neal.norwitz | 2007-06-10 18:22:03 -0700 (Sun, 10 Jun 2007) | 1 line
Ignore valgrind problems on Ubuntu from ld
........
r55872 | neal.norwitz | 2007-06-10 18:48:46 -0700 (Sun, 10 Jun 2007) | 2 lines
Ignore config.status.lineno which seems new (new autoconf?)
........
r55873 | neal.norwitz | 2007-06-10 19:14:39 -0700 (Sun, 10 Jun 2007) | 1 line
Prevent these tests from running on Win64 since they don\'t apply there either
........
r55874 | neal.norwitz | 2007-06-10 19:16:10 -0700 (Sun, 10 Jun 2007) | 5 lines
Fix a bug when there was a newline in the string expandtabs was called on.
This also catches another condition that can overflow.
Will backport.
........
r55879 | neal.norwitz | 2007-06-10 21:52:37 -0700 (Sun, 10 Jun 2007) | 1 line
Prevent hang if the port cannot be opened.
........
r55881 | neal.norwitz | 2007-06-10 22:28:45 -0700 (Sun, 10 Jun 2007) | 4 lines
Add all of the distuils modules that don't seem to have explicit tests. :-(
Move an import in mworkscompiler so that this module can be imported on
any platform. Hopefully this works on all platforms.
........
r55882 | neal.norwitz | 2007-06-10 22:35:10 -0700 (Sun, 10 Jun 2007) | 4 lines
SF #1734732, lower case the module names per PEP 8.
Will backport.
........
r55885 | neal.norwitz | 2007-06-10 23:16:48 -0700 (Sun, 10 Jun 2007) | 4 lines
Not sure why this only fails sometimes on Unix machines. Better
to disable it and only import msvccompiler on Windows since that's
the only place it can work anyways.
........
r55887 | neal.norwitz | 2007-06-11 00:29:43 -0700 (Mon, 11 Jun 2007) | 4 lines
Bug #1734723: Fix repr.Repr() so it doesn't ignore the maxtuple attribute.
Will backport
........
r55889 | neal.norwitz | 2007-06-11 00:36:24 -0700 (Mon, 11 Jun 2007) | 1 line
Reflow long line
........
r55896 | thomas.heller | 2007-06-11 08:58:33 -0700 (Mon, 11 Jun 2007) | 3 lines
Use "O&" in calls to PyArg_Parse when we need a 'void*' instead of "k"
or "K" codes.
........
r55901 | facundo.batista | 2007-06-11 09:27:08 -0700 (Mon, 11 Jun 2007) | 5 lines
Added versionchanged flag to all the methods which received
a new optional timeout parameter, and a versionadded flag to
the socket.create_connection function.
........
................
r55914 | guido.van.rossum | 2007-06-11 14:19:50 -0700 (Mon, 11 Jun 2007) | 3 lines
New super() implementation, for PEP 3135 (though the PEP is not yet updated
to this design, and small tweaks may still be made later).
................
r55923 | guido.van.rossum | 2007-06-11 21:15:24 -0700 (Mon, 11 Jun 2007) | 4 lines
I'm guessing this module broke when Neal ripped out the types module --
it used 'list' both as a local variable and as the built-in list type.
Renamed the local variable since that was easier.
................
r55924 | guido.van.rossum | 2007-06-11 21:20:05 -0700 (Mon, 11 Jun 2007) | 5 lines
Change all occurrences of super(<thisclass>, <firstarg>) to super().
Seems to have worked, all the tests still pass.
Exception: test_descr and test_descrtut, which have tons of these
and are there to test the various usages.
................
r55939 | collin.winter | 2007-06-12 13:57:33 -0700 (Tue, 12 Jun 2007) | 1 line
Patch #1735485: remove StandardError from the exception hierarchy.
................
r55954 | neal.norwitz | 2007-06-12 21:56:32 -0700 (Tue, 12 Jun 2007) | 51 lines
Merged revisions 55913-55950 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r55926 | marc-andre.lemburg | 2007-06-12 02:09:58 -0700 (Tue, 12 Jun 2007) | 3 lines
Apply patch #1734945 to support TurboLinux as distribution.
........
r55927 | marc-andre.lemburg | 2007-06-12 02:26:49 -0700 (Tue, 12 Jun 2007) | 3 lines
Add patch #1726668: Windows Vista support.
........
r55929 | thomas.heller | 2007-06-12 08:36:22 -0700 (Tue, 12 Jun 2007) | 1 line
Checkout, but do not yet try to build, exernal sources.
........
r55930 | thomas.heller | 2007-06-12 09:08:27 -0700 (Tue, 12 Jun 2007) | 6 lines
Add bufferoverflowU.lib to the libraries needed by _ssl (is this the
right thing to do?).
Set the /XP64 /RETAIL build enviroment in the makefile when building
ReleaseAMD64.
........
r55931 | thomas.heller | 2007-06-12 09:23:19 -0700 (Tue, 12 Jun 2007) | 5 lines
Revert this change, since it breaks the win32 build:
Add bufferoverflowU.lib to the libraries needed by _ssl (is this the
right thing to do?).
........
r55934 | thomas.heller | 2007-06-12 10:28:31 -0700 (Tue, 12 Jun 2007) | 3 lines
Specify the bufferoverflowU.lib to the makefile on the command line
(for ReleaseAMD64 builds).
........
r55937 | thomas.heller | 2007-06-12 12:02:59 -0700 (Tue, 12 Jun 2007) | 3 lines
Add bufferoverflowU.lib to PCBuild\_bsddb.vcproj.
Build sqlite3.dll and bsddb.
........
r55938 | thomas.heller | 2007-06-12 12:56:12 -0700 (Tue, 12 Jun 2007) | 2 lines
Don't rebuild Berkeley DB if not needed (this was committed by accident).
........
r55948 | martin.v.loewis | 2007-06-12 20:42:19 -0700 (Tue, 12 Jun 2007) | 3 lines
Provide PY_LLONG_MAX on all systems having long long.
Will backport to 2.5.
........
................
r55959 | guido.van.rossum | 2007-06-13 09:22:41 -0700 (Wed, 13 Jun 2007) | 2 lines
Fix a compilation warning.
................
2007-06-13 15:07:49 -03:00
|
|
|
FOLDER_PROTECT = 0o700
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
|
|
|
# Imported modules
|
|
|
|
|
|
|
|
import os
|
1996-05-28 19:59:37 -03:00
|
|
|
import sys
|
1997-10-22 18:00:49 -03:00
|
|
|
import re
|
1994-06-23 09:06:02 -03:00
|
|
|
import mimetools
|
|
|
|
import multifile
|
1995-01-02 14:38:23 -04:00
|
|
|
import shutil
|
1997-04-15 23:45:08 -03:00
|
|
|
from bisect import bisect
|
1994-06-23 09:06:02 -03:00
|
|
|
|
2001-01-24 02:27:27 -04:00
|
|
|
__all__ = ["MH","Error","Folder","Message"]
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
# Exported constants
|
|
|
|
|
2000-06-29 02:06:02 -03:00
|
|
|
class Error(Exception):
|
|
|
|
pass
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
|
|
|
class MH:
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Class representing a particular collection of folders.
|
|
|
|
Optional constructor arguments are the pathname for the directory
|
|
|
|
containing the collection, and the MH profile to use.
|
|
|
|
If either is omitted or empty a default is used; the default
|
|
|
|
directory is taken from the MH profile if it is specified there."""
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def __init__(self, path = None, profile = None):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Constructor."""
|
2002-06-01 13:07:16 -03:00
|
|
|
if profile is None: profile = MH_PROFILE
|
1998-03-26 17:13:24 -04:00
|
|
|
self.profile = os.path.expanduser(profile)
|
2002-06-01 13:07:16 -03:00
|
|
|
if path is None: path = self.getprofile('Path')
|
1998-03-26 17:13:24 -04:00
|
|
|
if not path: path = PATH
|
|
|
|
if not os.path.isabs(path) and path[0] != '~':
|
|
|
|
path = os.path.join('~', path)
|
|
|
|
path = os.path.expanduser(path)
|
|
|
|
if not os.path.isdir(path): raise Error, 'MH() path not found'
|
|
|
|
self.path = path
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def __repr__(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""String representation."""
|
2004-02-12 13:35:32 -04:00
|
|
|
return 'MH(%r, %r)' % (self.path, self.profile)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def error(self, msg, *args):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Routine to print an error. May be overridden by a derived class."""
|
1998-03-26 17:13:24 -04:00
|
|
|
sys.stderr.write('MH error: %s\n' % (msg % args))
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getprofile(self, key):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return a profile entry, None if not found."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return pickline(self.profile, key)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getpath(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the path (the name of the collection's directory)."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.path
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getcontext(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the name of the current folder."""
|
1998-03-26 17:13:24 -04:00
|
|
|
context = pickline(os.path.join(self.getpath(), 'context'),
|
|
|
|
'Current-Folder')
|
|
|
|
if not context: context = 'inbox'
|
|
|
|
return context
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def setcontext(self, context):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Set the name of the current folder."""
|
1998-03-26 17:13:24 -04:00
|
|
|
fn = os.path.join(self.getpath(), 'context')
|
|
|
|
f = open(fn, "w")
|
|
|
|
f.write("Current-Folder: %s\n" % context)
|
|
|
|
f.close()
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def listfolders(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the names of the top-level folders."""
|
1998-03-26 17:13:24 -04:00
|
|
|
folders = []
|
|
|
|
path = self.getpath()
|
|
|
|
for name in os.listdir(path):
|
|
|
|
fullname = os.path.join(path, name)
|
|
|
|
if os.path.isdir(fullname):
|
|
|
|
folders.append(name)
|
|
|
|
folders.sort()
|
|
|
|
return folders
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def listsubfolders(self, name):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the names of the subfolders in a given folder
|
|
|
|
(prefixed with the given folder name)."""
|
1998-03-26 17:13:24 -04:00
|
|
|
fullname = os.path.join(self.path, name)
|
|
|
|
# Get the link count so we can avoid listing folders
|
|
|
|
# that have no subfolders.
|
2002-06-01 16:51:15 -03:00
|
|
|
nlinks = os.stat(fullname).st_nlink
|
1998-03-26 17:13:24 -04:00
|
|
|
if nlinks <= 2:
|
|
|
|
return []
|
|
|
|
subfolders = []
|
|
|
|
subnames = os.listdir(fullname)
|
|
|
|
for subname in subnames:
|
|
|
|
fullsubname = os.path.join(fullname, subname)
|
|
|
|
if os.path.isdir(fullsubname):
|
|
|
|
name_subname = os.path.join(name, subname)
|
|
|
|
subfolders.append(name_subname)
|
|
|
|
# Stop looking for subfolders when
|
|
|
|
# we've seen them all
|
|
|
|
nlinks = nlinks - 1
|
|
|
|
if nlinks <= 2:
|
|
|
|
break
|
|
|
|
subfolders.sort()
|
|
|
|
return subfolders
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def listallfolders(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the names of all folders and subfolders, recursively."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.listallsubfolders('')
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def listallsubfolders(self, name):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the names of subfolders in a given folder, recursively."""
|
1998-03-26 17:13:24 -04:00
|
|
|
fullname = os.path.join(self.path, name)
|
|
|
|
# Get the link count so we can avoid listing folders
|
|
|
|
# that have no subfolders.
|
2002-06-01 16:51:15 -03:00
|
|
|
nlinks = os.stat(fullname).st_nlink
|
1998-03-26 17:13:24 -04:00
|
|
|
if nlinks <= 2:
|
|
|
|
return []
|
|
|
|
subfolders = []
|
|
|
|
subnames = os.listdir(fullname)
|
|
|
|
for subname in subnames:
|
|
|
|
if subname[0] == ',' or isnumeric(subname): continue
|
|
|
|
fullsubname = os.path.join(fullname, subname)
|
|
|
|
if os.path.isdir(fullsubname):
|
|
|
|
name_subname = os.path.join(name, subname)
|
|
|
|
subfolders.append(name_subname)
|
|
|
|
if not os.path.islink(fullsubname):
|
|
|
|
subsubfolders = self.listallsubfolders(
|
|
|
|
name_subname)
|
|
|
|
subfolders = subfolders + subsubfolders
|
|
|
|
# Stop looking for subfolders when
|
|
|
|
# we've seen them all
|
|
|
|
nlinks = nlinks - 1
|
|
|
|
if nlinks <= 2:
|
|
|
|
break
|
|
|
|
subfolders.sort()
|
|
|
|
return subfolders
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def openfolder(self, name):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return a new Folder object for the named folder."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return Folder(self, name)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def makefolder(self, name):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Create a new folder (or raise os.error if it cannot be created)."""
|
1998-03-26 17:13:24 -04:00
|
|
|
protect = pickline(self.profile, 'Folder-Protect')
|
|
|
|
if protect and isnumeric(protect):
|
2001-02-09 05:19:27 -04:00
|
|
|
mode = int(protect, 8)
|
1998-03-26 17:13:24 -04:00
|
|
|
else:
|
|
|
|
mode = FOLDER_PROTECT
|
|
|
|
os.mkdir(os.path.join(self.getpath(), name), mode)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def deletefolder(self, name):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Delete a folder. This removes files in the folder but not
|
|
|
|
subdirectories. Raise os.error if deleting the folder itself fails."""
|
1998-03-26 17:13:24 -04:00
|
|
|
fullname = os.path.join(self.getpath(), name)
|
|
|
|
for subname in os.listdir(fullname):
|
|
|
|
fullsubname = os.path.join(fullname, subname)
|
|
|
|
try:
|
|
|
|
os.unlink(fullsubname)
|
|
|
|
except os.error:
|
|
|
|
self.error('%s not deleted, continuing...' %
|
|
|
|
fullsubname)
|
|
|
|
os.rmdir(fullname)
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
1997-10-22 18:00:49 -03:00
|
|
|
numericprog = re.compile('^[1-9][0-9]*$')
|
1994-06-23 09:06:02 -03:00
|
|
|
def isnumeric(str):
|
1997-10-22 18:00:49 -03:00
|
|
|
return numericprog.match(str) is not None
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
class Folder:
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Class representing a particular folder."""
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def __init__(self, mh, name):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Constructor."""
|
1998-03-26 17:13:24 -04:00
|
|
|
self.mh = mh
|
|
|
|
self.name = name
|
|
|
|
if not os.path.isdir(self.getfullname()):
|
|
|
|
raise Error, 'no folder %s' % name
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def __repr__(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""String representation."""
|
2004-02-12 13:35:32 -04:00
|
|
|
return 'Folder(%r, %r)' % (self.mh, self.name)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def error(self, *args):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Error message handler."""
|
2003-02-27 16:14:51 -04:00
|
|
|
self.mh.error(*args)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getfullname(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the full pathname of the folder."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return os.path.join(self.mh.path, self.name)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getsequencesfilename(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the full pathname of the folder's sequences file."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return os.path.join(self.getfullname(), MH_SEQUENCES)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getmessagefilename(self, n):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the full pathname of a message in the folder."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return os.path.join(self.getfullname(), str(n))
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def listsubfolders(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return list of direct subfolders."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.mh.listsubfolders(self.name)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def listallsubfolders(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return list of all subfolders."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.mh.listallsubfolders(self.name)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def listmessages(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the list of messages currently present in the folder.
|
|
|
|
As a side effect, set self.last to the last message (or 0)."""
|
1998-03-26 17:13:24 -04:00
|
|
|
messages = []
|
|
|
|
match = numericprog.match
|
|
|
|
append = messages.append
|
|
|
|
for name in os.listdir(self.getfullname()):
|
1998-06-23 11:43:06 -03:00
|
|
|
if match(name):
|
1998-03-26 17:13:24 -04:00
|
|
|
append(name)
|
Merged revisions 56125-56153 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
........
r56127 | georg.brandl | 2007-06-30 09:32:49 +0200 (Sat, 30 Jun 2007) | 2 lines
Fix a place where floor division would be in order.
........
r56135 | guido.van.rossum | 2007-07-01 06:13:54 +0200 (Sun, 01 Jul 2007) | 28 lines
Make map() and filter() identical to itertools.imap() and .ifilter(),
respectively.
I fixed two bootstrap issues, due to the dynamic import of itertools:
1. Starting python requires that map() and filter() are not used until
site.py has added build/lib.<arch> to sys.path.
2. Building python requires that setup.py and distutils and everything
they use is free of map() and filter() calls.
Beyond this, I only fixed the tests in test_builtin.py.
Others, please help fixing the remaining tests that are now broken!
The fixes are usually simple:
a. map(None, X) -> list(X)
b. map(F, X) -> list(map(F, X))
c. map(lambda x: F(x), X) -> [F(x) for x in X]
d. filter(F, X) -> list(filter(F, X))
e. filter(lambda x: P(x), X) -> [x for x in X if P(x)]
Someone, please also contribute a fixer for 2to3 to do this.
It can leave map()/filter() calls alone that are already
inside a list() or sorted() call or for-loop.
Only in rare cases have I seen code that depends on map() of lists
of different lengths going to the end of the longest, or on filter()
of a string or tuple returning an object of the same type; these
will need more thought to fix.
........
r56136 | guido.van.rossum | 2007-07-01 06:22:01 +0200 (Sun, 01 Jul 2007) | 3 lines
Make it so that test_decimal fails instead of hangs, to help automated
test runners.
........
r56139 | georg.brandl | 2007-07-01 18:20:58 +0200 (Sun, 01 Jul 2007) | 2 lines
Fix a few test cases after the map->imap change.
........
r56142 | neal.norwitz | 2007-07-02 06:38:12 +0200 (Mon, 02 Jul 2007) | 1 line
Get a bunch more tests passing after converting map/filter to return iterators.
........
r56147 | guido.van.rossum | 2007-07-02 15:32:02 +0200 (Mon, 02 Jul 2007) | 4 lines
Fix the remaining failing unit tests (at least on OSX).
Also tweaked urllib2 so it doesn't raise socket.gaierror when
all network interfaces are turned off.
........
2007-07-03 05:25:58 -03:00
|
|
|
messages = sorted(map(int, messages))
|
1998-03-26 17:13:24 -04:00
|
|
|
if messages:
|
|
|
|
self.last = messages[-1]
|
|
|
|
else:
|
|
|
|
self.last = 0
|
|
|
|
return messages
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def getsequences(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the set of sequences for the folder."""
|
1998-03-26 17:13:24 -04:00
|
|
|
sequences = {}
|
|
|
|
fullname = self.getsequencesfilename()
|
|
|
|
try:
|
|
|
|
f = open(fullname, 'r')
|
|
|
|
except IOError:
|
|
|
|
return sequences
|
|
|
|
while 1:
|
|
|
|
line = f.readline()
|
|
|
|
if not line: break
|
2001-02-09 05:19:27 -04:00
|
|
|
fields = line.split(':')
|
2000-12-12 19:20:45 -04:00
|
|
|
if len(fields) != 2:
|
1998-03-26 17:13:24 -04:00
|
|
|
self.error('bad sequence in %s: %s' %
|
2001-02-09 05:19:27 -04:00
|
|
|
(fullname, line.strip()))
|
|
|
|
key = fields[0].strip()
|
|
|
|
value = IntSet(fields[1].strip(), ' ').tolist()
|
1998-03-26 17:13:24 -04:00
|
|
|
sequences[key] = value
|
|
|
|
return sequences
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def putsequences(self, sequences):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Write the set of sequences back to the folder."""
|
1998-03-26 17:13:24 -04:00
|
|
|
fullname = self.getsequencesfilename()
|
|
|
|
f = None
|
2007-02-11 02:12:03 -04:00
|
|
|
for key, seq in sequences.items():
|
1998-03-26 17:13:24 -04:00
|
|
|
s = IntSet('', ' ')
|
2002-06-03 23:17:04 -03:00
|
|
|
s.fromlist(seq)
|
1998-03-26 17:13:24 -04:00
|
|
|
if not f: f = open(fullname, 'w')
|
|
|
|
f.write('%s: %s\n' % (key, s.tostring()))
|
|
|
|
if not f:
|
|
|
|
try:
|
|
|
|
os.unlink(fullname)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
f.close()
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def getcurrent(self):
|
2000-06-29 02:06:02 -03:00
|
|
|
"""Return the current message. Raise Error when there is none."""
|
1998-03-26 17:13:24 -04:00
|
|
|
seqs = self.getsequences()
|
|
|
|
try:
|
|
|
|
return max(seqs['cur'])
|
|
|
|
except (ValueError, KeyError):
|
|
|
|
raise Error, "no cur message"
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def setcurrent(self, n):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Set the current message."""
|
1998-03-26 17:13:24 -04:00
|
|
|
updateline(self.getsequencesfilename(), 'cur', str(n), 0)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def parsesequence(self, seq):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Parse an MH sequence specification into a message list.
|
|
|
|
Attempt to mimic mh-sequence(5) as close as possible.
|
|
|
|
Also attempt to mimic observed behavior regarding which
|
|
|
|
conditions cause which error messages."""
|
1998-03-26 17:13:24 -04:00
|
|
|
# XXX Still not complete (see mh-format(5)).
|
|
|
|
# Missing are:
|
|
|
|
# - 'prev', 'next' as count
|
|
|
|
# - Sequence-Negation option
|
|
|
|
all = self.listmessages()
|
|
|
|
# Observed behavior: test for empty folder is done first
|
|
|
|
if not all:
|
|
|
|
raise Error, "no messages in %s" % self.name
|
|
|
|
# Common case first: all is frequently the default
|
|
|
|
if seq == 'all':
|
|
|
|
return all
|
|
|
|
# Test for X:Y before X-Y because 'seq:-n' matches both
|
2001-02-09 05:19:27 -04:00
|
|
|
i = seq.find(':')
|
1998-03-26 17:13:24 -04:00
|
|
|
if i >= 0:
|
|
|
|
head, dir, tail = seq[:i], '', seq[i+1:]
|
|
|
|
if tail[:1] in '-+':
|
|
|
|
dir, tail = tail[:1], tail[1:]
|
|
|
|
if not isnumeric(tail):
|
|
|
|
raise Error, "bad message list %s" % seq
|
|
|
|
try:
|
2001-02-09 05:19:27 -04:00
|
|
|
count = int(tail)
|
1998-03-26 17:13:24 -04:00
|
|
|
except (ValueError, OverflowError):
|
|
|
|
# Can't use sys.maxint because of i+count below
|
|
|
|
count = len(all)
|
|
|
|
try:
|
|
|
|
anchor = self._parseindex(head, all)
|
2007-01-10 12:19:56 -04:00
|
|
|
except Error as msg:
|
1998-03-26 17:13:24 -04:00
|
|
|
seqs = self.getsequences()
|
2002-06-01 11:18:47 -03:00
|
|
|
if not head in seqs:
|
1998-03-26 17:13:24 -04:00
|
|
|
if not msg:
|
|
|
|
msg = "bad message list %s" % seq
|
|
|
|
raise Error, msg, sys.exc_info()[2]
|
|
|
|
msgs = seqs[head]
|
|
|
|
if not msgs:
|
|
|
|
raise Error, "sequence %s empty" % head
|
|
|
|
if dir == '-':
|
|
|
|
return msgs[-count:]
|
|
|
|
else:
|
|
|
|
return msgs[:count]
|
|
|
|
else:
|
|
|
|
if not dir:
|
|
|
|
if head in ('prev', 'last'):
|
|
|
|
dir = '-'
|
|
|
|
if dir == '-':
|
|
|
|
i = bisect(all, anchor)
|
|
|
|
return all[max(0, i-count):i]
|
|
|
|
else:
|
|
|
|
i = bisect(all, anchor-1)
|
|
|
|
return all[i:i+count]
|
|
|
|
# Test for X-Y next
|
2001-02-09 05:19:27 -04:00
|
|
|
i = seq.find('-')
|
1998-03-26 17:13:24 -04:00
|
|
|
if i >= 0:
|
|
|
|
begin = self._parseindex(seq[:i], all)
|
|
|
|
end = self._parseindex(seq[i+1:], all)
|
|
|
|
i = bisect(all, begin-1)
|
|
|
|
j = bisect(all, end)
|
|
|
|
r = all[i:j]
|
|
|
|
if not r:
|
|
|
|
raise Error, "bad message list %s" % seq
|
|
|
|
return r
|
|
|
|
# Neither X:Y nor X-Y; must be a number or a (pseudo-)sequence
|
|
|
|
try:
|
|
|
|
n = self._parseindex(seq, all)
|
2007-01-10 12:19:56 -04:00
|
|
|
except Error as msg:
|
1998-03-26 17:13:24 -04:00
|
|
|
seqs = self.getsequences()
|
2002-06-01 11:18:47 -03:00
|
|
|
if not seq in seqs:
|
1998-03-26 17:13:24 -04:00
|
|
|
if not msg:
|
|
|
|
msg = "bad message list %s" % seq
|
|
|
|
raise Error, msg
|
|
|
|
return seqs[seq]
|
|
|
|
else:
|
|
|
|
if n not in all:
|
|
|
|
if isnumeric(seq):
|
|
|
|
raise Error, "message %d doesn't exist" % n
|
|
|
|
else:
|
|
|
|
raise Error, "no %s message" % seq
|
|
|
|
else:
|
|
|
|
return [n]
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def _parseindex(self, seq, all):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Internal: parse a message number (or cur, first, etc.)."""
|
1998-03-26 17:13:24 -04:00
|
|
|
if isnumeric(seq):
|
|
|
|
try:
|
2001-02-09 05:19:27 -04:00
|
|
|
return int(seq)
|
1998-03-26 17:13:24 -04:00
|
|
|
except (OverflowError, ValueError):
|
|
|
|
return sys.maxint
|
|
|
|
if seq in ('cur', '.'):
|
|
|
|
return self.getcurrent()
|
|
|
|
if seq == 'first':
|
|
|
|
return all[0]
|
|
|
|
if seq == 'last':
|
|
|
|
return all[-1]
|
|
|
|
if seq == 'next':
|
|
|
|
n = self.getcurrent()
|
|
|
|
i = bisect(all, n)
|
|
|
|
try:
|
|
|
|
return all[i]
|
|
|
|
except IndexError:
|
|
|
|
raise Error, "no next message"
|
|
|
|
if seq == 'prev':
|
|
|
|
n = self.getcurrent()
|
|
|
|
i = bisect(all, n-1)
|
|
|
|
if i == 0:
|
|
|
|
raise Error, "no prev message"
|
|
|
|
try:
|
|
|
|
return all[i-1]
|
|
|
|
except IndexError:
|
|
|
|
raise Error, "no prev message"
|
|
|
|
raise Error, None
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def openmessage(self, n):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Open a message -- returns a Message object."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return Message(self, n)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def removemessages(self, list):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Remove one or more messages -- may raise os.error."""
|
1998-03-26 17:13:24 -04:00
|
|
|
errors = []
|
|
|
|
deleted = []
|
|
|
|
for n in list:
|
|
|
|
path = self.getmessagefilename(n)
|
|
|
|
commapath = self.getmessagefilename(',' + str(n))
|
|
|
|
try:
|
|
|
|
os.unlink(commapath)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
os.rename(path, commapath)
|
2007-01-10 12:19:56 -04:00
|
|
|
except os.error as msg:
|
1998-03-26 17:13:24 -04:00
|
|
|
errors.append(msg)
|
|
|
|
else:
|
|
|
|
deleted.append(n)
|
|
|
|
if deleted:
|
|
|
|
self.removefromallsequences(deleted)
|
|
|
|
if errors:
|
|
|
|
if len(errors) == 1:
|
|
|
|
raise os.error, errors[0]
|
|
|
|
else:
|
|
|
|
raise os.error, ('multiple errors:', errors)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def refilemessages(self, list, tofolder, keepsequences=0):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Refile one or more messages -- may raise os.error.
|
|
|
|
'tofolder' is an open folder object."""
|
1998-03-26 17:13:24 -04:00
|
|
|
errors = []
|
|
|
|
refiled = {}
|
|
|
|
for n in list:
|
|
|
|
ton = tofolder.getlast() + 1
|
|
|
|
path = self.getmessagefilename(n)
|
|
|
|
topath = tofolder.getmessagefilename(ton)
|
|
|
|
try:
|
|
|
|
os.rename(path, topath)
|
|
|
|
except os.error:
|
|
|
|
# Try copying
|
|
|
|
try:
|
|
|
|
shutil.copy2(path, topath)
|
|
|
|
os.unlink(path)
|
2007-01-10 12:19:56 -04:00
|
|
|
except (IOError, os.error) as msg:
|
1998-03-26 17:13:24 -04:00
|
|
|
errors.append(msg)
|
|
|
|
try:
|
|
|
|
os.unlink(topath)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
continue
|
|
|
|
tofolder.setlast(ton)
|
|
|
|
refiled[n] = ton
|
|
|
|
if refiled:
|
|
|
|
if keepsequences:
|
|
|
|
tofolder._copysequences(self, refiled.items())
|
|
|
|
self.removefromallsequences(refiled.keys())
|
|
|
|
if errors:
|
|
|
|
if len(errors) == 1:
|
|
|
|
raise os.error, errors[0]
|
|
|
|
else:
|
|
|
|
raise os.error, ('multiple errors:', errors)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def _copysequences(self, fromfolder, refileditems):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Helper for refilemessages() to copy sequences."""
|
1998-03-26 17:13:24 -04:00
|
|
|
fromsequences = fromfolder.getsequences()
|
|
|
|
tosequences = self.getsequences()
|
|
|
|
changed = 0
|
|
|
|
for name, seq in fromsequences.items():
|
|
|
|
try:
|
|
|
|
toseq = tosequences[name]
|
|
|
|
new = 0
|
2001-07-04 04:01:29 -03:00
|
|
|
except KeyError:
|
1998-03-26 17:13:24 -04:00
|
|
|
toseq = []
|
|
|
|
new = 1
|
|
|
|
for fromn, ton in refileditems:
|
|
|
|
if fromn in seq:
|
|
|
|
toseq.append(ton)
|
|
|
|
changed = 1
|
|
|
|
if new and toseq:
|
|
|
|
tosequences[name] = toseq
|
|
|
|
if changed:
|
|
|
|
self.putsequences(tosequences)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def movemessage(self, n, tofolder, ton):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Move one message over a specific destination message,
|
|
|
|
which may or may not already exist."""
|
1998-03-26 17:13:24 -04:00
|
|
|
path = self.getmessagefilename(n)
|
|
|
|
# Open it to check that it exists
|
|
|
|
f = open(path)
|
|
|
|
f.close()
|
|
|
|
del f
|
|
|
|
topath = tofolder.getmessagefilename(ton)
|
|
|
|
backuptopath = tofolder.getmessagefilename(',%d' % ton)
|
|
|
|
try:
|
|
|
|
os.rename(topath, backuptopath)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
os.rename(path, topath)
|
|
|
|
except os.error:
|
|
|
|
# Try copying
|
|
|
|
ok = 0
|
|
|
|
try:
|
|
|
|
tofolder.setlast(None)
|
|
|
|
shutil.copy2(path, topath)
|
|
|
|
ok = 1
|
|
|
|
finally:
|
|
|
|
if not ok:
|
|
|
|
try:
|
|
|
|
os.unlink(topath)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
os.unlink(path)
|
|
|
|
self.removefromallsequences([n])
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def copymessage(self, n, tofolder, ton):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Copy one message over a specific destination message,
|
|
|
|
which may or may not already exist."""
|
1998-03-26 17:13:24 -04:00
|
|
|
path = self.getmessagefilename(n)
|
|
|
|
# Open it to check that it exists
|
|
|
|
f = open(path)
|
|
|
|
f.close()
|
|
|
|
del f
|
|
|
|
topath = tofolder.getmessagefilename(ton)
|
|
|
|
backuptopath = tofolder.getmessagefilename(',%d' % ton)
|
|
|
|
try:
|
|
|
|
os.rename(topath, backuptopath)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
ok = 0
|
|
|
|
try:
|
|
|
|
tofolder.setlast(None)
|
|
|
|
shutil.copy2(path, topath)
|
|
|
|
ok = 1
|
|
|
|
finally:
|
|
|
|
if not ok:
|
|
|
|
try:
|
|
|
|
os.unlink(topath)
|
|
|
|
except os.error:
|
|
|
|
pass
|
1997-04-15 23:47:12 -03:00
|
|
|
|
1997-07-25 11:59:10 -03:00
|
|
|
def createmessage(self, n, txt):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Create a message, with text from the open file txt."""
|
1998-03-26 17:13:24 -04:00
|
|
|
path = self.getmessagefilename(n)
|
|
|
|
backuppath = self.getmessagefilename(',%d' % n)
|
|
|
|
try:
|
|
|
|
os.rename(path, backuppath)
|
|
|
|
except os.error:
|
|
|
|
pass
|
|
|
|
ok = 0
|
|
|
|
BUFSIZE = 16*1024
|
|
|
|
try:
|
|
|
|
f = open(path, "w")
|
|
|
|
while 1:
|
|
|
|
buf = txt.read(BUFSIZE)
|
|
|
|
if not buf:
|
|
|
|
break
|
|
|
|
f.write(buf)
|
|
|
|
f.close()
|
|
|
|
ok = 1
|
|
|
|
finally:
|
|
|
|
if not ok:
|
|
|
|
try:
|
|
|
|
os.unlink(path)
|
|
|
|
except os.error:
|
|
|
|
pass
|
1997-07-25 11:59:10 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def removefromallsequences(self, list):
|
2000-07-16 09:04:32 -03:00
|
|
|
"""Remove one or more messages from all sequences (including last)
|
2000-02-04 11:10:34 -04:00
|
|
|
-- but not from 'cur'!!!"""
|
1998-03-26 17:13:24 -04:00
|
|
|
if hasattr(self, 'last') and self.last in list:
|
|
|
|
del self.last
|
|
|
|
sequences = self.getsequences()
|
|
|
|
changed = 0
|
|
|
|
for name, seq in sequences.items():
|
|
|
|
if name == 'cur':
|
|
|
|
continue
|
|
|
|
for n in list:
|
|
|
|
if n in seq:
|
|
|
|
seq.remove(n)
|
|
|
|
changed = 1
|
|
|
|
if not seq:
|
|
|
|
del sequences[name]
|
|
|
|
if changed:
|
|
|
|
self.putsequences(sequences)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getlast(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the last message number."""
|
1998-03-26 17:13:24 -04:00
|
|
|
if not hasattr(self, 'last'):
|
2001-10-17 02:59:26 -03:00
|
|
|
self.listmessages() # Set self.last
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.last
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def setlast(self, last):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Set the last message number."""
|
1998-03-26 17:13:24 -04:00
|
|
|
if last is None:
|
|
|
|
if hasattr(self, 'last'):
|
|
|
|
del self.last
|
|
|
|
else:
|
|
|
|
self.last = last
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
class Message(mimetools.Message):
|
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def __init__(self, f, n, fp = None):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Constructor."""
|
1998-03-26 17:13:24 -04:00
|
|
|
self.folder = f
|
|
|
|
self.number = n
|
2002-06-01 13:07:16 -03:00
|
|
|
if fp is None:
|
1998-03-26 17:13:24 -04:00
|
|
|
path = f.getmessagefilename(n)
|
|
|
|
fp = open(path, 'r')
|
|
|
|
mimetools.Message.__init__(self, fp)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def __repr__(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""String representation."""
|
1998-03-26 17:13:24 -04:00
|
|
|
return 'Message(%s, %s)' % (repr(self.folder), self.number)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getheadertext(self, pred = None):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the message's header text as a string. If an
|
|
|
|
argument is specified, it is used as a filter predicate to
|
|
|
|
decide which headers to return (its argument is the header
|
|
|
|
name converted to lower case)."""
|
2002-06-01 13:07:16 -03:00
|
|
|
if pred is None:
|
2001-02-09 05:19:27 -04:00
|
|
|
return ''.join(self.headers)
|
1998-03-26 17:13:24 -04:00
|
|
|
headers = []
|
|
|
|
hit = 0
|
|
|
|
for line in self.headers:
|
2001-02-09 20:22:33 -04:00
|
|
|
if not line[0].isspace():
|
2001-02-09 05:19:27 -04:00
|
|
|
i = line.find(':')
|
1998-03-26 17:13:24 -04:00
|
|
|
if i > 0:
|
2001-02-09 05:19:27 -04:00
|
|
|
hit = pred(line[:i].lower())
|
1998-03-26 17:13:24 -04:00
|
|
|
if hit: headers.append(line)
|
2001-02-09 06:28:34 -04:00
|
|
|
return ''.join(headers)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getbodytext(self, decode = 1):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return the message's body text as string. This undoes a
|
|
|
|
Content-Transfer-Encoding, but does not interpret other MIME
|
|
|
|
features (e.g. multipart messages). To suppress decoding,
|
|
|
|
pass 0 as an argument."""
|
1998-03-26 17:13:24 -04:00
|
|
|
self.fp.seek(self.startofbody)
|
|
|
|
encoding = self.getencoding()
|
1999-02-24 12:25:17 -04:00
|
|
|
if not decode or encoding in ('', '7bit', '8bit', 'binary'):
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.fp.read()
|
2007-05-17 21:51:22 -03:00
|
|
|
from io import StringIO
|
1998-03-26 17:13:24 -04:00
|
|
|
output = StringIO()
|
|
|
|
mimetools.decode(self.fp, output, encoding)
|
|
|
|
return output.getvalue()
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getbodyparts(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Only for multipart messages: return the message's body as a
|
|
|
|
list of SubMessage objects. Each submessage object behaves
|
|
|
|
(almost) as a Message object."""
|
1998-03-26 17:13:24 -04:00
|
|
|
if self.getmaintype() != 'multipart':
|
|
|
|
raise Error, 'Content-Type is not multipart/*'
|
|
|
|
bdry = self.getparam('boundary')
|
|
|
|
if not bdry:
|
|
|
|
raise Error, 'multipart/* without boundary param'
|
|
|
|
self.fp.seek(self.startofbody)
|
|
|
|
mf = multifile.MultiFile(self.fp)
|
|
|
|
mf.push(bdry)
|
|
|
|
parts = []
|
|
|
|
while mf.next():
|
2004-02-12 13:35:32 -04:00
|
|
|
n = "%s.%r" % (self.number, 1 + len(parts))
|
1998-03-26 17:13:24 -04:00
|
|
|
part = SubMessage(self.folder, n, mf)
|
|
|
|
parts.append(part)
|
|
|
|
mf.pop()
|
|
|
|
return parts
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def getbody(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Return body, either a string or a list of messages."""
|
1998-03-26 17:13:24 -04:00
|
|
|
if self.getmaintype() == 'multipart':
|
|
|
|
return self.getbodyparts()
|
|
|
|
else:
|
|
|
|
return self.getbodytext()
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
|
|
|
class SubMessage(Message):
|
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def __init__(self, f, n, fp):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Constructor."""
|
1998-03-26 17:13:24 -04:00
|
|
|
Message.__init__(self, f, n, fp)
|
|
|
|
if self.getmaintype() == 'multipart':
|
|
|
|
self.body = Message.getbodyparts(self)
|
|
|
|
else:
|
|
|
|
self.body = Message.getbodytext(self)
|
1999-02-24 12:25:17 -04:00
|
|
|
self.bodyencoded = Message.getbodytext(self, decode=0)
|
1998-03-26 17:13:24 -04:00
|
|
|
# XXX If this is big, should remember file pointers
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def __repr__(self):
|
2000-02-04 11:10:34 -04:00
|
|
|
"""String representation."""
|
1998-03-26 17:13:24 -04:00
|
|
|
f, n, fp = self.folder, self.number, self.fp
|
|
|
|
return 'SubMessage(%s, %s, %s)' % (f, n, fp)
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1999-02-24 12:25:17 -04:00
|
|
|
def getbodytext(self, decode = 1):
|
|
|
|
if not decode:
|
|
|
|
return self.bodyencoded
|
1998-03-26 17:13:24 -04:00
|
|
|
if type(self.body) == type(''):
|
|
|
|
return self.body
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def getbodyparts(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
if type(self.body) == type([]):
|
|
|
|
return self.body
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def getbody(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.body
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
|
|
|
class IntSet:
|
2000-02-04 11:10:34 -04:00
|
|
|
"""Class implementing sets of integers.
|
|
|
|
|
|
|
|
This is an efficient representation for sets consisting of several
|
|
|
|
continuous ranges, e.g. 1-100,200-400,402-1000 is represented
|
|
|
|
internally as a list of three pairs: [(1,100), (200,400),
|
|
|
|
(402,1000)]. The internal representation is always kept normalized.
|
|
|
|
|
|
|
|
The constructor has up to three arguments:
|
|
|
|
- the string used to initialize the set (default ''),
|
|
|
|
- the separator between ranges (default ',')
|
|
|
|
- the separator between begin and end of a range (default '-')
|
|
|
|
The separators must be strings (not regexprs) and should be different.
|
|
|
|
|
|
|
|
The tostring() function yields a string that can be passed to another
|
|
|
|
IntSet constructor; __repr__() is a valid IntSet constructor itself.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# XXX The default begin/end separator means that negative numbers are
|
|
|
|
# not supported very well.
|
|
|
|
#
|
|
|
|
# XXX There are currently no operations to remove set elements.
|
1994-06-23 09:06:02 -03:00
|
|
|
|
1997-04-15 23:47:12 -03:00
|
|
|
def __init__(self, data = None, sep = ',', rng = '-'):
|
1998-03-26 17:13:24 -04:00
|
|
|
self.pairs = []
|
|
|
|
self.sep = sep
|
|
|
|
self.rng = rng
|
2002-06-02 13:12:06 -03:00
|
|
|
if data: self.fromstring(data)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def reset(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
self.pairs = []
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def __cmp__(self, other):
|
1998-03-26 17:13:24 -04:00
|
|
|
return cmp(self.pairs, other.pairs)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def __hash__(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
return hash(self.pairs)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def __repr__(self):
|
2004-02-12 13:35:32 -04:00
|
|
|
return 'IntSet(%r, %r, %r)' % (self.tostring(), self.sep, self.rng)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def normalize(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
self.pairs.sort()
|
|
|
|
i = 1
|
|
|
|
while i < len(self.pairs):
|
|
|
|
alo, ahi = self.pairs[i-1]
|
|
|
|
blo, bhi = self.pairs[i]
|
|
|
|
if ahi >= blo-1:
|
|
|
|
self.pairs[i-1:i+1] = [(alo, max(ahi, bhi))]
|
|
|
|
else:
|
|
|
|
i = i+1
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def tostring(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
s = ''
|
|
|
|
for lo, hi in self.pairs:
|
2004-02-12 13:35:32 -04:00
|
|
|
if lo == hi: t = repr(lo)
|
|
|
|
else: t = repr(lo) + self.rng + repr(hi)
|
1998-03-26 17:13:24 -04:00
|
|
|
if s: s = s + (self.sep + t)
|
|
|
|
else: s = t
|
|
|
|
return s
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def tolist(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
l = []
|
|
|
|
for lo, hi in self.pairs:
|
2007-05-07 19:24:25 -03:00
|
|
|
m = list(range(lo, hi+1))
|
1998-03-26 17:13:24 -04:00
|
|
|
l = l + m
|
|
|
|
return l
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def fromlist(self, list):
|
1998-03-26 17:13:24 -04:00
|
|
|
for i in list:
|
|
|
|
self.append(i)
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def clone(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
new = IntSet()
|
|
|
|
new.pairs = self.pairs[:]
|
|
|
|
return new
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def min(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.pairs[0][0]
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def max(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
return self.pairs[-1][-1]
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def contains(self, x):
|
1998-03-26 17:13:24 -04:00
|
|
|
for lo, hi in self.pairs:
|
2002-04-04 18:55:58 -04:00
|
|
|
if lo <= x <= hi: return True
|
|
|
|
return False
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def append(self, x):
|
1998-03-26 17:13:24 -04:00
|
|
|
for i in range(len(self.pairs)):
|
|
|
|
lo, hi = self.pairs[i]
|
|
|
|
if x < lo: # Need to insert before
|
|
|
|
if x+1 == lo:
|
|
|
|
self.pairs[i] = (x, hi)
|
|
|
|
else:
|
|
|
|
self.pairs.insert(i, (x, x))
|
|
|
|
if i > 0 and x-1 == self.pairs[i-1][1]:
|
|
|
|
# Merge with previous
|
|
|
|
self.pairs[i-1:i+1] = [
|
|
|
|
(self.pairs[i-1][0],
|
|
|
|
self.pairs[i][1])
|
|
|
|
]
|
|
|
|
return
|
|
|
|
if x <= hi: # Already in set
|
|
|
|
return
|
|
|
|
i = len(self.pairs) - 1
|
|
|
|
if i >= 0:
|
|
|
|
lo, hi = self.pairs[i]
|
|
|
|
if x-1 == hi:
|
|
|
|
self.pairs[i] = lo, x
|
|
|
|
return
|
|
|
|
self.pairs.append((x, x))
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def addpair(self, xlo, xhi):
|
1998-03-26 17:13:24 -04:00
|
|
|
if xlo > xhi: return
|
|
|
|
self.pairs.append((xlo, xhi))
|
|
|
|
self.normalize()
|
1997-04-15 23:47:12 -03:00
|
|
|
|
|
|
|
def fromstring(self, data):
|
1998-03-26 17:13:24 -04:00
|
|
|
new = []
|
2001-02-09 05:19:27 -04:00
|
|
|
for part in data.split(self.sep):
|
1998-03-26 17:13:24 -04:00
|
|
|
list = []
|
2001-02-09 05:19:27 -04:00
|
|
|
for subp in part.split(self.rng):
|
|
|
|
s = subp.strip()
|
|
|
|
list.append(int(s))
|
1998-03-26 17:13:24 -04:00
|
|
|
if len(list) == 1:
|
|
|
|
new.append((list[0], list[0]))
|
|
|
|
elif len(list) == 2 and list[0] <= list[1]:
|
|
|
|
new.append((list[0], list[1]))
|
|
|
|
else:
|
|
|
|
raise ValueError, 'bad data passed to IntSet'
|
|
|
|
self.pairs = self.pairs + new
|
|
|
|
self.normalize()
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
|
|
|
# Subroutines to read/write entries in .mh_profile and .mh_sequences
|
|
|
|
|
|
|
|
def pickline(file, key, casefold = 1):
|
1997-04-15 23:47:12 -03:00
|
|
|
try:
|
1998-03-26 17:13:24 -04:00
|
|
|
f = open(file, 'r')
|
1997-04-15 23:47:12 -03:00
|
|
|
except IOError:
|
1998-03-26 17:13:24 -04:00
|
|
|
return None
|
1997-10-22 18:00:49 -03:00
|
|
|
pat = re.escape(key) + ':'
|
|
|
|
prog = re.compile(pat, casefold and re.IGNORECASE)
|
1997-04-15 23:47:12 -03:00
|
|
|
while 1:
|
1998-03-26 17:13:24 -04:00
|
|
|
line = f.readline()
|
|
|
|
if not line: break
|
|
|
|
if prog.match(line):
|
|
|
|
text = line[len(key)+1:]
|
|
|
|
while 1:
|
|
|
|
line = f.readline()
|
2001-02-09 20:22:33 -04:00
|
|
|
if not line or not line[0].isspace():
|
1998-03-26 17:13:24 -04:00
|
|
|
break
|
|
|
|
text = text + line
|
2001-02-09 05:19:27 -04:00
|
|
|
return text.strip()
|
1997-04-15 23:47:12 -03:00
|
|
|
return None
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
def updateline(file, key, value, casefold = 1):
|
1997-04-15 23:47:12 -03:00
|
|
|
try:
|
1998-03-26 17:13:24 -04:00
|
|
|
f = open(file, 'r')
|
|
|
|
lines = f.readlines()
|
|
|
|
f.close()
|
1997-04-15 23:47:12 -03:00
|
|
|
except IOError:
|
1998-03-26 17:13:24 -04:00
|
|
|
lines = []
|
1997-10-22 18:00:49 -03:00
|
|
|
pat = re.escape(key) + ':(.*)\n'
|
|
|
|
prog = re.compile(pat, casefold and re.IGNORECASE)
|
1997-04-15 23:47:12 -03:00
|
|
|
if value is None:
|
1998-03-26 17:13:24 -04:00
|
|
|
newline = None
|
1997-04-15 23:47:12 -03:00
|
|
|
else:
|
1998-03-26 17:13:24 -04:00
|
|
|
newline = '%s: %s\n' % (key, value)
|
1997-04-15 23:47:12 -03:00
|
|
|
for i in range(len(lines)):
|
1998-03-26 17:13:24 -04:00
|
|
|
line = lines[i]
|
|
|
|
if prog.match(line):
|
|
|
|
if newline is None:
|
|
|
|
del lines[i]
|
|
|
|
else:
|
|
|
|
lines[i] = newline
|
|
|
|
break
|
1997-04-15 23:47:12 -03:00
|
|
|
else:
|
1998-03-26 17:13:24 -04:00
|
|
|
if newline is not None:
|
|
|
|
lines.append(newline)
|
1997-04-15 23:47:12 -03:00
|
|
|
tempfile = file + "~"
|
|
|
|
f = open(tempfile, 'w')
|
|
|
|
for line in lines:
|
1998-03-26 17:13:24 -04:00
|
|
|
f.write(line)
|
1997-04-15 23:47:12 -03:00
|
|
|
f.close()
|
|
|
|
os.rename(tempfile, file)
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
|
|
|
# Test program
|
|
|
|
|
|
|
|
def test():
|
1997-04-15 23:47:12 -03:00
|
|
|
global mh, f
|
|
|
|
os.system('rm -rf $HOME/Mail/@test')
|
|
|
|
mh = MH()
|
2007-02-09 01:37:30 -04:00
|
|
|
def do(s): print(s); print(eval(s))
|
1997-04-15 23:47:12 -03:00
|
|
|
do('mh.listfolders()')
|
|
|
|
do('mh.listallfolders()')
|
|
|
|
testfolders = ['@test', '@test/test1', '@test/test2',
|
1998-03-26 17:13:24 -04:00
|
|
|
'@test/test1/test11', '@test/test1/test12',
|
|
|
|
'@test/test1/test11/test111']
|
2004-02-12 13:35:32 -04:00
|
|
|
for t in testfolders: do('mh.makefolder(%r)' % (t,))
|
1997-04-15 23:47:12 -03:00
|
|
|
do('mh.listsubfolders(\'@test\')')
|
|
|
|
do('mh.listallsubfolders(\'@test\')')
|
|
|
|
f = mh.openfolder('@test')
|
|
|
|
do('f.listsubfolders()')
|
|
|
|
do('f.listallsubfolders()')
|
|
|
|
do('f.getsequences()')
|
|
|
|
seqs = f.getsequences()
|
|
|
|
seqs['foo'] = IntSet('1-10 12-20', ' ').tolist()
|
2007-02-09 01:37:30 -04:00
|
|
|
print(seqs)
|
1997-04-15 23:47:12 -03:00
|
|
|
f.putsequences(seqs)
|
|
|
|
do('f.getsequences()')
|
2004-02-12 13:35:32 -04:00
|
|
|
for t in reversed(testfolders): do('mh.deletefolder(%r)' % (t,))
|
1997-04-15 23:47:12 -03:00
|
|
|
do('mh.getcontext()')
|
|
|
|
context = mh.getcontext()
|
|
|
|
f = mh.openfolder(context)
|
|
|
|
do('f.getcurrent()')
|
2005-02-06 02:57:08 -04:00
|
|
|
for seq in ('first', 'last', 'cur', '.', 'prev', 'next',
|
1998-03-26 17:13:24 -04:00
|
|
|
'first:3', 'last:3', 'cur:3', 'cur:-3',
|
|
|
|
'prev:3', 'next:3',
|
|
|
|
'1:3', '1:-3', '100:3', '100:-3', '10000:3', '10000:-3',
|
2005-02-06 02:57:08 -04:00
|
|
|
'all'):
|
1998-03-26 17:13:24 -04:00
|
|
|
try:
|
2004-02-12 13:35:32 -04:00
|
|
|
do('f.parsesequence(%r)' % (seq,))
|
2007-01-10 12:19:56 -04:00
|
|
|
except Error as msg:
|
2007-02-09 01:37:30 -04:00
|
|
|
print("Error:", msg)
|
2004-02-12 13:35:32 -04:00
|
|
|
stuff = os.popen("pick %r 2>/dev/null" % (seq,)).read()
|
2001-02-09 05:19:27 -04:00
|
|
|
list = map(int, stuff.split())
|
2007-02-09 01:37:30 -04:00
|
|
|
print(list, "<-- pick")
|
1997-04-15 23:47:12 -03:00
|
|
|
do('f.listmessages()')
|
1994-06-23 09:06:02 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
1997-04-15 23:47:12 -03:00
|
|
|
test()
|