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
|
<html><head>
<title>Environment</title>
<style type="text/css">
.example {
color: #000000;
background-color: #F5F5F5;
padding: 8px;
border: #808080;
border-style: solid;
border-width: 1px;
width:auto;
}
.button {
color: #000000;
background-color: #F5F5F5;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 4px;
padding-right: 8px;
border: #808080;
border-style: solid;
border-width: 1px;
white-space: pre;
}
.box {
color: #000000;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 16px;
padding-right: 16px;
border: #808080;
border-style: solid;
border-width: 1px;
}
</style>
</head>
<body>
<a href="../start.htm">Nyquist / XLISP 2.0</a> -
<a href="../manual/contents.htm">Contents</a> |
<a href="tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="../reference/reference-index.htm">Reference</a>
<hr>
<h1>Environment</h1>
<hr>
<a name="global-and-lexical-binding"></a>
<hr>
<h2>Global and Lexical Binding</h2>
<hr>
<p>From the XLISP perspective, there are two kinds of bindings:</p>
<ol>
<li><p>Global bindings are bindings to symbols in the *obarray*.</p></li>
<li><p>Lexical bindings are bindings in a local association list</p></li>
</ol>
<p>There is a third kind of binding, 'dynamical binding', used by progv.</p>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name="lexical-scope"></a>
<hr>
<h2>Lexical Scope</h2>
<hr>
<p>Have you ever wondered why this doesn't work:</p>
<pre class="example">
(defun <font color="#0000CC">print-x</font> ()
(print x)) <font color="#008844">; unbound variable X</font>
(let ((x 'hello))
(print-x))
<font color="#AA0000">error: unbound variable - X</font>
</pre>
<p>The answer is twofold:</p>
<ol>
<li><p>The '<nobr>print-x</nobr>' function is defined at the global
<nobr>top-level</nobr>, where no lexical environment exists.</p></li>
<li><p>The '<nobr>print-x</nobr>' function is called inside a
<a href="../reference/let.htm">let</a> form, where a lexical variable
binding for 'x' exists, but '<nobr>print-x</nobr>' is evaluated at the
global <nobr>top-level</nobr>, where it was defined, so
'<nobr>print-x</nobr>' cannot see the lexical
<a href="../reference/let.htm">let</a> binding <nobr>of 'x'</nobr> and
signals an '<nobr>unbound variable</nobr>' error.</p></li>
</ol>
<p>Here is a version that seems to work:</p>
<pre class="example">
(let ((x 'hello))
(defun <font color="#0000CC">print-x</font> ()
(print x))
(print-x))
HELLO
</pre>
<ol>
<li><p>The '<nobr>print-x</nobr>' function is defined inside a
<a href="../reference/let.htm">let</a> form.</p></li>
<li><p>The '<nobr>print-x</nobr>' function is called inside the same
<a href="../reference/let.htm">let</a> form as where it was defined, so
'<nobr>print-x</nobr>' prints the lexical
<a href="../reference/let.htm">let</a> binding
<nobr>of 'x'</nobr>.</p></li>
</ol>
<p>But here again a version that does not behave as wanted:</p>
<pre class="example">
(let ((x 'lexical))
(defun <font color="#0000CC">print-x</font> ()
(print x)))
(let ((x 'hello))
(print-x))
LEXICAL
</pre>
<ol>
<li><p>The '<nobr>print-x</nobr>' function is defined inside a
<a href="../reference/let.htm">let</a> form.</p></li>
<li><p>The '<nobr>print-x</nobr>' function is called inside a different
<a href="../reference/let.htm">let</a> form as where it was defined, so
'<nobr>print-x</nobr>' prints the lexical
<a href="../reference/let.htm">let</a> binding <nobr>of 'x'</nobr> from
the place where it was defined.</p></li>
</ol>
<p>Somehow it seems to be important where a function was defined.</p>
<a name="closures"></a>
<hr>
<h2>Closures</h2>
<hr>
<p>Here a Lisp function, defined inside a
<a href="../reference/let.htm">let</a> form:</p>
<pre class="example">
(let ((a 'A) (b 'B) (c 'C))
(defun <font color="#0000CC">print-abc</font> ()
(format t <font color="#880000">";; a = ~s, b = ~s, c = ~s~%"</font> a b c))
) <font color="#008844">; end of LET</font>
</pre>
<p>Now '<nobr>print-abc</nobr>' is called outside the
<a href="../reference/let.htm">let</a> form:</p>
<pre class="example">
> (print-abc)
;; a = A, b = B, c = C
NIL
</pre>
<p>The lexical <a href="../reference/let.htm">let</a> variables 'a', 'b',
and 'c' have become a permanent part of the '<nobr>print-abc</nobr>'
function.</p>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name="lisp-objects"></a>
<hr>
<h2>Lisp Objects</h2>
<hr>
<p>The following examples are based on <nobr>Chapter 13</nobr> of 'Paradigms
of Artificial Intelligence Programming' by Peter Norvig. <nobr>The
code</nobr> has been ported from <nobr>Common Lisp</nobr> to XLISP, all
examples have been tested with <nobr>Nyquist 3.03</nobr> in <nobr>December
2010</nobr>.</p>
<p>The function '<nobr>new-account</nobr>' creates account objects, which
are implemented as closures encapsulating three variables 'name', 'balance',
and '<nobr>interest-rate</nobr>'. <nobr> An account</nobr> object also
encapsulates functions to handle five messages ':withdraw', ':deposit',
':balance', ':name', and ':interest', to which the object can respond:</p>
<pre class="example">
(defun <font color="#0000CC">new-account</font> (name &optional (balance 0.0) (interest-rate 0.06))
#'(lambda (message)
(case message
(:withdraw #'(lambda (amount)
(if (<= amount balance)
(setq balance (- balance amount))
'insufficient-funds)))
(:deposit #'(lambda (amount)
(setq balance (+ balance amount))))
(:balance #'(lambda () balance))
(:name #'(lambda () name))
(:interest #'(lambda ()
(setq balance (+ balance (* interest-rate balance))))))))
</pre>
<p>An account object can only do one thing, receive a message and return the
appropriate function to execute that message. This function is called the
'method' that implements the message.</p>
<p>The function '<nobr>get-method</nobr>' finds the method that implements a
message for a given object:</p>
<pre class="example">
(defun <font color="#0000CC">get-method</font> (object message)
(funcall object message))
</pre>
<p>The function '<nobr>send-message</nobr>' gets the method and applies it
to a list of arguments:</p>
<pre class="example">
(defun <font color="#0000CC">send-message</font> (object message &rest args)
(apply (get-method object message) args))
</pre>
<p>Here are some examples how it works:</p>
<pre class="example">
> (setq a1 (new-account "My Name" 1000.0))
#<Closure...>
> (send-message a1 :name)
"My Name"
> (send-message a1 :balance)
1000.0
> (send-message a1 :withdraw 500.0)
500
> (send-message a1 :deposit 123.45)
623.45
> (send-message a1 :balance)
623.45
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name="generic-functions"></a>
<hr>
<h2>Generic Functions</h2>
<hr>
<p>The '<nobr>send-message</nobr>' syntax is awkward, as it is different
from normal Lisp function calling syntax, and it doesn't fit in with the
other Lisp tools.</p>
<p>For example if we want <nobr>to say</nobr>:</p>
<pre class="example">
(mapcar :balance accounts)
</pre>
<p>with '<nobr>send-message</nobr>' we would have to write:</p>
<pre class="example">
(mapcar #'(lambda (acc)
(send-message acc :balance))
accounts)
</pre>
<p>We could fix this problem by defining a generic function 'withdraw' like
this:</p>
<pre class="example">
(defun <font color="#0000CC">withdraw</font> (object &rest args)
(apply (get-method object :withdraw) args))
</pre>
<p>Now we can write:</p>
<pre class="example">
(withdraw account x)
</pre>
<p>instead of:</p>
<pre class="example">
(send-message account :withdraw x)
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name="classes"></a>
<hr>
<h2>Classes</h2>
<hr>
<p>The macro '<nobr>define-class</nobr>' defines a class with its associated
message handling methods. <nobr>It also</nobr> defines a generic function
for each message. Finally, it allows the programmer to make a distinction
between instance variables, associated with each object, and class
variables, associated with a class and shared by all members of the
class.</p>
<pre class="example">
(defmacro <font color="#0000CC">define-class</font> (class ivars cvars &rest methods)
`(let ,cvars
(mapcar #'ensure-generic-function ',(mapcar #'first methods))
(defun ,class ,ivars
#'(lambda (message)
(case message
,@(mapcar #'make-clause methods))))))
</pre>
<p>The '<nobr>make-clause</nobr>' function translates a message from
'<nobr>define-class</nobr>' into a
<a href="../reference/case.htm">case</a> clause.</p>
<pre class="example">
(defun <font color="#0000CC">make-clause</font> (clause)
`(,(car clause) #'(lambda ,(cadr clause) ,@(cddr clause))))
</pre>
<p>The '<nobr>ensure-generic-function</nobr>' function defines a dispatch
function for a message, unless it already has been defined <nobr>as
one</nobr>:</p>
<pre class="example">
(defun <font color="#0000CC">ensure-generic-function</font> (message)
(unless (generic-function-p message)
(let ((fn #'(lambda (object &rest args)
(apply (get-method object message) args))))
(setf (symbol-function message) fn)
(putprop message fn 'generic-function))))
</pre>
<p>The '<nobr>generic-function-p</nobr>' function tests if a function has
been defined as a generic function:</p>
<pre class="example">
(defun <font color="#0000CC">generic-function-p</font> (name)
(and (fboundp name)
(eq (get name 'generic-function) (symbol-function name))))
</pre>
<p>Now we can define the 'account' class with '<nobr>define-class</nobr>'.
We make '<nobr>interest-rate</nobr>' a class variable, shared by all
accounts:</p>
<pre class="example">
(define-class <font color="#0066CC">account</font> (name &optional (balance 0.0)) ((interest-rate 0.06))
(withdraw (amount)
(if (<= amount balance)
(setq balance (- balance amount))
'insufficient-funds))
(deposit (amount)
(setq balance (+ balance amount)))
(balance ()
balance)
(name ()
name)
(interest ()
(setq balance (+ balance (* interest-rate balance)))))
</pre>
<p>Macroexpansion:</p>
<pre class="example">
(let ((interest-rate 0.06))
(mapcar (function ensure-generic-function)
(quote (withdraw deposit balance name interest)))
(defun account (name &optional (balance 0))
(function (lambda (message)
(case message
(withdraw (function (lambda (amount)
(if (<= amount balance)
(setq balance (- balance amount))
(quote insufficient-funds)))))
(deposit (function (lambda (amount)
(setq balance (+ balance amount)))))
(balance (function (lambda nil balance)))
(name (function (lambda nil name)))
(interest (function (lambda nil
(setq balance (+ balance (* interest-rate balance)))))))))))
</pre>
<p>Here is how it works:</p>
<pre class="example">
> (setq a2 (account "my-name" 2000.0)
#<Closure...>
> (balance a2)
2000
> (deposit a2 42.0)
2042
> (interest a2)
2164.52
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name="delegation"></a>
<hr>
<h2>Delegation</h2>
<hr>
<p>Here is a '<nobr>password-account</nobr>' class with two
message clauses:</p>
<pre class="example">
(define-class <font color="#0066CC">password-account</font> (password acc) ()
(change-password (pass new-pass)
(if (equal pass password)
(setq password new-pass)
'wrong-password))
(t (pass &rest args)
(if (equal pass password)
(if args
(apply message (cons acc args))
(funcall message acc))
'wrong-password)))
</pre>
<p>The definition of '<nobr>password-account</nobr>' depends on some
internal details of '<nobr>define-class</nobr>'. <nobr>It uses</nobr> 't' as
a <nobr>catch-all</nobr> clause to <a href="../reference/case.htm">case</a>
and uses the dispatch variable 'message'. Usually it is not a good idea to
rely on details of other code, so this will be changed below.</p>
<p>Here is how '<nobr>password-account</nobr>' works:</p>
<pre class="example">
> (setq a3 (password-account "secret" a2))
#<Closure...>
> (balance a3 "secret")
2164.52
> (withdraw a3 "guess" 2000.0)
WRONG-PASSWORD
> (withdraw a3 "secret" 2000.0)
164.52
</pre>
<p>Here is a '<nobr>limited-account</nobr>' class, where only a limited
amount of money can be withdrawn at any time:</p>
<pre class="example">
(define-class <font color="#0066CC">limited-account</font> (limit acc) ()
(withdraw (amount)
(if (<= amount limit)
(withdraw acc amount)
'over-limit))
(t (&rest args)
(if args
(apply message (cons acc args))
(funcall message acc))))
</pre>
<p>The 'withdraw' message is redefined to check if the account limit is
exceeded, while the 't' clause passes all other messages unchanged:</p>
<pre class="example">
> (setq a4 (password-account "pass"
(limited-account 100.0
(account "limited" 500.0)))
#<Closure...>
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<hr>
<a href="../start.htm">Nyquist / XLISP 2.0</a> -
<a href="../manual/contents.htm">Contents</a> |
<a href="tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="../reference/reference-index.htm">Reference</a>
</body></html>
|