File: dirdif.scm

package info (click to toggle)
mit-scheme 12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,300 kB
  • sloc: lisp: 781,881; xml: 425,435; ansic: 86,059; sh: 10,135; makefile: 2,501; asm: 2,121; csh: 1,143
file content (111 lines) | stat: -rw-r--r-- 4,237 bytes parent folder | download | duplicates (2)
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
#| -*-Scheme-*-

Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
    1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
    2017, 2018, 2019, 2020, 2021, 2022 Massachusetts Institute of
    Technology

This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
Computer Science.  Permission to copy this software, to redistribute
it, and to use it for any purpose is granted, subject to the following
restrictions and understandings.

1. Any copy made of this software must include this copyright notice
in full.

2. Users of this software agree to make their best efforts (a) to
return to the MIT Scheme project any improvements or extensions that
they make, so that these may be included in future releases; and (b)
to inform MIT of noteworthy uses of this software.

3. All materials developed as a consequence of the use of this
software shall duly acknowledge such use, in accordance with the usual
standards of acknowledging credit in academic research.

4. MIT has made no warrantee or representation that the operation of
this software will be error-free, and MIT is under no obligation to
provide any services, by way of maintenance, update, or otherwise.

5. In conjunction with products arising from the use of this material,
there shall be no use of the name of the Massachusetts Institute of
Technology nor of any adaptation thereof in any advertising,
promotional, or sales literature without prior written consent from
MIT in each case. |#

;;;; Directory comparator

(declare (usual-integrations))

(define input-buffer/channel 
  (access input-buffer/channel (->environment '(runtime generic-i/o-port))))

(define (find-diff old new)
  (let ((delimiters (char-set))
	(copy-command (case (intern (microcode-identification-item
				     'OS-NAME-STRING))
			((unix)
			 "cpx")
			((dos)
			 "copy")
			(else
			 (error "find-diff: Unknown OS"))))
        (copy-commands '())
        (diff-commands '()))
    
    (define (dos-command command file1 file2)
      (display command)
      (display " ")
      (display (->namestring file1))
      (display " ")
      (display (->namestring file2))
      (newline))
    
    (define (file-identical? old new)
      (call-with-input-file 
        old
        (lambda (old)
          (call-with-input-file
            new
            (lambda (new)
              (and (= (file-length 
                        (input-buffer/channel (vector-ref (port/state old) 
                                                          0)))
                      (file-length
                        (input-buffer/channel (vector-ref (port/state new)
                                                          0))))
                   (string=? (read-string delimiters old)
                             (read-string delimiters new))))))))

    (define (dos-copy source dest)
      (set! copy-commands
            (cons (lambda ()
                    (dos-command copy-command source dest))
                  copy-commands))
      unspecific)
    
    (define (dos-diff old new)
      (if (not (file-identical? old new))
          (set! diff-commands
                (cons (lambda ()
                        (dos-command "diff" old new))
                      diff-commands)))
      unspecific)

    (let ((old (pathname-as-directory (->pathname old)))
          (new (pathname-as-directory (->pathname new))))
      (for-each (lambda (path)
                  (let ((path*
                          (pathname-new-directory path 
                                                  (pathname-directory new))))
                    
                    (cond ((member (pathname-name path) '("." "..")))
                          ((not (file-exists? path*))
                           (dos-copy path path*))
                          ((not (member (pathname-type path) '("obj" "exe")))
                           (dos-diff path path*)))))
                (directory-read old)))
    
    (for-each (lambda (command) (command)) (reverse! copy-commands))
    (for-each (lambda (command) (command)) (reverse! diff-commands))))