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 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
|
; ACL2 Bridge
; Copyright (C) 2012 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 "BRIDGE")
(defun sleep$ (n)
(sleep n))
(defconstant bridge-default-port 55433)
(defmacro debug (msg &rest args)
nil
;; For hacking on the bridge, uncomment this to watch what's happening.
;; `(format *terminal-io*
;; (concatenate 'string "Bridge: ~a: " ,msg)
;; (ccl::process-name ccl::*current-process*)
;; . ,args)
)
(defmacro alert (msg &rest args)
;; This is only used for bridge messages that are unusual.
`(format *terminal-io*
(concatenate 'string "Bridge: ~a: " ,msg)
(ccl::process-name ccl::*current-process*)
. ,args))
; Writing Messages -----------------------------------------------------------
; We write an output stream class for wrapping up ordinary printed output
; (e.g., from things like FORMAT, CW, etc.) into messages. This lets us send
; all output to the client in a uniform way.
(defun send-message (type content stream)
;; Basic routine for sending strings as messages. This gets used for error
;; messages and sending results (after encoding them as json), but not for
;; output.
(declare (type string type content))
(debug "Send plain message on ~a: ~a~%" type content)
(ccl::without-interrupts (write-string type stream)
(write-char #\Space stream)
(prin1 (length content) stream)
(write-char #\Newline stream)
(write-string content stream)
(write-char #\Newline stream)))
(defclass bridge-ostream (cl-user::fundamental-character-output-stream)
;; Special output stream that gets used to distinguish different kinds of
;; output channels
(;; NAME is the name that we want to use for every message we print to this
;; stream. This lets us say, e.g., that a message is for standard output,
;; or for the comment window, or for other kinds of output streams.
(name :initarg :name :reader name-of)
;; STREAM is the actual output stream to the client. Typically it is shared
;; by many bridge-ostreams that are all also writing to the client. Note
;; that there's no locking here, we only expect each client to have a single
;; thread interacting with it.
(stream :initarg :stream :reader stream-of)))
(defmethod cl-user::stream-element-type ((self bridge-ostream))
(cl-user::stream-element-type (stream-of self)))
(defmethod cl-user::close ((self bridge-ostream) &key abort)
(cl-user::close (stream-of self) :abort abort))
(defmethod cl-user::stream-line-column ((self bridge-ostream))
(cl-user::stream-line-column (stream-of self)))
(defmethod cl-user::stream-finish-output ((self bridge-ostream))
(cl-user::stream-finish-output (stream-of self)))
(defmethod cl-user::stream-force-output ((self bridge-ostream))
(cl-user::stream-force-output (stream-of self)))
(defmethod cl-user::stream-write-char ((self bridge-ostream) c)
(let ((stream (stream-of self)))
(debug "Send char message on ~a: ~a~%" (name-of self) (if (eql c #\Newline) "[Newline]" c))
(ccl::without-interrupts
(write-string (name-of self) stream)
(write-char #\Space stream)
(write-char #\1 stream)
(write-char #\Newline stream)
(write-char c stream)
(write-char #\Newline stream))))
(declaim (inline ugly-string-length-computation))
(defun ugly-string-length-computation (str start end)
;; Ugly thing copied from CCL's generic-stream-write-string. I don't really
;; know what this does. Somethign to deal with fill pointers or something?
(setq end (ccl::check-sequence-bounds str start end))
(- end start))
(defmethod cl-user::stream-write-string ((self bridge-ostream) str &optional (start 0) end)
(let ((stream (stream-of self))
(n (ugly-string-length-computation str start end)))
(debug "Send str message on ~a: ~a~%" (name-of self) (subseq str start end))
(ccl::without-interrupts
(write-string (name-of self) stream)
(write-char #\Space stream)
(prin1 n stream)
(write-char #\Newline stream)
(cl-user::stream-write-string stream str start end)
(write-char #\Newline stream))))
; Here's an example of what the above accomplishes:
;
; We can wrap up the standard output stream in multiple bridge-ostreams. We
; can then print to these streams using ordinary functions like write-string,
; write-char, format, etc., and it automatically wraps everything up into
; messages and does the necessary multiplexing.
;
; Note for multithreading: we don't currently do anything to lock writes. If
; you have multiple Lisp threads printing to the same bridge-ostream, it's
; going to cause probelms.
#||
(let ((stream (make-instance 'bridge-ostream
:stream *standard-output*
:name "STDOUT"
))
(stream2 (make-instance 'bridge-ostream
:stream *standard-output*
:name "STDERR")))
(write-string "Hello" stream)
(write-string "Hello" stream2)
(write-char #\a stream)
(write-string "World" stream)
(force-output stream)
(write-char #\Newline stream)
(format stream "This is a ~a message with~% ~15:D with args."
(cons 1 2) 130120110)
(finish-output stream))
||#
; Reading Commands ------------------------------------------------------------
(defconstant eof
;; Special constant to denote end of file
(cons :eof :eof))
(defun substring-number-p (str &key (start '0) end)
(declare (string str)
(fixnum start))
(let ((end (or end (length str))))
(declare (fixnum end))
(loop for i fixnum from start below end do
(let ((c (char str i)))
(unless (and (char<= #\0 c)
(char<= c #\9))
(return-from substring-number-p nil))))
(< start end)))
(assert (substring-number-p "1"))
(assert (substring-number-p "12"))
(assert (substring-number-p "331"))
(assert (not (substring-number-p "")))
(assert (not (substring-number-p "12 ")))
(assert (not (substring-number-p " 12")))
(defund identifier-p (str &key (start '0) end)
;; START must be a valid index for STR.
(declare (string str)
(fixnum start))
(let ((end (or end (length str))))
(declare (fixnum end))
(let ((c (char str start)))
(unless (and (char<= #\A c) (char<= c #\Z))
;; First char must be uppercase alpha
(return-from identifier-p nil))
;; Rest must be uppercase alpha, numeric, or underscore
(loop for i fixnum from (+ 1 start) below end do
(let ((c (char str i)))
(unless (or (eql c #\_)
(and (char<= #\A c) (char<= c #\Z))
(and (char<= #\0 c) (char<= c #\9)))
(return-from identifier-p nil))))
t)))
(assert (identifier-p "F"))
(assert (identifier-p "FOO"))
(assert (identifier-p "FOO_12"))
(assert (identifier-p "F1_AB"))
(assert (not (identifier-p "f")))
(assert (not (identifier-p " ")))
(assert (not (identifier-p "FAB ")))
(assert (not (identifier-p "Fa")))
(defun parse-header (header)
(declare (type string header))
(let ((space (position #\Space header)))
(unless space
(return-from parse-header (values nil nil)))
(let ((type (subseq header 0 space)))
(unless (identifier-p type)
(return-from parse-header (values nil nil)))
(let ((len (and (substring-number-p header :start (+ 1 space))
(parse-integer header :start (+ 1 space)))))
(if len
(values type len)
(values nil nil))))))
; Some examples:
(assert (equal (multiple-value-list (parse-header "CMD 150")) (list "CMD" 150)))
(assert (equal (multiple-value-list (parse-header "CMD 0")) (list "CMD" 0)))
(assert (equal (multiple-value-list (parse-header "CMD 1234")) (list "CMD" 1234)))
(assert (equal (multiple-value-list (parse-header "FOO")) (list nil nil)))
(assert (equal (multiple-value-list (parse-header "CMD 123 ")) (list nil nil)))
(assert (equal (multiple-value-list (parse-header "CMD")) (list nil nil)))
(assert (equal (multiple-value-list (parse-header "CMD ")) (list nil nil)))
(defun string-to-sexpr (str)
(multiple-value-bind (sexpr pos)
(read-from-string str)
(let ((next (read-from-string str nil eof :start pos)))
(unless (eq next eof)
(error "Found more than one sexpr in command content:~%String was: ~a~%" str)))
sexpr))
(assert (equal (string-to-sexpr "(+ 1 2)") '(+ 1 2)))
(assert (equal (string-to-sexpr "(+ 1 2) ") '(+ 1 2)))
(assert (equal (string-to-sexpr " (+ 1 2) ") '(+ 1 2)))
(assert (equal (string-to-sexpr " (+ #x10 2) ") '(+ 16 2)))
(defun read-command (stream)
;; Returns (values type sexpr) or (values eof eof)
(let ((header (read-line stream nil eof nil)))
(debug "Read header: ~a~%" header)
(if (eq header eof)
(values eof eof)
(multiple-value-bind (type len)
(parse-header header)
(unless type
(error "Invalid command: expected valid header but found ~a.~%" header))
(let* ((content (make-string len))
(nread (read-sequence content stream))
(newline nil))
(declare (dynamic-extent content))
(debug "Read content: ~a~%" content)
(unless (= nread len)
(error "Invalid command, expected ~a characters of content but found ~a.~%
Header was ~a~%Content was ~a"
len nread header (subseq content 0 nread)))
(setq newline (read-char stream))
(unless (eql newline #\Newline)
(error "Invalid command, expected newline after content but found ~a.~%
Header was ~a~%Content was ~a"
newline header content))
(values (intern type "KEYWORD") (string-to-sexpr content)))))))
(defun test-read-command (input expected-type expected-sexpr)
(let ((stream (make-string-input-stream input)))
(multiple-value-bind (type sexpr)
(read-command stream)
(and (or (equal type expected-type)
(error "type not right: found ~a, expected ~a" type expected-type))
(or (equal sexpr expected-sexpr)
(error "sexpr not right: found ~a, expected ~a" sexpr expected-sexpr))))))
(assert (test-read-command "" eof eof))
(assert (test-read-command "CMD 3
abc
" :cmd 'abc))
(assert (test-read-command "CMD 8
(+ 1 2)
" :cmd '(+ 1 2)))
; Worker Threads --------------------------------------------------------------
(defun worker-write-return (type ret-list stream)
(case type
(:lisp (send-message "RETURN" (prin1-to-string (car ret-list)) stream))
(:lisp_mv (send-message "RETURN" (prin1-to-string ret-list) stream))
(:json (send-message "RETURN" (json-encode (car ret-list)) stream))
(:json_mv (send-message "RETURN" (json-encode ret-list) stream))
(otherwise
(alert "Unsupported command type: ~a~%" type)
(error "Unsupported command type: ~a~%" type))))
(defun worker-do-work (stream)
;; Returns true when we want to do more work, nil when we're ready to be all
;; done.
(debug "Starting work loop~%")
(send-message "READY" "" stream)
(force-output stream)
(multiple-value-bind
(type cmd)
(handler-case (read-command stream)
(error (condition)
(alert "Error during read-command:~%~a~%" condition)
(send-message "ERROR"
(format nil "Error during read-command:~%~a~%" condition)
stream)
(clear-input stream)
(return-from worker-do-work t)))
(when (eq type eof)
;; EOF means client is all done, stop processing commands.
(debug "Found EOF, worker quitting.~%")
(return-from worker-do-work nil))
(debug "Ready to execute: ~a: ~a~%" type cmd)
;; Try to do the command. This can fail for any number of reasons. We
;; always want to keep going, whether there's an error or not.
(let ((ret (handler-case
(multiple-value-list
(eval
;; As a convenience, bind STATE so that commands can use it without having
;; to bind it. This is nice in that it lets a macro such as
;; (FOO-MAC X Y Z) == `(FOO-MAC-FN ,X ,Y ,Z STATE)
;; be used from commands directly and still hide the state. It's probably
;; not worth doing this for other stobjs, but STATE is so common that maybe
;; it's worthwhile to do it.
`(let ((acl2::state acl2::*the-live-state*))
(declare (ignorable acl2::state))
,cmd)))
(error (condition)
(alert "Error executing command ~a:~%~a~%" cmd condition)
(send-message "ERROR"
(format nil "Error executing command ~a:~%~a~%" cmd condition)
stream)
(return-from worker-do-work t)))))
(debug "Done executing command: ~a~%" ret)
(handler-case
(worker-write-return type ret stream)
(error (condition)
(alert "Error writing return value: ~a~%" condition)
(send-message "ERROR"
(format nil "Error writing return value:~%~a~%" condition)
stream)
(return-from worker-do-work t)))
t)))
; Worker Output Setup.
;
; The goal here is to get printing to FMT, CW, etc., routed through the
; client's output stream.
;
; Binding *STANDARD-OUTPUT* is easy.
;
; Binding *STANDARD-CO* is slightly trickier. The value of *STANDARD-CO* is
; just a symbol, e.g., ACL2-OUTPUT-CHANNEL::STANDARD-CHARACTER-OUTPUT-0, and
; functions like PRINC$ use GET-OUTPUT-STREAM-FROM-CHANNEL to look up the
; associated stream. So, to fit into this scheme, we need to bind
; *STANDARD-CO* to a new symbol that is associated with our particular stream.
;
; Unfortunately, aside from *standard-co*, there are also several state globals
; that ACL2 uses to do printing. These include standard-co (again), proofs-co
; and trace-co.
;
; The way these work is really complicated. Basically if you do (global-symbol
; 'proofs-co), you'll get a symbol like ACL2_GLOBAL_ACL2::PROOFS-CO. Even
; though this symbol doesn't have *s around its name, it's a special, and
; whatever value it's bound to is the name of the actual channel (not stream)
; to use. After some poking around I found you can use PROGV to bind these.
; What a mess!
(defmacro with-acl2-channels-bound (channel &rest forms)
`(progv
(list (acl2::global-symbol 'acl2::proofs-co)
(acl2::global-symbol 'acl2::standard-co)
(acl2::global-symbol 'acl2::trace-co))
(list ,channel ,channel ,channel)
(progn . ,forms)))
(defmacro with-output-to (stream &rest forms)
(let ((channel (gensym)))
`(let* ((,channel (gensym)))
(setf (get ,channel acl2::*open-output-channel-type-key*) :character)
(setf (get ,channel acl2::*open-output-channel-key*) ,stream)
(unwind-protect
(let ((*standard-output* ,stream)
(*trace-output* ,stream)
(*debug-io* ,stream)
(*error-output* ,stream)
(*standard-co* ,channel))
(with-acl2-channels-bound ,channel . ,forms))
;; Invalidate the symbol's stream so the garbage collector can
;; reclaim the stream.
(setf (get ,channel acl2::*open-output-channel-key*) nil)
(setf (get ,channel acl2::*open-output-channel-type-key*) nil)))))
;; Basic test of this:
(assert (equal (let ((test (make-string-output-stream)))
(with-output-to test
(format t "This is a format test~%")
(cw "This is a cw test")
(fmt "This is a proof output test"
nil (acl2::proofs-co acl2::*the-live-state*)
acl2::*the-live-state* nil)
(fmt "This is a standard-co test"
nil (acl2::standard-co acl2::*the-live-state*)
acl2::*the-live-state* nil)
(fmt "This is a trace-co test"
nil (f-get-global 'acl2::trace-co acl2::*the-live-state*)
acl2::*the-live-state* nil))
(get-output-stream-string test))
"This is a format test
This is a cw test
This is a proof output test
This is a standard-co test
This is a trace-co test"))
(defun worker-thread (stream)
(format t "Starting worker thread~%")
(handler-case
(let ((acl2::*default-hs* (acl2::hl-hspace-init))
(*package* (find-package "ACL2"))
(ostream (make-instance 'bridge-ostream
:stream stream
:name "STDOUT")))
(with-output-to ostream
(send-message "ACL2_BRIDGE_HELLO" (ccl::process-name ccl::*current-process*) stream)
(loop while (worker-do-work stream))
(close stream)))
(error (condition)
(alert "Uncaught error in worker thread: ~a~%" condition)
(ignore-errors (close stream :abort t)))))
; Bridge Listener and Worker Thread Creation ----------------------------------
; The listener thread waits for and handles new connections. To keep things
; simple, I don't implement any kind of thread-recycling; I just create a new
; worker thread to handle each incoming connection.
(defvar *worker-stack-size*)
(defvar *worker-vstack-size*)
(defvar *worker-tstack-size*)
(defun listener-thread (sock)
(format t "; ACL2 Bridge: Listener thread starting.~%")
(debug "Using stack sizes: ~d, ~d, ~d~%" *worker-stack-size*
*worker-vstack-size* *worker-tstack-size*)
(debug "Sock is ~a~%" sock)
(unwind-protect
(loop for n from 0 do
(let* ((stream (ccl::accept-connection sock))
(worker-name (cl-user::format nil "bridge-worker-~a" n)))
(debug "Got connection.~%")
(ccl::process-run-function (list :name worker-name
:stack-size *worker-stack-size*
:vstack-size *worker-vstack-size*
:tstack-size *worker-tstack-size*)
'worker-thread stream)))
(progn
(alert "Forcibly closing ACL2-Bridge socket!")
(ccl::close sock :abort t)))
(format t "; ACL2 Bridge: Listener thread exiting~%"))
; Access to the Main Thread ---------------------------------------------------
; The special macros (IN-MAIN-THREAD ...) and (TRY-IN-MAIN-THREAD ...) can be
; used to execute forms in the main thread (CCL's "initial listener" thread).
;
; This is a huge hack. It lets us use the main thread as the authoritative
; hons space. And it lets us get around the fact that the memoize code is just
; not at all thread safe, and you can't even try to run a memoized computation
; from another thread.
(defvar *main-thread-lock* (ccl::make-lock '*main-thread-lock*))
(defvar *main-thread-work* nil)
(defvar *main-thread-ready* (ccl::make-semaphore))
(defun main-thread-loop ()
(loop do
;; I don't do any sort of error checking here because, by construction,
;; the work that gets added by IN-MAIN-THREAD-AUX should properly send
;; any errors out to the worker thread.
(debug "Main thread waiting for work.~%")
(ccl::wait-on-semaphore *main-thread-ready*)
(debug "Main thread got work.~%")
(let ((work *main-thread-work*))
(setq *main-thread-work* nil)
(funcall work))))
; Setting up the work is very subtle. To a first approximation, we just want
; to tell the main thread to execute
;
; (lambda () (progn forms))
;
; But this isn't quite enough. For one, the main thread has its own binding of
; *standard-out* and *standard-co*, so we'll need to make sure the lambda
; rebinds these (and any other specials we end up wanting. Also, we want to
; pass the return values and any exceptions back on to the caller, which gets
; messy with multiple-values, etc.
;; This is no good:
;; (catch 'foo
;; (handler-case
;; (throw 'foo 3)
;; (condition (foo) (format t "Got it ~a" foo))))
;; This works:
;; (catch 'foo
;; (progn
;; (block bar
;; (unwind-protect
;; (throw 'foo 3)
;; (return-from bar nil)))
;; (format t "Did what I want!")))
(defmacro in-main-thread-aux (&rest forms)
;; Assumes we have the lock, i.e., the exclusive right to tell the main
;; thread what to do.
(let ((done (gensym))
(retvals (gensym))
(errval (gensym))
(finished (gensym))
(saved-stdout (gensym))
(saved-stdco (gensym))
(work (gensym)))
`(let* ((,done (ccl::make-semaphore))
(,retvals nil)
(,finished nil)
(,errval nil)
(,saved-stdout *standard-output*)
(,saved-stdco *standard-co*)
(,work
(lambda ()
(debug "Main thread is doing its work.~%")
;; This is what gets executed in the main thread:
(let* ((*standard-output* ,saved-stdout)
(*trace-output* ,saved-stdout)
(*debug-io* ,saved-stdout)
(*error-output* ,saved-stdout)
(*standard-co* ,saved-stdco))
(with-acl2-channels-bound ,saved-stdco
(block try-to-run-it
(unwind-protect
(handler-case
(progn
(setq ,retvals (multiple-value-list (progn . ,forms)))
(setq ,finished t)
(debug "Main thread computed its return values.~%"))
(error (condition)
(debug "Main thread trapping error for worker.~%")
(setq ,errval condition)
(setq ,finished t)))
;; Things like THROW can get past the handler-case, but not
;; past the unwind-protect. Arrrgh...
(debug "Main thread computation had non-local exit.~%")
(unless ,finished (setq ,errval
(make-condition
'simple-error
:format-control "Unexpected non-local exit.")))
(return-from try-to-run-it nil)))
(debug "Main thread waking up the worker.~%")
(ccl::signal-semaphore ,done)
(debug "Main thread is all done.~%"))))))
(debug "Installing work for main thread.~%")
(setq *main-thread-work* ,work) ;; Install work for main to find
(ccl::signal-semaphore *main-thread-ready*) ;; Tell main work is there for him
(debug "Waiting for main thread to finish.~%")
(ccl::wait-on-semaphore ,done) ;; Wait until main is done
(when ,errval
(debug "Got error from the main thread.~%")
(error ,errval)) ;; Transparently propagate errors
(debug "Got good values from the main thread.~%")
(values-list ,retvals))))
(defvar *no-main-thread*
;; Gross hack to be able to turn off the main thread for interactive
;; scripting modes. If this is set to T, the main-thread stuff is all just
;; turned into progns.
nil)
(defmacro run-in-main-thread-raw (irrelevant-variable-for-return-last form)
(declare (ignore irrelevant-variable-for-return-last))
;; BOZO this probably isn't quite right w.r.t. values-list, our-multiple-values-bind, etc. nonsense
;; But it seems to work on CCL, at least.
`(if *no-main-thread*
,form
(ccl::with-lock-grabbed
(*main-thread-lock*)
(debug "Got the lock, now in main thread.~%")
(in-main-thread-aux ,form))))
(defmacro try-to-run-in-main-thread-raw (irrelevant-variable-for-return-last form)
(declare (ignore irrelevant-variable-for-return-last))
;; BOZO this probably isn't quite right w.r.t. values-list, our-multiple-values-bind, etc. nonsense
;; But it seems to work on CCL, at least.
`(cond (*no-main-thread*
,form)
((not (ccl::try-lock *main-thread-lock*))
(progn
(debug "The main thread is busy, giving up.~%")
(error "The main thread is busy.")))
(t
(unwind-protect
;; For the lock we just grabbed.
(progn
(debug "Main thread wasn't busy, so it's my turn.~%")
(in-main-thread-aux ,form))
(debug "Releasing lock on main thread.~%")
(ccl::release-lock *main-thread-lock*)))))
(defun start-fn (socket-name-or-port-number
stack-size
tstack-size
vstack-size)
(debug "Setting stack sizes: ~d, ~d, ~d~%" stack-size tstack-size vstack-size)
(setq *worker-stack-size* stack-size)
(setq *worker-vstack-size* tstack-size)
(setq *worker-tstack-size* vstack-size)
(unless socket-name-or-port-number
(setq socket-name-or-port-number bridge-default-port))
(format t "Starting ACL2 Bridge on ~a, ~a~%"
(ccl::getenv "HOSTNAME")
socket-name-or-port-number)
(let ((sock (cond ((natp socket-name-or-port-number)
(ccl::make-socket :connect :passive
:local-port socket-name-or-port-number
:reuse-address t))
((stringp socket-name-or-port-number)
(ccl::make-socket :address-family :file
:connect :passive
:local-filename socket-name-or-port-number))
(t
(er hard? 'start-fn "Expected socket-name-or-port-number ~
to be a string (for a socket name) ~
or a natural number (for a tcp/ip ~
port), but found ~x0."
socket-name-or-port-number)))))
(debug "Sock is ~a~%" sock)
(ccl::process-run-function (list :name "bridge-listener"
;; These are the sizes for the listener,
;; not the workers. It shouldn't need
;; much at all.
:stack-size (* 2 (expt 2 20))
:vstack-size (* 2 (expt 2 20))
:tstack-size (* 2 (expt 2 20)))
'listener-thread sock))
(main-thread-loop)
nil)
; Interruption Stuff ---------------------------------------------------------
; This is a work in progress. Probably not ready for production.
(defun find-process (name)
(loop for p in (ccl::all-processes) do
(if (equal (ccl::process-name p) name)
(return-from find-process p)
nil)))
(defun interrupt (name)
(let ((process (bridge::find-process name)))
(unless process
(format *terminal-io* "~a: Can't interrupt ~a, process not found.\n"
(ccl::process-name ccl::*current-process*)
name)
;(format t "Can't interrupt ~a, process not found.\n" name)
(return-from interrupt nil))
(ccl::process-interrupt process
(lambda () (error "bridge interrupt")))))
(defun kill-workers ()
(loop for p in (ccl::all-processes) do
(when (str::strprefixp "bridge-worker-" (ccl::process-name p))
(format t "Killing ~a~%" p)
(ccl::process-kill p))))
(defun stop ()
(cl-user::format t "; bridge::stop: Current processes: ~a~%" (ccl::all-processes))
(let ((listener (ccl::find-process "bridge-listener")))
(when listener
(cl-user::format t "Killing ~a~%" listener)
(ccl::process-kill listener)))
(kill-workers)
;; Very inelegant: just sleep a couple of seconds to try to give the threads
;; time to die.
(sleep 2)
(cl-user::format t "; bridge::stop done.~%New processes: ~a~%"
(ccl::all-processes)))
|