Copyright | (C) 2012 Edward Kmett |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Edward Kmett <ekmett@gmail.com> |
Stability | provisional |
Portability | Rank 2 Types, GADTs |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- type Process a b = Machine (Is a) b
- type ProcessT m a b = MachineT m (Is a) b
- class Automaton k where
- class AutomatonM x where
- process :: Monad m => (forall a. k a -> i -> a) -> MachineT m k o -> ProcessT m i o
- (<~) :: Monad m => ProcessT m b c -> MachineT m k b -> MachineT m k c
- (~>) :: Monad m => MachineT m k b -> ProcessT m b c -> MachineT m k c
- echo :: Process a a
- supply :: forall f m a b. (Foldable f, Monad m) => f a -> ProcessT m a b -> ProcessT m a b
- prepended :: Foldable f => f a -> Process a a
- filtered :: (a -> Bool) -> Process a a
- dropping :: Int -> Process a a
- taking :: Int -> Process a a
- droppingWhile :: (a -> Bool) -> Process a a
- takingWhile :: (a -> Bool) -> Process a a
- takingJusts :: Process (Maybe a) a
- buffered :: Int -> Process a [a]
- flattened :: Foldable f => Process (f a) a
- fold :: Category k => (a -> b -> a) -> a -> Machine (k b) a
- fold1 :: Category k => (a -> a -> a) -> Machine (k a) a
- scan :: Category k => (a -> b -> a) -> a -> Machine (k b) a
- scan1 :: Category k => (a -> a -> a) -> Machine (k a) a
- scanMap :: (Category k, Monoid b) => (a -> b) -> Machine (k a) b
- asParts :: Foldable f => Process (f a) a
- sinkPart_ :: Monad m => (a -> (b, c)) -> ProcessT m c Void -> ProcessT m a b
- autoM :: (Category k, Monad m) => (a -> m b) -> MachineT m (k a) b
- final :: Category k => Machine (k a) a
- finalOr :: Category k => a -> Machine (k a) a
- intersperse :: Category k => a -> Machine (k a) a
- largest :: (Category k, Ord a) => Machine (k a) a
- smallest :: (Category k, Ord a) => Machine (k a) a
- sequencing :: (Category k, Monad m) => MachineT m (k (m a)) a
- mapping :: Category k => (a -> b) -> Machine (k a) b
- traversing :: (Category k, Monad m) => (a -> m b) -> MachineT m (k a) b
- reading :: (Category k, Read a) => Machine (k String) a
- showing :: (Category k, Show a) => Machine (k a) String
- strippingPrefix :: (Eq b, Monad m) => MachineT m (k a) b -> MachineT m (k a) b -> MachineT m (k a) b
Processes
type Process a b = Machine (Is a) b Source #
A
is a stream transducer that can consume values of type Process
a ba
from its input, and produce values of type b
for its output.
class AutomatonM x where Source #
Instances
Common Processes
(~>) :: Monad m => MachineT m k b -> ProcessT m b c -> MachineT m k c infixl 9 Source #
Flipped (<~
).
The trivial Process
that simply repeats each input it receives.
This can be constructed from a plan with
echo :: Process a a echo = repeatedly $ do i <- await yield i
Examples:
>>>
run $ echo <~ source [1..5]
[1,2,3,4,5]
filtered :: (a -> Bool) -> Process a a Source #
A Process
that only passes through inputs that match a predicate.
This can be constructed from a plan with
filtered :: (a -> Bool) -> Process a a filtered p = repeatedly $ do i <- await when (p i) $ yield i
Examples:
>>>
run $ filtered even <~ source [1..5]
[2,4]
dropping :: Int -> Process a a Source #
A Process
that drops the first n
, then repeats the rest.
This can be constructed from a plan with
dropping n = before echo $ replicateM_ n await
Examples:
>>>
run $ dropping 3 <~ source [1..5]
[4,5]
taking :: Int -> Process a a Source #
A Process
that passes through the first n
elements from its input then stops
This can be constructed from a plan with
taking n = construct . replicateM_ n $ await >>= yield
Examples:
>>>
run $ taking 3 <~ source [1..5]
[1,2,3]
droppingWhile :: (a -> Bool) -> Process a a Source #
A Process
that drops elements while a predicate holds
This can be constructed from a plan with
droppingWhile :: (a -> Bool) -> Process a a droppingWhile p = before echo loop where loop = await >>= v -> if p v then loop else yield v
Examples:
>>>
run $ droppingWhile (< 3) <~ source [1..5]
[3,4,5]
takingWhile :: (a -> Bool) -> Process a a Source #
A Process
that passes through elements until a predicate ceases to hold, then stops
This can be constructed from a plan with
takingWhile :: (a -> Bool) -> Process a a takingWhile p = repeatedly $ await >>= v -> if p v then yield v else stop
Examples:
>>>
run $ takingWhile (< 3) <~ source [1..5]
[1,2]
takingJusts :: Process (Maybe a) a Source #
A Process
that passes through elements unwrapped from Just
until a
Nothing
is found, then stops.
This can be constructed from a plan with
takingJusts :: Process (Maybe a) a takingJusts = repeatedly $ await >>= maybe stop yield
Examples:
>>>
run $ takingJusts <~ source [Just 1, Just 2, Nothing, Just 3, Just 4]
[1,2]
buffered :: Int -> Process a [a] Source #
Chunk up the input into n
element lists.
Avoids returning empty lists and deals with the truncation of the final group.
An approximation of this can be constructed from a plan with
buffered :: Int -> Process a [a] buffered = repeatedly . go [] where go acc 0 = yield (reverse acc) go acc n = do i await <| yield (reverse acc) *> stop go (i:acc) $! n-1
Examples:
>>>
run $ buffered 3 <~ source [1..6]
[[1,2,3],[4,5,6]]
>>>
run $ buffered 3 <~ source [1..5]
[[1,2,3],[4,5]]
>>>
run $ buffered 3 <~ source []
[]
flattened :: Foldable f => Process (f a) a Source #
Break each input into pieces that are fed downstream individually.
Alias for asParts
fold :: Category k => (a -> b -> a) -> a -> Machine (k b) a Source #
Construct a Process
from a left-folding operation.
Like scan
, but only yielding the final value.
It may be useful to consider this alternative signature
fold
:: (a -> b -> a) -> a -> Process b a
This can be constructed from a plan with
fold :: Category k => (a -> b -> a) -> a -> Machine (k b) a fold func seed = construct $ go seed where go cur = do next await <| yield cur *> stop go $! func cur next
Examples:
>>>
run $ fold (+) 0 <~ source [1..5]
[15]
>>>
run $ fold (\a _ -> a + 1) 0 <~ source [1..5]
[5]
fold1 :: Category k => (a -> a -> a) -> Machine (k a) a Source #
fold1
is a variant of fold
that has no starting value argument
This can be constructed from a plan with
fold1 :: Category k => (a -> a -> a) -> Machine (k a) a fold1 func = construct $ await >>= go where go cur = do next await <| yield cur *> stop go $! func cur next
Examples:
>>>
run $ fold1 (+) <~ source [1..5]
[15]
scan :: Category k => (a -> b -> a) -> a -> Machine (k b) a Source #
Construct a Process
from a left-scanning operation.
Like fold
, but yielding intermediate values.
It may be useful to consider this alternative signature
scan
:: (a -> b -> a) -> a -> Process b a
For stateful scan
use auto
with Data.Machine.Mealy machine.
This can be constructed from a plan with
scan :: Category k => (a -> b -> a) -> a -> Machine (k b) a scan func seed = construct $ go seed where go cur = do yield cur next <- await go $! func cur next
Examples:
>>>
run $ scan (+) 0 <~ source [1..5]
[0,1,3,6,10,15]
>>>
run $ scan (\a _ -> a + 1) 0 <~ source [1..5]
[0,1,2,3,4,5]
scan1 :: Category k => (a -> a -> a) -> Machine (k a) a Source #
scan1
is a variant of scan
that has no starting value argument
This can be constructed from a plan with
scan1 :: Category k => (a -> a -> a) -> Machine (k a) a scan1 func = construct $ await >>= go where go cur = do yield cur next <- await go $! func cur next
Examples:
>>>
run $ scan1 (+) <~ source [1..5]
[1,3,6,10,15]
scanMap :: (Category k, Monoid b) => (a -> b) -> Machine (k a) b Source #
Like scan
only uses supplied function to map and uses Monoid for
associative operation
Examples:
>>>
run $ mapping getSum <~ scanMap Sum <~ source [1..5]
[0,1,3,6,10,15]
asParts :: Foldable f => Process (f a) a Source #
Break each input into pieces that are fed downstream individually.
This can be constructed from a plan with
asParts :: Foldable f => Process (f a) a asParts = repeatedly $ await >>= traverse_ yield
Examples:
>>>
run $ asParts <~ source [[1..3],[4..6]]
[1,2,3,4,5,6]
sinkPart_ :: Monad m => (a -> (b, c)) -> ProcessT m c Void -> ProcessT m a b Source #
sinkPart_ toParts sink
creates a process that uses the
toParts
function to break input into a tuple of (passAlong,
sinkPart)
for which the second projection is given to the supplied
sink
ProcessT
(that produces no output) while the first
projection is passed down the pipeline.
autoM :: (Category k, Monad m) => (a -> m b) -> MachineT m (k a) b Source #
Apply a monadic function to each element of a ProcessT
.
This can be constructed from a plan with
autoM :: Monad m => (a -> m b) -> ProcessT m a b autoM :: (Category k, Monad m) => (a -> m b) -> MachineT m (k a) b autoM f = repeatedly $ await >>= lift . f >>= yield
Examples:
>>>
runT $ autoM Left <~ source [3, 4]
Left 3
>>>
runT $ autoM Right <~ source [3, 4]
Right [3,4]
final :: Category k => Machine (k a) a Source #
Skip all but the final element of the input
This can be constructed from a plan with
final
::Process
a a final :: Category k => Machine (k a) a final = construct $ await >>= go where go prev = do next await <| yield prev *> stop go next
Examples:
>>>
runT $ final <~ source [1..10]
[10]>>>
runT $ final <~ source []
[]
finalOr :: Category k => a -> Machine (k a) a Source #
Skip all but the final element of the input. If the input is empty, the default value is emitted
This can be constructed from a plan with
finalOr
:: a ->Process
a a finalOr :: Category k => a -> Machine (k a) a finalOr = construct . go where go prev = do next await <| yield prev *> stop go next
Examples:
>>>
runT $ finalOr (-1) <~ source [1..10]
[10]>>>
runT $ finalOr (-1) <~ source []
[-1]
intersperse :: Category k => a -> Machine (k a) a Source #
Intersperse an element between the elements of the input
intersperse
:: a ->Process
a a
sequencing :: (Category k, Monad m) => MachineT m (k (m a)) a Source #
Convert a stream of actions to a stream of values
This can be constructed from a plan with
sequencing :: Monad m => (a -> m b) -> ProcessT m a b sequencing :: (Category k, Monad m) => MachineT m (k (m a)) a sequencing = repeatedly $ do ma <- await a <- lift ma yield a
Examples:
>>>
runT $ sequencing <~ source [Just 3, Nothing]
Nothing
>>>
runT $ sequencing <~ source [Just 3, Just 4]
Just [3,4]
mapping :: Category k => (a -> b) -> Machine (k a) b Source #
Apply a function to all values coming from the input
This can be constructed from a plan with
mapping :: Category k => (a -> b) -> Machine (k a) b mapping f = repeatedly $ await >>= yield . f
Examples:
>>>
runT $ mapping (*2) <~ source [1..3]
[2,4,6]
traversing :: (Category k, Monad m) => (a -> m b) -> MachineT m (k a) b Source #
Apply an effectful to all values coming from the input.
Alias to autoM
.
strippingPrefix :: (Eq b, Monad m) => MachineT m (k a) b -> MachineT m (k a) b -> MachineT m (k a) b Source #
strippingPrefix
mp mb
Drops the given prefix from mp
. It stops if mb
did not start with the prefix given, or continues streaming after the
prefix, if mb
did.