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
|
<html><head>
<title>Advanced XLISP Objects</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/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="../reference/reference-index.htm">Reference</a>
<hr>
<h1>Advanced XLISP Objects</h1>
<hr>
<ol>
<li><nobr><a href="standard-xlisp-objects">Standard XLISP Objects</a></nobr></li>
<li><nobr><a href="initializing-class-variables">Initializing Class Variables</a></nobr></li>
<li><nobr><a href="accessing-class-and-instance-variables">Accessing Class and Instance Variables</a></nobr></li>
</ol>
<a name="standard-xlisp-objects"></a>
<hr>
<h2>Standard XLISP Objects</h2>
<hr>
<p>Define a class with an instance variable and a class variable:</p>
<pre class="example">
(setq my-class (send class :new '(instance-var) '(class-var)))
</pre>
<p>Look at the layout of the new class:</p>
<pre class="example">
> (send my-class :show)
Object is #<Object...>, Class is #<Object...>
MESSAGES = NIL
IVARS = (INSTANCE-VAR)
CVARS = (CLASS-VAR)
CVALS = #(NIL) <font color="#008844">; default init-value of class variables</font>
SUPERCLASS = #<Object...>
IVARCNT = 1
IVARTOTAL = 1
#<Object...>
</pre>
<p>Make an instance of '<nobr>my-class</nobr>':</p>
<pre class="example">
(setq my-object (send my-class :new))
</pre>
<p>Look at the layout of the new object:</p>
<pre class="example">
> (send my-object :show)
Object is #<Object...>, Class is #<Object...>
INSTANCE-VAR = NIL <font color="#008844">; default init-value of instance variables</font>
#<Object...>
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name=""></a>
<hr>
<h2>Initializing Class Variables</h2>
<hr>
<p><b>1.</b> Add an :isnew <nobr>init-method</nobr> to '<nobr>my-class</nobr>':</p>
<pre class="example">
(send my-class :answer :isnew nil '((setq class-var 1)))
</pre>
<p>Now reset the class:</p>
<pre class="example">
(send my-class :isnew) => <font color="#AA0000">error: too few arguments</font>
</pre>
<p>It turns out that :isnew needs at least a list of instance variables plus
an optional list of class variables:</p>
<pre class="example">
(send my-class :isnew '(ivar)) <font color="#008844">; overwrites INSTANCE-VAR, deletes CLASS-VAR</font>
(send my-class :isnew '(ivar) '(cvar))) <font color="#008844">; overwrites INSTANCE-VAR and CLASS-VAR</font>
</pre>
<p><b>2.</b> Add an :init method to '<nobr>my-class</nobr>':</p>
<pre class="example">
(send my-class :answer :init nil '((setq class-var 1)))
</pre>
<p>Now call the :init method:</p>
<pre class="example">
(send my-class :init) => <font color="#AA0000">error: no method for this message - :INIT</font>
</pre>
<p>This is not true, there is an :init method:</p>
<pre class="example">
> (send my-class :show)
Object is #<Object...>, Class is #<Object...>
MESSAGES = ((<font color="#0000CC">:INIT</font> . <font color="#0000CC">#<Closure-:INIT:...></font>))
IVARS = (INSTANCE-VAR)
CVARS = (CLASS-VAR)
CVALS = #(NIL)
SUPERCLASS = #<Object...>
IVARCNT = 1
IVARTOTAL = 1
#<Object...>
</pre>
<p>The problem here is that in XLISP, methods cannot be called from the
class they were defined in, methods only can be called from instances, and
exactly the same happens with manipulating class variables. There seems to
be no standard XLISP way to initialize class variables with values at the
time when the class is defined.</p>
<p><b>3.</b> The only way I know in XLISP to initialize a class variable is
to create an instance of the class and set the class variable e.g. from the
:isnew method of the instance:</p>
<pre class="example">
(setq my-object (send my-class :new))
</pre>
<p>The :isnew method of '<nobr>my-object</nobr>', inherited from
'<nobr>my-class</nobr>', has set the class variable in
'<nobr>my-class</nobr>' to a new value:</p>
<pre class="example">
> (send my-class :show)
Object is #<Object...>, Class is #<Object...>
MESSAGES = ((:ISNEW . #<Closure-:ISNEW:...>))
IVARS = (INSTANCE-VAR)
CVARS = (CLASS-VAR)
CVALS = #(1) <font color="#008844">; new value of CLASS-VAR</font>
SUPERCLASS = #<Object...>
IVARCNT = 1
IVARTOTAL = 1
#<Object...>
</pre>
<p>This works, but now I have two problems:</p>
<ol>
<li><p>If a class variable is set from an instance's :isnew method,
inherited from the superclass, then, whenever an instance is created, the
class variable will be reset to its initial value. <nobr>Note that</nobr> in
Lisp, instances can be created at arbitrary <nobr>run-time</nobr>, not only
at the beginning of a program. Setting class variables from an :isnew method
can produce unexpected <nobr>side-effects</nobr> if a class variable is used
for object <nobr>inter-communication</nobr>.</p></li>
<li><p>Because instances can be created at arbitrary runtime, a framework
would need to be written when a class variable is allowed to be set or reset
and <nobr>when not</nobr>. <nobr>Ok, if</nobr> class variables are used for
object <nobr>inter-communication</nobr>, a framework needs to be witten
anyway, but I do not want to be forced to think about this only because I
want to initialize a single class variable.</p></li>
</ol>
<p><b>4.</b> Here is a trick I use to initialize class variables.</p>
<p>Create a class with class variables:</p>
<pre class="example">
(setq my-class (send class :new nil '(cvar-1 cvar-2)))
</pre>
<p>Add an :isnew method to set the class variables:</p>
<pre class="example">
(send my-class :answer :isnew nil '((setq cvar-1 "a" cvar-2 "b")))
</pre>
<p>Create a temporary dummy object to initialize the class variables:</p>
<pre class="example">
(let ((x (send my-class :new))))
</pre>
<p>Replace the :isnew method with a dummy version <nobr>[or a</nobr> real
version, initializing the instance variables]:</p>
<pre class="example">
(send my-class :answer :isnew nil nil)
</pre>
<p>Now I have a class with initialized class variables:</p>
<pre class="example">
> (send my-class :show)
Object is #<Object...>, Class is #<Object...>
MESSAGES = ((:ISNEW . #<Closure-:ISNEW...>)) <font color="#008844">; dummy method</font>
IVARS = NIL
CVARS = (CVAR-1 CVAR-2) <font color="#008844">; class variables</font>
CVALS = #("a" "b") <font color="#008844">; init values</font>
SUPERCLASS = #<Object...>
IVARCNT = 0
IVARTOTAL = 0
#<Object...>
</pre>
<p>See defclass below how to make this work automatically.</p>
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name=""></a>
<hr>
<h2>Accessing Class and Instance Variables</h2>
<hr>
<pre class="example">
(setq my-class (send class :new '(i-var) '(c-var)))
(setq my-object (send my-class :new))
</pre>
<p>A message to read internal class and instance variables:</p>
<pre class="example">
(send my-class :answer :<font color="#0000CC">internal-slot-get</font> '(slot-name)
'((eval slot-name)))
</pre>
<p>A message to write internal class and instance variables:</p>
<pre class="example">
(send my-class :answer :<font color="#0000CC">internal-slot-set</font> '(slot-name value)
'((eval (list 'setq slot-name value))))
</pre>
<p><div class="box">
<p><b>Implementation Notes</b></p>
<p><b>1.</b> It's not really good Lisp style to explicitely call 'eval' in
Lisp code at <nobr>run-time</nobr>, because 'eval' produces a lot of
overhead, but here the only way to get access to the internal environment of
an object is passing the message arguments to 'eval' inside the object
itself.</p>
<p><b>2.</b> In the XLISP object system, an :answer message can only be
accessed in an <b>instance</b> of a class <nobr>[a sub-class</nobr> or on
object], but not in the class, where the :answer message has been defined,
so the :internal-slot accessor will only work in '<nobr>my-object</nobr>'
but ont in '<nobr>my-class</nobr>'.</p>
<p><b>3.</b> If a method had been changed in a superclass, the change will
automatically be inherited by all instances of the class
[<nobr>sub-classes</nobr> and objects], with no need to redefine them.</p>
<p><b>Warning:</b> If '<nobr>internal-slot-set</nobr>' is given a
<nobr>slot-name</nobr> that doesn't exist inside the object, a global
variable will be created.</p>
</div></p>
<p>Reading and writing an instance variable:</p>
<pre class="example">
> (send my-object :internal-slot-get 'i-var) <font color="#008844">; read</font>
NIL
> (send my-object :internal-slot-set 'i-var 55) <font color="#008844">; write</font>
55
> (send my-object :internal-slot-get 'i-var) <font color="#008844">; read</font>
55
> (send my-object :show)
Object is #<Object: #9b95998>, Class is #<Object: #9b95c50>
I-VAR = 55 <font color="#008844">; new value</font>
#<Object: #9b95998>
</pre>
<p>Reading and writing a class variable:</p>
<pre class="example">
> (send my-object :internal-slot-get 'c-var) <font color="#008844">; read</font>
NIL
> (send my-object :internal-slot-set 'c-var 123) <font color="#008844">; write</font>
123
> (send my-object :internal-slot-get 'c-var) <font color="#008844">; read</font>
123
> (send my-class :show)
Object is #<Object: #9b95c50>, Class is #<Object: #9af7dd4>
MESSAGES = ((:INTERNAL-SLOT-GET . #<Closure-:INTERNAL-SLOT-GET: #9b90080>)
(:INTERNAL-SLOT-SET . #<Closure-:INTERNAL-SLOT-SET: #9b900d4>))
IVARS = (I-VAR)
CVARS = (C-VAR)
CVALS = #(123) <font color="#008844">; new value</font>
SUPERCLASS = #<Object: #9af7dc8>
IVARCNT = 1
IVARTOTAL = 1
#<Object: #9b95c50>
</pre>
<p>See the '<nobr>slot-get</nobr>' and '<nobr>slot-set</nobr>' functions
below how this can be generalized to access any class or instance variable
in any class or object via only two functions.</p>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name="defclass"></a>
<hr>
<h2>defclass</h2>
<hr>
<p>The original RBD 'defclass' macro:</p>
<pre class="example">
(defmacro <font color="#0000CC">defclass</font> (name super locals class-vars)
(if (not (boundp name))
(if super
`(setq ,name (send class :new ',locals ',class-vars ,super))
`(setq ,name (send class :new ',locals ',class-vars)))))
</pre>
<p>In order to read or write XLISP class or object variables two
<nobr>slot-acessor</nobr> messages need to be added to every new
<nobr>top-level</nobr> class:</p>
<pre class="example">
(defmacro <font color="#0000CC">defclass</font> (name super locals class-vars)
(when (boundp name)
(format t <font color="#880000">";; WARNING: redefining ~a~%"</font> name))
(if super
`(setq ,name (send class :new ',locals ',class-vars ,super))
`(progn
(setq ,name (send class :new ',locals ',class-vars))
(send ,name :answer :internal-slot-set '(slot-name value)
'((eval (list 'setq slot-name value))))
(send ,name :answer :internal-slot-get '(slot-name)
'((eval slot-name))))))
</pre>
<p>The third version provides <nobr>'let'-syntax</nobr> with instance and
class variables. <nobr>A list</nobr> of symbols will create variables
initialized <nobr>to NIL</nobr>. This is the XLISP default behaviour.
<nobr>If an</nobr> element is a <nobr>(symbol value)</nobr> list, then the
variable will be initialized with 'value', as soon as an instance of the
class is created.</p>
<p><div class="box">
<p><table cellpadding="0" cellspacing="0"><tbody>
<tr>
<td colspan="7"><nobr>(<b>defclass</b> <i>class</i> {<i>superclass</i> | NIL}</nobr></td>
</tr>
<tr>
<td><nobr><code> </code>({</nobr></td>
<td align="center"><nobr><i>ivar</i></nobr></td>
<td><nobr> | (</nobr></td>
<td align="center"><nobr><i>ivar</i></nobr></td>
<td><nobr> <i>init-form</i></nobr></td>
<td><nobr>)} ... )<code> </code></nobr></td>
<td><nobr>; instance variables</nobr></td>
</tr>
<tr>
<td><nobr><code> </code>({</nobr></td>
<td align="center"><nobr><i>cvar</i></nobr></td>
<td><nobr> | (</nobr></td>
<td align="center"><nobr><i>cvar</i></nobr></td>
<td><nobr> <i>init-form</i></nobr></td>
<td><nobr>)} ... ))<code> </code></nobr></td>
<td><nobr>; class variables</nobr></td>
</tr>
</tbody></table></p>
</div></p>
<pre class="example">
(defmacro <font color="#0000CC">expand-init-values</font> (vars var-list init-list)
(let ((var (gensym)))
`(dolist (,var ,vars (setq ,var-list (reverse ,var-list)
,init-list (reverse ,init-list)))
(cond ((symbolp ,var)
<font color="#008844">;; if the element is a single symbol,</font>
<font color="#008844">;; then add it to the variable list</font>
(push ,var ,var-list))
((and (listp ,var) (symbolp (first ,var)))
<font color="#008844">;; if the element is a (symbol value) list, then add</font>
<font color="#008844">;; an (setq symbol value) element to the init-list</font>
(push (list 'setq (first ,var) (second ,var)) ,init-list)
<font color="#008844">;; and add the symbol to the variable-list</font>
(push (first ,var) ,var-list))
(t (error <font color="#880000">"bad argument type"</font> ,var))))))
(defmacro <font color="#0000CC">with-unique-names</font> (symbols &rest body)
`(let ,(mapcar #'(lambda (x) `(,x (gensym))) symbols) ,@body))
(defmacro <font color="#0000CC">defclass</font> (name super class-vars instance-vars)
(with-unique-names (class-list class-init instance-list instance-init x)
`(let (,instance-list ,instance-init ,class-list ,class-init)
(expand-init-values ',class-vars ,class-list ,class-init)
(expand-init-values ',instance-vars ,instance-list ,instance-init)
(if (boundp ',name)
(format t <font color="#880000">";; Redefining ~a~%"</font> ',name)
(format t <font color="#880000">";; CLASS ~a~%"</font> ',name))
(format t <font color="#880000">";; CVARS ~a~%"</font> ',class-vars)
(format t <font color="#880000">";; IVARS ~a~%"</font> ',instance-vars)
,(if super
`(setq ,name (send class :new ,instance-list ,class-list ,super))
`(setq ,name (send class :new ,instance-list ,class-list)))
<font color="#008844">;; initialize class and instance variables</font>
(when ,class-list
(send ,name :answer :isnew nil ,class-init)
(let ((,x (send ,name :new)))))
(when (or ,instance-list ,class-list)
(send ,name :answer :isnew nil ,instance-init))
<font color="#008844">;; add slot-accessors to top-level classes</font>
,(unless super
`(progn
(send ,name :answer :internal-slot-set '(slot-name value)
'((eval (list 'setq slot-name value))))
(send ,name :answer :internal-slot-get '(slot-name)
'((eval slot-name))))))))
</pre>
<p><nobr>Sub-classes</nobr> and objects inherit their acessors from the
<nobr>super-class</nobr>.</p>
<p>Define a class with an <nobr>instance-variable</nobr>, a
<nobr>class-variable</nobr> and slot acessors:</p>
<pre class="example">
> (defclass my-class nil
((a 1) (b 2) (c 3))
((d 4) (e 5) (f 6)))
>
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name="slot-value"></a>
<hr>
<h2>Generalized Slot Accessors</h2>
<hr>
<p>Now the slot accessors for internal class and instance variables can be
defined as ordinary XLISP functions:</p>
<pre class="example">
(defun <font color="#0000CC">slot-set</font> (object slot-name value)
(send object :internal-slot-set slot-name value))
(defun <font color="#0000CC">slot-get</font> (object slot-name)
(send object :internal-slot-get slot-name))
</pre>
<p>Examples:</p>
<pre class="example">
> (slot-set my-object 'i-var 333)
333
> (slot-get my-object 'i-var)
333
</pre>
<p>Even typing the quote could be saved if 'slot-set' and 'slot-get' are
defined as macros:</p>
<pre class="example">
(defmacro <font color="#0000CC">slot-set</font> (object slot-name value)
`(send ,object :internal-slot-set ',slot-name ,value))
(defmacro <font color="#0000CC">slot-get</font> (object slot-name)
(send ,object :internal-slot-set ',slot-name ,value))
</pre>
<p>Examples:</p>
<pre class="example">
> (slot-set my-object i-var 444)
444
> (slot-get my-object i-var)
444
</pre>
<p><nobr> <a href="#top">Back to top</a></nobr></p>
<a name=""></a>
<hr>
<h2>Removing a Method from a Class or Instance</h2>
<hr>
<p>In Smalltalk, if a method's body is unbound and no other object refernces
the method, then the method is automatically garbage collected.
Unfortunately in XLISP this doesn't work because the instance variables,
including the list of methods, are not accessed by the garbage collector
<nobr>at all</nobr>. This means that even if the message body is set to NIL,
the message is not garbage collected, instead the '<nobr>no function</nobr>'
message returns NIL and blocks the <nobr>built-in</nobr> search for
<nobr>super-class</nobr> messages.</p>
<p>Because messages cannot be removed from XLISP objects, the only way to
make a message 'disappear' is to replage it's body by a call to the
<nobr>super-class</nobr>, passing the arguments of the original message:</p>
<pre class="example">
(defun remove-method (object message-selector &rest args)
(send object message-selector
(send-super message-selector args))
</pre>
<p>Shit: this doesn't work if the metod is defined in a super-class.</p>
<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/tutorials.htm">Tutorials</a> |
<a href="../examples/examples.htm">Examples</a> |
<a href="../reference/reference-index.htm">Reference</a>
</body></html>
|