2002-02-23 09:42:50 -05:00
|
|
|
;;; http server in the Scheme Shell -*- Scheme -*-
|
2002-08-27 05:03:22 -04:00
|
|
|
|
|
|
|
;;; This file is part of the Scheme Untergrund Networking package.
|
|
|
|
|
|
|
|
;;; Copyright (c) 2002 by Mike Sperber.
|
|
|
|
;;; For copyright information, see the file COPYING which comes with
|
|
|
|
;;; the distribution.
|
2002-02-23 09:42:50 -05:00
|
|
|
|
|
|
|
;;; This package manages options to the http server as an abstract
|
|
|
|
;;; data type.
|
|
|
|
|
|
|
|
(define-record-type httpd-options :httpd-options
|
|
|
|
(really-make-httpd-options port
|
|
|
|
root-directory
|
2002-08-26 05:46:11 -04:00
|
|
|
icon-name
|
2002-02-23 09:42:50 -05:00
|
|
|
fqdn
|
|
|
|
reported-port
|
|
|
|
path-handler
|
|
|
|
server-admin
|
2002-03-25 06:35:05 -05:00
|
|
|
simultaneous-requests
|
|
|
|
logfile
|
2002-08-22 12:10:08 -04:00
|
|
|
syslog?
|
|
|
|
resolve-ips?)
|
2002-02-23 09:42:50 -05:00
|
|
|
httpd-options?
|
|
|
|
(port httpd-options-port
|
|
|
|
set-httpd-options-port!)
|
|
|
|
(root-directory httpd-options-root-directory
|
|
|
|
set-httpd-options-root-directory!)
|
2002-08-26 05:46:11 -04:00
|
|
|
;; ICON-NAME specifies how to generate the links to
|
|
|
|
;; various decorative icons for the listings. It can either be a
|
|
|
|
;; procedure which gets passed one of the icon tags in TAG->ICON and
|
|
|
|
;; is expected to return a link pointing to the icon. If it is a
|
|
|
|
;; string, that is taken as prefix to which the names from TAG->ICON
|
|
|
|
;; are appended.
|
|
|
|
(icon-name httpd-options-icon-name
|
|
|
|
set-httpd-options-icon-name!)
|
2002-02-23 09:42:50 -05:00
|
|
|
(fqdn httpd-options-fqdn
|
|
|
|
set-httpd-options-fqdn!)
|
|
|
|
(reported-port httpd-options-reported-port
|
|
|
|
set-httpd-options-reported-port!)
|
|
|
|
(path-handler httpd-options-path-handler
|
|
|
|
set-httpd-options-path-handler!)
|
|
|
|
(server-admin httpd-options-server-admin
|
|
|
|
set-httpd-options-server-admin!)
|
|
|
|
(simultaneous-requests httpd-options-simultaneous-requests
|
2002-03-25 06:35:05 -05:00
|
|
|
set-httpd-options-simultaneous-requests!)
|
|
|
|
(logfile httpd-options-logfile set-httpd-options-logfile!)
|
2002-08-22 12:10:08 -04:00
|
|
|
(syslog? httpd-options-syslog? set-httpd-options-syslog?!)
|
|
|
|
(resolve-ips? httpd-options-resolve-ips? set-httpd-options-resolve-ips?!))
|
2002-02-23 09:42:50 -05:00
|
|
|
|
2002-03-25 06:35:05 -05:00
|
|
|
; default httpd-options generation
|
2002-08-26 09:10:57 -04:00
|
|
|
(define (make-default-httpd-options)
|
2002-02-23 09:42:50 -05:00
|
|
|
(really-make-httpd-options 80 ; port
|
|
|
|
"/" ; root-directory
|
2002-08-26 05:46:11 -04:00
|
|
|
#f ; icon-name
|
2002-02-23 09:42:50 -05:00
|
|
|
#f ; fqdn
|
|
|
|
#f ; reported-port
|
|
|
|
#f ; path-handler
|
2002-04-03 13:02:58 -05:00
|
|
|
#f ; server-admin
|
2002-03-25 06:35:05 -05:00
|
|
|
#f ; simultaneous-requests
|
2002-08-26 05:46:11 -04:00
|
|
|
#f
|
|
|
|
; string: filename of logfile (directory must exist)
|
|
|
|
; output-port: log to this port (e.g. (current-error-port))
|
|
|
|
; #f: no logging
|
2002-08-22 12:10:08 -04:00
|
|
|
#t ; Do syslogging?
|
|
|
|
#t)) ; Write host names instead of IPs in logfiles?
|
2002-03-25 06:35:05 -05:00
|
|
|
|
|
|
|
; creates a copy of a given httpd-option
|
2002-02-23 09:42:50 -05:00
|
|
|
|
|
|
|
(define (copy-httpd-options options)
|
2002-08-26 09:10:57 -04:00
|
|
|
(let ((new-options (make-default-httpd-options)))
|
2002-02-23 09:42:50 -05:00
|
|
|
(set-httpd-options-port! new-options
|
|
|
|
(httpd-options-port options))
|
|
|
|
(set-httpd-options-root-directory! new-options
|
|
|
|
(httpd-options-root-directory options))
|
2002-08-26 05:46:11 -04:00
|
|
|
(set-httpd-options-icon-name! new-options
|
|
|
|
(httpd-options-icon-name options))
|
2002-02-23 09:42:50 -05:00
|
|
|
(set-httpd-options-fqdn! new-options
|
|
|
|
(httpd-options-fqdn options))
|
|
|
|
(set-httpd-options-reported-port! new-options
|
|
|
|
(httpd-options-reported-port options))
|
|
|
|
(set-httpd-options-path-handler! new-options
|
|
|
|
(httpd-options-path-handler options))
|
|
|
|
(set-httpd-options-server-admin! new-options
|
|
|
|
(httpd-options-server-admin options))
|
|
|
|
(set-httpd-options-simultaneous-requests!
|
|
|
|
new-options
|
|
|
|
(httpd-options-simultaneous-requests options))
|
2002-03-25 06:35:05 -05:00
|
|
|
(set-httpd-options-logfile! new-options (httpd-options-logfile options))
|
|
|
|
(set-httpd-options-syslog?! new-options (httpd-options-syslog? options))
|
2002-08-22 12:10:08 -04:00
|
|
|
(set-httpd-options-resolve-ips?! new-options (httpd-options-resolve-ips? options))
|
2002-02-23 09:42:50 -05:00
|
|
|
new-options))
|
|
|
|
|
2002-03-25 06:35:05 -05:00
|
|
|
; (make-httpd-options-transformer set-option!) -> lambda (new-value [httpd-option])
|
|
|
|
; creates a transformer for httpd-options
|
|
|
|
; the returned procedure is called with the new value for the option
|
|
|
|
; and optionally with the httpd-option to change
|
2002-02-23 09:42:50 -05:00
|
|
|
(define (make-httpd-options-transformer set-option!)
|
|
|
|
(lambda (new-value . stuff)
|
|
|
|
(let ((new-options (if (not (null? stuff))
|
|
|
|
(copy-httpd-options (car stuff))
|
2002-08-26 09:10:57 -04:00
|
|
|
(make-default-httpd-options))))
|
2002-02-23 09:42:50 -05:00
|
|
|
(set-option! new-options new-value)
|
|
|
|
new-options)))
|
|
|
|
|
2002-03-25 06:35:05 -05:00
|
|
|
; several transformers for port, root-directory, etc.
|
2002-02-23 09:42:50 -05:00
|
|
|
(define with-port
|
|
|
|
(make-httpd-options-transformer set-httpd-options-port!))
|
|
|
|
(define with-root-directory
|
|
|
|
(make-httpd-options-transformer set-httpd-options-root-directory!))
|
2002-08-26 05:46:11 -04:00
|
|
|
(define with-icon-name
|
|
|
|
(make-httpd-options-transformer set-httpd-options-icon-name!))
|
2002-02-23 09:42:50 -05:00
|
|
|
(define with-fqdn
|
|
|
|
(make-httpd-options-transformer set-httpd-options-fqdn!))
|
|
|
|
(define with-reported-port
|
|
|
|
(make-httpd-options-transformer set-httpd-options-reported-port!))
|
|
|
|
(define with-path-handler
|
|
|
|
(make-httpd-options-transformer set-httpd-options-path-handler!))
|
|
|
|
(define with-server-admin
|
|
|
|
(make-httpd-options-transformer set-httpd-options-server-admin!))
|
|
|
|
(define with-simultaneous-requests
|
|
|
|
(make-httpd-options-transformer set-httpd-options-simultaneous-requests!))
|
2002-03-25 06:35:05 -05:00
|
|
|
(define with-logfile
|
|
|
|
(make-httpd-options-transformer set-httpd-options-logfile!))
|
|
|
|
(define with-syslog?
|
|
|
|
(make-httpd-options-transformer set-httpd-options-syslog?!))
|
2002-08-22 12:10:08 -04:00
|
|
|
(define with-resolve-ips?
|
|
|
|
(make-httpd-options-transformer set-httpd-options-resolve-ips?!))
|
2002-03-25 06:35:05 -05:00
|
|
|
|
2002-08-26 09:10:57 -04:00
|
|
|
(define (make-httpd-options . stuff)
|
|
|
|
(let loop ((options (make-default-httpd-options))
|
|
|
|
(stuff stuff))
|
|
|
|
(if (null? stuff)
|
|
|
|
options
|
|
|
|
(let* ((transformer (car stuff))
|
|
|
|
(value (cadr stuff)))
|
|
|
|
(loop (transformer value options)
|
|
|
|
(cddr stuff))))))
|