File: fifo2.man

package info (click to toggle)
memchan 2.2.1-6
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 2,984 kB
  • ctags: 625
  • sloc: ansic: 3,556; sh: 990; tcl: 725; makefile: 234
file content (69 lines) | stat: -rw-r--r-- 2,318 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[comment {-*- tcl -*- doctools}]
[manpage_begin fifo2 n 2.2]
[moddesc   {Memory channels}]
[titledesc {Create and manipulate pipe fifo channels}]
[copyright {1996-2003 Andreas Kupries <andreas_kupries@users.sourceforge.net>}]
[require Tcl]
[require memchan]
[description]
[para]
The command described here is only available in a not-yet released
version of the package. Use the CVS to get the sources.

[list_begin definitions]

[call [cmd fifo2]]

creates two stream-oriented in-memory channels and returns their
handles as a two-element list. There is no restriction on the ultimate
size of the channels, they will always grow as much as is necessary to
accomodate the data written into them.

[nl]
In contrast to the channels generated by [cmd fifo] a pair of channels
created here is connected internally in such a way that data written
into one channel can be read from the other. All data written into
them is read in the same order. This also means that the two channels
of the pair are not seekable.

[nl]
The channels created here can be transfered between interpreters in
the same thread and between threads. As both channels in the pair can
be transfered independently they can be used to create a bidirectional
connection between two interpreters.

[list_end]
[para]
Memory channels created by [cmd fifo2] provide two read-only options
which can be queried via the standard [cmd fconfigure] command. These
are

[list_begin definitions]
	[lst_item -rlength]

	The value of this option is the number of bytes currently
	available for reading from the channel.

	[lst_item -wlength]

	The value of this option is the number of bytes currently
	written into the channel.	
[list_end]
[para]
Note that the two lengths are switched for the channels of a pair. In
other words, the number of bytes written for one of the channels is
the number of bytes readable from the other end.

[para]
As the channels generated by [cmd fifo2] grow as necessary they are
always writable. This means that a writable [cmd fileevent]-handler
will fire continuously.

[para]
The channels are also readable if they contain more than zero
bytes. Under this conditions a readable [cmd fileevent]-handler will
fire continuously.

[see_also memchan fifo null]
[keywords fifo stream memchan {in-memory channel} channel i/o]
[manpage_end]