2002-09-13 03:21:19 -04:00
|
|
|
;; the servlet handler
|
|
|
|
;; Copyright Andreas Bernauer, 2002
|
|
|
|
|
|
|
|
|
2002-09-30 03:53:00 -04:00
|
|
|
(define *debug* #t)
|
2002-09-29 11:20:36 -04:00
|
|
|
|
2002-09-13 03:21:19 -04:00
|
|
|
;;; instance-table: entry for every new request on a servlet page
|
|
|
|
(define-record-type instance :instance
|
2002-09-29 11:20:36 -04:00
|
|
|
(make-instance servlet-name memo
|
|
|
|
continuation-table continuation-table-lock
|
2002-10-02 20:15:44 -04:00
|
|
|
continuation-counter
|
|
|
|
servlet-data)
|
2002-09-13 03:21:19 -04:00
|
|
|
instance?
|
2002-09-21 16:18:49 -04:00
|
|
|
(servlet-name instance-servlet-name)
|
2002-09-29 11:20:36 -04:00
|
|
|
(memo instance-memo set-instance-memo!)
|
2002-09-21 16:18:49 -04:00
|
|
|
(continuation-table instance-continuation-table)
|
|
|
|
(continuation-table-lock instance-continuation-table-lock)
|
2002-10-02 20:15:44 -04:00
|
|
|
(continuation-counter instance-continuation-counter)
|
|
|
|
(servlet-data instance-servlet-data set-instance-servlet-data!))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-09-29 11:20:36 -04:00
|
|
|
(define-record memo
|
|
|
|
(message 'kill) ;kill, killed, adjust-timeout
|
|
|
|
(value #f)
|
|
|
|
(new-memo #f))
|
|
|
|
|
2002-10-01 08:08:42 -04:00
|
|
|
;; caller must do locking stuff
|
|
|
|
(define (memo-killed! memo)
|
|
|
|
(set-memo:message memo 'killed))
|
|
|
|
|
2002-09-13 03:21:19 -04:00
|
|
|
(define-record-type session :session
|
2002-09-21 16:18:49 -04:00
|
|
|
(make-session instance-id return-continuation)
|
2002-09-13 03:21:19 -04:00
|
|
|
session?
|
|
|
|
(instance-id really-session-instance-id
|
|
|
|
set-session-instance-id!)
|
|
|
|
(return-continuation really-session-return-continuation
|
|
|
|
set-session-return-continuation!))
|
|
|
|
|
2002-09-29 09:43:39 -04:00
|
|
|
(define-record options
|
2002-10-01 13:39:39 -04:00
|
|
|
servlet-path
|
|
|
|
servlet-prefix
|
2002-10-01 08:33:39 -04:00
|
|
|
(cache-servlets? #t)
|
2002-10-01 08:08:42 -04:00
|
|
|
(instance-lifetime 600)) ; in seconds
|
2002-09-29 09:43:39 -04:00
|
|
|
|
2002-10-01 13:39:39 -04:00
|
|
|
(define *options* (make-thread-cell #f))
|
2002-09-29 09:43:39 -04:00
|
|
|
;(define *options-lock* (make-lock)) ; currently unused
|
|
|
|
|
2002-10-01 13:39:39 -04:00
|
|
|
(define (make-fluid-selector selector)
|
|
|
|
(lambda () (selector (thread-cell-ref *options*))))
|
|
|
|
(define (make-fluid-setter setter)
|
|
|
|
(lambda (value)
|
|
|
|
(setter (thread-cell-ref *options*) value)))
|
|
|
|
(define options-servlet-path (make-fluid-selector options:servlet-path))
|
|
|
|
(define options-servlet-prefix (make-fluid-selector options:servlet-prefix))
|
|
|
|
(define options-cache-servlets? (make-fluid-selector options:cache-servlets?))
|
|
|
|
(define options-instance-lifetime (make-fluid-selector options:instance-lifetime))
|
|
|
|
(define set-options-cache-servlets? (make-fluid-setter set-options:cache-servlets?))
|
|
|
|
(define set-options-instance-lifetime (make-fluid-setter set-options:instance-lifetime))
|
|
|
|
|
2002-09-13 03:21:19 -04:00
|
|
|
(define *instance-table* (make-integer-table)) ; instance-id is index
|
2002-09-21 16:18:49 -04:00
|
|
|
(define *instance-table-lock* (make-lock))
|
2002-09-29 09:43:39 -04:00
|
|
|
|
2002-09-18 11:32:41 -04:00
|
|
|
(define random
|
|
|
|
(let* ((source (make-random-source))
|
|
|
|
(random-integer (begin
|
|
|
|
(random-source-randomize! source)
|
|
|
|
(random-source-make-integers source))))
|
|
|
|
(lambda ()
|
|
|
|
(random-integer 1073741824)))) ; I hope, 1+ billion is enough....
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-10-01 08:08:42 -04:00
|
|
|
;; servlet-prefix gives virtual prefixed path to servlets
|
|
|
|
(define (servlet-handler servlet-path servlet-prefix)
|
2002-09-13 03:21:19 -04:00
|
|
|
(lambda (path req)
|
2002-10-01 13:39:39 -04:00
|
|
|
(thread-cell-set! *options* (make-options servlet-path servlet-prefix))
|
2002-09-13 03:21:19 -04:00
|
|
|
(if (pair? path) ; need at least one element
|
|
|
|
(let ((request-method (request:method req))
|
2002-09-26 08:13:01 -04:00
|
|
|
(path-string (uri-path-list->path path)))
|
2002-09-13 03:21:19 -04:00
|
|
|
(cond
|
2002-09-30 03:53:00 -04:00
|
|
|
; ((string=? path-string "profile") ; triggers profiling
|
|
|
|
; (http-syslog (syslog-level debug)
|
|
|
|
; "profiling: triggered in servlet-handler [~a]"
|
|
|
|
; (profile-space)) ; PROFILE
|
|
|
|
; (make-http-error-response http-status/accepted req "profiled"))
|
|
|
|
; ((string=? path-string "reset") ; triggers cache clearing
|
|
|
|
; (http-syslog (syslog-level debug)
|
2002-10-01 08:33:39 -04:00
|
|
|
; "servlet-handler: clearing servlet cache")
|
|
|
|
; (reset-servlet-cache!)
|
2002-09-30 03:53:00 -04:00
|
|
|
; (http-syslog (syslog-level debug)
|
|
|
|
; "servlet-handler: clearing instance table")
|
|
|
|
; (reset-instance-table!)
|
2002-10-01 08:33:39 -04:00
|
|
|
; (make-http-error-response http-status/accepted req "servlet cache cleared"))
|
2002-09-13 03:21:19 -04:00
|
|
|
((or (string=? request-method "GET")
|
2002-10-02 20:45:41 -04:00
|
|
|
(string=? request-method "POST")) ; do this at later time
|
|
|
|
; )
|
2002-10-01 08:08:42 -04:00
|
|
|
(let ((response
|
|
|
|
(if (resume-url? path-string)
|
|
|
|
(resume-url path-string servlet-path req)
|
|
|
|
(launch-new-instance path-string servlet-path req))))
|
|
|
|
(if (redirect-body? (response-body response))
|
|
|
|
;; prefix with servlet-path
|
|
|
|
(make-redirect-response
|
2002-10-01 08:22:37 -04:00
|
|
|
(path-list->file-name
|
|
|
|
(list (directory-as-file-name servlet-prefix)
|
|
|
|
(redirect-body-location (response-body response)))))
|
2002-10-01 08:08:42 -04:00
|
|
|
response)))
|
2002-09-13 03:21:19 -04:00
|
|
|
(else
|
|
|
|
(make-http-error-response http-status/method-not-allowed req
|
|
|
|
request-method))))
|
|
|
|
(make-http-error-response http-status/bad-request req
|
|
|
|
(format #f "Bad path: ~s" path)))))
|
|
|
|
|
2002-09-26 08:13:01 -04:00
|
|
|
(define (launch-new-instance path-string servlet-path req)
|
2002-10-02 19:47:07 -04:00
|
|
|
(cond
|
|
|
|
((file-not-exists? (absolute-file-name path-string servlet-path))
|
|
|
|
(make-http-error-response http-status/not-found req path-string))
|
|
|
|
((string=? (file-name-extension path-string) ".scm")
|
|
|
|
(obtain-lock *instance-table-lock*)
|
|
|
|
;; no access to instance table until new instance-id is saved
|
|
|
|
(let ((instance-id (generate-new-table-id *instance-table*))
|
|
|
|
(memo (make-memo)))
|
|
|
|
(table-set! *instance-table* instance-id
|
|
|
|
(make-instance path-string ; used to make
|
2002-10-02 20:45:41 -04:00
|
|
|
; redirections to origin
|
2002-10-02 19:47:07 -04:00
|
|
|
memo
|
|
|
|
(make-integer-table) ; continuation table
|
|
|
|
(make-lock) ; continuation table lock
|
2002-10-02 20:45:41 -04:00
|
|
|
(make-thread-safe-counter) ; continuation counter
|
|
|
|
#f)) ; servlet-data
|
2002-10-02 19:47:07 -04:00
|
|
|
(release-lock *instance-table-lock*)
|
|
|
|
(register-session! instance-id 'no-return)
|
|
|
|
(let ((servlet
|
|
|
|
(with-fatal-error-handler
|
|
|
|
(lambda (condition decline)
|
|
|
|
(delete-instance! instance-id)
|
|
|
|
(decline))
|
|
|
|
(get-servlet-rt-structure path-string servlet-path))))
|
|
|
|
(fork-thread (instance-surveillance instance-id
|
|
|
|
(+ (time)
|
|
|
|
(options-instance-lifetime))
|
|
|
|
memo))
|
|
|
|
(reset
|
|
|
|
(begin
|
|
|
|
(with-cwd
|
|
|
|
servlet-path
|
|
|
|
(with-names-from-rt-structure
|
|
|
|
servlet servlet-interface
|
|
|
|
(main req))))))))
|
|
|
|
(else ; We'll serve every non-scm file.
|
|
|
|
;; We need access to SEND-FILE-RESPONSE of
|
|
|
|
;; HTTPD-FILE-DIR-HANDLERS. In the official SUnet release, we
|
|
|
|
;; don't have it, so we disable this feature here.
|
|
|
|
; (let ((full-file-name (absolute-file-name path-string servlet-path)))
|
|
|
|
; (send-file-response full-file-name
|
|
|
|
; (file-info full-file-name)
|
|
|
|
; req))
|
|
|
|
(make-http-error-response http-status/forbidden req
|
|
|
|
"Can't serve other than Scheme files."
|
|
|
|
path-string))
|
|
|
|
))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-09-29 11:20:36 -04:00
|
|
|
(define (instance-surveillance instance-id time-to-die memo)
|
|
|
|
(lambda ()
|
|
|
|
(let loop ((time-to-die time-to-die)
|
|
|
|
(memo memo))
|
2002-10-01 08:08:42 -04:00
|
|
|
(debug "instance-surveillance[~s]: going to sleep until ~a"
|
2002-09-30 03:53:00 -04:00
|
|
|
instance-id (format-date "~c" (date time-to-die)))
|
2002-09-29 11:20:36 -04:00
|
|
|
(let ((seconds-to-sleep (- time-to-die (time))))
|
|
|
|
(if (positive? seconds-to-sleep)
|
|
|
|
(sleep (* 1000 seconds-to-sleep))))
|
|
|
|
;; check state of the world
|
|
|
|
(case (memo:message memo)
|
|
|
|
((killed) ; too late
|
2002-10-01 08:08:42 -04:00
|
|
|
(debug "instance-surveillance[~s]: instance already killed, dieing"
|
2002-09-29 11:20:36 -04:00
|
|
|
instance-id)
|
|
|
|
)
|
|
|
|
((adjust-timeout) ; new timeout
|
2002-10-01 08:08:42 -04:00
|
|
|
(debug "instance-surveillance[~s]: adjusting timeout" instance-id)
|
2002-09-29 11:20:36 -04:00
|
|
|
(loop (memo:value memo)
|
|
|
|
(memo:new-memo memo)))
|
|
|
|
((kill) ; kill instance
|
2002-10-01 08:08:42 -04:00
|
|
|
(debug "instance-surveillance[~s]: killing"
|
2002-09-29 11:20:36 -04:00
|
|
|
instance-id)
|
|
|
|
(obtain-lock *instance-table-lock*)
|
|
|
|
(table-set! *instance-table* instance-id #f)
|
|
|
|
(release-lock *instance-table-lock*))
|
|
|
|
(else
|
|
|
|
(format (current-error-port)
|
2002-10-01 08:08:42 -04:00
|
|
|
"instance-surveillance[~s]: unknown message ~s; dieing"
|
2002-09-29 11:20:36 -04:00
|
|
|
instance-id (memo:message memo)))))))
|
|
|
|
|
|
|
|
|
2002-09-13 03:21:19 -04:00
|
|
|
;; try to get continuation-table and then the continuation
|
2002-09-21 16:18:49 -04:00
|
|
|
(define resume-url
|
|
|
|
(let ((bad-request
|
2002-09-26 08:13:01 -04:00
|
|
|
(lambda (path-string req)
|
2002-09-21 16:18:49 -04:00
|
|
|
(make-http-error-response
|
|
|
|
http-status/bad-request req
|
2002-09-30 03:53:00 -04:00
|
|
|
(format #f
|
|
|
|
"<br>
|
|
|
|
<p>There may be several reasons, why your request was denied:
|
|
|
|
<ul>
|
|
|
|
<li>The servlet does not accept any requests any more.</li>
|
|
|
|
<li>The servlet URL has timed out.</li>
|
|
|
|
<li>You URL is illformed.</li>
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
<p>In any case, you may try to restart the servlet from the <a href=\"~a\">beginning</a></p>"
|
2002-09-26 08:13:01 -04:00
|
|
|
(resume-url-servlet-name path-string)))))
|
2002-09-21 16:18:49 -04:00
|
|
|
(lookup-continuation-table
|
|
|
|
(lambda (instance continuation-table continuation-id)
|
|
|
|
(let ((continuation-table-lock (instance-continuation-table-lock instance)))
|
|
|
|
(obtain-lock continuation-table-lock)
|
|
|
|
(let ((result (table-ref continuation-table continuation-id)))
|
|
|
|
(release-lock continuation-table-lock)
|
|
|
|
result)))))
|
|
|
|
|
2002-09-26 08:13:01 -04:00
|
|
|
(lambda (path-string servlet-path req)
|
2002-09-21 16:18:49 -04:00
|
|
|
(receive (instance-id continuation-id)
|
2002-09-26 08:13:01 -04:00
|
|
|
(resume-url-ids path-string)
|
2002-09-21 16:18:49 -04:00
|
|
|
(let ((instance (instance-lookup instance-id)))
|
|
|
|
(if instance
|
|
|
|
(let* ((continuation-table (instance-continuation-table instance))
|
|
|
|
(resume (lookup-continuation-table instance continuation-table
|
|
|
|
continuation-id)))
|
|
|
|
(if resume
|
2002-09-26 08:13:01 -04:00
|
|
|
(with-cwd
|
|
|
|
servlet-path
|
|
|
|
(reset
|
|
|
|
(begin
|
|
|
|
(register-session! instance-id 'no-return)
|
|
|
|
(resume req))))
|
|
|
|
(bad-request path-string req)))
|
|
|
|
(bad-request path-string req)))
|
2002-09-24 04:47:33 -04:00
|
|
|
))))
|
2002-09-29 11:20:36 -04:00
|
|
|
|
2002-09-21 16:18:49 -04:00
|
|
|
|
2002-09-24 04:15:21 -04:00
|
|
|
(define (send/suspend response-maker)
|
2002-09-14 12:42:24 -04:00
|
|
|
(shift return
|
|
|
|
(let* ((instance-id (session-instance-id))
|
2002-09-30 03:53:00 -04:00
|
|
|
(instance (instance-lookup instance-id)))
|
2002-10-01 08:08:42 -04:00
|
|
|
;; the session might be deleted in the meanwhile
|
|
|
|
(if instance
|
|
|
|
(begin
|
|
|
|
(instance-adjust-timeout! instance-id)
|
|
|
|
(let ((continuations-table (instance-continuation-table instance))
|
|
|
|
(continuation-table-lock (instance-continuation-table-lock instance))
|
|
|
|
(continuation-counter (instance-next-continuation-counter instance)))
|
|
|
|
(obtain-lock continuation-table-lock)
|
|
|
|
(let ((continuation-id (generate-new-table-id continuations-table)))
|
|
|
|
(table-set! continuations-table continuation-id return)
|
|
|
|
(release-lock continuation-table-lock)
|
|
|
|
(let ((new-url (make-resume-url (instance-servlet-name instance)
|
|
|
|
instance-id
|
|
|
|
continuation-counter
|
|
|
|
continuation-id)))
|
|
|
|
(response-maker new-url)))))
|
|
|
|
(make-http-error-response http-status/not-found #f
|
|
|
|
"The URL refers to a servlet, whose instance is no longer alive.")))))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-09-24 04:15:21 -04:00
|
|
|
(define (send/finish response)
|
2002-10-01 13:39:39 -04:00
|
|
|
(delete-instance! (session-instance-id))
|
2002-09-24 05:01:26 -04:00
|
|
|
(shift unused response))
|
|
|
|
|
|
|
|
(define (send response)
|
|
|
|
(shift unsused response))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; access to instance-table
|
2002-09-21 16:18:49 -04:00
|
|
|
(define (instance-lookup instance-id)
|
|
|
|
(obtain-lock *instance-table-lock*)
|
|
|
|
(let ((result (table-ref *instance-table* instance-id)))
|
|
|
|
(release-lock *instance-table-lock*)
|
|
|
|
result))
|
|
|
|
|
|
|
|
(define (instance-next-continuation-counter instance)
|
|
|
|
(thread-safe-counter-next!
|
|
|
|
(instance-continuation-counter instance)))
|
|
|
|
|
2002-10-01 13:39:39 -04:00
|
|
|
(define (delete-instance! instance-id)
|
2002-09-21 16:18:49 -04:00
|
|
|
(obtain-lock *instance-table-lock*)
|
2002-09-29 11:20:36 -04:00
|
|
|
;; notify surveillance of instance being alread killed (prevents
|
|
|
|
;; surveillance of killing new instance that has the same number by
|
|
|
|
;; accident)
|
|
|
|
(let ((instance (table-ref *instance-table* instance-id)))
|
|
|
|
(memo-killed! (instance-memo instance)))
|
2002-09-21 16:18:49 -04:00
|
|
|
;; why can't table entries be deleted correctly?
|
|
|
|
(table-set! *instance-table* instance-id #f)
|
|
|
|
(release-lock *instance-table-lock*))
|
|
|
|
|
2002-09-29 11:20:36 -04:00
|
|
|
(define (instance-adjust-timeout! instance-id)
|
|
|
|
(obtain-lock *instance-table-lock*)
|
|
|
|
(let* ((instance (table-ref *instance-table* instance-id))
|
|
|
|
(memo (instance-memo instance))
|
|
|
|
(new-memo (make-memo)))
|
|
|
|
;; Do it this way: new values and then new message
|
|
|
|
(set-memo:value memo
|
|
|
|
(+ (time)
|
2002-10-01 13:39:39 -04:00
|
|
|
(options-instance-lifetime)))
|
2002-09-29 11:20:36 -04:00
|
|
|
(set-memo:new-memo memo new-memo)
|
2002-09-30 03:53:00 -04:00
|
|
|
;; I don't think we need locking here. Do you agree?
|
2002-09-29 11:20:36 -04:00
|
|
|
(set-instance-memo! instance new-memo)
|
|
|
|
(set-memo:message memo 'adjust-timeout))
|
|
|
|
(release-lock *instance-table-lock*))
|
|
|
|
|
|
|
|
(define (reset-instance-table!)
|
|
|
|
(with-fatal-error-handler
|
|
|
|
(lambda (condtion decline)
|
|
|
|
(release-lock *instance-table-lock*)
|
|
|
|
(decline))
|
|
|
|
(lambda ()
|
|
|
|
(obtain-lock *instance-table-lock*)
|
2002-09-30 03:53:00 -04:00
|
|
|
;; notify instance killing
|
2002-09-29 11:20:36 -04:00
|
|
|
(table-walk
|
|
|
|
(lambda (instance-id instance)
|
|
|
|
(memo-killed! (instance-memo instance)))
|
|
|
|
*instance-table*)
|
|
|
|
(set! *instance-table* (make-integer-table))
|
|
|
|
(release-lock *instance-table*))))
|
|
|
|
|
2002-10-01 08:08:42 -04:00
|
|
|
(define (get-instances)
|
|
|
|
(obtain-lock *instance-table-lock*)
|
|
|
|
(let ((instances '()))
|
|
|
|
(table-walk
|
|
|
|
(lambda (instance-id instance-entry)
|
|
|
|
(set! instances (cons (cons instance-id instance-entry) instances)))
|
|
|
|
*instance-table*)
|
|
|
|
(release-lock *instance-table-lock*)
|
|
|
|
instances))
|
2002-10-01 13:39:39 -04:00
|
|
|
|
|
|
|
(define (get-continuations instance-id)
|
|
|
|
(let ((instance (instance-lookup instance-id)))
|
|
|
|
(if instance
|
|
|
|
(let ((continuation-table-lock (instance-continuation-table-lock instance))
|
|
|
|
(continuation-table (instance-continuation-table instance))
|
|
|
|
(continuations '()))
|
|
|
|
(obtain-lock continuation-table-lock)
|
|
|
|
(table-walk
|
|
|
|
(lambda (continuation-id continuation-entry)
|
|
|
|
(set! continuations (cons (cons continuation-id continuation-entry)
|
|
|
|
continuations)))
|
|
|
|
continuation-table)
|
|
|
|
(release-lock continuation-table-lock)
|
|
|
|
continuations)
|
|
|
|
'())))
|
|
|
|
|
|
|
|
(define (delete-continuation! instance-id continuation-id)
|
|
|
|
(let ((instance (instance-lookup instance-id)))
|
|
|
|
(if instance
|
|
|
|
(let ((continuation-table-lock (instance-continuation-table-lock instance))
|
|
|
|
(continuation-table (instance-continuation-table instance))
|
|
|
|
(continuations '()))
|
|
|
|
(obtain-lock continuation-table-lock)
|
|
|
|
(if (table-ref continuation-table continuation-id)
|
|
|
|
(table-set! continuation-table continuation-id #f))
|
|
|
|
(release-lock continuation-table-lock)))))
|
2002-10-01 08:08:42 -04:00
|
|
|
|
2002-10-02 20:15:44 -04:00
|
|
|
(define (set-servlet-data! new-data)
|
|
|
|
(let ((instance (instance-lookup (session-instance-id))))
|
|
|
|
(if instance
|
|
|
|
(begin
|
|
|
|
(set-instance-servlet-data! instance new-data)
|
|
|
|
#t)
|
|
|
|
#f)))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-10-02 20:15:44 -04:00
|
|
|
(define (get-servlet-data)
|
|
|
|
(let ((instance (instance-lookup (session-instance-id))))
|
|
|
|
(if instance
|
|
|
|
(instance-servlet-data instance)
|
|
|
|
(error "Instance no longer alive."))))
|
|
|
|
|
2002-09-13 03:21:19 -04:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ID generation
|
2002-09-21 16:18:49 -04:00
|
|
|
;; locking must be done by caller
|
|
|
|
;; FIXME?: this may loop forever, if the table is full (can this happen?)
|
|
|
|
(define (generate-new-table-id table)
|
|
|
|
(let loop ((id (random)))
|
|
|
|
(if (table-ref table id)
|
2002-09-13 03:21:19 -04:00
|
|
|
(loop (random))
|
2002-09-21 16:18:49 -04:00
|
|
|
id)))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2002-10-01 08:33:39 -04:00
|
|
|
;; SERVLETs CACHE
|
|
|
|
(define *servlet-table* (make-string-table)) ; path-string is index
|
|
|
|
(define *servlet-table-lock* (make-lock))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-10-01 08:33:39 -04:00
|
|
|
;; SERVLET-NAME is like "news-dir/latest-news.scm"
|
|
|
|
(define (get-servlet-rt-structure servlet-name directory)
|
|
|
|
(let* ((full-servlet-name (absolute-file-name servlet-name directory))
|
|
|
|
(load-servlet
|
2002-09-29 09:43:39 -04:00
|
|
|
(lambda (cached?)
|
2002-09-26 08:13:01 -04:00
|
|
|
(with-fatal-error-handler*
|
|
|
|
(lambda (condition decline)
|
2002-10-01 08:33:39 -04:00
|
|
|
(if cached? (release-lock *servlet-table-lock*))
|
2002-09-26 08:13:01 -04:00
|
|
|
(decline))
|
|
|
|
(lambda ()
|
|
|
|
;; load-config-file does not care about cwd(?)
|
|
|
|
;; --> absolute file name needed
|
2002-10-01 08:33:39 -04:00
|
|
|
(load-config-file full-servlet-name)
|
|
|
|
;; servlet-structure to load must be named "servlet"
|
2002-10-01 08:36:50 -04:00
|
|
|
(let ((servlet-structure (reify-structure 'servlet)))
|
2002-10-01 08:33:39 -04:00
|
|
|
(load-structure servlet-structure)
|
2002-09-29 09:43:39 -04:00
|
|
|
(if cached?
|
|
|
|
(begin
|
2002-10-01 08:33:39 -04:00
|
|
|
(table-set! *servlet-table* full-servlet-name
|
|
|
|
(cons servlet-structure
|
|
|
|
(file-last-mod full-servlet-name)))
|
2002-09-29 09:43:39 -04:00
|
|
|
;; only now the lock may be released
|
2002-10-01 08:33:39 -04:00
|
|
|
(release-lock *servlet-table-lock*)))
|
|
|
|
servlet-structure))))))
|
2002-10-01 13:39:39 -04:00
|
|
|
(if (options-cache-servlets?)
|
2002-09-29 09:43:39 -04:00
|
|
|
(begin
|
2002-10-01 08:33:39 -04:00
|
|
|
;; The lock is only obtained and released, if servlets are
|
|
|
|
;; cached. LOAD-SERVLET gets the CACHED? parameter, so
|
2002-09-29 09:43:39 -04:00
|
|
|
;; nothing may happen, if in the meanwhile caching is turned
|
|
|
|
;; off.
|
2002-10-01 08:33:39 -04:00
|
|
|
(obtain-lock *servlet-table-lock*)
|
|
|
|
(let ((servlet (table-ref *servlet-table* full-servlet-name)))
|
|
|
|
(if servlet
|
|
|
|
(if (equal? (file-last-mod full-servlet-name)
|
|
|
|
(cdr servlet))
|
2002-09-29 09:43:39 -04:00
|
|
|
(begin
|
2002-10-01 08:33:39 -04:00
|
|
|
(release-lock *servlet-table-lock*)
|
|
|
|
(car servlet))
|
|
|
|
(load-servlet #t))
|
|
|
|
(load-servlet #t))))
|
|
|
|
(load-servlet #f))))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-10-01 08:33:39 -04:00
|
|
|
(define (get-loaded-servlets)
|
|
|
|
(obtain-lock *servlet-table-lock*)
|
|
|
|
(let ((loaded-servlets '()))
|
2002-09-30 03:53:00 -04:00
|
|
|
(table-walk
|
2002-10-01 08:33:39 -04:00
|
|
|
(lambda (servlet-path rt-structure)
|
|
|
|
(set! loaded-servlets (cons servlet-path loaded-servlets)))
|
|
|
|
*servlet-table*)
|
|
|
|
(release-lock *servlet-table-lock*)
|
|
|
|
loaded-servlets))
|
2002-09-30 03:53:00 -04:00
|
|
|
|
2002-10-01 08:33:39 -04:00
|
|
|
(define (unload-servlet servlet-name)
|
|
|
|
(obtain-lock *servlet-table-lock*)
|
|
|
|
(if (table-ref *servlet-table* servlet-name)
|
|
|
|
(table-set! *servlet-table* servlet-name #f))
|
|
|
|
(release-lock *servlet-table-lock*))
|
2002-09-30 03:53:00 -04:00
|
|
|
|
2002-10-01 08:33:39 -04:00
|
|
|
(define (reset-servlet-cache!)
|
2002-09-13 03:21:19 -04:00
|
|
|
(with-fatal-error-handler*
|
|
|
|
(lambda (condition decline)
|
2002-10-01 08:33:39 -04:00
|
|
|
(release-lock *servlet-table-lock*)
|
2002-09-13 03:21:19 -04:00
|
|
|
(decline))
|
|
|
|
(lambda ()
|
2002-10-01 08:33:39 -04:00
|
|
|
(obtain-lock *servlet-table-lock*)
|
|
|
|
(set! *servlet-table* (make-string-table))
|
|
|
|
(release-lock *servlet-table-lock*))))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; SESSION
|
|
|
|
(define *session* (make-thread-cell #f))
|
|
|
|
|
|
|
|
(define (register-session! instance-id return-continuation)
|
|
|
|
(thread-cell-set! *session*
|
2002-09-21 16:18:49 -04:00
|
|
|
(make-session instance-id return-continuation)))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
|
|
|
|
|
|
|
;(define (save-session-return-continuation! return-continuation)
|
|
|
|
; (set-session-instance-id! (thread-cell-ref *session*)
|
|
|
|
; return-continuation))
|
|
|
|
|
|
|
|
(define (session-instance-id)
|
|
|
|
(really-session-instance-id (thread-cell-ref *session*)))
|
|
|
|
|
|
|
|
(define (session-return-continuation)
|
|
|
|
(really-session-return-continuation (thread-cell-ref *session*)))
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; RESUME-URL
|
|
|
|
(define *resume-url-regexp* (rx (submatch (* (- printing ";")))
|
|
|
|
";k" (submatch (* digit)) ; Instance-ID
|
2002-09-19 07:16:29 -04:00
|
|
|
";c" (+ digit) "-" (submatch (* digit)))) ; Continuation-ID
|
2002-09-13 03:21:19 -04:00
|
|
|
|
2002-09-26 08:13:01 -04:00
|
|
|
(define (make-resume-url path-string instance-id continuation-counter continuation-id)
|
|
|
|
(string-append path-string
|
2002-09-19 07:16:29 -04:00
|
|
|
";k" (number->string (session-instance-id))
|
|
|
|
";c" (number->string continuation-counter)
|
|
|
|
"-" (number->string continuation-id)))
|
2002-09-13 03:21:19 -04:00
|
|
|
|
|
|
|
(define (resume-url-instance-id id-url)
|
|
|
|
(receive (instance-id continuation-id)
|
|
|
|
(resume-url-ids id-url)
|
|
|
|
instance-id))
|
|
|
|
|
|
|
|
(define (resume-url-continuation-id id-url)
|
|
|
|
(receive (instance-id continuation-id)
|
|
|
|
(resume-url-ids id-url)
|
|
|
|
continuation-id))
|
|
|
|
|
|
|
|
(define (resume-url-ids id-url)
|
|
|
|
(let ((match (regexp-search *resume-url-regexp* id-url)))
|
|
|
|
(if match
|
|
|
|
(values (string->number (match:substring match 2))
|
|
|
|
(string->number (match:substring match 3)))
|
|
|
|
(error "resume-url-ids: no instance/continuation id" id-url))))
|
|
|
|
|
|
|
|
(define (resume-url-servlet-name id-url)
|
|
|
|
(let ((match (regexp-search *resume-url-regexp* id-url)))
|
|
|
|
(if match
|
|
|
|
(match:substring match 1)
|
|
|
|
(error "resume-url-servlet-name: no servlet-name found"))))
|
|
|
|
|
|
|
|
(define (resume-url? id-url)
|
|
|
|
(regexp-search? *resume-url-regexp* id-url))
|
|
|
|
|
2002-09-21 16:18:49 -04:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; thread-safe counter
|
|
|
|
|
|
|
|
(define-record-type counter :counter
|
|
|
|
(really-make-counter counter lock)
|
|
|
|
(counter counter-counter set-counter-counter!)
|
|
|
|
(lock counter-lock))
|
|
|
|
|
|
|
|
(define (make-thread-safe-counter)
|
|
|
|
(really-make-counter 0 (make-lock)))
|
|
|
|
|
|
|
|
;;; read current value
|
|
|
|
(define (thread-safe-counter counter)
|
|
|
|
(obtain-lock (counter-lock counter))
|
|
|
|
(let ((result (counter-counter counter)))
|
|
|
|
(release-lock (counter-lock counter))
|
|
|
|
result))
|
|
|
|
|
|
|
|
;;; make next value and return it
|
|
|
|
(define (thread-safe-counter-next! counter)
|
|
|
|
(obtain-lock (counter-lock counter))
|
|
|
|
(let ((result (+ 1 (counter-counter counter))))
|
|
|
|
(set-counter-counter! counter result)
|
|
|
|
(release-lock (counter-lock counter))
|
|
|
|
result))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-09-29 11:20:36 -04:00
|
|
|
(define (debug fmt . args)
|
|
|
|
(if *debug*
|
|
|
|
(format #t "DEBUG: ~?~%" fmt args)
|
|
|
|
(force-output)))
|