]> gitweb.factorcode.org Git - factor.git/blob - basis/io/pipes/pipes.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / basis / io / pipes / pipes.factor
1 ! Copyright (C) 2008, 2009 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: io.encodings io.backend io.ports io.streams.duplex
4 io splitting grouping sequences namespaces kernel
5 destructors math concurrency.combinators accessors fry
6 arrays continuations quotations system vocabs.loader combinators ;
7 IN: io.pipes
8
9 TUPLE: pipe in out ;
10
11 M: pipe dispose ( pipe -- )
12     [ in>> dispose ] [ out>> dispose ] bi ;
13
14 HOOK: (pipe) io-backend ( -- pipe )
15
16 : <pipe> ( encoding -- stream )
17     [
18         [
19             (pipe) |dispose
20             [ in>> <input-port> ] [ out>> <output-port> ] bi
21         ] dip <encoder-duplex>
22     ] with-destructors ;
23
24 <PRIVATE
25
26 : ?reader ( handle/f -- stream )
27     [ <input-port> &dispose ] [ input-stream get ] if* ;
28
29 : ?writer ( handle/f -- stream )
30     [ <output-port> &dispose ] [ output-stream get ] if* ;
31
32 GENERIC: run-pipeline-element ( input-fd output-fd obj -- result )
33
34 M: callable run-pipeline-element
35     [
36         [ [ ?reader ] [ ?writer ] bi* ] dip
37         '[ _ call( -- result ) ] with-streams*
38     ] with-destructors ;
39
40 : <pipes> ( n -- pipes )
41     [
42         [ (pipe) |dispose ] replicate
43         T{ pipe } [ prefix ] [ suffix ] bi
44         2 <clumps>
45     ] with-destructors ;
46
47 PRIVATE>
48
49 : run-pipeline ( seq -- results )
50     [ length dup zero? [ drop { } ] [ 1 - <pipes> ] if ] keep
51     [
52         [ [ first in>> ] [ second out>> ] bi ] dip
53         run-pipeline-element
54     ] 2parallel-map ;
55
56 {
57     { [ os unix? ] [ "io.pipes.unix" require ] }
58     { [ os winnt? ] [ "io.pipes.windows.nt" require ] }
59     [ ]
60 } cond