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
|
;;; data-structures.scm - Optional data structures extensions
;
; Copyright (c) 2008-2021, The CHICKEN Team
; All rights reserved.
;
; Redistribution and use in source and binary forms, with or without
; modification, are permitted provided that the following conditions
; are met:
;
; Redistributions of source code must retain the above copyright notice, this list of conditions and the following
; disclaimer.
; Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
; disclaimer in the documentation and/or other materials provided with the distribution.
; Neither the name of the author nor the names of its contributors may be used to endorse or promote
; products derived from this software without specific prior written permission.
;
; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
; AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
; OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
; POSSIBILITY OF SUCH DAMAGE.
(declare
(unit data-structures))
(module chicken.string
(conc ->string string-chop string-chomp
string-compare3 string-compare3-ci
reverse-list->string reverse-string-append
string-intersperse string-split
string-translate string-translate*
substring=? substring-ci=?
substring-index substring-index-ci)
(import scheme)
(import chicken.base)
(import chicken.condition)
(import chicken.fixnum)
(import chicken.foreign)
; (reverse-string-append l) = (apply string-append (reverse l))
(define (reverse-string-append l)
(define (rev-string-append l i)
(if (pair? l)
(let* ((str (car l))
(len (string-length str))
(result (rev-string-append (cdr l) (fx+ i len))))
(let loop ((j 0) (k (fx- (fx- (string-length result) i) len)))
(if (fx< j len)
(begin
(string-set! result k (string-ref str j))
(loop (fx+ j 1) (fx+ k 1)))
result)))
(make-string i)))
(rev-string-append l 0))
(define (reverse-list->string l)
(##sys#reverse-list->string l))
;;; Anything->string conversion:
(define ->string
(lambda (x)
(cond [(string? x) x]
[(symbol? x) (symbol->string x)]
[(char? x) (string x)]
[(number? x) (##sys#number->string x)]
[else
(let ([o (open-output-string)])
(display x o)
(get-output-string o) ) ] ) ) )
(define conc
(lambda args
(apply string-append (map ->string args)) ) )
;;; Search one string inside another:
(let ()
(define (traverse which where start test loc)
(##sys#check-string which loc)
(##sys#check-string where loc)
(let* ((wherelen (##sys#size where))
(whichlen (##sys#size which))
(end (fx- wherelen whichlen)))
(##sys#check-fixnum start loc)
(if (and (fx>= start 0)
(fx>= wherelen start))
(if (fx= whichlen 0)
start
(and (fx>= end 0)
(let loop ((istart start))
(cond ((fx> istart end) #f)
((test istart whichlen) istart)
(else (loop (fx+ istart 1)))))))
(##sys#error-hook (foreign-value "C_OUT_OF_RANGE_ERROR" int)
loc
start
wherelen))))
(set! ##sys#substring-index
(lambda (which where start)
(traverse
which where start
(lambda (i l) (##core#inline "C_substring_compare" which where 0 i l))
'substring-index) ) )
(set! ##sys#substring-index-ci
(lambda (which where start)
(traverse
which where start
(lambda (i l) (##core#inline "C_substring_compare_case_insensitive" which where 0 i l))
'substring-index-ci) ) ) )
(define (substring-index which where #!optional (start 0))
(##sys#substring-index which where start) )
(define (substring-index-ci which where #!optional (start 0))
(##sys#substring-index-ci which where start) )
;;; 3-Way string comparison:
(define (string-compare3 s1 s2)
(##sys#check-string s1 'string-compare3)
(##sys#check-string s2 'string-compare3)
(let ((len1 (##sys#size s1))
(len2 (##sys#size s2)) )
(let* ((len-diff (fx- len1 len2))
(cmp (##core#inline "C_string_compare" s1 s2 (if (fx< len-diff 0) len1 len2))))
(if (fx= cmp 0)
len-diff
cmp))))
(define (string-compare3-ci s1 s2)
(##sys#check-string s1 'string-compare3-ci)
(##sys#check-string s2 'string-compare3-ci)
(let ((len1 (##sys#size s1))
(len2 (##sys#size s2)) )
(let* ((len-diff (fx- len1 len2))
(cmp (##core#inline "C_string_compare_case_insensitive" s1 s2 (if (fx< len-diff 0) len1 len2))))
(if (fx= cmp 0)
len-diff
cmp))))
;;; Substring comparison:
(define (##sys#substring=? s1 s2 start1 start2 n)
(##sys#check-string s1 'substring=?)
(##sys#check-string s2 'substring=?)
(let ((len (or n
(fxmin (fx- (##sys#size s1) start1)
(fx- (##sys#size s2) start2) ) ) ) )
(##sys#check-fixnum start1 'substring=?)
(##sys#check-fixnum start2 'substring=?)
(##core#inline "C_substring_compare" s1 s2 start1 start2 len) ) )
(define (substring=? s1 s2 #!optional (start1 0) (start2 0) len)
(##sys#substring=? s1 s2 start1 start2 len) )
(define (##sys#substring-ci=? s1 s2 start1 start2 n)
(##sys#check-string s1 'substring-ci=?)
(##sys#check-string s2 'substring-ci=?)
(let ((len (or n
(fxmin (fx- (##sys#size s1) start1)
(fx- (##sys#size s2) start2) ) ) ) )
(##sys#check-fixnum start1 'substring-ci=?)
(##sys#check-fixnum start2 'substring-ci=?)
(##core#inline "C_substring_compare_case_insensitive"
s1 s2 start1 start2 len) ) )
(define (substring-ci=? s1 s2 #!optional (start1 0) (start2 0) len)
(##sys#substring-ci=? s1 s2 start1 start2 len) )
;;; Split string into substrings:
(define string-split
(lambda (str . delstr-and-flag)
(##sys#check-string str 'string-split)
(let* ([del (if (null? delstr-and-flag) "\t\n " (car delstr-and-flag))]
[flag (if (fx= (length delstr-and-flag) 2) (cadr delstr-and-flag) #f)]
[strlen (##sys#size str)] )
(##sys#check-string del 'string-split)
(let ([dellen (##sys#size del)]
[first #f] )
(define (add from to last)
(let ([node (cons (##sys#substring str from to) '())])
(if first
(##sys#setslot last 1 node)
(set! first node) )
node) )
(let loop ([i 0] [last #f] [from 0])
(cond [(fx>= i strlen)
(when (or (fx> i from) flag) (add from i last))
(or first '()) ]
[else
(let ([c (##core#inline "C_subchar" str i)])
(let scan ([j 0])
(cond [(fx>= j dellen) (loop (fx+ i 1) last from)]
[(eq? c (##core#inline "C_subchar" del j))
(let ([i2 (fx+ i 1)])
(if (or (fx> i from) flag)
(loop i2 (add from i last) i2)
(loop i2 last i2) ) ) ]
[else (scan (fx+ j 1))] ) ) ) ] ) ) ) ) ) )
;;; Concatenate list of strings:
(define (string-intersperse strs #!optional (ds " "))
(##sys#check-list strs 'string-intersperse)
(##sys#check-string ds 'string-intersperse)
(let ((dslen (##sys#size ds)))
(let loop1 ((ss strs) (n 0))
(cond ((##core#inline "C_eqp" ss '())
(if (##core#inline "C_eqp" strs '())
""
(let ((str2 (##sys#allocate-vector (fx- n dslen) #t #\space #f)))
(let loop2 ((ss2 strs) (n2 0))
(let* ((stri (##sys#slot ss2 0))
(next (##sys#slot ss2 1))
(strilen (##sys#size stri)) )
(##core#inline "C_substring_copy" stri str2 0 strilen n2)
(let ((n3 (fx+ n2 strilen)))
(if (##core#inline "C_eqp" next '())
str2
(begin
(##core#inline "C_substring_copy" ds str2 0 dslen n3)
(loop2 next (fx+ n3 dslen)) ) ) ) ) ) ) ) )
((and (##core#inline "C_blockp" ss) (##core#inline "C_pairp" ss))
(let ((stri (##sys#slot ss 0)))
(##sys#check-string stri 'string-intersperse)
(loop1 (##sys#slot ss 1)
(fx+ (##sys#size stri) (fx+ dslen n)) ) ) )
(else (##sys#error-not-a-proper-list strs)) ) ) ) )
;;; Translate elements of a string:
(define string-translate
(lambda (str from . to)
(define (instring s)
(let ([len (##sys#size s)])
(lambda (c)
(let loop ([i 0])
(cond [(fx>= i len) #f]
[(eq? c (##core#inline "C_subchar" s i)) i]
[else (loop (fx+ i 1))] ) ) ) ) )
(let* ([from
(cond [(char? from) (lambda (c) (eq? c from))]
[(pair? from) (instring (list->string from))]
[else
(##sys#check-string from 'string-translate)
(instring from) ] ) ]
[to
(and (pair? to)
(let ([tx (##sys#slot to 0)])
(cond [(char? tx) tx]
[(pair? tx) (list->string tx)]
[else
(##sys#check-string tx 'string-translate)
tx] ) ) ) ]
[tlen (and (string? to) (##sys#size to))] )
(##sys#check-string str 'string-translate)
(let* ([slen (##sys#size str)]
[str2 (make-string slen)] )
(let loop ([i 0] [j 0])
(if (fx>= i slen)
(if (fx< j i)
(##sys#substring str2 0 j)
str2)
(let* ([ci (##core#inline "C_subchar" str i)]
[found (from ci)] )
(cond [(not found)
(##core#inline "C_setsubchar" str2 j ci)
(loop (fx+ i 1) (fx+ j 1)) ]
[(not to) (loop (fx+ i 1) j)]
[(char? to)
(##core#inline "C_setsubchar" str2 j to)
(loop (fx+ i 1) (fx+ j 1)) ]
[(fx>= found tlen)
(##sys#error 'string-translate "invalid translation destination" i to) ]
[else
(##core#inline "C_setsubchar" str2 j (##core#inline "C_subchar" to found))
(loop (fx+ i 1) (fx+ j 1)) ] ) ) ) ) ) ) ) )
(define (string-translate* str smap)
(##sys#check-string str 'string-translate*)
(##sys#check-list smap 'string-translate*)
(let ((len (##sys#size str)))
(define (collect i from total fs)
(if (fx>= i len)
(##sys#fragments->string
total
(##sys#fast-reverse
(if (fx> i from)
(cons (##sys#substring str from i) fs)
fs) ) )
(let loop ((smap smap))
(if (null? smap)
(collect (fx+ i 1) from (fx+ total 1) fs)
(let* ((p (car smap))
(sm (car p))
(smlen (string-length sm))
(st (cdr p)) )
(if (and (fx<= (fx+ i smlen) len)
(##core#inline "C_substring_compare" str sm i 0 smlen))
(let ((i2 (fx+ i smlen)))
(when (fx> i from)
(set! fs (cons (##sys#substring str from i) fs)) )
(collect
i2 i2
(fx+ total (string-length st))
(cons st fs) ) )
(loop (cdr smap)) ) ) ) ) ) )
(collect 0 0 0 '()) ) )
;;; Chop string into substrings:
(define (string-chop str len)
(##sys#check-string str 'string-chop)
(##sys#check-fixnum len 'string-chop)
(let ([total (##sys#size str)])
(let loop ([total total] [pos 0])
(cond [(fx<= total 0) '()]
[(fx<= total len) (list (##sys#substring str pos (fx+ pos total)))]
[else (cons (##sys#substring str pos (fx+ pos len)) (loop (fx- total len) (fx+ pos len)))] ) ) ) )
;;; Remove suffix
(define (string-chomp str #!optional (suffix "\n"))
(##sys#check-string str 'string-chomp)
(##sys#check-string suffix 'string-chomp)
(let* ((len (##sys#size str))
(slen (##sys#size suffix))
(diff (fx- len slen)) )
(if (and (fx>= len slen)
(##core#inline "C_substring_compare" str suffix diff 0 slen) )
(##sys#substring str 0 diff)
str) ) )
) ; chicken.string
(module chicken.sort
(merge merge! sort sort! sorted? topological-sort)
(import scheme chicken.base chicken.condition chicken.fixnum)
;;; Defines: sorted?, merge, merge!, sort, sort!
;;; Author : Richard A. O'Keefe (based on Prolog code by D.H.D.Warren)
;;;
;;; This code is in the public domain.
;;; Updated: 11 June 1991
;;; Modified for scheme library: Aubrey Jaffer 19 Sept. 1991
;;; Updated: 19 June 1995
;;; (sorted? sequence less?)
;;; is true when sequence is a list (x0 x1 ... xm) or a vector #(x0 ... xm)
;;; such that for all 1 <= i <= m,
;;; (not (less? (list-ref list i) (list-ref list (- i 1)))).
; Modified by flw for use with CHICKEN:
;
(define (sorted? seq less?)
(cond
((null? seq)
#t)
((vector? seq)
(let ((n (vector-length seq)))
(if (<= n 1)
#t
(do ((i 1 (+ i 1)))
((or (= i n)
(less? (vector-ref seq i)
(vector-ref seq (- i 1))))
(= i n)) )) ))
(else
(let loop ((last (car seq)) (next (cdr seq)))
(or (null? next)
(and (not (less? (car next) last))
(loop (car next) (cdr next)) )) )) ))
;;; (merge a b less?)
;;; takes two lists a and b such that (sorted? a less?) and (sorted? b less?)
;;; and returns a new list in which the elements of a and b have been stably
;;; interleaved so that (sorted? (merge a b less?) less?).
;;; Note: this does _not_ accept vectors. See below.
(define (merge a b less?)
(cond
((null? a) b)
((null? b) a)
(else (let loop ((x (car a)) (a (cdr a)) (y (car b)) (b (cdr b)))
;; The loop handles the merging of non-empty lists. It has
;; been written this way to save testing and car/cdring.
(if (less? y x)
(if (null? b)
(cons y (cons x a))
(cons y (loop x a (car b) (cdr b)) ))
;; x <= y
(if (null? a)
(cons x (cons y b))
(cons x (loop (car a) (cdr a) y b)) )) )) ))
;;; (merge! a b less?)
;;; takes two sorted lists a and b and smashes their cdr fields to form a
;;; single sorted list including the elements of both.
;;; Note: this does _not_ accept vectors.
(define (merge! a b less?)
(define (loop r a b)
(if (less? (car b) (car a))
(begin
(set-cdr! r b)
(if (null? (cdr b))
(set-cdr! b a)
(loop b a (cdr b)) ))
;; (car a) <= (car b)
(begin
(set-cdr! r a)
(if (null? (cdr a))
(set-cdr! a b)
(loop a (cdr a) b)) )) )
(cond
((null? a) b)
((null? b) a)
((less? (car b) (car a))
(if (null? (cdr b))
(set-cdr! b a)
(loop b a (cdr b)))
b)
(else ; (car a) <= (car b)
(if (null? (cdr a))
(set-cdr! a b)
(loop a (cdr a) b))
a)))
;;; (sort! sequence less?)
;;; sorts the list or vector sequence destructively. It uses a version
;;; of merge-sort invented, to the best of my knowledge, by David H. D.
;;; Warren, and first used in the DEC-10 Prolog system. R. A. O'Keefe
;;; adapted it to work destructively in Scheme.
(define (sort! seq less?)
(define (step n)
(cond
((> n 2)
(let* ((j (quotient n 2))
(a (step j))
(k (- n j))
(b (step k)))
(merge! a b less?)))
((= n 2)
(let ((x (car seq))
(y (cadr seq))
(p seq))
(set! seq (cddr seq))
(if (less? y x) (begin
(set-car! p y)
(set-car! (cdr p) x)))
(set-cdr! (cdr p) '())
p))
((= n 1)
(let ((p seq))
(set! seq (cdr seq))
(set-cdr! p '())
p))
(else
'()) ))
(if (vector? seq)
(let ((n (vector-length seq))
(vec seq))
(set! seq (vector->list seq))
(do ((p (step n) (cdr p))
(i 0 (+ i 1)))
((null? p) vec)
(vector-set! vec i (car p)) ))
;; otherwise, assume it is a list
(step (length seq)) ))
;;; (sort sequence less?)
;;; sorts a vector or list non-destructively. It does this by sorting a
;;; copy of the sequence. My understanding is that the Standard says
;;; that the result of append is always "newly allocated" except for
;;; sharing structure with "the last argument", so (append x '()) ought
;;; to be a standard way of copying a list x.
(define (sort seq less?)
(if (vector? seq)
(list->vector (sort! (vector->list seq) less?))
(sort! (append seq '()) less?)))
;;; Topological sort with cycle detection:
;;
;; A functional implementation of the algorithm described in Cormen,
;; et al. (2009), Introduction to Algorithms (3rd ed.), pp. 612-615.
(define (topological-sort dag pred)
(define (visit dag node edges path state)
(case (alist-ref node (car state) pred)
((grey)
(abort
(##sys#make-structure
'condition
'(exn runtime cycle)
`((exn . message) "cycle detected"
(exn . arguments) ,(list (cons node (reverse path)))
(exn . call-chain) ,(get-call-chain)
(exn . location) topological-sort))))
((black)
state)
(else
(let walk ((edges (or edges (alist-ref node dag pred '())))
(state (cons (cons (cons node 'grey) (car state))
(cdr state))))
(if (null? edges)
(cons (alist-update! node 'black (car state) pred)
(cons node (cdr state)))
(let ((edge (car edges)))
(walk (cdr edges)
(visit dag
edge
#f
(cons edge path)
state))))))))
(define normalized-dag
(foldl (lambda (result node)
(alist-update! (car node)
(append (cdr node)
(or (alist-ref (car node) dag pred) '()))
result
pred))
'()
dag))
(let loop ((dag normalized-dag)
(state (cons (list) (list))))
(if (null? dag)
(cdr state)
(loop (cdr dag)
(visit dag
(caar dag)
(cdar dag)
'()
state)))))
) ; chicken.sort
|