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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
|
; VL Verilog Toolkit
; Copyright (C) 2008-2014 Centaur Technology
;
; Contact:
; Centaur Technology Formal Verification Group
; 7600-C N. Capital of Texas Highway, Suite 300, Austin, TX 78731, USA.
; http://www.centtech.com/
;
; License: (An MIT/X11-style license)
;
; Permission is hereby granted, free of charge, to any person obtaining a
; copy of this software and associated documentation files (the "Software"),
; to deal in the Software without restriction, including without limitation
; the rights to use, copy, modify, merge, publish, distribute, sublicense,
; and/or sell copies of the Software, and to permit persons to whom the
; Software is furnished to do so, subject to the following conditions:
;
; The above copyright notice and this permission notice shall be included in
; all copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
; DEALINGS IN THE SOFTWARE.
;
; Original author: Jared Davis <jared@centtech.com>
(in-package "VL")
(defmacro defxdoc-raw (&rest args)
`(acl2::defxdoc-raw . ,args))
(defparameter *vls-root* nil)
; -----------------------------------------------------------------------------
;
; Thread-Safe Queues
;
; -----------------------------------------------------------------------------
(defxdoc-raw ts-queue
:parents (vl-server)
:short "Primitive thread-safe, shared queue."
:long "<p>Note that when using this queue, there is no way for the producer
to signal that he is done. A consequence is that this queue structure should
only be used when consumers are continually looping and waiting for work to be
added to the queue.</p>
<p>This is appropriate, for instance, for the client handler threads that
always wait on the incoming connections queue for a new client to connect, and
for the loader thread that is always and forever waiting to be told to load new
models.</p>")
(defstruct ts-queue
;; SEM is signaled whenever new data is added to the queue by a producer.
;; Consumers wait for SEM to take the next available object.
(sem (bt-semaphore:make-semaphore))
;; LOCK must be acquired whenever a producer or consumer needs to modify DATA
;; to insert or extract a value.
(lock (bt:make-lock "ts-queue lock"))
;; DATA contains the actual queue data. We enqueue elements into the back of
;; DATA and dequeue from the front.
(data nil))
(defxdoc-raw ts-enqueue
:parents (ts-queue)
:short "@('(ts-enqueue obj queue)') safely adds @('obj') to @('queue'),
signals the queue's semaphore to allow the object to be consumed by some
consumer, and finally returns @('obj').")
(defun ts-enqueue (obj queue)
(declare (type ts-queue queue))
(bt:with-lock-held ((ts-queue-lock queue))
(setf (ts-queue-data queue)
(append (ts-queue-data queue) (list obj))))
(bt-semaphore:signal-semaphore (ts-queue-sem queue))
obj)
(defxdoc-raw ts-dequeue
:parents (ts-queue)
:short "@('(ts-dequeue queue)') safely removes and returns the oldest object
from a queue. If no objects are available, it blocks until an object is
added.")
(defun ts-dequeue (queue)
(declare (type ts-queue queue))
(bt-semaphore:wait-on-semaphore (ts-queue-sem queue))
(bt:with-lock-held ((ts-queue-lock queue))
(let ((obj (car (ts-queue-data queue))))
(setf (ts-queue-data queue)
(cdr (ts-queue-data queue)))
obj)))
(defxdoc-raw ts-queue-len
:parents (ts-queue)
:short "@('(ts-queue-len queue)') returns the current length of the data list
for @('queue'). It can be used at any time by any thread and never blocks."
:long "The return value of @('ts-queue-len') should only be treated as an
estimate. This is because the length of the queue can change immediately after
@('ts-queue-len') returns (or even, right before it returns).")
(defun ts-queue-len (queue)
(declare (type ts-queue queue))
(bt:with-lock-held ((ts-queue-lock queue))
(length (ts-queue-data queue))))
; -----------------------------------------------------------------------------
;
; Translation Loading
;
; -----------------------------------------------------------------------------
(defxdoc-raw vls-transdb
:parents (vl-server)
:short "Translations database for the VL Server."
:long "<p>At a first approximation, the translation database acts like an
alist mapping @(see vl-zipinfo)s to @(see vls-data-p) contents. However, the
true story is somewhat more complex due to the desire to keep zips loaded in a
more persistent way.</p>
<p>VLS must be fast enough to respond to the web server in real time. Even
using @(see serialize-read) with ordinary conses, loading a single zip can take
over a minute to load, so it is completely infeasible to imagine loading zips
on a per-connection basis. Instead, we need some way to keep zips
pre-loaded.</p>
<p>This is a challenge due to the number and size of our zips. There many be
many new zips from different projects coming into the data directory every day.
After a short time there may be hundreds of zips to choose from.</p>
<p>We think it would take too long (and perhaps too much memory) to load
everything at once. Instead, we will try to load zips only as the need arises.
This might sometimes impose a 1-2 minute wait on a user who wants to get
started with a zip that isn't already loaded. But by showing users what zips
are already loaded, this penalty can easily be avoided by users who don't need
a bleeding edge zip.</p>")
(defstruct vls-transdb
;; SCANNED is a VLS-SCANNEDALIST-P. It the list of all .vlzip file names
;; that we have detected in the root directory. It is updated occasionally
;; by vls-scanner-thread. You must acquire SCANNED-LOCK when accessing or
;; updating SCANNED.
(scanned nil)
(scanned-lock (bt:make-lock "vls-transdb-scanned-lock"))
;; LOADED is a VLS-LOADEDALIST-P mapping .vlzip file names to their
;; vls-data-p structures. It is updated by the vls-loader-thread, and
;; perhaps in the future by some kind of vls-unloader-thread. You must
;; acquire LOADED-LOCK when accessing or updating this field. Note also that
;; the proper way to get a new translation loaded is to add it to the
;; LOAD-QUEUE via VLS-REQUEST-LOAD.
(loaded nil)
(loaded-lock (bt:make-lock "vls-transdb-loaded-lock"))
;; LOAD-QUEUE is a TS-QUEUE that governs which translations are next to be
;; loaded by the loader thread.
(load-queue (make-ts-queue)))
(defparameter *vls-transdb* (make-vls-transdb))
#||
;; For interactive debugging:
(in-package "VL")
(ld `((defconst *data* ',(car (vls-transdb-loaded *vls-transdb*)))))
(lp)
(defconst *design*
(progn$ (cw "~%*** Loading design ~s0 into *design* ***~%" (car *data*))
(vls-data->orig (cdr *data*))))
;; Then go off and explore it however.
||#
(defun vls-scanner-thread (&optional noloop)
; Runs forever. Lightweight. Occasionally updates the list of SCANNED
; translation names to keep it in sync with the file system. We do this in a
; separate thread because NFS can occasionally be slow and we don't want
; clients to have to wait for it when they connect.
(let ((state acl2::*the-live-state*)
(db *vls-transdb*))
(loop do
(cl-user::format t "; vls-scanner-thread: scanning for new translations.~%")
(handler-case
(b* (((mv infos ?state)
(time$ (vl-scan-for-zipinfos *vls-root*)
:msg "; rescan: ~st sec, ~sa bytes~%"))
(alist (vls-make-scannedalist infos)))
(bt:with-lock-held ((vls-transdb-scanned-lock db))
(setf (vls-transdb-scanned db) alist)))
(error (condition)
(cl-user::format t "Ignoring unexpected error in ~
vls-scanner-thread: ~S~%"
condition)))
(when noloop
(return-from vls-scanner-thread))
(sleep 600))))
(defun rescan ()
(vls-scanner-thread t))
(defun vls-scanned-translations (db)
; Safely access the list of translations that have been most recently returned
; by the scanner thread.
(declare (type vls-transdb db))
(bt:with-lock-held ((vls-transdb-scanned-lock db))
(vls-transdb-scanned db)))
(defun vls-load-translation (filename db)
; We attempt to load the translation specified by FILENAME into DB.
;
; We assume that translations are never changed once they have been put into
; *vls-root*. So if they have been previously loaded and already exist in the
; LOADED alist, then they do not need to be re-loaded.
;
; It is critical that this function never be called except from the loader
; thread, because the use of honsing here should always be relative to the Hons
; Space of the loader thread.
(declare (type vls-transdb db))
(cl-user::format t "Running vls-loader-thread in ~a"
(bt:thread-name (bt:current-thread)))
(bt:with-lock-held
;; If it's already loaded, don't try to load it again.
((vls-transdb-loaded-lock db))
(when (assoc-equal filename (vls-transdb-loaded db))
(return-from vls-load-translation nil)))
; BOZO some better alternative to format messages here? There probably really
; *isn't* a much better way to do this except perhaps to allow us to add an
; error string directly into the trandb-loaded alist, since this runs in a
; different thread than the load requests.
(cl-user::format t "; vls-load-translation: loading ~s~%" filename)
(b* ((state acl2::*the-live-state*)
(fullpath (oslib::catpath *vls-root* filename))
(- (cw "; full path to load is ~x0~%" fullpath))
((mv err zip ?state)
(acl2::with-suppression
;; BOZO I don't know if we still need WITH-SUPPRESSION, but we needed
;; it on SBCL to avoid package-lock problems when we were using
;; acl2::unsound-read directly. Now that we're using ACL2's reading
;; routines it might be unnecessary.
(vl-read-zip fullpath)))
((when err)
(cw "; Error loading ~s0: ~@1.~%" filename err))
(data (vls-data-from-zip zip)))
(bt:with-lock-held
((vls-transdb-loaded-lock db))
(when (assoc-equal filename (vls-transdb-loaded db))
(error "translation should not yet be loaded"))
(setf (vls-transdb-loaded db)
(acons filename data (vls-transdb-loaded db))))))
(defun vls-loader-thread ()
; Runs forever. Tries to load any translations that are added to the load
; queue.
(let ((acl2::*default-hs*
;; Bigger sizes might be better for large models, but it might be nice
;; not to grow these beyond reason.
;; Bugfix 2014-12-05, do not call time$ here because it uses fmt, which
;; uses evisceration, which uses hons-assoc-equal and hence goes digging
;; through the hons space, which can cause hash table ownership problems.
(acl2::hl-hspace-init :addr-ht-size 100000000
:sbits-size 100000000))
(db *vls-transdb*))
(cl-user::format t "; vls-loader-thread hons space allocated~%")
(acl2::hons-summary)
;; note: getting memo table ownership errors when this is uncommented
;; (acl2::hons-analyze-memory nil)
;; (format t "In vls-loader-thread, hons space is at ~s~%" (ccl::%address-of acl2::*default-hs*))
(loop do
(handler-case
(let ((filename (ts-dequeue (vls-transdb-load-queue db))))
(time$ (vls-load-translation filename db)))
(error (condition)
(cl-user::format t "Ignoring unexpected error in ~
vls-loader-thread: ~a~%"
condition))))))
;; BOZO do not do this.
(defun acl2::bad-lisp-objectp (x)
;; Unsound hack to make loading faster and avoid stack overflows. It seems
;; to cause stack overflows even when bad-lisp-objectp is memoized. No idea
;; why.
(declare (ignore x))
nil)
(let ((support-started nil))
(defun maybe-start-support-threads ()
(unless support-started
(bt:make-thread 'vls-scanner-thread
;(list :name "vls-scanner-thread"
; :stack-size (* 8 (expt 2 20)) ;; 8 MB
; :vstack-size (* 16 (expt 2 20)) ;; 16 MB
; :tstack-size (* 8 (expt 2 20)) ;; 8 MB
)
;; sswords -- use big stacks for loader thread, for ccl at least
(let
#+ccl
((ccl::*default-control-stack-size* (* 20 (expt 2 20)))
(ccl::*default-value-stack-size* (* 256 (expt 2 20))))
#-ccl
()
(bt:make-thread 'vls-loader-thread
;; :stack-size (* 8 (expt 2 20)) ;; 8 MB
;; :vstack-size (* 128 (expt 2 20)) ;; 128 MB
;; :tstack-size (* 8 (expt 2 20)) ;; 8 MB
))
(setq support-started t))))
(defun vls-loaded-translations (db)
(bt:with-lock-held ((vls-transdb-loaded-lock db))
(vls-transdb-loaded db)))
(defmacro with-vls-bindings (&rest forms)
`(b* ((?state
;; Bind state since we often need that.
acl2::*the-live-state*)
;; Hons space configuration. Most threads probably don't need a hons
;; space at all. For those that do, we'd like to make sure we create
;; hons spaces that are small so that creating threads isn't expensive.
(acl2::*hl-hspace-addr-ht-default-size* 1000)
(acl2::*hl-hspace-sbits-default-size* 1000)
(acl2::*default-hs* nil)
;; I think we shouldn't need this anymore with thread-safe memoize?
;; (acl2::*read-string-should-check-bad-lisp-object*
;; ;; Turn this off because otherwise we run into hash table ownership
;; ;; problems, because bad-lisp-objectp is memoized and memoization
;; ;; isn't thread-safe.
;; nil)
;; Error Handling. Make sure ACL2 hard errors get turned into Common
;; Lisp errors that we can catch properly.
(acl2::*hard-error-is-error* t)
(acl2::*hard-error-returns-nilp* nil))
. ,forms))
(defun vls-quick-get-model (filename db)
(bt:with-lock-held
;; If it's already loaded, don't try to load it again.
((vls-transdb-loaded-lock db))
(let ((pair (assoc-equal filename (vls-transdb-loaded db))))
(and pair
(cdr pair)))))
(defun vls-start-model-load (filename db)
(bt:with-lock-held
((vls-transdb-loaded-lock db))
(ts-enqueue filename (vls-transdb-load-queue db))))
(defmacro define-constant (name value &optional doc)
;; See the SBCL manual, "Defining Constants"
`(defconstant ,name (if (boundp ',name) (symbol-value ',name) ,value)
,@(when doc (list doc))))
(define-constant +vls-error-marker+
;; A unique cons for distinguishing trapped errors
(cons :vls-error-marker nil))
(defun vls-error-handler (condition)
(let ((msg (let ((*debug-io* (make-string-output-stream)))
(cl-user::format *debug-io* "VL Server Error: ~a~%" condition)
(cl-user::format *debug-io* "Backtrace:~%")
(acl2::print-call-history)
(get-output-stream-string *debug-io*))))
(throw 'vls-error-handler (cons +vls-error-marker+ msg))))
(defmacro vls-try-catch (&key try catch)
;; Stupid awful mess of crap that emulates sane error handling.
;;
;; General Form:
;; (vls-try-catch :try <try-form>
;; :catch <catch-form>)
;;
;; We attempt to evaluate and return the SINGLE value from <try-form>.
;;
;; If evaluation of <try-form> fails, we catch the error and turn it
;; into an error message, complete with a backtrace. We then evaluate
;; <catch-form>.
;;
;; The <catch-form> can (and should) mention the variable ERRMSG.
`(let ((errmsg ;; <-- goofy name but avoids inadvertent capture
(catch 'vls-error-handler
(handler-bind ((error #'vls-error-handler))
,try))))
;; Result is now either: the result of running TRY (on success), or
;; the result of running VLS-ERROR-HANDLER (on failure). We check
;; for this via the +vls-error-marker+.
(if (and (consp errmsg)
(eq (car errmsg) +vls-error-marker+))
(let ((errmsg (cdr errmsg)))
,catch)
errmsg)))
;; Small/simple demo to make sure it works.
(with-vls-bindings
(let* ((oktest (vls-try-catch
:try (+ 1 2)
:catch (list :whoops errmsg)))
(failtest (vls-try-catch
:try (er hard? 'vls-try-catch-test "causing an error!")
:catch (list :whoops errmsg))))
;; Don't print these because they look scary
;; (cl-user::format t "OKTEST is ~a~%" oktest)
;; (cl-user::format t "FAILTEST is ~a~%" failtest)
(assert (equal oktest 3))
(assert (and (consp failtest)
(equal (first failtest) :whoops)
(stringp (second failtest))
(str::substrp "causing an error!" (second failtest))))))
(defun vls-add-automatic-command-handlers ()
(let ((table (get-vls-commands (w acl2::*the-live-state*))))
(loop for info in table collect
(b* (((vls-commandinfo info))
(autofn-name (intern$ (cat "VLS-AUTO-HANDLER-FOR-" (symbol-name info.fn)) "VL"))
(uri (cat "/" (str::downcase-string (symbol-name info.fn))))
(args-except-data (remove-equal 'data info.args))
(params (append
'((model :parameter-type 'string))
(loop for arg in args-except-data collect `(,arg :parameter-type 'string))))
(content-type (case info.type
(:json "application/json")
(:html "text/html")
(otherwise (error "Invalid content type ~a" info.type))))
(guts `(with-vls-bindings
(vls-try-catch
:try (b* ((data (vls-quick-get-model model *vls-transdb*))
((unless data)
,(case info.type
(:json '(vls-fail "Error: invalid model (~s0)" model))
(:html '(cat "Error: Invalid model " model)))))
(,info.fn . ,info.args))
:catch
,(case info.type
(:json '(vls-fail errmsg))
(:html '(str::html-encode-string errmsg 8))))))
(form `(hunchentoot:define-easy-handler (,autofn-name :uri ,uri)
,params
(setf (hunchentoot:content-type*) ,content-type)
(time$ ,guts :msg ,(cat "; " uri ": ~st sec, ~sa bytes~%")))))
(cl-user::format t "; Adding ~a~%" info.fn)
(eval form)))))
(defparameter *template-ht*
(let ((template-ht (make-hash-table :test #'eq)))
(setf (gethash :serif_font template-ht) "Noto Serif")
(setf (gethash :sans_font template-ht) "Lato")
(setf (gethash :tt_font template-ht) "Source Code Pro")
template-ht))
(defun get-file-with-templates (script)
;; This allows us to do at least some basic server-side processing on
;; .html/.css files, e.g., for includes, etc.
(vls-try-catch
:try
(b* (((when (or (str::substrp "~" script)
(str::isubstrp ".." script)))
(setf (hunchentoot:return-code*) hunchentoot:+http-forbidden+)
(cl-user::format nil "<html><body><h1>Forbidden</h1><h3>Request not allowed: ~a</h3></body></html>~%" script))
(docroot (uiop:native-namestring (hunchentoot:acceptor-document-root hunchentoot:*acceptor*)))
(fullpath (oslib::catpath docroot script))
((unless (b* ((state acl2::*the-live-state*)
((mv err ans ?state) (oslib::regular-file-p fullpath)))
(and (not err) ans)))
(setf (hunchentoot:return-code*) hunchentoot:+http-not-found+)
(cl-user::format nil "<html><body><h1>Error 404</h1><h3>File not found: ~a</h3></body></html>~%" fullpath))
(html-template:*value-access-function* #'gethash)
(template (html-template:create-template-printer (pathname fullpath))))
(with-output-to-string (stream)
(html-template:fill-and-print-template template *template-ht* :stream stream)))
:catch errmsg))
(defun request-html-file ()
(setf (hunchentoot:content-type*) "text/html")
(get-file-with-templates (hunchentoot:script-name*)))
(defun request-css-file ()
(setf (hunchentoot:content-type*) "text/css")
(get-file-with-templates (hunchentoot:script-name*)))
(let ((vl-server nil))
(defun stop ()
(when vl-server
(hunchentoot:stop vl-server)
(setq vl-server nil))
nil)
(defun start-fn (port public-dir root-dir)
(cw "Setting *vls-root* = ~x0~%" root-dir)
(setq *vls-root* root-dir)
;; Since the server is multithreaded and lots of VL functions use hons and
;; memoization, we need to enable multithreaded memoization support.
;;
;; We used to do this whenever server-raw.lsp was loaded, but that meant
;; that the whole VL executable was built with multithreaded memoization
;; enabled, which could slow-down single-threaded things (e.g., linting).
;; Deferring this until server start slows down starting up the server, but
;; it seems unlikely that we care about that.
;;
;; I don't think we care about turning this off. Better to just leave it
;; on instead of turning it off in stop. After all, if you're starting and
;; stopping the server, you're probably just hacking on it, and you'd rather
;; just leave multithreaded memoization enabled instead of paying the price
;; of rememoizing everything all the time.
(acl2::mf-multiprocessing t t)
(maybe-start-support-threads)
(when vl-server
(stop))
(b* ((state acl2::*the-live-state*)
(port (or port
(b* (((mv ? port ?state) (getenv$ "FVQ_PORT" state))
(port-num (str::strval port))
((when port-num)
port-num))
;; Else, just use the default port
9999)))
(public-dir (or public-dir
(oslib::catpath *browser-dir* "/public/")))
(public-dir (if (str::strsuffixp "/" public-dir)
public-dir
(cat public-dir "/")))
(- (cw "Using public-dir = ~x0~%" public-dir))
(server (make-instance 'hunchentoot:easy-acceptor
:port port
:document-root public-dir)))
(setf (hunchentoot:acceptor-access-log-destination server)
(oslib::catpath public-dir "access.out"))
(setf html-template:*default-template-pathname* (pathname public-dir))
(hunchentoot:start server)
(cl-user::format t "; ----------------------------------------------------------------~%")
(cl-user::format t ";~%")
(cl-user::format t "; Module Browser Started at http://localhost:~D/~%" port)
(cl-user::format t ";~%")
(cl-user::format t "; ----------------------------------------------------------------~%~%")
(add-handlers)
#+ccl
(setq ccl::*default-control-stack-size* (* 15 (expt 2 20)))
#+ccl
(setq ccl::*default-value-stack-size* (* 196 (expt 2 20)))
(setq vl-server server))
nil))
(defun add-handlers ()
(setf hunchentoot:*dispatch-table*
(list (hunchentoot:create-regex-dispatcher ".*\.html$" 'request-html-file)
(hunchentoot:create-regex-dispatcher ".*\.css$" 'request-css-file)
'hunchentoot:dispatch-easy-handlers))
(hunchentoot:define-easy-handler (root :uri "/") ()
;; Since *.html doesn't match /
(setf (hunchentoot:content-type*) "text/html")
(get-file-with-templates "index.html"))
(vls-add-automatic-command-handlers)
(hunchentoot:define-easy-handler (list-unloaded :uri "/list-unloaded") ()
(setf (hunchentoot:content-type*) "application/json")
(with-vls-bindings
(vls-try-catch
:try (b* ((scanned (vls-scanned-translations *vls-transdb*))
(loaded (vls-loaded-translations *vls-transdb*))
(ans (vls-get-unloaded-json scanned loaded)))
;;(er hard? 'list-unloaded "error checking test")
(vls-success :json (bridge::json-encode ans)))
:catch (vls-fail errmsg))))
(hunchentoot:define-easy-handler (list-loaded :uri "/list-loaded") ()
(setf (hunchentoot:content-type*) "application/json")
(with-vls-bindings
(vls-try-catch
:try (b* ((loaded (vls-loaded-translations *vls-transdb*))
(ans (vls-loadedalist-to-json loaded)))
;; (er hard? 'list-loaded "Error checking test")
(vls-success :json (bridge::json-encode ans)))
:catch (vls-fail errmsg))))
(hunchentoot:define-easy-handler (get-rootdir :uri "/get-rootdir") ()
(setf (hunchentoot:content-type*) "application/json")
(with-vls-bindings
(vls-try-catch
:try (vls-success :json (bridge::json-encode *vls-root*))
:catch (vls-fail errmsg))))
(hunchentoot:define-easy-handler (load-model :uri "/load-model" :default-request-type :post)
((model :parameter-type 'string))
(setf (hunchentoot:content-type*) "application/json")
(with-vls-bindings
(vls-try-catch
:try (b* (((when (vls-quick-get-model model *vls-transdb*))
(cw "; Model loaded: ~s0.~%" model)
(vls-success :json (bridge::json-encode (list (cons :status :loaded))))))
(cw "; Model starting: ~s0.~%" model)
(vls-start-model-load model *vls-transdb*)
(vls-success :json (bridge::json-encode (list (cons :status :started)))))
:catch (vls-fail errmsg))))
)
|