My take on it. I propose a lazy, single-pass, splitBy function, which preserves relative order in the output subsequences.
Requirements
I assume that the requirements are:
- maintain elements' relative order (hence, no sets and dictionaries)
- evaluate condition only once for every element (hence not using (
i)filter or groupby)
- allow for lazy consumption of either sequence (if we can afford to precomute them, then the naïve implementation is likely to be acceptable too)
Code explained
Internally we need to build two subsequences at once, so consuming only one output sequence will force the other one to be computed too. And we need to keep state between user requests (store processed but not yet requested elements). To keep state, I use two double-ended queues (deques):
from collections import deque
SplitSeq class takes care of the housekeeping:
class SplitSeq:
def __init__(self, condition, sequence):
self.cond = condition
self.goods = deque([])
self.bads = deque([])
self.seq = iter(sequence)
Magic happens in its .getNext() method. It is almost like .next() of the iterators, but allows to specify which kind of element we want this time. Behind the scene it doesn't discard the rejected elements, but instead puts them in one of the two queues:
def getNext(self, getGood=True):
if getGood:
these, those, cond = self.goods, self.bads, self.cond
else:
these, those, cond = self.bads, self.goods, lambda x: not self.cond(x)
if these:
return these.popleft()
else:
while 1: # exit on StopIteration
n = self.seq.next()
if cond(n):
return n
else:
those.append(n)
The end user is supposed to use splitBy function. It takes a condition function and a sequence (just like map or filter), and returns two generators. The first generator builds a subsequence of elements for which the condition holds, the second one builds the complementary subsequence. Iterators and generators allow for lazy splitting of even long or infinite sequences.
def splitBy(condition, sequence):
cond = condition if condition else bool # evaluate as bool if condition == None
ss = SplitSeq(cond, sequence)
def goods():
while 1:
yield ss.getNext(getGood=True)
def bads():
while 1:
yield ss.getNext(getGood=False)
return goods(), bads()
I choose the test function to be the first argument to facilitate partial application in the future (similar to how map and filter have the test function as the first argument).
Complete source
The complete source code with comments and documentations is available on bitbucket. Download this file:
Example
In your case, let the input data be:
>>> IMAGE_TYPES = ('.jpg','.jpeg','.gif','.bmp','.png')
>>> files = [ ('file1.jpg', 33L, '.jpg'),
('file2.avi', 999L, '.avi'),
('file3.png', 48L, '.png') ]
Then to separate animations from images, we create a condition function and call splitBy:
>>> def isAnim(f): return (f[2].lower() not in IMAGE_TYPES)
>>> anims, images = splitBy(isAnim, files)
>>> list(anims)
[('file2.avi', 999L, '.avi')]
>>> list(images)
[('file1.jpg', 33L, '.jpg'), ('file3.png', 48L, '.png')]
To consume elements one by one use .next() method of the returned generators.