/usr/share/scheme48-1.9/misc/doodl.scm is in scheme48 1.9-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ; Part of Scheme 48 1.9. See file COPYING for notices and license.
; Authors: Richard Kelsey, Jonathan Rees, Mike Sperber
; Dilapidated Object-Oriented Dynamic Language
; Dynamic Object-Oriented Dynamic Language
; Drug-crazed Object-Oriented Dynamic Language
; Written for clarity, not for speed.
; Tests are in test-doodl.scm.
(define <object> <value>)
(define <number> <number>)
(define <complex> <complex>)
(define <real> <real>)
(define <rational> <rational>)
(define <integer> <integer>)
(define <pair> <pair>)
(define <symbol> <symbol>)
(define <char> <char>)
(define <null> <null>)
(define <vector> <vector>)
(define <string> <string>)
(define <eof-object> <eof-object>)
(define <function> <procedure>)
(define <input-port> <input-port>)
(define <output-port> <output-port>)
; --------------------
; Generic functions
(define method-table? (type-predicate :method-table))
(define-syntax define-generic-function
(syntax-rules (setter)
((define-generic-function (setter ?name) ?parameter-list) ;for define-slot
(define-setter ?name
(make-generic-function
'(the-setter ?name)
(method-info ?name ("next" next-method . ?parameter-list)
(next-method)))))
((define-generic-function ?name ?parameter-list)
(define ?name
(make-generic-function
'?name
(method-info ?name ("next" next-method . ?parameter-list)
(next-method)))))))
(define (make-generic-function id prototype)
(let ((mtable (make-method-table id prototype)))
(annotate-procedure (make-generic mtable) mtable)))
(define (generic-function? f)
(and (procedure? f)
(method-table? (procedure-annotation f))))
(define-simple-type <generic-function> (<function>) generic-function?)
(really-define-method &add-method! ((g <generic-function>) foo)
(add-method! (procedure-annotation g) foo))
(really-define-method &disclose ((g <generic-function>))
`(generic-function ,(method-table-id (procedure-annotation g))))
(define method-table-id (record-accessor :method-table 'id))
; --------------------
; Method info (applicability / action pairs)
; D***n-style METHOD syntax
(define-syntax method
(syntax-rules ()
((method ?specs ?body ...)
(make-method (method-info anonymous ?specs ?body ...)))))
(define method-table-methods (record-accessor :method-table 'methods))
(define (make-method info)
(letrec ((perform (methods->perform
(list info
(method-info method args
(apply assertion-violation 'make-method
"invalid arguments" m args)))
;; This oughta be a prototype
#f))
(m (annotate-procedure (lambda args (perform args))
info)))
m))
(define method-info? (record-predicate :method-info))
(define (method? f)
(and (procedure? f)
(method-info? (procedure-annotation f))))
(define-simple-type <method> (<function>) method?)
(really-define-method &disclose ((m <method>))
`(method ,(procedure-annotation m)))
(define-syntax define-method
(syntax-rules (setter)
((define-method (setter ?id) ?formals ?body ...)
(really-define-setter-method ?id ?formals 'bar ?body ...))
((define-method ?id ?formals ?body ...)
(really-define-method ?id ?formals 'foo ?body ...))))
(define-syntax really-define-setter-method
(lambda (e r c)
`(,(r 'really-define-method)
,(string->symbol (string-append (symbol->string (cadr e))
"-"
(symbol->string 'setter)))
,@(cddr e))))
; --------------------
; (SETTER foo)
(define-syntax the-setter
(lambda (e r c)
(string->symbol (string-append (symbol->string (cadr e))
"-"
(symbol->string 'setter)))))
(define-syntax define-setter
(lambda (e r c)
`(,(r 'define)
,(string->symbol (string-append (symbol->string (cadr e))
"-"
(symbol->string 'setter)))
,(caddr e))))
(define-syntax set
(syntax-rules ()
((set (?fun ?arg ...) ?val)
((the-setter ?fun) ?arg ... ?val))
((set ?var ?val)
(set! ?var ?val))))
(define car-setter set-car!)
(define cdr-setter set-cdr!)
(define vector-ref-setter vector-set!)
; --------------------
; DEFINE-CLASS
(define-syntax define-class
(syntax-rules ()
((define-class ?class-name (?super ...) ?slot ...)
(begin (define-slot ?slot)
...
(define ?class-name
(make-class (list ?super ...)
(list ?slot ...)
'?class-name))))))
(define-syntax define-slot
(syntax-rules ()
((define-slot ?slot)
(begin (define-generic-function ?slot (x))
(define-generic-function (setter ?slot) (x new-val))
(define-method ?slot ((x <instance>))
(instance-slot-ref x ?slot))
(define-setter-method ?slot ((x <instance>) new-val)
(instance-slot-set! x ?slot new-val))))))
(define-syntax define-setter-method
(lambda (e r c)
`(,(r 'define-method)
,(string->symbol (string-append (symbol->string (cadr e))
"-"
(symbol->string 'setter)))
,@(cddr e))))
; Instances
(define-record-type instance :instance
(make-instance classes slots)
instance?
(classes instance-classes)
(slots instance-slot-values))
(define (instance-slot-ref instance slot)
(cond ((assq slot (instance-slot-values instance)) => cdr)
(else (assertion-violation 'instance-slot-ref "no such slot"
instance slot))))
(define (instance-slot-set! instance slot new-value)
(cond ((assq slot (instance-slot-values instance))
=> (lambda (z) (set-cdr! z new-value)))
(else (assertion-violation 'instance-slot-set! "no such slot"
instance slot new-value))))
; Classes
(define-record-type class :class
(really-make-class classes predicate priority slots id)
class?
(classes class-classes)
(predicate class-predicate)
(priority class-priority)
(slots class-slots)
(id class-id))
(define-record-discloser :class
(lambda (c) `(class ,(class-id c))))
(really-define-method &type-predicate ((c :class)) (class-predicate c))
(really-define-method &type-priority ((c :class)) (class-priority c))
(define (make-class supers slots id)
(letrec ((class
(really-make-class
(reduce unionq '() (map get-classes supers))
(lambda (x) ;Predicate
(and (instance? x)
(memq class (instance-classes x))))
(if (null? supers) ;Priority
(type-priority :instance)
(+ (apply max (map type-priority supers))
*increment*))
(unionq slots
(reduce unionq '() (map get-slots supers)))
id)))
class))
(define *increment* 10)
(define (get-classes type)
(if (class? type)
(cons type
(class-classes type))
'()))
(define (get-slots type)
(if (class? type)
(class-slots type)
'()))
(define-generic-function make (class . key/value-pairs))
(define-method make ((c :class) . key/value-pairs)
(let ((i (make-instance (cons c (class-classes c))
(map (lambda (slot)
(cons slot '*uninitialized*))
(class-slots c)))))
(apply initialize i key/value-pairs)
i))
(define-generic-function initialize (i . key/value-pairs))
(define-method initialize ((i :instance)) (unspecific))
(define (unionq l1 l2)
(cond ((null? l1) l2)
((null? l2) l1)
((memq (car l1) l2) (unionq (cdr l1) l2))
(else (cons (car l1) (unionq (cdr l1) l2)))))
; --------------------
; Random
(define id? eq?)
(define-syntax bind
(lambda (e r c)
(if (and (pair? (cdr e))
(list? (cadr e)))
(let ((%call-with-values (r 'call-with-values))
(%lambda (r 'lambda))
(%method (r 'method))
(%begin (r 'begin)))
(let recur ((specs (cadr e)))
(if (null? specs)
`(,%begin ,@(cddr e))
(let ((rspec (reverse (car specs))))
`(,%call-with-values
(,%lambda () ,(car rspec))
(,%method ,(reverse (cdr rspec))
,(recur (cdr specs))))))))
e)))
(define-simple-type <list> (<object>) list?)
; --------------------
; More?
; (instance? obj class)
; (as class object) => instance
; <type>
; (union type1 type2)
; (union* type ...)
; (subtype? type1 type2 )
; per design note 05
; (define-method foo (x y #values (foo <integer>)) ...)
; per design note 21
; (define-method f ((x (limited <integer> min: -1000 max: 1000)) ...)
; ...)
; design note 06
; <collection>, etc.
; <exact> and <inexact> ?
;(define <sequence>
; (make-generalization (list <list> <vector> <string>) '<sequence>))
;(define <port>
; (make-generalization (list <input-port> <output-port>) '<port>))
; Need reader syntax:
; #next #rest #key etc.
; - implement with (define-sharp-macro #\n ...) ?
; keywords - foo:
; - implement by customizing parse-token
|