|
| 1 | +;;;; Copyright (c) 2024 Robert Smith |
| 2 | + |
| 3 | +(in-package #:hypergeometrica-manager) |
| 4 | + |
| 5 | +(sb-ext:defglobal **socket** nil) |
| 6 | +(sb-ext:defglobal **socket-node** nil) |
| 7 | +(sb-ext:defglobal **socket-thread** nil) |
| 8 | + |
| 9 | +;;; Socket |
| 10 | + |
| 11 | +(defun write-form (stream form) |
| 12 | + (prin1 form stream) |
| 13 | + (terpri stream) |
| 14 | + (finish-output stream)) |
| 15 | + |
| 16 | +(defun make-socket-listener () |
| 17 | + (let* ((server **socket**)) |
| 18 | + (lambda () |
| 19 | + (unwind-protect |
| 20 | + (loop |
| 21 | + (let* ((client (sb-bsd-sockets:socket-accept server)) |
| 22 | + (stream (sb-bsd-sockets:socket-make-stream |
| 23 | + client |
| 24 | + :input t |
| 25 | + :output t |
| 26 | + :element-type 'character |
| 27 | + :buffering :line |
| 28 | + :timeout 5)) |
| 29 | + (message (read stream nil '(:eof)))) |
| 30 | + (handle-worker-message message stream) |
| 31 | + (sb-bsd-sockets:socket-close client))) |
| 32 | + (sb-bsd-sockets:socket-close **socket**) |
| 33 | + (delete-file **socket-node**) |
| 34 | + (setf **socket** nil |
| 35 | + **socket-node** nil |
| 36 | + **socket-thread** nil))))) |
| 37 | + |
| 38 | +(defun start-socket-thread () |
| 39 | + (when **socket-thread** |
| 40 | + (warn "Socket thread already started.") |
| 41 | + (bt:destroy-thread **socket-thread**)) |
| 42 | + (setf **socket-thread** (bt:make-thread |
| 43 | + (make-socket-listener) |
| 44 | + :name "Hypergeometrica Socket Server"))) |
| 45 | + |
| 46 | +;;; Worker Tracking |
| 47 | + |
| 48 | +(defclass worker-status () |
| 49 | + ((id :accessor worker-status-id |
| 50 | + :initarg :id) |
| 51 | + (last-heartbeat :accessor last-heartbeat |
| 52 | + :initarg :last-heartbeat))) |
| 53 | + |
| 54 | +(sb-ext:defglobal **max-workers** 1) |
| 55 | +(sb-ext:defglobal **workers-lock** (bt:make-lock "**workers**")) |
| 56 | +(sb-ext:defglobal **workers** nil) |
| 57 | + |
| 58 | +(defun make-id () |
| 59 | + (sleep 1.5) |
| 60 | + (get-universal-time)) |
| 61 | + |
| 62 | +(defun check-worker (id) |
| 63 | + (bt:with-lock-held (**workers-lock**) |
| 64 | + (let ((status (find id **workers** :key #'worker-status-id))) |
| 65 | + (cond |
| 66 | + (status |
| 67 | + (setf (last-heartbeat status) (get-internal-real-time)) |
| 68 | + id) |
| 69 | + (t |
| 70 | + (warn "Unknown worker identified as #~D" id) |
| 71 | + nil))))) |
| 72 | + |
| 73 | +(defun make-heartbeat-checker (&optional (timeout 10)) |
| 74 | + (lambda () |
| 75 | + (loop |
| 76 | + (sleep timeout) |
| 77 | + (bt:with-lock-held (**workers-lock**) |
| 78 | + (loop :for status :in **workers** |
| 79 | + :if (< timeout (/ (- (get-internal-real-time) |
| 80 | + (last-heartbeat status)) |
| 81 | + internal-time-units-per-second)) |
| 82 | + :collect status :into evict |
| 83 | + :else |
| 84 | + :collect status :into renew |
| 85 | + :finally (progn |
| 86 | + (setf **workers** renew) |
| 87 | + (dolist (status evict) |
| 88 | + (warn "Evicting ~A due to timeout." (worker-status-id status))))))))) |
| 89 | + |
| 90 | +(sb-ext:defglobal **heartbeat-checker-thread** nil) |
| 91 | +(defun start-heartbeat-checker-thread () |
| 92 | + (setf **heartbeat-checker-thread** |
| 93 | + (bt:make-thread (make-heartbeat-checker) :name "Heartbeat Checker"))) |
| 94 | + |
| 95 | +;;; Worker Message Handling |
| 96 | + |
| 97 | +(defun handle-unknown-message (message) |
| 98 | + (warn "Unknown message received: ~A" (prin1-to-string message)) |
| 99 | + nil) |
| 100 | + |
| 101 | +(defun handle-worker-message (message stream) |
| 102 | + (typecase message |
| 103 | + (atom |
| 104 | + (handle-unknown-message message)) |
| 105 | + ((cons keyword) |
| 106 | + (alexandria:destructuring-case message |
| 107 | + ((:eof) |
| 108 | + (warn "Received EOF from client.")) |
| 109 | + ((:join) |
| 110 | + (bt:with-lock-held (**workers-lock**) |
| 111 | + (cond |
| 112 | + ((> **max-workers** (length **workers**)) |
| 113 | + (let ((new-id (make-id))) |
| 114 | + (push |
| 115 | + (make-instance 'worker-status |
| 116 | + :id new-id |
| 117 | + :last-heartbeat (get-internal-real-time)) |
| 118 | + **workers**) |
| 119 | + (write-form stream `(:welcome :id ,new-id)))) |
| 120 | + (t |
| 121 | + (write-form stream '(:no-vacancy)))))) |
| 122 | + ((:status) |
| 123 | + nil) |
| 124 | + ((t &rest rest) |
| 125 | + (declare (ignore rest)) |
| 126 | + (handle-unknown-message message)))) |
| 127 | + (t |
| 128 | + (let ((from (car message))) |
| 129 | + (when (check-worker from) |
| 130 | + (alexandria:destructuring-case (cdr message) |
| 131 | + ((:ping) |
| 132 | + (format t "Ping from client ~D~%" from) |
| 133 | + (write-form stream '(:pong)) |
| 134 | + (finish-output stream)) |
| 135 | + ((:heartbeat) |
| 136 | + (format t "Heartbeat from worker #~D~%" from)) |
| 137 | + ((t &rest rest) |
| 138 | + (declare (ignore rest)) |
| 139 | + (handle-unknown-message message)))))))) |
| 140 | + |
| 141 | +;;; CLI |
| 142 | + |
| 143 | +(defun cli-options () |
| 144 | + (list |
| 145 | + (clingon:make-option |
| 146 | + :integer |
| 147 | + :required t |
| 148 | + :description "maximum number of workers" |
| 149 | + :long-name "max-workers" |
| 150 | + :key :max-workers))) |
| 151 | + |
| 152 | +(defun cli-command () |
| 153 | + (clingon:make-command |
| 154 | + :name "hypergeometrica-manager" |
| 155 | + :options (cli-options) |
| 156 | + :handler #'cli-handler)) |
| 157 | + |
| 158 | +(defun cli-handler (cmd) |
| 159 | + (let ((pid (sb-posix:getpid))) |
| 160 | + (setf **max-workers** (clingon:getopt cmd ':max-workers) |
| 161 | + **socket** (make-instance 'sb-bsd-sockets:local-socket |
| 162 | + :type :stream) |
| 163 | + **socket-node** (merge-pathnames |
| 164 | + (format nil "manager-~D" pid) |
| 165 | + "/tmp/")) |
| 166 | + (sb-bsd-sockets:socket-bind **socket** (namestring **socket-node**)) |
| 167 | + (sb-bsd-sockets:socket-listen **socket** 8) |
| 168 | + (start-heartbeat-checker-thread) |
| 169 | + (start-socket-thread) |
| 170 | + (format t "Started socket on: ~A~%" **socket-node**) |
| 171 | + (format t "Waiting for socket thread to end.~%") |
| 172 | + (finish-output) |
| 173 | + (bt:join-thread **socket-thread**))) |
| 174 | + |
| 175 | +(defun main () |
| 176 | + (sb-ext:disable-debugger) |
| 177 | + (let ((app (cli-command))) |
| 178 | + (clingon:run app))) |
0 commit comments