]> gitweb.factorcode.org Git - factor.git/blob - library/telnetd.factor
13c8f8b0c5757de2ef371c46360b54ffd32bfeca
[factor.git] / library / telnetd.factor
1 !:folding=indent:collapseFolds=1:
2
3 ! $Id$
4 !
5 ! Copyright (C) 2003, 2004 Slava Pestov.
6
7 ! Redistribution and use in source and binary forms, with or without
8 ! modification, are permitted provided that the following conditions are met:
9
10 ! 1. Redistributions of source code must retain the above copyright notice,
11 !    this list of conditions and the following disclaimer.
12
13 ! 2. Redistributions in binary form must reproduce the above copyright notice,
14 !    this list of conditions and the following disclaimer in the documentation
15 !    and/or other materials provided with the distribution.
16
17 ! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 ! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19 ! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 ! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 ! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 ! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 ! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 IN: telnetd
29 USE: combinators
30 USE: continuations
31 USE: errors
32 USE: interpreter
33 USE: logging
34 USE: logic
35 USE: namespaces
36 USE: stack
37 USE: stdio
38 USE: streams
39
40 : telnet-client ( socket -- )
41     dup [
42         "client" set
43         log-client
44         interpreter-loop
45     ] with-stream ;
46
47 : quit-flag ( -- ? )
48     global [ "telnetd-quit-flag" get ] bind ;
49
50 : clear-quit-flag ( --  )
51     global [ f "telnetd-quit-flag" set ] bind ;
52
53 : telnetd-loop ( server -- server )
54     [
55         quit-flag not
56     ] [
57         dup accept telnet-client
58     ] while ;
59
60 : telnetd ( port -- )
61     [
62         <server> [
63             telnetd-loop
64         ] [
65             clear-quit-flag swap fclose rethrow
66         ] catch
67     ] with-logging ;