Overview
Comment: | Try using md5sum instead of sha1. Much faster but what is the collison risk? |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.62 | v1.6208 |
Files: | files | file ages | folders |
SHA1: |
3e767a9aad0e5968d07375a314b77b33 |
User & Date: | mrwellan on 2016-11-16 13:48:58 |
Other Links: | branch diff | manifest | tags |
Context
2016-11-30
| ||
17:01 | Filter working check-in: d9859999af user: ritikaag tags: db-new | |
2016-11-18
| ||
20:46 | Try tmp db without rpc check-in: d06a3ab427 user: matt tags: v1.62-no-rpc | |
2016-11-17
| ||
16:27 | Beginnings of fix for testconfig disks issue Closed-Leaf check-in: 7e67a7638f user: mrwellan tags: testconfig-disks-fix | |
2016-11-16
| ||
16:57 | moved rpc-transport updates into mainline v1.62 branch check-in: f736d3db6e user: bjbarcla tags: v1.62 | |
16:08 | Merged v1.62 into rpc-transport Closed-Leaf check-in: 534875ccf1 user: mrwellan tags: rpc-transport-merge-v1.62 | |
13:48 | Try using md5sum instead of sha1. Much faster but what is the collison risk? check-in: 3e767a9aad user: mrwellan tags: v1.62, v1.6208 | |
10:12 | Fixed remotediff example. Broken by unknown goof up. check-in: 9833288949 user: mrwellan tags: v1.62 | |
Changes
Modified remotediff-nmsg.scm from [e39151f87a] to [90308a45f2].
︙ | ︙ | |||
15 16 17 18 19 20 21 | (set! (current-effective-user-id) cid)) (proc) (if (not (eq? eid cid)) (set! (current-effective-user-id) eid)))) ;; use mutex to not open/close files at same time ;; | | | | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | (set! (current-effective-user-id) cid)) (proc) (if (not (eq? eid cid)) (set! (current-effective-user-id) eid)))) ;; use mutex to not open/close files at same time ;; (define (checksum mtx file #!key (cmd "shasum")) (mutex-lock! mtx) (let-values (((inp oup pid) (process cmd (list file)))) (mutex-unlock! mtx) (let ((result (read-line inp))) ;; now flush out remaining output (let loop ((inl (read-line inp))) (if (eof-object? inl) (if (string? result) (begin |
︙ | ︙ | |||
43 44 45 46 47 48 49 | (define (gather-dir-info path) (let ((mtx1 (make-mutex)) (threads (make-hash-table)) (last-num 0) (req (nn-socket 'req))) (print "starting client with pid " (current-process-id)) (nn-connect req | | | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | (define (gather-dir-info path) (let ((mtx1 (make-mutex)) (threads (make-hash-table)) (last-num 0) (req (nn-socket 'req))) (print "starting client with pid " (current-process-id)) (nn-connect req ;; "tcp://localhost:5559") "ipc:///tmp/test-ipc") (find-files path ;; test: #t action: (lambda (p res) (let ((info (cond ((not (file-read-access? p)) '(cant-read)) ((directory? p) '(dir)) |
︙ | ︙ | |||
69 70 71 72 73 74 75 | ;; (set! last-num num-threads))) (mutex-unlock! mtx1) (if ok-to-run (let ((run-time-start (current-seconds))) ;; (print "num threads: " num-threads) (let ((th1 (make-thread (lambda () | | | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | ;; (set! last-num num-threads))) (mutex-unlock! mtx1) (if ok-to-run (let ((run-time-start (current-seconds))) ;; (print "num threads: " num-threads) (let ((th1 (make-thread (lambda () (let ((cksum (checksum mtx1 p cmd: "md5sum")) (run-time (- (current-seconds) run-time-start))) (mutex-lock! mtx1) (client-send-receive req (conc p " " cksum)) (mutex-unlock! mtx1)) (let loop2 () (mutex-lock! mtx1) (let ((registered (hash-table-exists? threads p))) |
︙ | ︙ | |||
118 119 120 121 122 123 124 | (p2dat (make-hash-table)) (numdone 0) ;; increment when recieved a quit. exit when > 2 (rep (nn-socket 'rep)) (p1len (string-length path1)) (p2len (string-length path2)) (both-seen (make-hash-table))) (nn-bind rep | | | | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | (p2dat (make-hash-table)) (numdone 0) ;; increment when recieved a quit. exit when > 2 (rep (nn-socket 'rep)) (p1len (string-length path1)) (p2len (string-length path2)) (both-seen (make-hash-table))) (nn-bind rep ;; "tcp://*:5559") "ipc:///tmp/test-ipc") ;; start clients (thread-sleep! 0.1) (system (conc "./remotediff-nmsg " path1 " &")) (system (conc "./remotediff-nmsg " path2 " &")) (let loop ((msg-in (nn-recv rep)) (last-print 0)) (if (equal? msg-in "quit") |
︙ | ︙ |