Skip to content

Commit 35095d5

Browse files
Make main.rkt the "shim" for command-server.rkt
Don't really need the shim.rkt file.
1 parent b3baeeb commit 35095d5

File tree

4 files changed

+52
-49
lines changed

4 files changed

+52
-49
lines changed

racket-cmd.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Before doing anything runs the hook `racket-stop-back-end-hook'."
9494
:sentinel #'ignore))
9595
(local-p (racket--back-end-local-p back-end))
9696
(main-dot-rkt (expand-file-name
97-
"shim.rkt"
97+
"main.rkt"
9898
(if local-p
9999
racket--rkt-source-dir
100100
(racket--ensure-updated-back-end-on-remote))))

racket/image.rkt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
;; Copyright (c) 2013-2022 by Greg Hendershott.
1+
;; Copyright (c) 2013-2025 by Greg Hendershott.
22
;; SPDX-License-Identifier: GPL-3.0-or-later
33

44
#lang racket/base
55

6-
;;; Portions Copyright (C) 2012 Jose Antonio Ortega Ruiz.
6+
;; Portions Copyright (C) 2012 Jose Antonio Ortega Ruiz.
77

8+
;; Limit imports to those supplied by Minimal Racket!
89
(require file/convertible
910
racket/file
1011
racket/format

racket/main.rkt

+48-17
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,49 @@
33

44
#lang racket/base
55

6+
;; This module acts as a "shim" or "launcher" for command-server.rkt.
7+
;;
8+
;; We dynamic-require command-server.rkt within an exn handler for
9+
;; missing modules, to provide a better error UX when people are using
10+
;; Minimal Racket; see issue #744. Any such error is written to stdout
11+
;; as a "notification" for the Emacs front end, which can display it
12+
;; in a dedicated buffer. Not only is this better than error text
13+
;; flashing by in the echo bar and hiding in the *Messages* buffer,
14+
;; our dedicated can supply a browse-url button to our docs section
15+
;; about Minimal Racket.
16+
;;
17+
;; Note that the exn handler is active only during the dynamic extent
18+
;; of the dynamic-require to extract the command-server-loop function.
19+
;; Subsequently we call that function without any such handler in
20+
;; effect.
21+
;;
22+
;; Use the same notification mechanism for other back end startup
23+
;; failures, such as when they need a newer version of Racket.
24+
25+
;; Limit imports to those supplied by Minimal Racket!
626
(require racket/match
7-
racket/port
27+
(only-in racket/port open-output-nowhere)
28+
racket/runtime-path
829
(only-in racket/string string-trim)
930
(only-in racket/system system/exit-code)
1031
version/utils
11-
"command-server.rkt"
1232
(only-in "image.rkt" set-use-svg?!))
1333

14-
(provide main)
15-
16-
;;;(require does-not-exist) ;;TESTING
34+
;; Write a "notification" for the Emacs front end and exit.
35+
(define (notify/exit kind data)
36+
(writeln `(startup-error ,kind ,data))
37+
(flush-output)
38+
(exit 13))
1739

1840
(define (assert-racket-version minimum-version)
1941
(define actual-version (version))
2042
(unless (version<=? minimum-version actual-version)
21-
;; Write a "notification" for the Emacs front end and exit.
22-
(writeln `(startup-error
23-
other
24-
,(format "Racket Mode needs Racket ~a or newer but ~a is ~a."
25-
minimum-version
26-
(find-executable-path (find-system-path 'exec-file))
27-
actual-version)))
43+
(notify/exit
44+
'other
45+
(format "Racket Mode needs Racket ~a or newer but ~a is ~a."
46+
minimum-version
47+
(find-executable-path (find-system-path 'exec-file))
48+
actual-version))
2849
(flush-output)
2950
(exit 14)))
3051

@@ -39,7 +60,7 @@
3960
(and (valid-version? ver)
4061
(version<=? "15.0" ver))))))))
4162

42-
(define (main)
63+
(module+ main
4364
(assert-racket-version (if (macos-sequoia-or-newer?)
4465
"8.14.0.4" ;issue #722
4566
"6.12")) ;general requirement
@@ -49,14 +70,24 @@
4970
[(vector "--use-svg" ) (set-use-svg?! #t)]
5071
[(vector "--do-not-use-svg") (set-use-svg?! #f)]
5172
[v
52-
(error '|Racket Mode back end|
53-
"Bad command-line arguments:\n~s\n" v)])
73+
(notify/exit
74+
'other
75+
(format "Bad command-line arguments:\n~s\n" v))])
76+
77+
(define-runtime-path command-server.rkt "command-server.rkt")
78+
(define command-server-loop
79+
(with-handlers ([exn:fail:syntax:missing-module?
80+
(λ (e)
81+
(notify/exit
82+
'missing-module
83+
(format "~a" (exn:fail:syntax:missing-module-path e))))])
84+
(dynamic-require command-server.rkt 'command-server-loop)))
5485

5586
;; Save original current-{input output}-port to give to
56-
;; command-server-loop for command I/O.
87+
;; command-server-loop for command I/O ...
5788
(let ([stdin (current-input-port)]
5889
[stdout (current-output-port)])
59-
;; Set no-ops so e.g. rando print can't bork the command I/O.
90+
;; ... and set no-ops so rando print can't bork the command I/O.
6091
(parameterize ([current-input-port (open-input-bytes #"")]
6192
[current-output-port (open-output-nowhere)])
6293
(command-server-loop stdin stdout))))

racket/shim.rkt

-29
This file was deleted.

0 commit comments

Comments
 (0)