diff options
author | Ebus-at-dockstar <ebus@dockstar> | 2014-07-25 22:14:40 +0200 |
---|---|---|
committer | Ebus-at-dockstar <ebus@dockstar> | 2014-07-25 22:14:40 +0200 |
commit | 3f5b5ff5e71cf078c2c04906bffa06f3a1050085 (patch) | |
tree | 9c2b892b5f79dc10489fd275e5cf4faf82b9af44 /ebus-racket/util | |
parent | f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8 (diff) | |
download | ebus-alt-3f5b5ff5e71cf078c2c04906bffa06f3a1050085.tar.gz ebus-alt-3f5b5ff5e71cf078c2c04906bffa06f3a1050085.zip |
add tcp repl to inserter
Diffstat (limited to 'ebus-racket/util')
-rw-r--r-- | ebus-racket/util/tcp-repl.rkt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ebus-racket/util/tcp-repl.rkt b/ebus-racket/util/tcp-repl.rkt new file mode 100644 index 0000000..4b19d85 --- /dev/null +++ b/ebus-racket/util/tcp-repl.rkt @@ -0,0 +1,35 @@ +(module tcp-repl racket/base + (require mzlib/thread + racket/tcp) + (provide (prefix-out tcp-repl- run) + (prefix-out tcp-repl- logger)) + + (define logger (make-logger 'tcp-repl (current-logger))) + + (define (run namespace port) + (thread + (lambda () + (run-server port ; TCP-Port + (make-connection-handler namespace) ; connection handler + #f; timeout + (lambda (tcp-port max-allow-wait reuse?) ; listen handler + (log-message logger 'info (format "Listen on ~a:~a" "127.0.0.1" tcp-port) #t) + (tcp-listen tcp-port max-allow-wait reuse? "127.0.0.1")) + )))) + + (define (tcp-tostring port) + (let-values ([(address-from port-from address-to port-to) (tcp-addresses port #t)]) + (format "~a:~a -> ~a:~a" address-from port-from address-to port-to))) + + (define (make-connection-handler namespace) + (lambda (ip op) + (let/ec exit + (log-message logger 'info (format "New Connection ~a" (tcp-tostring ip)) #t) + (parameterize ([current-input-port ip] + [current-output-port op] + [current-error-port op] + [current-namespace namespace]) + (read-eval-print-loop)) + (log-message logger 'info (format "End Connection ~a" (tcp-tostring ip)) #t) + (close-output-port op)))) + ) ; end module tcp-repl
\ No newline at end of file |