racket/collects/scribblings/drracket/extending.scrbl

186 lines
7.2 KiB
Racket

#lang scribble/doc
@(require "common.rkt"
(for-label compiler/cm setup/parallel-build racket/promise))
@title[#:tag "extending-drracket"]{Extending DrRacket}
DrRacket supports two forms of extension to the programming
environment:
@itemize[
@item{@index['("languages" "extending")]{@index['("DrRacket
Teachpacks")]{A @deftech{teachpack}}} extends the set of procedures
that are built into a language in DrRacket. For example, a
teachpack might extend the Beginning Student language with a
procedure for playing sounds.
Teachpacks are particularly useful in a classroom setting, where an
instructor can provide a teachpack that is designed for a specific
exercise. To use the teachpack, each student must download the
teachpack file and select it through the @menuitem["Language" "Add
Teachpack..."] menu item.
See @secref["teachpacks"] for information in creating teachpacks.}
@item{A @deftech{tool} extends the set of utilities within the
DrRacket environment. For example, DrRacket's @onscreen{Check
Syntax} button starts a syntax-checking tool. For information on
creating @tech{tools}, see @other-manual['(lib
"scribblings/tools/tools.scrbl")].}
]
@; ----------------------------------------
@section[#:tag "teachpacks"]{Teachpacks}
Teachpacks are designed to supplement student programs with code that
cannot be expressed in a teaching language. For
example, to enable students to play hangman, we supply a teachpack that
@itemize[
@item{implements the random choosing of a word,}
@item{maintains the state variable of how many guesses have gone wrong, and}
@item{manages the GUI.}
]
All these tasks are beyond students in the third week and/or impose
memorization of currently useless knowledge on students. The essence
of the hangman game, however, is not. The use of teachpacks enables
the students to implement the interesting part of this exercise and
still be able to enjoy today's graphics without the useless
memorization.
A single Racket source file defines a teachpack (although the file may
access other files via @racket[require]). The file must contain a
module (see @secref[#:doc '(lib "scribblings/guide/guide.scrbl")
"modules"]). Each exported syntax definition or value definition from
the module is provided as a new primitive form or primitive operation
to the user, respectively.
As an example, the following teachpack provides a lazy cons
implementation. To test it, save the following in a file and
add the file as a teachpack (or use @racket[require]).
@racketmod[
racket
(provide (rename-out [:lcons lcons]) lcar lcdr)
(define-struct lcons (hd tl))
(define-syntax (:lcons stx)
(syntax-case stx ()
[(_ hd-exp tl-exp)
(syntax (make-lcons
(delay hd-exp)
(delay tl-exp)))]))
(define (lcar lcons) (force (lcons-hd lcons)))
(define (lcdr lcons) (force (lcons-tl lcons)))
]
Then, in this program:
@racketblock[
(define (lmap f l)
(lcons
(f (lcar l))
(lmap f (lcdr l))))
(define all-nums (lcons 1 (lmap add1 all-nums)))
]
the list @racket[all-nums] is bound to an infinite list
of ascending numbers.
For more examples, see the @filepath{htdp} sub-collection in the
@filepath{teachpack} collection of the PLT installation.
@; ----------------------------------------------------------------------
@section[#:tag "environment-variables"]{Environment Variables}
Several environment variables can affect DrRacket's behavior:
@itemize[
@item{@indexed-envvar{PLTNOTOOLS} : When this environment variable is
set, DrRacket doesn't load any tools.}
@item{@indexed-envvar{PLTONLYTOOL} : When this environment variable
is set, DrRacket only loads the tools in the collection named
by the value of the environment variable. If the variable is
bound to a parenthesized list of collections, only the tools in
those collections are loaded (The contents of the environment
variable are @racket[read] and expected to be a single symbol
or a list of symbols).}
@item{@indexed-envvar{PLTDRCM} : When this environment variable is
set, DrRacket installs the compilation manager before starting
up, which means that the @filepath{.zo} files are automatically
kept up to date, as DrRacket's (or a tool's) source is modified.
If the variable is set to @litchar{trace} then the files that are
actually recompiled are shown.}
@item{@indexed-envvar{PLTDRPAR} : When this environment variable is
set, DrRacket uses @racket[parallel-compile-files] to compile
the framework and the drracket collections in parallel and then
installs the compilation manager before starting
up, which means that the @filepath{.zo} files are automatically
kept up to date, as DrRacket's (or a tool's) source is modified.
If the variable is set to @litchar{trace} then the files that are
actually recompiled are shown.}
@item{@indexed-envvar{PLTDRDEBUG} : When this environment variable is
set, DrRacket starts up with errortrace enabled. If the
variable is set to @litchar{profile}, DrRacket also records
profiling information about itself.}
@item{@indexed-envvar{PLTDRPROFILE} : When this environment variable is
set, DrRacket uses the @racketmodname[profile] library (with
a little GUI) to collect profiling information about itself.}
@item{@indexed-envvar{PLTDRBREAK} : When this environment variable is
set, DrRacket creates a window with a break button, during
startup. Clicking the button breaks DrRacket's eventspace's
main thread. This works well in combination with
@envvar{PLTDRDEBUG} since the source locations are reported for
the breaks.}
@item{@indexed-envvar{PLTSTRINGCONSTANTS} : When this environment
variable is set, DrRacket prints out the string constants that
have not yet been translated. If it is set to a particular
language (corresponding to one of the files in
@filepath{string-constants} collection) it only shows the unset
string constants matching that language.
This environment variable must be set when @filepath{.zo} files
are made. To ensure that you see its output properly, run
@exec{setup-plt} with the @Flag{c} flag, set the environment
variable, and then run @exec{setup-plt} again.}
@item{@indexed-envvar{PLTDRXREFDELAY} : When this environment variable
is set, DrRacket uses an ordinary @racket[delay] (instead of
@racket[delay/idle]) to delay the computation of the searching
indices. This means that Check Syntax will start more slowly
the first time, but that the startup performance is more
predictable. In addition, when the environment variable is
set, DrRacket will print out that it is set, and will print
when the index is started loading and when it finishes loading.}
@item{@indexed-envvar{PLTDREASTERSECONDS} : When this environment variable
is set, DrRacket pretends that the result of @racket[current-seconds]
is actually this environment variable's value, for the purposes
of easter eggs. For example, setting it to 1339390801 would simulate
King Kamehameha day 2012 and show the corresponding easter egg splash
screen.}
]