File: tconc-queue.scm

package info (click to toggle)
scheme48 1.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 18,232 kB
  • sloc: lisp: 88,907; ansic: 87,519; sh: 3,224; makefile: 771
file content (52 lines) | stat: -rw-r--r-- 1,420 bytes parent folder | download | duplicates (4)
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
; Part of Scheme 48 1.9.  See file COPYING for notices and license.

; Authors: Marcus Crestani

;; tconc queue for transport link cells
;; Teitelman 1974

(define (make-tconc-queue)
  (let ((q (cons #f #f)))
    (cons q q)))

(define (tconc-queue? thing)
  (and (pair? thing)
       (pair? (car thing))
       (pair? (cdr thing))))

(define (tconc-queue-empty? tconc)
  (and (tconc-queue? tconc) 
       (eq? (car tconc) (cdr tconc))))

(define (tconc-queue-enqueue! tconc value)
  (let ((newpair (cons #f #f)))
    (set-car! (cdr tconc) value)
    (set-cdr! (cdr tconc) newpair)
    (set-cdr! tconc newpair)))

(define (tconc-queue-dequeue! tconc)
  (if (tconc-queue-empty? tconc)
      (assertion-violation 'tconc-queue-dequeue "empty tconc queue" tconc)
      (let ((element (car (car tconc))))
	(set-car! tconc (cdr (car tconc)))
	element)))

(define (tconc-queue-peek tconc)
  (if (tconc-queue-empty? tconc)
      (assertion-violation 'tconc-queue-peek "empty tconc queue" tconc)
      (car (car tconc))))

(define (tconc-queue-clear! tconc)
  (let ((q (cons #f #f)))
    (set-car! tconc q)
    (set-cdr! tconc q)))

(define (tconc-queue-size tconc)
  (if (and tconc (pair? tconc))
      (let loop-tconc ((x (car tconc))
		       (count 0))
	(if (or (eq? x (cdr tconc))
		(not (pair? x)))
	    count
	    (loop-tconc (cdr x) (+ count 1))))
      (assertion-violation 'tconc-queue-size "not a valid tconc" tconc)))