-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcu-openstack.lisp
More file actions
38 lines (34 loc) · 1.66 KB
/
Copy pathcu-openstack.lisp
File metadata and controls
38 lines (34 loc) · 1.66 KB
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
;;;; cu-openstack.lisp
(in-package #:cu-openstack)
;;; "cu-openstack" goes here. Hacks and glory await!
(defun start-easy-server (port)
"Starts the server by starting the easy-acceptor and returns a stop-server
closure function that can be used to stop the active acceptor and shutdown
the server."
(declare (type fixnum port))
(let ((active-acceptor (hunchentoot:start
(make-instance 'hunchentoot:easy-acceptor
:port port
:document-root (merge-pathnames
"static")))))
(defun stop-easy-server ()
"A closure function that closes over an active acceptor started by
the start-server function and can be used to stop the said active acceptor
and shutdown the server."
(hunchentoot:stop active-acceptor))))
(defun main ()
"Initializes the database and starts the server using the start-easy-server
function. This is intended to be used as the toplevel function when creating a
Lisp image, and the join-thread function call is needed to prevent the image
from exiting right after starting the server."
(let* ((port-argv (second sb-ext:*posix-argv*))
(port (if (null port-argv)
8080
(parse-integer port-argv))))
(models:init-db)
(start-easy-server port)
(bt:join-thread (find-if #'(lambda (thread)
(string= (bt:thread-name thread)
(format nil "hunchentoot-listener-*:~A"
port)))
(bt:all-threads)))))