summaryrefslogtreecommitdiffstatshomepage
path: root/tekuti/mod-lisp.scm
blob: 3be65f4182a1191f395c89ecc77f91f6ad774131 (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
;; Tekuti
;; Copyright (C) 2008 Andy Wingo <wingo at pobox dot com>

;; This program is free software; you can redistribute it and/or    
;; modify it under the terms of the GNU General Public License as   
;; published by the Free Software Foundation; either version 3 of   
;; the License, or (at your option) any later version.              
;;                                                                  
;; This program is distributed in the hope that it will be useful,  
;; but WITHOUT ANY WARRANTY; without even the implied warranty of   
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    
;; GNU General Public License for more details.                     
;;                                                                  
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, contact:
;;
;; Free Software Foundation           Voice:  +1-617-542-5942
;; 59 Temple Place - Suite 330        Fax:    +1-617-542-2652
;; Boston, MA  02111-1307,  USA       gnu@gnu.org

;;; Commentary:
;;
;; This is the main script that will launch tekuti.
;;
;;; Code:

(define-module (tekuti mod-lisp)
  #:use-module (ice-9 rdelim)
  #:use-module (ice-9 receive)
  #:use-module (ice-9 stack-catch)
  #:use-module (sxml simple)
  #:use-module (sxml transform)
  #:use-module (tekuti url)
  #:use-module (tekuti util)
  #:use-module (tekuti config)
  #:use-module (tekuti request)
  #:export (event-loop))

;;; thought: ignore SIGPIPE, otherwise apache dying will kill us

(define (read-headers socket)
  (define (read-line*)
    (let ((line (read-line socket)))
      (if (eof-object? line)
          (error "unexpected eof")
          line)))
  (let lp ((keys '()) (values '()))
    (let ((k (read-line*)))
      (if (string=? k "end")
          (reverse (map cons keys values))
          (lp (cons k keys) (cons (read-line*) values))))))

(define (write-headers headers port)
  (for-each
   (lambda (k v)
     (format port "~a\n~a\n" k v))
   (map car headers) (map cdr headers))
  (display "end\n" port))

(define xhtml-doctype
  (string-append
   "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" "
   "\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n"))

(define (templatize request)
  (let-request request (title body)
    `(html (head
            (title ,(or title "foo")))
           (body
            ,(or body '(p "what"))))))

(define *status-names*
  '((200 . "OK")
    (404 . "Not Found")
    (500 . "Internal Server Error")))

(define (status->string status)
  (format #f "~a ~a" status (or (assv-ref *status-names* status)
                                "Unknown Error")))

(define (write-body request socket)
  (display xhtml-doctype socket)
  (sxml->xml (templatize request) socket))

(define (connection-received socket sockaddr index handle-request)
  (let ((headers (read-headers socket))
        (post-data "")) ;; blocks: (read-delimited "" socket)))

    (dbg "~a" headers)
    (catch
     #t
     (lambda ()
       (let ((res (pk (handle-request
                    (make-request 'headers headers
                                  'post-data post-data)
                    index))))
         (let-request res ((status 200))
           (write-headers `(("Status" . ,(status->string status))
                            ("Content-Type" . "text/html"))
                          socket)
           (write-body res socket))))
     (lambda args
       (write-headers '(("Status" . "500 Internal Server Error")
                        ("Content-Type" . "text/plain"))
                      socket)
       (write args socket)
       (newline)
       (with-output-to-port socket backtrace))
     (lambda args
       (fluid-set! the-last-stack (make-stack #t 2 0))
       (apply throw args)))
             
    (close-port socket)))

(define (with-socket proc)
  (pk 'listening)
  (let ((socket (socket PF_INET SOCK_STREAM 0)))
    (bind socket AF_INET (inet-aton *host*) *port*)
    (listen socket *backlog*)
    (unwind-protect
     (proc socket)
     (shutdown socket 2))))

(define (inner-loop socket cookie index handle-request maybe-reindex)
  (let* ((pair (accept socket))
         (fd (car pair))
         (sockaddr (cdr pair)))
    (receive
     (new-cookie new-index) (maybe-reindex cookie index)
     (pk new-cookie new-index)
     (connection-received (car pair) (cdr pair) new-index handle-request)
     (inner-loop socket new-cookie new-index handle-request maybe-reindex))))

(define (event-loop handle-request maybe-reindex)
  (with-socket
   (lambda (socket)
     (inner-loop socket #f #f handle-request maybe-reindex))))