Changes In Branch v1.70-refactor02-chicken5 Excluding Merge-Ins
This is equivalent to a diff from 850872189d to c1881425cb
2020-02-20
| ||
20:14 | Got all changes needed to get it to compile under chicken 5. Has some issues with the pathname resolutions, but should be very close Leaf check-in: c1881425cb user: jmoon tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
17:49 | Additional fixes for chicken 5 compatibility check-in: 675fffe4d9 user: jmoon tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
2020-01-04
| ||
16:45 | Pulled in compilation fixes from refactor02. check-in: 337a4b27f1 user: matt tags: v1.70-captain-ulex, v1.70-defunct-try | |
2020-01-02
| ||
13:56 | Initial commit towards supporting chicken 5 in megatest check-in: 65df38ba3d user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
09:36 | Fixed imports so dashboard launches Leaf check-in: 850872189d user: jmoon18 tags: v1.70-refactor02, v1.70-defunct-try | |
2019-12-31
| ||
16:19 | Added runsmod to eval-string in megatest.scm check-in: 269f41c0b0 user: mrwellan tags: v1.70-refactor02, v1.70-defunct-try | |
Modified Makefile from [a962be5e52] to [9bee85deab].
︙ | ︙ | |||
171 172 173 174 175 176 177 | mofiles/mtconfigf.o : mtconfigf/mtconfigf.scm mofiles/ulex.o : ulex/ulex.scm mofiles/mutils.o : mutils/mutils.scm mofiles/cookie.o : stml2/cookie.scm mofiles/stml2.o : stml2/stml2.scm # for the modularized stuff | < > > > | 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 | mofiles/mtconfigf.o : mtconfigf/mtconfigf.scm mofiles/ulex.o : ulex/ulex.scm mofiles/mutils.o : mutils/mutils.scm mofiles/cookie.o : stml2/cookie.scm mofiles/stml2.o : stml2/stml2.scm # for the modularized stuff mofiles/commonmod.o : megatest-fossil-hash.scm mofiles/stml2.o \ mofiles/mtargs.o mofiles/pkts.o mofiles/mtconfigf.o \ mofiles/processmod.o mofiles/pgdbmod.o : mofiles/commonmod.o mofiles/dbmod.o : mofiles/commonmod.o mofiles/keysmod.o \ mofiles/tasksmod.o mofiles/odsmod.o mofiles/tasksmod.o : mofiles/commonmod.o mofiles/pgdbmod.o mofiles/rmtmod.o : mofiles/commonmod.o \ mofiles/apimod.o mofiles/ulex.o mofiles/itemsmod.o mofiles/apimod.o : mofiles/dbmod.o mofiles/commonmod.o mofiles/servermod.o mofiles/runsmod.o : mofiles/testsmod.o mofiles/mtmod.o mofiles/mtmod.o : mofiles/mtconfigf.o mofiles/rmtmod.o mofiles/tasksmod.o \ mofiles/dbmod.o mofiles/pgdbmod.o mofiles/launchmod.o \ mofiles/subrunmod.o mofiles/servermod.o : mofiles/commonmod.o mofiles/dbmod.o mofiles/testsmod.o : mofiles/servermod.o mofiles/dbmod.o mofiles/launchmod.o : mofiles/subrunmod.o mofiles/testsmod.o # special cases where an upstream .import file is needed to compile a module mofiles/rmtmod.o : ulex.import.o # Removed from megamod.o dep: mofiles/ftail.o mofiles/megamod.o : \ mofiles/rmtmod.o \ mofiles/commonmod.o \ mofiles/apimod.o \ mofiles/archivemod.o \ |
︙ | ︙ | |||
479 480 481 482 483 484 485 | # base64 dot-locking \ # csv-xml z3 # "(define (toplevel-command . a) #f)" # if egrep 'version.*3.0' $(shell dirname $(shell dirname $(shell which csi)))/lib/chicken/7/readline.setup-info;then \ readline-fix.scm : | | | | | | | 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 | # base64 dot-locking \ # csv-xml z3 # "(define (toplevel-command . a) #f)" # if egrep 'version.*3.0' $(shell dirname $(shell dirname $(shell which csi)))/lib/chicken/7/readline.setup-info;then \ readline-fix.scm : if [[ $(shell chicken-status | grep breadline | awk '{print $4}' | cut -d. -f1) -gt 3 ]];then \ echo "(define *use-new-readline* #f)" > readline-fix.scm; \ else \ echo "(define *use-new-readline* #t)" > readline-fix.scm;\ fi altdb.scm : echo ";; optional alternate db setup" > altdb.scm echo "(define *available-db* (make-hash-table))" >> altdb.scm if csi -ne '(import mysql-client)';then \ echo "(import mysql-client)(hash-table-set! *available-db* 'mysql #t)" >> altdb.scm; \ fi if csi -ne '(import postgresql)';then \ echo "(import postgresql)(hash-table-set! *available-db* 'postgresql #t)" >> altdb.scm;\ fi portlogger-example : portlogger-example.scm api.o archive.o client.o common.o configf.o dashboard-tests.o dashboard-context-menu.o db.o dcommon.o ezsteps.o filedb.o genexample.o http-transport.o items.o keys.o launch.o lock-queue.o margs.o megatest-version.o mt.o ods.o portlogger.o process.o rmt.o rpc-transport.o runconfig.o runs.o sdb.o server.o synchash.o tasks.o tdb.o tests.o tree.o csc $(CSCOPTS) portlogger-example.scm api.o archive.o client.o common.o configf.o dashboard-tests.o dashboard-context-menu.o db.o dcommon.o ezsteps.o filedb.o genexample.o http-transport.o items.o keys.o launch.o lock-queue.o margs.o megatest-version.o mt.o ods.o portlogger.o process.o rmt.o rpc-transport.o runconfig.o runs.o sdb.o server.o synchash.o tasks.o tdb.o tests.o tree.o # create a pdf dot graphviz diagram from notations in rmt.scm rmt.pdf : rmt.scm |
︙ | ︙ |
Modified apimod.scm from [e352dd959a] to [681efd92c2].
︙ | ︙ | |||
22 23 24 25 26 27 28 | (declare (uses commonmod)) (declare (uses dbmod)) (declare (uses servermod)) (module apimod * | | | | < | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | (declare (uses commonmod)) (declare (uses dbmod)) (declare (uses servermod)) (module apimod * (import scheme chicken.base chicken.irregex chicken.process-context.posix chicken.string chicken.time) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format chicken.port srfi-1 matchable s11n z3 (prefix base64 base64:) regex stack srfi-13) (import commonmod) (import dbmod) (import servermod) ;; (use (prefix ulex ulex:)) ;; These are called by the server on recipt of /api calls |
︙ | ︙ | |||
123 124 125 126 127 128 129 | ;; STEPS ((teststep-set-status!) (apply db:teststep-set-status! dbstruct params)) ((delete-steps-for-test!) (apply db:delete-steps-for-test! dbstruct params)) ;; TEST DATA ((test-data-rollup) (apply db:test-data-rollup dbstruct params)) | | | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | ;; STEPS ((teststep-set-status!) (apply db:teststep-set-status! dbstruct params)) ((delete-steps-for-test!) (apply db:delete-steps-for-test! dbstruct params)) ;; TEST DATA ((test-data-rollup) (apply db:test-data-rollup dbstruct params)) ;;((csv->test-data) (apply db:csv->test-data dbstruct params)) ;; MISC ((sync-inmem->db) (let ((run-id (car params))) (db:sync-touched dbstruct run-id force-sync: #t))) ((mark-incomplete) (apply db:find-and-mark-incomplete dbstruct params)) ;; TESTMETA |
︙ | ︙ |
Modified archivemod.scm from [4dfe611770] to [874489c882].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit archivemod)) (declare (uses commonmod)) (module archivemod * | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | (declare (unit archivemod)) (declare (uses commonmod)) (module archivemod * (import scheme (chicken base)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) (import commonmod) ;; (use (prefix ulex ulex:)) (include "common_records.scm") ) |
Added autoload/autoload.egg version [fdfe376fc0].
> > > > > | 1 2 3 4 5 | ((license "BSD") (category lang-exts) (author "Alex Shinn") (synopsis "Load modules lazily") (components (extension autoload))) |
Added autoload/autoload.meta version [eeb95f11ac].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | ;;; autoload.meta -*- Hen -*- ((egg "autoload.egg") (synopsis "Load modules lazily") (category lang-exts) (license "BSD") (author "Alex Shinn") (doc-from-wiki) (files "autoload.meta" "autoload.scm" "autoload.release-info" "autoload.setup")) |
Added autoload/autoload.scm version [b29a83f03e].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ;;;; autoload.scm -- load modules lazily ;; ;; Copyright (c) 2005-2009 Alex Shinn ;; All rights reserved. ;; ;; BSD-style license: http://www.debian.org/misc/bsd.license ;; Provides an Emacs-style autoload facility which takes the basic form ;; ;; (autoload unit procedure-name ...) ;; ;; such that the first time procedure-name is called, it will perform a ;; runtime require of 'unit and then apply the procedure from the newly ;; loaded unit to the args it was passed. Subsequent calls to ;; procedure-name will thereafter refer to the new procedure and will ;; thus not incur any overhead. ;; ;; You may also specify an alias for the procedure, and a default ;; procedure if the library can't be loaded: ;; ;; (autoload unit (name alias default) ...) ;; ;; In this case, although the procedure name from the unit is "name," ;; the form defines the autoload procedure as "alias." ;; ;; If the library can't be loaded then an error is signalled, unless ;; default is given, in which case the values are passed to that. ;; ;; Examples: ;; ;; ;; load iconv procedures lazily ;; (autoload iconv iconv iconv-open) ;; ;; ;; load some sqlite procedures lazily with "-" names ;; (autoload sqlite (sqlite:open sqlite-open) ;; (sqlite:execute sqlite-execute)) ;; ;; ;; load md5 library, falling back on slower scheme version ;; (autoload scheme-md5 (md5:digest scheme-md5:digest)) ;; (autoload md5 (md5:digest #f scheme-md5:digest)) (module autoload (autoload) (import scheme (chicken base)) (define-syntax autoload (er-macro-transformer (lambda (expr rename compare) (let ((module (cadr expr)) (procs (cddr expr)) (_import (rename 'import)) (_define (rename 'define)) (_let (rename 'let)) (_set! (rename 'set!)) (_begin (rename 'begin)) (_apply (rename 'apply)) (_args (rename 'args)) (_tmp (rename 'tmp)) (_eval (rename 'eval)) (_condition-case (rename 'condition-case))) `(,_begin ,@(map (lambda (x) (let* ((x (if (pair? x) x (list x))) (name (car x)) (full-name (string->symbol (string-append (symbol->string module) "#" (symbol->string name)))) (alias (or (and (pair? (cdr x)) (cadr x)) name)) (default (and (pair? (cdr x)) (pair? (cddr x)) (caddr x)))) (if default `(,_define (,alias . ,_args) (,_let ((,_tmp (,_condition-case (,_begin (,_eval (begin (require-library ,module) #f)) (,_eval ',full-name)) (exn () ,default)))) (,_set! ,alias ,_tmp) (,_apply ,_tmp ,_args))) `(,_define (,alias . ,_args) (,_let ((,_tmp (,_begin (,_eval (begin (require-library ,module) #f)) (,_eval ',full-name)))) (,_set! ,alias ,_tmp) (,_apply ,_tmp ,_args)))))) procs)))))) ) |
Added autoload/autoload.setup version [ca258ae59c].
> > > > > > > | 1 2 3 4 5 6 7 | (compile -s -O2 -j autoload autoload.scm) (compile -s -O2 autoload.import.scm) (install-extension 'autoload '("autoload.so" "autoload.import.so") '((version 3.0) (syntax))) |
Modified clientmod.scm from [449944fa84] to [f47d133940].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit clientmod)) (declare (uses commonmod)) (module clientmod * | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | (declare (unit clientmod)) (declare (uses commonmod)) (module clientmod * (import scheme (chicken base)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) (import commonmod) ;; (use (prefix ulex ulex:)) (include "common_records.scm") ) |
Modified common_records.scm from [5084b8d608] to [2591541cd3].
︙ | ︙ | |||
15 16 17 18 19 20 21 | ;; ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; ;;====================================================================== ;; (use trace) | | | 15 16 17 18 19 20 21 22 23 24 | ;; ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; ;;====================================================================== ;; (use trace) (import typed-records) ;; moved to commonmod |
Modified commonmod.scm from [838137cf51] to [b29d0a4e08].
︙ | ︙ | |||
18 19 20 21 22 23 24 | ;;====================================================================== (declare (unit commonmod)) (declare (uses mtargs)) ;; (declare (uses stml2)) (declare (uses mtconfigf)) | < | > > > > > > > > > > > > > > > > | | | > | | | | | 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 | ;;====================================================================== (declare (unit commonmod)) (declare (uses mtargs)) ;; (declare (uses stml2)) (declare (uses mtconfigf)) (declare (uses pkts)) (module commonmod * (import scheme (chicken base) (chicken process) (chicken format) (chicken process-context) (chicken process-context posix) (chicken string) (chicken io) (chicken pretty-print) (chicken file) (chicken file posix) (chicken pathname) (chicken time) (chicken sort) (chicken condition) (chicken time posix) ) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-1 (chicken file) format srfi-13 matchable srfi-69 (chicken port) (prefix base64 base64:) regex-case regex hostinfo srfi-4 (prefix dbi dbi:) stack md5 message-digest z3 directory-utils system-information sparse-vectors ) (import pkts) (import (prefix mtconfigf configf:)) (import (prefix mtargs args:)) (include "common_records.scm") (include "megatest-fossil-hash.scm") (include "megatest-version.scm") |
︙ | ︙ | |||
237 238 239 240 241 242 243 | (get-environment-variable "MT_DEBUG_MODE")))) (set! *verbosity* (debug:calc-verbosity debugstr verbose quiet)) (debug:check-verbosity *verbosity* debugstr) ;; if we were handed a bad verbosity rule then we will override it with 1 and continue (if (not *verbosity*)(set! *verbosity* 1)) (if (or dmode ;; (args:get-arg "-debug") (not (get-environment-variable "MT_DEBUG_MODE"))) | | | 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | (get-environment-variable "MT_DEBUG_MODE")))) (set! *verbosity* (debug:calc-verbosity debugstr verbose quiet)) (debug:check-verbosity *verbosity* debugstr) ;; if we were handed a bad verbosity rule then we will override it with 1 and continue (if (not *verbosity*)(set! *verbosity* 1)) (if (or dmode ;; (args:get-arg "-debug") (not (get-environment-variable "MT_DEBUG_MODE"))) (set-environment-variable! "MT_DEBUG_MODE" (if (list? *verbosity*) (string-intersperse (map conc *verbosity*) ",") (conc *verbosity*)))))) (define (debug:print n e . params) (if (debug:debug-mode n) (with-output-to-port (or e (current-error-port)) (lambda () |
︙ | ︙ | |||
596 597 598 599 600 601 602 | ;; (define (common:get-create-writeable-dir dirs) (if (null? dirs) #f (let loop ((hed (car dirs)) (tal (cdr dirs))) (let ((res (or (and (directory? hed) | | | 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 | ;; (define (common:get-create-writeable-dir dirs) (if (null? dirs) #f (let loop ((hed (car dirs)) (tal (cdr dirs))) (let ((res (or (and (directory? hed) (file-writable? hed) hed) (handle-exceptions exn (begin (debug:print-info 0 *default-log-port* "could not create " hed ", this might cause problems down the road.") #f) (create-directory hed #t))))) |
︙ | ︙ | |||
672 673 674 675 676 677 678 | ;; returns the directory or #f ;; (define (common:directory-writable? path-string) (handle-exceptions exn #f (if (and (directory-exists? path-string) | | | 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 | ;; returns the directory or #f ;; (define (common:directory-writable? path-string) (handle-exceptions exn #f (if (and (directory-exists? path-string) (file-writable? path-string)) path-string #f))) ;;====================================================================== ;; T I M E A N D D A T E ;;====================================================================== ;; Convert strings like "5s 2h 3m" => 60x60x2 + 3x60 + 5 |
︙ | ︙ | |||
1089 1090 1091 1092 1093 1094 1095 | (if (or (substring-index "!" key) (substring-index ":" key)) ;; variables containing : are for internal use and cannot be environment variables. (debug:print-error 4 *default-log-port* "skip setting internal use only variables containing \":\" or starting with \"!\"") (if (and (string? val) (string? key)) (handle-exceptions exn (debug:print-error 0 *default-log-port* "bad value for setenv, key=" key ", value=" val) | | | | 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 | (if (or (substring-index "!" key) (substring-index ":" key)) ;; variables containing : are for internal use and cannot be environment variables. (debug:print-error 4 *default-log-port* "skip setting internal use only variables containing \":\" or starting with \"!\"") (if (and (string? val) (string? key)) (handle-exceptions exn (debug:print-error 0 *default-log-port* "bad value for setenv, key=" key ", value=" val) (set-environment-variable! key val)) (debug:print-error 0 *default-log-port* "bad value for setenv, key=" key ", value=" val)))) (define home (getenv "HOME")) (define user (getenv "USER")) ;; put any changed environment variables back to how they were - TODO - turn this into some sort of with- (define (common:set-vars-back all-vars) (for-each (lambda (vardat) (let ((var (car vardat)) (val (cdr vardat))) (if (not (equal? (get-environment-variable var) val)) (handle-exceptions exn (debug:print-error 0 *default-log-port* "Failed to set " var " to " val) (set-environment-variable! var val))))) all-vars)) ;; returns list of fd count, socket count (define (get-file-descriptor-count #!key (pid (current-process-id ))) (list (length (glob (conc "/proc/" pid "/fd/*"))) (length (filter identity (map socket? (glob (conc "/proc/" pid "/fd/*"))))) |
︙ | ︙ | |||
1434 1435 1436 1437 1438 1439 1440 | ;; TEST DATA test-data-rollup csv->test-data ;; MISC sync-inmem->db | | | | | 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 | ;; TEST DATA test-data-rollup csv->test-data ;; MISC sync-inmem->db ;; TESTMETAl testmeta-add-record testmeta-update-field ;; TASKS tasks-add tasks-set-state-given-param-key )) ;;====================================================================== ;; ALLDATA ;;====================================================================== ;; attempt to consolidate a bunch of global information into one struct to toss around (defstruct alldat ;; misc (denoise (make-hash-table)) (areapath #f) ;; i.e. toppath (mtconfig #f) (log-port #f) (ulexdat #f) ;; connection to the databases (rmt-mutex (make-mutex)) (db-sync-mutex (make-mutex)) (db-with-db-mutex (make-mutex)) (read-only-queries api:read-only-queries) (write-queries api:write-queries) (max-api-process-requests 0) (api-process-request-count 0) |
︙ | ︙ | |||
1660 1661 1662 1663 1664 1665 1666 |
| | | | > | 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 | (import pathname-expand (chicken file)) ;; this plugs a hole in posix-extras in recent chicken versions > 4.9) #;(let-values (( (chicken-release-number chicken-major-version) (apply values (map string->number (take (string-split (chicken-version) ".") 2))))) (let ((resolve-pathname-broken? (or (> chicken-release-number 4) (and (eq? 4 chicken-release-number) (> chicken-major-version 9))))) (if resolve-pathname-broken? (define ##sys#expand-home-path pathname-expand)))) ;;(define (realpath x) (resolve-pathname (pathname-expand (or x "/dev/null")) )) (define (realpath x) (pathname-expand (or x "/dev/null")) ) (define (common:get-this-exe-fullpath #!key (argv (argv))) (let* ((this-script (cond ((and (> (length argv) 2) (string-match "^(.*/csi|csi)$" (car argv)) (string-match "^-(s|ss|sx|script)$" (cadr argv))) |
︙ | ︙ | |||
2005 2006 2007 2008 2009 2010 2011 | (begin (mutex-unlock! *homehost-mutex*) (debug:print 0 *default-log-port* "ERROR: ["(common:human-time)"] Failed to read .homehost file after trying five times. Giving up and exiting, message: " ((condition-property-accessor 'exn 'message) exn)) (exit 1))) (let ((hhf (conc *toppath* "/.homehost"))) (if (common:file-exists? hhf) (with-input-from-file hhf read-line) | | | 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 | (begin (mutex-unlock! *homehost-mutex*) (debug:print 0 *default-log-port* "ERROR: ["(common:human-time)"] Failed to read .homehost file after trying five times. Giving up and exiting, message: " ((condition-property-accessor 'exn 'message) exn)) (exit 1))) (let ((hhf (conc *toppath* "/.homehost"))) (if (common:file-exists? hhf) (with-input-from-file hhf read-line) (if (file-writable? *toppath*) (begin (with-output-to-file hhf (lambda () (print bestadrs))) (begin (mutex-unlock! *homehost-mutex*) (car (common:get-homehost)))) |
︙ | ︙ | |||
2213 2214 2215 2216 2217 2218 2219 | ;; get values from cached info from dropping file in logs dir ;; e.g. key is host and dtype is normalized-load ;; (define (common:get-cached-info key dtype #!key (age 5)) (let* ((fullpath (conc *toppath* "/logs/" key "-" dtype ".log"))) (if (and (file-exists? fullpath) | | | 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 | ;; get values from cached info from dropping file in logs dir ;; e.g. key is host and dtype is normalized-load ;; (define (common:get-cached-info key dtype #!key (age 5)) (let* ((fullpath (conc *toppath* "/logs/" key "-" dtype ".log"))) (if (and (file-exists? fullpath) (file-readable? fullpath)) (handle-exceptions exn #f (debug:print 2 *default-log-port* "reading file " fullpath) (let ((real-age (- (current-seconds)(file-change-time fullpath)))) (if (< real-age age) (with-input-from-file fullpath read) |
︙ | ︙ | |||
2484 2485 2486 2487 2488 2489 2490 | (lambda (disk-num) (let* ((dirpath (cadr (assoc disk-num disks))) (freespc (cond ((not (directory? dirpath)) (if (common:low-noise-print 300 "disks not a dir " disk-num) (debug:print 0 *default-log-port* "WARNING: disk " disk-num " at path \"" dirpath "\" is not a directory - ignoring it.")) -1) | | | | 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 | (lambda (disk-num) (let* ((dirpath (cadr (assoc disk-num disks))) (freespc (cond ((not (directory? dirpath)) (if (common:low-noise-print 300 "disks not a dir " disk-num) (debug:print 0 *default-log-port* "WARNING: disk " disk-num " at path \"" dirpath "\" is not a directory - ignoring it.")) -1) ((not (file-writable? dirpath)) (if (common:low-noise-print 300 "disks not writeable " disk-num) (debug:print 0 *default-log-port* "WARNING: disk " disk-num " at path \"" dirpath "\" is not writeable - ignoring it.")) -1) ((not (eq? (string-ref dirpath 0) #\/)) (if (common:low-noise-print 300 "disks not a proper path " disk-num) (debug:print 0 *default-log-port* "WARNING: disk " disk-num " at path \"" dirpath "\" is not a fully qualified path - ignoring it.")) -1) (else (get-df dirpath)))) (free-inodes (cond ((not (directory? dirpath)) (if (common:low-noise-print 300 "disks not a dir " disk-num) (debug:print 0 *default-log-port* "WARNING: disk " disk-num " at path \"" dirpath "\" is not a directory - ignoring it.")) -1) ((not (file-writable? dirpath)) (if (common:low-noise-print 300 "disks not writeable " disk-num) (debug:print 0 *default-log-port* "WARNING: disk " disk-num " at path \"" dirpath "\" is not writeable - ignoring it.")) -1) ((not (eq? (string-ref dirpath 0) #\/)) (if (common:low-noise-print 300 "disks not a proper path " disk-num) (debug:print 0 *default-log-port* "WARNING: disk " disk-num " at path \"" dirpath "\" is not a fully qualified path - ignoring it.")) -1) |
︙ | ︙ | |||
2681 2682 2683 2684 2685 2686 2687 | (for-each (lambda (p) (let* ((var (car p)) (val (cadr p)) (prv (get-environment-variable var))) (set! res (cons (list var prv) res)) (if val (safe-setenv var (->string val)) | | | 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 | (for-each (lambda (p) (let* ((var (car p)) (val (cadr p)) (prv (get-environment-variable var))) (set! res (cons (list var prv) res)) (if val (safe-setenv var (->string val)) (unset-environment-variable! var)))) lst) res) '())) ;; clear vars matching pattern, run proc, set vars back ;; if proc is a string run that string as a command with |
︙ | ︙ | |||
2705 2706 2707 2708 2709 2710 2711 | (if (string-match "^MT_.*" (car x)) #f x)) envvars)))) (define (common:with-orig-env proc) (let ((current-env (get-environment-variables))) | | | | | | | | 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 | (if (string-match "^MT_.*" (car x)) #f x)) envvars)))) (define (common:with-orig-env proc) (let ((current-env (get-environment-variables))) (for-each (lambda (x) (unset-environment-variable! (car x))) current-env) (for-each (lambda (x) (set-environment-variable! (car x) (cdr x))) *common:orig-env*) (let ((rv (cond ((string? proc)(system proc)) (proc (proc))))) (for-each (lambda (x) (unset-environment-variable! (car x))) *common:orig-env*) (for-each (lambda (x) (set-environment-variable! (car x) (cdr x))) current-env) rv))) (define (common:without-vars proc . var-patts) (let ((vars (make-hash-table))) (for-each (lambda (vardat) ;; each env var (for-each (lambda (var-patt) (if (string-match var-patt (car vardat)) (let ((var (car vardat)) (val (cdr vardat))) (hash-table-set! vars var val) (unset-environment-variable! var)))) var-patts)) (get-environment-variables)) (cond ((string? proc)(system proc)) (proc (proc))) (hash-table-for-each vars (lambda (var val) (set-environment-variable! var val))) vars)) ;;====================================================================== ;; C O L O R S ;;====================================================================== |
︙ | ︙ | |||
3060 3061 3062 3063 3064 3065 3066 | (for-each (lambda (pktsdir) ;; look at all (cond ((not (common:file-exists? pktsdir)) (debug:print 0 *default-log-port* "ERROR: packets directory " pktsdir " does not exist.")) ((not (directory? pktsdir)) (debug:print 0 *default-log-port* "ERROR: packets directory path " pktsdir " is not a directory.")) | | | 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 | (for-each (lambda (pktsdir) ;; look at all (cond ((not (common:file-exists? pktsdir)) (debug:print 0 *default-log-port* "ERROR: packets directory " pktsdir " does not exist.")) ((not (directory? pktsdir)) (debug:print 0 *default-log-port* "ERROR: packets directory path " pktsdir " is not a directory.")) ((not (file-readable? pktsdir)) (debug:print 0 *default-log-port* "ERROR: packets directory path " pktsdir " is not readable.")) (else (debug:print-info 0 *default-log-port* "Loading packets found in " pktsdir) (let ((pkts (glob (conc pktsdir "/*.pkt")))) (for-each (lambda (pkt) (let* ((uuid (cadr (string-match ".*/([0-9a-f]+).pkt" pkt))) |
︙ | ︙ | |||
3288 3289 3290 3291 3292 3293 3294 | (map (lambda (env-pair) (let* ((env-var (car env-pair)) (new-val (let ((tmp (cdr env-pair))) (if (list? tmp) (car tmp) tmp))) (current-val (get-environment-variable env-var)) (restore-thunk (cond | | | | | | 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 | (map (lambda (env-pair) (let* ((env-var (car env-pair)) (new-val (let ((tmp (cdr env-pair))) (if (list? tmp) (car tmp) tmp))) (current-val (get-environment-variable env-var)) (restore-thunk (cond ((not current-val) (lambda () (unset-environment-variable! env-var))) ((not (string? new-val)) #f) ((eq? current-val new-val) #f) (else (lambda () (set-environment-variable! env-var current-val)))))) ;;(when (not (string? new-val)) ;; (debug:print 0 *default-log-port* " PROBLEM: not a string: "new-val"\n from env-alist:\n"delta-env-alist) ;; (pp delta-env-alist) ;; (exit 1)) (cond ((not new-val) ;; modify env here (unset-environment-variable! env-var)) ((string? new-val) (set-environment-variable! env-var new-val))) restore-thunk)) delta-env-alist)))) (let ((rv (thunk))) (for-each (lambda (x) (x)) restore-thunks) ;; restore env to original state rv))) ;;====================================================================== |
︙ | ︙ |
Modified configfmod.scm from [c17041e6db] to [339b4e6bda].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit configfmod)) ;; (declare (uses commonmod)) (module configfmod * | | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | (declare (unit configfmod)) ;; (declare (uses commonmod)) (module configfmod * (import scheme (chicken base)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable regex) ;; (import commonmod) ;; (use (prefix ulex ulex:)) (include "common_records.scm") (define (configf:lookup cfgdat section var) (if (hash-table? cfgdat) |
︙ | ︙ |
Modified dashboard.scm from [759b70838d] to [19a89b709c].
︙ | ︙ | |||
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 | (declare (uses ulex.import)) (declare (uses cookie.import)) (declare (uses stml2.import)) (declare (uses ducttape-lib.import)) (declare (uses mtconfigf.import)) (declare (uses gutilsmod)) (declare (uses megamod)) (declare (uses commonmod)) (declare (uses rmtmod)) (declare (uses runsmod)) (declare (uses dbmod)) (declare (uses testsmod)) (declare (uses tasksmod)) (declare (uses dcommonmod)) (declare (uses tasksmod)) (import gutilsmod) (import megamod) (import commonmod) (import rmtmod) (import runsmod) (import dbmod) (import testsmod) (import tasksmod) | > > | 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 | (declare (uses ulex.import)) (declare (uses cookie.import)) (declare (uses stml2.import)) (declare (uses ducttape-lib.import)) (declare (uses mtconfigf.import)) (declare (uses gutilsmod)) (declare (uses servermod)) (declare (uses megamod)) (declare (uses commonmod)) (declare (uses rmtmod)) (declare (uses runsmod)) (declare (uses dbmod)) (declare (uses testsmod)) (declare (uses tasksmod)) (declare (uses dcommonmod)) (declare (uses tasksmod)) (import gutilsmod) (import servermod) (import megamod) (import commonmod) (import rmtmod) (import runsmod) (import dbmod) (import testsmod) (import tasksmod) |
︙ | ︙ | |||
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 | (iup:hbox (iup:button "Hide All" #:action (lambda (obj) (for-each (lambda (graph-cell) (let* ((graph-dat (hash-table-ref (dboard:tabdat-graph-cell-table tabdat) graph-cell))) (dboard:graph-dat-flag-set! graph-dat #f))) (hash-table-keys (dboard:tabdat-graph-cell-table tabdat))))))) )))) ;;====================================================================== ;; R U N ;;====================================================================== ;; ;; display and manage a single run at a time | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 | (iup:hbox (iup:button "Hide All" #:action (lambda (obj) (for-each (lambda (graph-cell) (let* ((graph-dat (hash-table-ref (dboard:tabdat-graph-cell-table tabdat) graph-cell))) (dboard:graph-dat-flag-set! graph-dat #f))) (hash-table-keys (dboard:tabdat-graph-cell-table tabdat))))))) )))) ;;====================================================================== ;; SYSTEM MONITOR - Track relevant Megatest processes ;;====================================================================== ;; ;; A gui for launching tests ;; (define (dashboard:sysmon commondat tabdat #!key (tab-num #f)) (let* ((drawing (vg:drawing-new)) (sysmon-tab-updater (lambda () (debug:catch-and-dump (lambda () (let ((tabdat (dboard:common-get-tabdat commondat tab-num: tab-num))) (if tabdat (let ((last-data-update (dboard:tabdat-last-data-update tabdat)) (now-time (current-seconds))) (dashboard:sysmon-canvas-updater commondat tabdat tab-num) ;; redraws canvas on user input (I think...) )))) "dashboard:sysmon-tab-updater"))) (key-listboxes #f) ;; (update-keyvals (lambda () (dboard:target-updater tabdat)))) (dboard:tabdat-drawing-set! tabdat drawing) (dboard:commondat-add-updater commondat sysmon-tab-updater tab-num: tab-num) (iup:vbox (let* ((cnv-obj (iup:canvas ;; #:size "250x250" ;; "500x400" #:expand "YES" #:scrollbar "YES" #:posx "0.5" #:posy "0.5" #:action (make-canvas-action (lambda (c xadj yadj) (debug:catch-and-dump (lambda () (if (not (dboard:tabdat-cnv tabdat)) (let ((cnv (dboard:tabdat-cnv tabdat))) (dboard:tabdat-cnv-set! tabdat c) (vg:drawing-cnv-set! (dboard:tabdat-drawing tabdat) (dboard:tabdat-cnv tabdat)))) (let ((drawing (dboard:tabdat-drawing tabdat)) (old-xadj (dboard:tabdat-xadj tabdat)) (old-yadj (dboard:tabdat-yadj tabdat))) (if (not (and (eq? xadj old-xadj)(eq? yadj old-yadj))) (begin ;; (print "xadj: " xadj " yadj: " yadj "changed: "(eq? xadj old-xadj) " " (eq? yadj old-yadj)) (dboard:tabdat-view-changed-set! tabdat #t) (dboard:tabdat-xadj-set! tabdat (* -2000 (- xadj 0.5))) (dboard:tabdat-yadj-set! tabdat (* 2000 (- yadj 0.5))) )))) "iup:canvas action"))) #:wheel-cb (lambda (obj step x y dir) ;; dir is 4 for up and 5 for down. I think. (debug:catch-and-dump (lambda () (let* ((drawing (dboard:tabdat-drawing tabdat)) (scalex (vg:drawing-scalex drawing))) (dboard:tabdat-view-changed-set! tabdat #t) ;; (print "step: " step " x: " x " y: " y " dir: " dir " scalex: " scalex) (vg:drawing-scalex-set! drawing (+ scalex (if (> step 0) (* scalex 0.02) (* scalex -0.02)))))) "wheel-cb")) ))) cnv-obj)))) ;; run times canvas updater ;; (define (dashboard:sysmon-canvas-updater commondat tabdat tab-num) (let ((cnv (dboard:tabdat-cnv tabdat)) (dwg (dboard:tabdat-drawing tabdat)) (mtx (dboard:tabdat-runs-mutex tabdat)) (vch (dboard:tabdat-view-changed tabdat))) (if (and cnv dwg vch) (begin (vg:drawing-xoff-set! dwg (dboard:tabdat-xadj tabdat)) (vg:drawing-yoff-set! dwg (dboard:tabdat-yadj tabdat)) (mutex-lock! mtx) (canvas-clear! cnv) (vg:draw dwg tabdat) (mutex-unlock! mtx) (dboard:tabdat-view-changed-set! tabdat #f))))) ;;====================================================================== ;; R U N ;;====================================================================== ;; ;; display and manage a single run at a time |
︙ | ︙ | |||
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 | (define (make-dashboard-buttons commondat) ;; runs-sum-dat new-view-dat) (let* ((stats-dat (dboard:tabdat-make-data)) (runs-dat (dboard:tabdat-make-data)) (onerun-dat (dboard:tabdat-make-data)) ;; name for run-summary structure (runcontrols-dat (dboard:tabdat-make-data)) (runtimes-dat (dboard:tabdat-make-data)) (nruns (dboard:tabdat-numruns runs-dat)) (ntests (dboard:tabdat-num-tests runs-dat)) (keynames (dboard:tabdat-dbkeys runs-dat)) (nkeys (length keynames)) (runsvec (make-vector nruns)) (header (make-vector nruns)) (lftcol (make-vector ntests)) | > | 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 | (define (make-dashboard-buttons commondat) ;; runs-sum-dat new-view-dat) (let* ((stats-dat (dboard:tabdat-make-data)) (runs-dat (dboard:tabdat-make-data)) (onerun-dat (dboard:tabdat-make-data)) ;; name for run-summary structure (runcontrols-dat (dboard:tabdat-make-data)) (runtimes-dat (dboard:tabdat-make-data)) (sysmon-dat (dboard:tabdat-make-data)) (nruns (dboard:tabdat-numruns runs-dat)) (ntests (dboard:tabdat-num-tests runs-dat)) (keynames (dboard:tabdat-dbkeys runs-dat)) (nkeys (length keynames)) (runsvec (make-vector nruns)) (header (make-vector nruns)) (lftcol (make-vector ntests)) |
︙ | ︙ | |||
2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 | (dashboard:summary commondat stats-dat tab-num: 0) runs-view (dashboard:runs-summary commondat onerun-dat tab-num: 2) ;; (dashboard:new-view db data new-view-dat tab-num: 3) (dashboard:run-controls commondat runcontrols-dat tab-num: 3) (dashboard:run-times commondat runtimes-dat tab-num: 4) ;; ;; (dashboard:runs-summary commondat onerun-dat tab-num: 4) additional-views ))) ;; (set! (iup:callback tabs tabchange-cb:) (lambda (a b c)(print "SWITCHED TO TAB: " a " " b " " c))) (iup:attribute-set! tabs "TABTITLE0" "Summary") (iup:attribute-set! tabs "TABTITLE1" "Runs") (iup:attribute-set! tabs "TABTITLE2" "Run Summary") (iup:attribute-set! tabs "TABTITLE3" "Run Control") (iup:attribute-set! tabs "TABTITLE4" "Run Times") ;; (iup:attribute-set! tabs "TABTITLE3" "New View") ;; (iup:attribute-set! tabs "TABTITLE4" "Run Control") ;; set the tab names for user added tabs (for-each (lambda (tab-info) (iup:attribute-set! tabs (conc "TABTITLE" (car tab-info)) (cdr tab-info))) additional-tabnames) (iup:attribute-set! tabs "BGCOLOR" "190 190 190") ;; make the iup tabs object available (for changing color for example) (dboard:commondat-hide-not-hide-tabs-set! commondat tabs) ;; now set up the tabdat lookup (dboard:common-set-tabdat! commondat 0 stats-dat) (dboard:common-set-tabdat! commondat 1 runs-dat) (dboard:common-set-tabdat! commondat 2 onerun-dat) (dboard:common-set-tabdat! commondat 3 runcontrols-dat) (dboard:common-set-tabdat! commondat 4 runtimes-dat) (iup:vbox tabs ;; controls )))) (vector keycol lftcol header runsvec))) | > > > | 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 | (dashboard:summary commondat stats-dat tab-num: 0) runs-view (dashboard:runs-summary commondat onerun-dat tab-num: 2) ;; (dashboard:new-view db data new-view-dat tab-num: 3) (dashboard:run-controls commondat runcontrols-dat tab-num: 3) (dashboard:run-times commondat runtimes-dat tab-num: 4) ;; ;; (dashboard:runs-summary commondat onerun-dat tab-num: 4) (dashboard:sysmon commondat sysmon-dat tab-num: 5) additional-views ))) ;; (set! (iup:callback tabs tabchange-cb:) (lambda (a b c)(print "SWITCHED TO TAB: " a " " b " " c))) (iup:attribute-set! tabs "TABTITLE0" "Summary") (iup:attribute-set! tabs "TABTITLE1" "Runs") (iup:attribute-set! tabs "TABTITLE2" "Run Summary") (iup:attribute-set! tabs "TABTITLE3" "Run Control") (iup:attribute-set! tabs "TABTITLE4" "Run Times") (iup:attribute-set! tabs "TABTITLE5" "Sysmon") ;; (iup:attribute-set! tabs "TABTITLE3" "New View") ;; (iup:attribute-set! tabs "TABTITLE4" "Run Control") ;; set the tab names for user added tabs (for-each (lambda (tab-info) (iup:attribute-set! tabs (conc "TABTITLE" (car tab-info)) (cdr tab-info))) additional-tabnames) (iup:attribute-set! tabs "BGCOLOR" "190 190 190") ;; make the iup tabs object available (for changing color for example) (dboard:commondat-hide-not-hide-tabs-set! commondat tabs) ;; now set up the tabdat lookup (dboard:common-set-tabdat! commondat 0 stats-dat) (dboard:common-set-tabdat! commondat 1 runs-dat) (dboard:common-set-tabdat! commondat 2 onerun-dat) (dboard:common-set-tabdat! commondat 3 runcontrols-dat) (dboard:common-set-tabdat! commondat 4 runtimes-dat) (dboard:common-set-tabdat! commondat 5 sysmon-dat) (iup:vbox tabs ;; controls )))) (vector keycol lftcol header runsvec))) |
︙ | ︙ |
Added dbi/dbi.egg version [ce14ed7e9e].
> > > > > | 1 2 3 4 5 | ((license "BSD") (category db) (dependencies autoload sql-null) (test-dependencies test) (components (extension dbi))) |
Added dbi/dbi.meta version [df5803e479].
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ;; -*- scheme -*- ( ; Your egg's license: (license "BSD") ; Pick one from the list of categories (see below) for your egg and enter it ; here. (category db) ; A list of eggs dbi depends on. If none, you can omit this declaration ; altogether. If you are making an egg for chicken 3 and you need to use ; procedures from the `files' unit, be sure to include the `files' egg in the ; `needs' section (chicken versions < 3.4.0 don't provide the `files' unit). ; `depends' is an alias to `needs'. (needs (autoload "3.0") sql-null) ; A list of eggs required for TESTING ONLY. See the `Tests' section. (test-depends test) (author "Matt Welland") (synopsis "An abstract database interface.")) |
Added dbi/dbi.release-info version [8881b5e958].
> > > > > > > | 1 2 3 4 5 6 7 | (repo fossil "http://www.kiatoa.com/cgi-bin/fossils/{egg-name}") (uri zip "http://www.kiatoa.com/cgi-bin/fossils/{egg-name}/zip/{egg-name}.zip?uuid={egg-release}") (release "0.5") (release "0.4") (release "0.3") (release "0.2") (release "0.1") |
Added dbi/dbi.scm version [0d4d10831e].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ;;; dbi: Minimal gasket to postgresql, sqlite3 and mysql ;;; ;; Copyright (C) 2007-2018 Matt Welland ;; Copyright (C) 2016 Peter Bex ;; Redistribution and use in source and binary forms, with or without ;; modification, is permitted. ;; ;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. ;; ONLY A LOWEST COMMON DEMOMINATOR IS SUPPORTED! ;; d = db handle ;; t = statement handle ;; s = statement ;; l = proc ;; p = params ;; ;; sqlite3 postgres dbi ;; prepare: (prepare d s) n/a prepare (sqlite3, pg) ;; for-each (for-each-row l d s . p) (query-for-each l s d) for-each-row ;; for-each (for-each-row l t . p) n/a NOT YET ;; exec (exec d s . p) (query-tuples s d) ;; exec (exec t . p) n/a ;; set to 'pg or 'sqlite3 ;; (define dbi:type 'sqlite3) ;; or 'pg ;; (dbi:open 'sqlite3 (list (cons 'dbname fullname))) ;;====================================================================== ;; D B I ;;====================================================================== (module dbi (open db-dbtype db-conn for-each-row get-one get-one-row get-rows exec close escape-string mk-db now database? with-transaction fold-row prepare map-row convert prepare-exec get-res ;; TODO: These don't really belong here. Also, the naming is not ;; consistent with the usual Scheme conventions. pgdatetime-get-year pgdatetime-get-month pgdatetime-get-day pgdatetime-get-hour pgdatetime-get-minute pgdatetime-get-second pgdatetime-get-microsecond pgdatetime-set-year! pgdatetime-set-month! pgdatetime-set-day! pgdatetime-set-hour! pgdatetime-set-minute! pgdatetime-set-second! pgdatetime-set-microsecond! lazy-bool) (import (chicken base) (chicken process) (chicken file) (chicken time) (chicken string) (chicken format) (chicken time posix) scheme srfi-1 srfi-13) (import (chicken condition) autoload sql-null) (define-record-type db (make-db dbtype dbconn) db? (dbtype db-dbtype db-dbtype-set!) (dbconn db-conn db-conn-set!)) (define (missing-egg type eggname) (lambda _ (error (printf "Cannot access ~A databases. Please install the ~S egg and try again." type eggname)))) ;; (define (sqlite3:statement? h) #f) ;; dummy - hope it gets clobbered if sqlite3 gets loaded ;; TODO: Make a convenience macro for this? (define sqlite3-missing (missing-egg 'sqlite3 "sqlite3")) (autoload sqlite3 (open-database sqlite3:open-database sqlite3-missing) (for-each-row sqlite3:for-each-row sqlite3-missing) (execute sqlite3:execute sqlite3-missing) (with-transaction sqlite3:with-transaction sqlite3-missing) (finalize! sqlite3:finalize! sqlite3-missing) (make-busy-timeout sqlite3:make-busy-timeout sqlite3-missing) (set-busy-handler! sqlite3:set-busy-handler! sqlite3-missing) (database? sqlite3:database? sqlite3-missing) (prepare sqlite3:prepare sqlite3-missing) (fold-row sqlite3:fold-row sqlite3-missing) (map-row sqlite3:map-row sqlite3-missing) (statement? sqlite3:statement? sqlite3-missing)) (define sql-de-lite-missing (missing-egg 'sql-de-lite "sql-de-lite")) (autoload sql-de-lite (open-database sql:open-database sql-de-lite-missing) (close-database sql:close-database sql-de-lite-missing) (for-each-row sql:for-each-row sql-de-lite-missing) (fold-rows sql:fold-rows sql-de-lite-missing) (exec sql:exec sql-de-lite-missing) (fetch-value sql:fetch-value sql-de-lite-missing) (with-transaction sql:with-transaction sql-de-lite-missing) (finalize! sql:finalize! sql-de-lite-missing) (make-busy-timeout sql:make-busy-timeout sql-de-lite-missing) (set-busy-handler! sql:set-busy-handler! sql-de-lite-missing) (query sql:query sql-de-lite-missing) (sql sql:sql sql-de-lite-missing)) (define pg-missing (missing-egg 'pg "postgresql")) (autoload postgresql (connect pg:connect pg-missing) (row-for-each pg:row-for-each pg-missing) (with-transaction pg:with-transaction pg-missing) (query pg:query pg-missing) ;;(escape-string pg:escape-string pg-missing) (disconnect pg:disconnect pg-missing) (connection? pg:connection? pg-missing) (row-fold pg:row-fold pg-missing) (row-map pg:row-map pg-missing) (affected-rows pg:affected-rows pg-missing) (result? pg:result? pg-missing)) (define mysql-missing (missing-egg 'mysql "mysql-client")) (autoload mysql-client (make-mysql-connection mysql:make-connection mysql-missing) (mysql-null? mysql:mysql-null? mysql-missing)) (define (open dbtype dbinit) (make-db dbtype (case dbtype ((sqlite3) (sqlite3:open-database (alist-ref 'dbname dbinit))) ((sql-de-lite) (sql:open-database (alist-ref 'dbname dbinit))) ((pg) (pg:connect dbinit)) ((mysql) (mysql:make-connection (alist-ref 'host dbinit) (alist-ref 'user dbinit) (alist-ref 'password dbinit) (alist-ref 'dbname dbinit) port: (alist-ref 'port dbinit))) (else (error "Unsupported dbtype " dbtype))))) (define (convert dbh) (cond ((database? dbh) dbh) ((sqlite3:database? dbh) (make-db 'sqlite3 dbh)) ((pg:connection? dbh) (make-db 'pg dbh)) ((not mysql:mysql-null?) (make-db 'mysql dbh)) (else (error "Unsupported database handle " dbh)))) (define (for-each-row proc dbh stmt . params) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sqlite3) (sqlite3:for-each-row (lambda (first . remaining) (let ((tuple (list->vector (cons first remaining)))) (proc tuple))) conn (apply sqlparam stmt params))) ((sql-de-lite)(apply sql:query (sql:for-each-row (lambda (row) (proc (list->vector row)))) (sql:sql conn stmt) params)) ((pg) (pg:row-for-each (lambda (tuple) (proc (list->vector tuple))) (pg:query conn (apply sqlparam stmt params)))) ((mysql) (let* ((replaced-sql (apply sqlparam stmt params)) (fetcher (conn replaced-sql))) (fetcher (lambda (tuple) (proc (list->vector tuple)))))) (else (error "Unsupported dbtype " dbtype))))) ;; common idiom is to seek a single value, #f if no match ;; NOTE: wish to return first found. Do the set only if not set (define (get-one dbh stmt . params) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sql-de-lite) (apply sql:query sql:fetch-value (sql:sql conn stmt) params)) (else (let ((res #f)) (apply for-each-row (lambda (row) (if (not res) (set! res (vector-ref row 0)))) dbh stmt params) res))))) ;; common idiom is to seek a single value, #f if no match ;; NOTE: wish to return first found. Do the set only if not set (define (get-one-row dbh stmt . params) (let ((res #f)) (apply for-each-row (lambda (row) (if (not res) (set! res row))) dbh stmt params) res)) ;; common idiom is to seek a list of rows, '() if no match (define (get-rows dbh stmt . params) (let ((res '())) (apply for-each-row (lambda (row) (set! res (cons row res))) dbh stmt params) (reverse res))) (define (exec dbh stmt . params) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh)) (junk #f)) (case dbtype ((sqlite3) (apply sqlite3:execute conn stmt params)) ((sql-de-lite)(apply sql:exec (sql:sql conn stmt) params)) ((pg) (pg:query conn (apply sqlparam stmt params))) ((mysql) (conn (apply sqlparam stmt params))) (else (error "Unsupported dbtype " dbtype))))) (define (with-transaction dbh proc) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sql-de-lite)(sql:with-transaction conn proc)) ((sqlite3) (sqlite3:with-transaction conn (lambda () (proc)))) ((pg) (pg:with-transaction conn (lambda () (proc)))) ((mysql) (conn "START TRANSACTION") (conn proc) (conn "COMMIT")) (else (error "Unsupported dbtype " dbtype))))) (define (prepare dbh stmt) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sql-de-lite) dbh) ;; nop? ((sqlite3) (sqlite3:prepare conn stmt)) ((pg) (exec dbh stmt) (cons (cons dbh (cadr (string-split stmt))) '())) ((mysql) (print "WIP")) (else (error "Unsupported dbtype" dbtype))))) (define (fold-row proc init dbh stmt . params) ;; expecting (proc init/prev res) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sql-de-lite) (apply sql:query (sql:fold-rows proc init) (sql:sql conn stmt) params)) ((sqlite3) (let ((newproc (lambda (prev . rem) (proc rem prev)))) (apply sqlite3:fold-row newproc init conn stmt params))) ;; (fold-row PROC INIT DATABASE SQL . PARAMETERS) ((pg) (pg:row-fold proc init (exec dbh stmt params))) ((mysql) (fold proc '() (get-rows dbh stmt))) (else (error "Unsupported dbtype" dbtype))))) (define (map-row proc init dbh stmt . params) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sqlite3) (apply sqlite3:map-row proc conn stmt params)) ((pg) (pg:row-map proc (exec dbh stmt params))) ((mysql) (map proc (get-rows dbh stmt))) (else (error "Unsupported dbtype" dbtype))))) (define (prepare-exec stmth . params) (if (sqlite3:statement? stmth) (apply sqlite3:execute stmth params)) (if (pair? stmth) (let* ((dbh (car (car stmth))) (dbtype (db-dbtype dbh)) (conn (db-conn dbh)) (stmth-name (string->symbol (cdr (car stmth))))) (apply pg:query conn stmth-name params)))) (define (get-res handle option) (if (pg:result? handle) (case option ((affected-rows) (pg:affected-rows handle))))) (define (close dbh) (cond ((database? dbh) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sql-de-lite) (sql:close-database conn)) ((sqlite3) (sqlite3:finalize! conn)) ((pg) (pg:disconnect conn)) ((mysql) (void)) ; The mysql-client egg doesn't support closing... (else (error "Unsupported dbtype " dbtype))))) ((pair? dbh) (let ((stmt (conc "DEALLOCATE " (cdr (car dbh)) ";"))) (exec (car (car dbh)) stmt))) ((sqlite3:statement? dbh) ;; do this last so that *IF* it is a proper dbh it will be closed above and the sqlite3:statement? will not be called (sqlite3:finalize! dbh)) )) ;;====================================================================== ;; D B M I S C ;;====================================================================== (define (escape-string str) (let ((parts (split-string str "'"))) (string-intersperse parts "''"))) ;; (pg:escape-string val))) ;; convert values to appropriate strings ;; (define (sqlparam-val->string val) (cond ((list? val)(string-intersperse (map conc val) ",")) ;; (a b c) => a,b,c ((string? val)(string-append "'" (escape-string val) "'")) ((sql-null? val) "NULL") ((number? val)(number->string val)) ((symbol? val)(sqlparam-val->string (symbol->string val))) ((boolean? val) (if val "TRUE" "FALSE")) ;; should this be "TRUE" or 1? ;; should this be "FALSE" or 0 or NULL? ((vector? val) ;; 'tis a date NB// 5/29/2011 - this is badly borked BUGGY! (sqlparam-val->string (time->string (seconds->local-time (current-seconds))))) (else (error "sqlparam: unknown type for value: " val) ""))) ;; (sqlparam "INSERT INTO foo(name,age) VALUES(?,?);" "bob" 20) ;; NB// 1. values only!! ;; 2. terminating semicolon required (used as part of logic) ;; ;; a=? 1 (number) => a=1 ;; a=? 1 (string) => a='1' ;; a=? #f => a=FALSE ;; a=? a (symbol) => a=a ;; (define (sqlparam query . args) (let* ((query-parts (string-split query "?")) (num-parts (length query-parts)) (num-args (length args))) (if (not (= (+ num-args 1) num-parts)) (error "ERROR, sqlparam: wrong number of arguments or missing semicolon, " num-args " for query " query) (if (= num-args 0) query (let loop ((section (car query-parts)) (tail (cdr query-parts)) (result "") (arg (car args)) (argtail (cdr args))) (let* ((valstr (sqlparam-val->string arg)) (newresult (string-append result section valstr))) (if (null? argtail) ;; we are done (string-append newresult (car tail)) (loop (car tail) (cdr tail) newresult (car argtail) (cdr argtail))))))))) ;; a poorly written but non-broken split-string ;; (define (split-string strng delim) (if (eq? (string-length strng) 0) (list strng) (let loop ((head (make-string 1 (car (string->list strng)))) (tail (cdr (string->list strng))) (dest '()) (temp "")) (cond ((equal? head delim) (set! dest (append dest (list temp))) (set! temp "")) ((null? head) (set! dest (append dest (list temp)))) (else (set! temp (string-append temp head)))) ;; end if (cond ((null? tail) (set! dest (append dest (list temp))) dest) (else (loop (make-string 1 (car tail)) (cdr tail) dest temp)))))) (define (database? dbh) (if (db? dbh) (let ((dbtype (db-dbtype dbh)) (conn (db-conn dbh))) (case dbtype ((sqlite3) (if (sqlite3:database? conn) #t #f)) ((sql-de-lite) #t) ;; don't know how to test for database ((pg) (if (pg:connection? conn) #t #f)) ((mysql) #t) (else (error "Unsupported dbtype " dbtype)))) #f)) ;;====================================================================== ;; Convienence routines ;;====================================================================== ;; make a db from a list of statements or open it if it already exists (define (mk-db path file stmts) (let* ((fname (conc path "/" file)) (dbexists (file-exists? fname)) (dbh (if dbexists (open 'sqlite3 (list (cons 'dbname fname))) #f))) (if (not dbexists) (begin (system (conc "mkdir -p " path)) ;; create the path (set! dbh (open 'sqlite3 (list (cons 'dbname fname)))) (for-each (lambda (sqry) (exec dbh sqry)) stmts))) (sqlite3:set-busy-handler! (db-conn dbh) (sqlite3:make-busy-timeout 1000000)) dbh)) (define (now dbh) (let ((dbtype (db-dbtype dbh))) (case dbtype ((sqlite3) "datetime('now')") ;; Standard SQL (else "now()")))) (define (make-pgdatetime)(make-vector 7)) (define (pgdatetime-get-year vec) (vector-ref vec 0)) (define (pgdatetime-get-month vec) (vector-ref vec 1)) (define (pgdatetime-get-day vec) (vector-ref vec 2)) (define (pgdatetime-get-hour vec) (vector-ref vec 3)) (define (pgdatetime-get-minute vec) (vector-ref vec 4)) (define (pgdatetime-get-second vec) (vector-ref vec 5)) (define (pgdatetime-get-microsecond vec) (vector-ref vec 6)) (define (pgdatetime-set-year! vec val)(vector-set! vec 0 val)) (define (pgdatetime-set-month! vec val)(vector-set! vec 1 val)) (define (pgdatetime-set-day! vec val)(vector-set! vec 2 val)) (define (pgdatetime-set-hour! vec val)(vector-set! vec 3 val)) (define (pgdatetime-set-minute! vec val)(vector-set! vec 4 val)) (define (pgdatetime-set-second! vec val)(vector-set! vec 5 val)) (define (pgdatetime-set-microsecond! vec val)(vector-set! vec 6 val)) ;; takes postgres date or timestamp (define (pg-date->string pgdate) (conc (pgdatetime-get-month pgdate) "/" (pgdatetime-get-day pgdate) "/" (pgdatetime-get-year pgdate))) ;; takes postgres date or timestamp (define (pg-datetime->string pgdate) (conc (pgdatetime-get-month pgdate) "/" (pgdatetime-get-day pgdate) "/" (pgdatetime-get-year pgdate) " " (pgdatetime-get-hour pgdate) ":" (pgdatetime-get-minute pgdate)`)) ;; map to 0 or 1 from a range of values ;; #f => 0 ;; #t => 1 ;; "0" => 0 ;; "1" => 1 ;; FALSE => 0 ;; TRUE => 1 ;; anything else => 1 (define (lazy-bool val) (case val ((#f) 0) ((#t) 1) ((0) 0) ((1) 1) (else (cond ((string? val) (let ((nval (string->number val))) (if nval (lazy-bool nval) (cond ((string=? val "FALSE") 0) ((string=? val "TRUE") 1) (else 1))))) ((symbol? val) (lazy-bool (symbol->string val))) (else 1))))) ) |
Added dbi/dbi.setup version [e37bd8290c].
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | ;; Copyright 2007-2018, Matthew Welland. ;; ;; This program is made available under the GNU GPL version 2.0 or ;; greater. See the accompanying file COPYING for details. ;; ;; This program is distributed WITHOUT ANY WARRANTY; without even the ;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ;; PURPOSE. ;;;; dbi.setup (standard-extension 'dbi "0.5") |
Added dbi/example.scm version [fa8cc725eb].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ;;; dbi: Minimal gasket to postgresql, sqlite3 and mysql ;;; ;; Copyright (C) 2007-2016 Matt Welland ;; Redistribution and use in source and binary forms, with or without ;; modification, is permitted. ;; ;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. ;; WARNING: This example is basically useless, I'll rewrite it one of these days .... (require-library margs dbi) (define help "help me") (define remargs (args:get-args (argv) (list "-inf") (list "-h") args:arg-hash 0)) ;; define DBPATH in setup.scm (include "setup.scm") (define (ftf:mk-db) (let* ((fname (conc DBPATH "/ftfplan.db")) (dbexists (file-exists? fname)) (dbh (if dbexists (dbi:open 'sqlite3 (list (cons 'dbname fname))) #f))) (if (not dbexists) (begin ;; (print "fullname: " fullname) (system (conc "mkdir -p " DBPATH)) ;; create the path (set! dbh (dbi:open 'sqlite3 (list (cons 'dbname fname)))) (for-each (lambda (sqry) ;; (print sqry) (dbi:exec dbh sqry)) ;; types: 0 text, 1 jpg, 2 png, 3 svg, 4 spreadsheet, 5 audio, 6 video :: better specs to come... (list "CREATE TABLE pics (id INTEGER PRIMARY KEY,name TEXT,dat_id INTEGER,thumb_dat_id INTEGER,created_on INTEGER,owner_id INTEGER);" "CREATE TABLE dats (id INTEGER PRIMARY KEY,md5sum TEXT,dat BLOB,type INTEGER);" ;; on every modification a new tiddlers entry is created. When displaying the tiddlers do: ;; select where created_on < somedate order by created_on desc limit 1 "CREATE TABLE tiddlers (id INTEGER PRIMARY KEY,wiki_id INTEGER,name TEXT,rev INTEGER,dat_id INTEGER,created_on INTEGER,owner_id INTEGER);" ;; rev and tag only utilized when user sets a tag. All results from a select as above for tiddlers are set to the tag "CREATE TABLE revs (id INTEGER PRIMARY KEY,tag TEXT);" ;; wikis is here for when postgresql support is added or if a sub wiki is created. "CREATE TABLE wikis (id INTEGER PRIMARY KEY,key_name TEXT,title TEXT,created_on INTEGER);")) )) dbh)) (define db (ftf:mk-db)) (dbi:exec db "INSERT INTO pics (name,owner_id) VALUES ('bob',1);") (dbi:for-each-row (lambda (row)(print "Name: " (vector-ref row 0) ", owner_id: " (vector-ref row 1))) db "SELECT name,owner_id FROM pics;") |
Modified dbmod.scm from [6d54c04c04] to [6176c7d738].
︙ | ︙ | |||
28 29 30 31 32 33 34 | (declare (uses tasksmod)) ;; (declare (uses servermod)) ;; (declare (uses testsmod)) (module dbmod * | | | | > > > > > | | | 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 | (declare (uses tasksmod)) ;; (declare (uses servermod)) ;; (declare (uses testsmod)) (module dbmod * (import scheme (chicken base) ) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable stack regex srfi-13 stack s11n (prefix base64 base64:) (chicken process-context posix) (chicken process-context) (chicken process) (chicken sort) (chicken file posix) (chicken time) (chicken time posix) (chicken pretty-print) (chicken format) (chicken random) (chicken pathname) system-information z3 ;;csv csv-xml directory-utils call-with-environment-variables) (import commonmod) (import keysmod) (import (chicken file) (chicken condition) (chicken string)) (import tasksmod) (import odsmod) ;; (import testsmod) (import (prefix mtargs args:)) (import (prefix mtconfigf configf:)) ;; (import servermod) |
︙ | ︙ | |||
121 122 123 124 125 126 127 | tconf (let ((test-dirs (tests:get-tests-search-path *configdat*))) (let loop ((hed (car test-dirs)) (tal (cdr test-dirs))) ;; Setting MT_LINKTREE here is almost certainly unnecessary. (let ((tconfig-file (conc hed "/" test-name "/testconfig"))) (if (and (common:file-exists? tconfig-file) | | | | | | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | tconf (let ((test-dirs (tests:get-tests-search-path *configdat*))) (let loop ((hed (car test-dirs)) (tal (cdr test-dirs))) ;; Setting MT_LINKTREE here is almost certainly unnecessary. (let ((tconfig-file (conc hed "/" test-name "/testconfig"))) (if (and (common:file-exists? tconfig-file) (file-readable? tconfig-file)) (let ((link-tree-path (common:get-linktree)) ;; (configf:lookup *configdat* "setup" "linktree")) (old-link-tree (get-environment-variable "MT_LINKTREE"))) (if link-tree-path (set-environment-variable! "MT_LINKTREE" link-tree-path)) (let ((newtcfg (configf:read-config tconfig-file #f #f))) ;; NOTE: Does NOT run [system ...] (hash-table-set! *testconfigs* test-name newtcfg) (if old-link-tree (set-environment-variable! "MT_LINKTREE" old-link-tree) (unset-environment-variable! "MT_LINKTREE")) newtcfg)) (if (null? tal) (begin (debug:print-error 0 *default-log-port* "No readable testconfig found for " test-name) #f) (loop (car tal)(cdr tal)))))))))) |
︙ | ︙ | |||
458 459 460 461 462 463 464 | ;; RA => Returns a db handler; sets the lock if opened in writable mode ;; ;; (define *db-open-mutex* (make-mutex)) (define (db:lock-create-open fname initproc) (let* ((parent-dir (or (pathname-directory fname)(current-directory))) ;; no parent? go local (raw-fname (pathname-file fname)) | | | | 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 | ;; RA => Returns a db handler; sets the lock if opened in writable mode ;; ;; (define *db-open-mutex* (make-mutex)) (define (db:lock-create-open fname initproc) (let* ((parent-dir (or (pathname-directory fname)(current-directory))) ;; no parent? go local (raw-fname (pathname-file fname)) (dir-writable (file-writable? parent-dir)) (file-exists (common:file-exists? fname)) (file-write (if file-exists (file-writable? fname) dir-writable ))) ;; (mutex-lock! *db-open-mutex*) ;; tried this mutex, not clear it helped. (if file-write ;; dir-writable (condition-case (let* ((lockfname (conc fname ".lock")) (readyfname (conc parent-dir "/.ready-" raw-fname)) (readyexists (common:file-exists? readyfname))) |
︙ | ︙ | |||
544 545 546 547 548 549 550 | (mtdbmodtime (if mtdbexists (common:lazy-sqlite-db-modification-time (conc *toppath* "/megatest.db")) #f)) (tmpdbmodtime (if dbfexists (common:lazy-sqlite-db-modification-time tmpdbfname) #f)) (mtdb (db:open-megatest-db)) (mtdbpath (db:dbdat-get-path mtdb)) (tmpdb (db:open-megatest-db path: dbpath)) ;; lock-create-open dbpath db:initialize-main-db)) (refndb (db:open-megatest-db path: dbpath name: "megatest_ref.db")) | | | 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | (mtdbmodtime (if mtdbexists (common:lazy-sqlite-db-modification-time (conc *toppath* "/megatest.db")) #f)) (tmpdbmodtime (if dbfexists (common:lazy-sqlite-db-modification-time tmpdbfname) #f)) (mtdb (db:open-megatest-db)) (mtdbpath (db:dbdat-get-path mtdb)) (tmpdb (db:open-megatest-db path: dbpath)) ;; lock-create-open dbpath db:initialize-main-db)) (refndb (db:open-megatest-db path: dbpath name: "megatest_ref.db")) (write-access (file-writable? mtdbpath)) ;(mtdbmodtime (if mtdbexists (common:lazy-sqlite-db-modification-time mtdbpath) #f)) ; moving this before db:open-megatest-db is called. if wal mode is on -WAL and -shm file get created with causing the tmpdbmodtime timestamp always greater than mtdbmodtime ;(tmpdbmodtime (if dbfexists (common:lazy-sqlite-db-modification-time tmpdbfname) #f)) ;if wal mode is on -WAL and -shm file get created when db:open-megatest-db is called. modtimedelta will always be < 10 so db in tmp not get synced ;(tmpdbmodtime (if dbfexists (db:get-last-update-time (car tmpdb)) #f)) ;(fmt (file-modification-time tmpdbfname)) (modtimedelta (and mtdbmodtime tmpdbmodtime (- mtdbmodtime tmpdbmodtime)))) |
︙ | ︙ | |||
640 641 642 643 644 645 646 | (dbpath (conc dbdir "/" (or name "megatest.db"))) (dbexists (common:file-exists? dbpath)) (db (db:lock-create-open dbpath (lambda (db) (db:initialize-main-db db) ;;(db:initialize-run-id-db db) ))) | | | 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 | (dbpath (conc dbdir "/" (or name "megatest.db"))) (dbexists (common:file-exists? dbpath)) (db (db:lock-create-open dbpath (lambda (db) (db:initialize-main-db db) ;;(db:initialize-run-id-db db) ))) (write-access (file-writable? dbpath))) (debug:print-info 13 *default-log-port* "db:open-megatest-db "dbpath) (if (and dbexists (not write-access)) (set! *db-write-access* #f)) (cons db dbpath))) ;; sync run to disk if touched ;; |
︙ | ︙ | |||
826 827 828 829 830 831 832 | ;; (define (db:repair-db dbdat #!key (numtries 1)) (let* ((dbpath (db:dbdat-get-path dbdat)) (dbdir (pathname-directory dbpath)) (fname (pathname-strip-directory dbpath))) (debug:print-info 0 *default-log-port* "Checking db " dbpath " for errors.") (cond | | | 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 | ;; (define (db:repair-db dbdat #!key (numtries 1)) (let* ((dbpath (db:dbdat-get-path dbdat)) (dbdir (pathname-directory dbpath)) (fname (pathname-strip-directory dbpath))) (debug:print-info 0 *default-log-port* "Checking db " dbpath " for errors.") (cond ((not (file-writable? dbdir)) (debug:print 0 *default-log-port* "WARNING: can't write to " dbdir ", can't fix " fname) #f) ;; handle special cases, megatest.db and monitor.db ;; ;; NOPE: apply this same approach to all db files ;; |
︙ | ︙ | |||
913 914 915 916 917 918 919 | ((not (sqlite3:database? (db:dbdat-get-db fromdb))) (debug:print-error 0 *default-log-port* "db:sync-tables called with fromdb not a database " fromdb) -3) ((not (sqlite3:database? (db:dbdat-get-db todb))) (debug:print-error 0 *default-log-port* "db:sync-tables called with todb not a database " todb) -4) | | | | 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 | ((not (sqlite3:database? (db:dbdat-get-db fromdb))) (debug:print-error 0 *default-log-port* "db:sync-tables called with fromdb not a database " fromdb) -3) ((not (sqlite3:database? (db:dbdat-get-db todb))) (debug:print-error 0 *default-log-port* "db:sync-tables called with todb not a database " todb) -4) ((not (file-writable? (db:dbdat-get-path todb))) (debug:print-error 0 *default-log-port* "db:sync-tables called with todb not a read-only database " todb) -5) ((not (null? (let ((readonly-slave-dbs (filter (lambda (dbdat) (not (file-writable? (db:dbdat-get-path todb)))) slave-dbs))) (for-each (lambda (bad-dbdat) (debug:print-error 0 *default-log-port* "db:sync-tables called with todb not a read-only database " bad-dbdat)) readonly-slave-dbs) readonly-slave-dbs))) -6) |
︙ | ︙ | |||
1264 1265 1266 1267 1268 1269 1270 | (debug:print-info 11 *default-log-port* "open-run-close-no-exception-handling END" ) res) #f)) #;(define (open-run-close-exception-handling proc idb . params) (handle-exceptions exn | | | 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 | (debug:print-info 11 *default-log-port* "open-run-close-no-exception-handling END" ) res) #f)) #;(define (open-run-close-exception-handling proc idb . params) (handle-exceptions exn (let ((sleep-time (pseudo-random-integer 30)) (err-status ((condition-property-accessor 'sqlite3 'status #f) exn))) (case err-status ((busy) (thread-sleep! sleep-time)) (else (debug:print 0 *default-log-port* "EXCEPTION: database probably overloaded or unreadable.") (debug:print 0 *default-log-port* " message: " ((condition-property-accessor 'exn 'message) exn)) |
︙ | ︙ | |||
3630 3631 3632 3633 3634 3635 3636 | (define (tdb:get-prev-tol-for-test tdb test-id category variable) ;; Finish me? (values #f #f #f)) | | | 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 | (define (tdb:get-prev-tol-for-test tdb test-id category variable) ;; Finish me? (values #f #f #f)) #;(define (db:csv->test-data dbstruct run-id test-id csvdata) (debug:print 4 *default-log-port* "test-id " test-id ", csvdata: " csvdata) (db:with-db dbstruct #f #f (lambda (db) (let* ((csvlist (csv->list (make-csv-reader (open-input-string csvdata) '((strip-leading-whitespace? #t) |
︙ | ︙ | |||
4689 4690 4691 4692 4693 4694 4695 | (let* ((keysstr (string-intersperse (map car keypatt-alist) ",")) (keyqry (string-intersperse (map (lambda (p)(conc (car p) " LIKE ? ")) keypatt-alist) " AND ")) (numkeys (length keypatt-alist)) (test-ids '()) (dbdat (db:get-db dbstruct)) (db (db:dbdat-get-db dbdat)) (windows (and pathmod (substring-index "\\" pathmod))) | | | 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 | (let* ((keysstr (string-intersperse (map car keypatt-alist) ",")) (keyqry (string-intersperse (map (lambda (p)(conc (car p) " LIKE ? ")) keypatt-alist) " AND ")) (numkeys (length keypatt-alist)) (test-ids '()) (dbdat (db:get-db dbstruct)) (db (db:dbdat-get-db dbdat)) (windows (and pathmod (substring-index "\\" pathmod))) (tempdir (conc "/tmp/" (current-user-name) "/" runspatt "_" (pseudo-random-integer 10000) "_" (current-process-id))) (runsheader (append (list "Run Id" "Runname") ; 0 1 (map car keypatt-alist) ; + N = length keypatt-alist (list "Testname" ; 2 "Item Path" ; 3 "Description" ; 4 "State" ; 5 "Status" ; 6 |
︙ | ︙ | |||
4823 4824 4825 4826 4827 4828 4829 | test-name " " item-path " " ;; has / prepended to deal with toplevel tests actual-state " " actual-status " " event-time )) (prev-nbfake-log (get-environment-variable "NBFAKE_LOG"))) | | | | | | | 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 | test-name " " item-path " " ;; has / prepended to deal with toplevel tests actual-state " " actual-status " " event-time )) (prev-nbfake-log (get-environment-variable "NBFAKE_LOG"))) (set-environment-variable! "NBFAKE_LOG" (conc (cond ((and (directory-exists? test-rundir) (file-writable? test-rundir)) test-rundir) ((and (directory-exists? *toppath*) (file-writable? *toppath*)) *toppath*) (else (conc "/tmp/" (current-user-name)))) "/" logname)) (debug:print-info 0 *default-log-port* "TRIGGERED on " trigger ", running command " fullcmd " output at " (get-environment-variable "NBFAKE_LOG")) ;; (call-with-environment-variables ;; `(("NBFAKE_LOG" . ,(conc test-rundir "/" logname))) ;; (lambda () (process-run fullcmd) (if prev-nbfake-log (set-environment-variable! "NBFAKE_LOG" prev-nbfake-log) (unset-environment-variable! "NBFAKE_LOG")) )) ;; )) (define (mt:process-triggers dbstruct run-id test-id newstate newstatus) (if test-id (let* ((test-dat (db:get-test-info-by-id dbstruct run-id test-id))) (if test-dat (let* ((test-rundir (db:test-get-rundir test-dat)) ;; ) ;; ) |
︙ | ︙ |
Modified dcommonmod.scm from [1349be5913] to [df0994a0f9].
︙ | ︙ | |||
30 31 32 33 34 35 36 | (declare (uses rmtmod)) (declare (uses dbmod)) (declare (uses servermod)) (module dcommonmod * | | | | | | | | | > | | | < | | | | 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 | (declare (uses rmtmod)) (declare (uses dbmod)) (declare (uses servermod)) (module dcommonmod * (import scheme chicken.bitwise chicken.pathname chicken.process-context.posix chicken.condition chicken.sort chicken.process chicken.pretty-print chicken.base chicken.string chicken.time chicken.file.posix chicken.process-context) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 chicken.format chicken.port srfi-1 matchable (prefix iup iup:) canvas-draw ;; blindly copied from megamod (prefix base64 base64:) (prefix dbi dbi:) ;; (prefix nanomsg nmsg:) (prefix sqlite3 sqlite3:) call-with-environment-variables ;;csv ;;csv-xml ;;data-structures directory-utils dot-locking ;;extras chicken.file chicken.random fmt chicken.format hostinfo http-client intarweb chicken.irregex matchable md5 message-digest pathname-expand pkts chicken.port ;; queue regex regex-case s11n sparse-vectors spiffy spiffy-directory-listing spiffy-request-vars sql-de-lite srfi-1 srfi-4 srfi-13 srfi-18 srfi-69 stack stml2 ;;tcp typed-records ;;udp uri-common z3 ) (import (prefix mtconfigf configf:)) (import gutilsmod) (import commonmod) (import servermod) (import testsmod) (import megamod) (import subrunmod) (import runsmod) (import rmtmod) (import dbmod) (import canvas-draw) (import canvas-draw-iup) (import (prefix iup iup:)) (import (prefix mtargs args:)) (define *tim* (iup:timer)) ;; (use (prefix ulex ulex:)) (include "common_records.scm") |
︙ | ︙ |
Modified docs/code/Makefile from [f10688b15f] to [8a3a5a4275].
1 2 3 | module-hierarchy.pdf : module-hierarchy.dot dot -Tpdf module-hierarchy.dot -o module-hierarchy.pdf | > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | all : module-hierarchy.pdf deps.data : ../../*scm cd ../..;csi -bq utils/deps.scm > docs/code/deps.data module-hierarchy.dot : preamble.dot deps.data postamble.dot cat preamble.dot deps.data postamble.dot > module-hierarchy.dot module-hierarchy.pdf : module-hierarchy.dot dot -Tpdf module-hierarchy.dot -o module-hierarchy.pdf |
Modified docs/code/module-hierarchy.dot from [553a71b254] to [e1309fa90e].
︙ | ︙ | |||
21 22 23 24 25 26 27 | node [shape=box,style=filled,fontname="clear",fontsize="10"]; subgraph cluster_megatest { label="megatest"; rmtmod [label="rmt mod"]; | < < | > | | | > > > > > | | > | | | | > | | > > > | | | | | > | > > | > | > | > | > > | > | > | > | > > > > > | | > > > > > | > > > > > | > > > | > > > | < | < | < < | < < < < < < < < < < < < < < < < < < < < < < | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | node [shape=box,style=filled,fontname="clear",fontsize="10"]; subgraph cluster_megatest { label="megatest"; rmtmod [label="rmt mod"]; // template-mod.scm "sqlite3" -> "template-mod"; "commonmod" -> "template-mod"; // http-transportmod.scm "commonmod" -> "http-transportmod"; "stml2" -> "http-transportmod"; "apimod" -> "http-transportmod"; "dbmod" -> "http-transportmod"; "testsmod" -> "http-transportmod"; "mtargs" -> "http-transportmod"; "mtconfigf" -> "http-transportmod"; // apimod.scm "sqlite3" -> "apimod"; "commonmod" -> "apimod"; "dbmod" -> "apimod"; "servermod" -> "apimod"; // launchmod.scm "sqlite3" -> "launchmod"; "commonmod" -> "launchmod"; // keysmod.scm "sqlite3" -> "keysmod"; "srfi-13" -> "keysmod"; // testsmod.scm "sqlite3" -> "testsmod"; "commonmod" -> "testsmod"; "servermod" -> "testsmod"; "itemsmod" -> "testsmod"; "dbmod" -> "testsmod"; "mtconfigf" -> "testsmod"; "mtargs" -> "testsmod"; // vgmod.scm "sqlite3" -> "vgmod"; // clientmod.scm "sqlite3" -> "clientmod"; "commonmod" -> "clientmod"; // megamod.scm "mtconfigf" -> "megamod"; "spiffy" -> "megamod"; "stml2" -> "megamod"; "mtargs" -> "megamod"; "commonmod" -> "megamod"; "keysmod" -> "megamod"; "pgdbmod" -> "megamod"; "tasksmod" -> "megamod"; "dbmod" -> "megamod"; "apimod" -> "megamod"; "ducttape-lib" -> "megamod"; "itemsmod" -> "megamod"; "pkts" -> "megamod"; "rmtmod" -> "megamod"; "mtmod" -> "megamod"; "testsmod" -> "megamod"; "servermod" -> "megamod"; "subrunmod" -> "megamod"; "itemsmod" -> "megamod"; "runsmod" -> "megamod"; // subrunmod.scm "sqlite3" -> "subrunmod"; "commonmod" -> "subrunmod"; "mtconfigf" -> "subrunmod"; // tasksmod.scm "sqlite3" -> "tasksmod"; "commonmod" -> "tasksmod"; "mtconfigf" -> "tasksmod"; "pgdbmod" -> "tasksmod"; // dbmod.scm "sqlite3" -> "dbmod"; "commonmod" -> "dbmod"; "keysmod" -> "dbmod"; "files" -> "dbmod"; "tasksmod" -> "dbmod"; "odsmod" -> "dbmod"; "mtargs" -> "dbmod"; "mtconfigf" -> "dbmod"; // servermod.scm "sqlite3" -> "servermod"; "commonmod" -> "servermod"; "dbmod" -> "servermod"; "tasksmod" -> "servermod"; "mtargs" -> "servermod"; "mtconfigf" -> "servermod"; // ezstepsmod.scm "sqlite3" -> "ezstepsmod"; "commonmod" -> "ezstepsmod"; // odsmod.scm "sqlite3" -> "odsmod"; "commonmod" -> "odsmod"; // mtmod.scm "sqlite3" -> "mtmod"; "mtargs" -> "mtmod"; "mtconfigf" -> "mtmod"; "commonmod" -> "mtmod"; "dbmod" -> "mtmod"; "pgdbmod" -> "mtmod"; "rmtmod" -> "mtmod"; "servermod" -> "mtmod"; "stml2" -> "mtmod"; "subrunmod" -> "mtmod"; "tasksmod" -> "mtmod"; "testsmod" -> "mtmod"; // treemod.scm "iup" -> "treemod"; // itemsmod.scm "sqlite3" -> "itemsmod"; "commonmod" -> "itemsmod"; // runsmod.scm "base64" -> "runsmod"; "commonmod" -> "runsmod"; "dbmod" -> "runsmod"; "itemsmod" -> "runsmod"; "mtmod" -> "runsmod"; "pgdbmod" -> "runsmod"; "mtargs" -> "runsmod"; "mtconfigf" -> "runsmod"; "rmtmod" -> "runsmod"; "servermod" -> "runsmod"; "stml2" -> "runsmod"; "subrunmod" -> "runsmod"; "tasksmod" -> "runsmod"; "testsmod" -> "runsmod"; // processmod.scm "sqlite3" -> "processmod"; // rmtmod.scm "sqlite3" -> "rmtmod"; "ulex" -> "rmtmod"; "commonmod" -> "rmtmod"; "itemsmod" -> "rmtmod"; "apimod" -> "rmtmod"; "dbmod" -> "rmtmod"; // commonmod.scm "sqlite3" -> "commonmod"; "pkts" -> "commonmod"; "mtconfigf" -> "commonmod"; "mtargs" -> "commonmod"; // pgdbmod.scm "mtconfigf" -> "pgdbmod"; "mtargs" -> "pgdbmod"; "commonmod" -> "pgdbmod"; // envmod.scm "sqlite3" -> "envmod"; "commonmod" -> "envmod"; // configfmod.scm "sqlite3" -> "configfmod"; // dcommonmod.scm "sqlite3" -> "dcommonmod"; "mtconfigf" -> "dcommonmod"; "gutilsmod" -> "dcommonmod"; "commonmod" -> "dcommonmod"; "servermod" -> "dcommonmod"; "testsmod" -> "dcommonmod"; "megamod" -> "dcommonmod"; "subrunmod" -> "dcommonmod"; "runsmod" -> "dcommonmod"; "rmtmod" -> "dcommonmod"; "dbmod" -> "dcommonmod"; "canvas-draw" -> "dcommonmod"; "canvas-draw-iup" -> "dcommonmod"; "iup" -> "dcommonmod"; "mtargs" -> "dcommonmod"; // gutilsmod.scm "iup" -> "gutilsmod"; "canvas-draw" -> "gutilsmod"; // runconfigmod.scm "sqlite3" -> "runconfigmod"; "commonmod" -> "runconfigmod"; // archivemod.scm "sqlite3" -> "archivemod"; "commonmod" -> "archivemod"; } } |
Added docs/code/postamble.dot version [b57f41175d].
> > > > > | 1 2 3 4 5 | } } |
Added docs/code/preamble.dot version [b043a4e780].
> > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | // Copyright 2006-2017, Matthew Welland. // // This file is part of Megatest. // // Megatest is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Megatest is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Megatest. If not, see <http://www.gnu.org/licenses/>. // digraph megatest_code_hierarchy { ranksep=0.05; // rankdir=LR node [shape=box,style=filled,fontname="clear",fontsize="10"]; subgraph cluster_megatest { label="megatest"; rmtmod [label="rmt mod"]; |
Modified ducttape/ducttape-lib.scm from [59b0a2f94a] to [9cc9c3469d].
︙ | ︙ | |||
47 48 49 50 51 52 53 | current-wwdate current-isodate *this-exe-dir* *this-exe-name* *this-exe-fullpath* ) | | | | > | | > | 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 | current-wwdate current-isodate *this-exe-dir* *this-exe-name* *this-exe-fullpath* ) (import scheme chicken.base chicken.port chicken.process chicken.io chicken.pathname chicken.process-context chicken.time chicken.process chicken.condition chicken.time.posix chicken.process-context.posix chicken.format chicken.file.posix) (import regex ansi-escape-sequences test srfi-1 chicken.irregex slice srfi-13 rfc3339) ;;scsh-process ;; dropping scsh-process, it was clobbering posix's process and process* ;;(import directory-utils uuid-lib filepath srfi-19 ) ; linenoise (import directory-utils filepath srfi-19 ) ; linenoise ;; plugs a hole in posix-extras in latter chicken versions (import pathname-expand chicken.file chicken.string) (define ##sys#expand-home-path pathname-expand) (define (realpath x) (print "Path: " x) (normalize-pathname (pathname-expand (or x "/dev/null")) )) ;;(define (realpath x) (pathname-expand (or x "/dev/null"))) ;; (include "mimetypes.scm") ; provides ext->mimetype ;; (include "workweekdate.scm") ;; gathered from macosx: ;; cat /etc/apache2/mime.types | grep -v '^#' | perl -ne 'print "(\"$2\" . \"$1\")\n" if /(\S+)\s+(\S+)/' > mimetypes.scm ;; + manual manipulation |
︙ | ︙ | |||
839 840 841 842 843 844 845 | ("wmx" . "video/x-ms-wmx") ("wvx" . "video/x-ms-wvx") ("avi" . "video/x-msvideo") ("movie" . "video/x-sgi-movie") ("smv" . "video/x-smv") ("ice" . "x-conference/x-cooltalk"))) | | | | | 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 | ("wmx" . "video/x-ms-wmx") ("wvx" . "video/x-ms-wvx") ("avi" . "video/x-msvideo") ("movie" . "video/x-sgi-movie") ("smv" . "video/x-smv") ("ice" . "x-conference/x-cooltalk"))) (import srfi-19) (import test) ;;(use format) (import regex) ;(declare (unit wwdate)) ;; utility procedures to convert among ;; different ways to express date (wwdate, seconds since epoch, isodate) ;; ;; samples: ;; isodate -> "2016-01-01" ;; wwdate -> "16ww01.5" |
︙ | ︙ | |||
1056 1057 1058 1059 1060 1061 1062 | (let loop ((rest-path-items path-items)) (if (null? rest-path-items) #f (let* ((this-dir (car rest-path-items)) (next-rest (cdr rest-path-items)) (candidate (conc this-dir "/" exe))) | | | 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 | (let loop ((rest-path-items path-items)) (if (null? rest-path-items) #f (let* ((this-dir (car rest-path-items)) (next-rest (cdr rest-path-items)) (candidate (conc this-dir "/" exe))) (if (file-executable? candidate) candidate (loop next-rest))))))) ;;;; define some handy globals ;; resolve fullpath to this script or binary. |
︙ | ︙ | |||
1245 1246 1247 1248 1249 1250 1251 | (let ( (raw-debug-level (get-environment-variable "DUCTTAPE_DEBUG_LEVEL")) ) (if raw-debug-level (let ((num-debug-level (runs-ok (string->number raw-debug-level)))) (if (integer? num-debug-level) (begin (let ((new-num-debug-level (- num-debug-level 1))) (if (> new-num-debug-level 0) ;; decrement | | | | | 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 | (let ( (raw-debug-level (get-environment-variable "DUCTTAPE_DEBUG_LEVEL")) ) (if raw-debug-level (let ((num-debug-level (runs-ok (string->number raw-debug-level)))) (if (integer? num-debug-level) (begin (let ((new-num-debug-level (- num-debug-level 1))) (if (> new-num-debug-level 0) ;; decrement (set-environment-variable! "DUCTTAPE_DEBUG_LEVEL" (number->string new-num-debug-level)) (unset-environment-variable! "DUCTTAPE_DEBUG_LEVEL"))) num-debug-level) ; it was set and > 0, mode is value (begin (unset-environment-variable! "DUCTTAPE_DEBUG_LEVEL") ;; value was invalid, unset it #f))) ; value was invalid, mode is f #f)))) ; var not set, mode is f (define ducttape-debug-mode (if (ducttape-debug-level) #t #f)) ;; ducttape-debug-regex-filter suppresses non-matching debug messages |
︙ | ︙ | |||
1358 1359 1360 1361 1362 1363 1364 | " ")) (pwd (or (get-environment-variable "PWD") "nopwd")) (user (or (get-environment-variable "USER") "nouser")) (host (or (get-environment-variable "HOST") "nohost"))) (if logfile (begin (ducttape-log-file logfile) | | | 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 | " ")) (pwd (or (get-environment-variable "PWD") "nopwd")) (user (or (get-environment-variable "USER") "nouser")) (host (or (get-environment-variable "HOST") "nohost"))) (if logfile (begin (ducttape-log-file logfile) (set-environment-variable! "DUCTTAPE_LOG_FILE" (ducttape-log-file)))) (ducttape-append-logfile 'note (format #f "START - pid=~A ppid=~A argv=(~A) pwd=~A user=~A host=~A" pid ppid argv pwd user host) #t))) ;; log exit code (define (set-ducttape-log-exit-handler) (let ((orig-exit-handler (exit-handler))) (exit-handler |
︙ | ︙ | |||
1520 1521 1522 1523 1524 1525 1526 | ) (define (sendmail-proc sendmail-port) (define (wl line-str) (write-line line-str sendmail-port)) (define (get-uuid) | > | | 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 | ) (define (sendmail-proc sendmail-port) (define (wl line-str) (write-line line-str sendmail-port)) (define (get-uuid) "foo") ;;(string-upcase (uuid->string (uuid-generate)))) (let ((mailpart-uuid (get-uuid)) (mailpart-body-uuid (get-uuid))) (define (boundary) (wl (conc "--" mailpart-uuid))) |
︙ | ︙ | |||
1700 1701 1702 1703 1704 1705 1706 | ;; are sure they can coexist. (define (ducttape-process-command-line) ;; --quiet (let ((quiet-opts (skim-cmdline-opts-noarg-by-regex "--?quiet"))) (if (not (null? quiet-opts)) (begin | | | | | | | | | 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 | ;; are sure they can coexist. (define (ducttape-process-command-line) ;; --quiet (let ((quiet-opts (skim-cmdline-opts-noarg-by-regex "--?quiet"))) (if (not (null? quiet-opts)) (begin (set-environment-variable! "DUCTTAPE_QUIET_MODE" "1") (ducttape-quiet-mode "1")))) ;; --silent (let ((silent-opts (skim-cmdline-opts-noarg-by-regex "--?silent"))) (if (not (null? silent-opts)) (begin (set-environment-variable! "DUCTTAPE_SILENT_MODE" "1") (ducttape-silent-mode "1")))) ;; -color (let ((color-opts (skim-cmdline-opts-noarg-by-regex "--?colou?r(ize)?"))) (if (not (null? color-opts)) (begin (set-environment-variable! "DUCTTAPE_COLORIZE" "1") (ducttape-color-mode "1")))) ;; -nocolor (let ((nocolor-opts (skim-cmdline-opts-noarg-by-regex "--?nocolou?r(ize)?"))) (if (not (null? nocolor-opts)) (begin (unset-environment-variable! "DUCTTAPE_COLORIZE" ) (ducttape-color-mode #f)))) ;; -logfile (let ((logfile-opts (skim-cmdline-opts-withargs-by-regex "--?log(-?file)?"))) (if (not (null? logfile-opts)) (begin (ducttape-log-file (car (reverse logfile-opts))) (set-environment-variable! "DUCTTAPE_LOG_FILE" (ducttape-log-file))))) ;; -d -dd -d# (let ((debug-opts (skim-cmdline-opts-noarg-by-regex "-d(d*|\\d+)")) (initial-debuglevel (if (ducttape-debug-level) (ducttape-debug-level) 0) )) (if (not (null? debug-opts)) (begin (ducttape-debug-level (let loop ((opts debug-opts) (debuglevel initial-debuglevel)) (if (null? opts) debuglevel (let* ( (curopt (car opts)) (restopts (cdr opts)) (ds (string-match "-(d+)" curopt)) (dnum (string-match "-d(\\d+)" curopt))) (cond (ds (loop restopts (+ debuglevel (string-length (cadr ds))))) (dnum (loop restopts (string->number (cadr dnum))))))))) (set-environment-variable! "DUCTTAPE_DEBUG_LEVEL" (number->string (ducttape-debug-level)))))) ;; -dp <pat> / --debug-pattern <pat> (let ((debugpat-opts (skim-cmdline-opts-withargs-by-regex "--?(debug-pattern|dp)"))) (if (not (null? debugpat-opts)) (begin (ducttape-debug-regex-filter (string-join debugpat-opts "|")) (set-environment-variable! "DUCTTAPE_DEBUG_PATTERN" (ducttape-debug-regex-filter)))))) ;;; following code commented out; side effects not wanted on startup ;; immediately activate logfile (will be noop if logfile disabled) ;;(ducttape-activate-logfile) ;;(set-ducttape-log-exit-handler) |
︙ | ︙ |
Modified env-inc.scm from [b0c2daedc8] to [b48df7a509].
︙ | ︙ | |||
135 136 137 138 139 140 141 | ;; (print "BEFORE: " (string-intersperse patha-parts "\n ")) ;; (print "AFTER: " (string-intersperse pathb-parts "\n ")) ;; (print "COMMON: " (string-intersperse common-parts "\n ")) (string-intersperse final separator))) (define (env:process-path-envvar varname separator patha pathb) (let ((newpath (env:merge-path-envvar separator patha pathb))) | | | 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | ;; (print "BEFORE: " (string-intersperse patha-parts "\n ")) ;; (print "AFTER: " (string-intersperse pathb-parts "\n ")) ;; (print "COMMON: " (string-intersperse common-parts "\n ")) (string-intersperse final separator))) (define (env:process-path-envvar varname separator patha pathb) (let ((newpath (env:merge-path-envvar separator patha pathb))) (set-environment-variable! varname newpath))) (define (env:have-context db context) (> (query fetch-value (sql db "SELECT count(id) FROM envvars WHERE context=?") context) 0)) ;; this is so the calling block does not need to import sql-de-lite (define (env:close-database db) |
︙ | ︙ |
Modified envmod.scm from [322fc41dfe] to [a2ad9fe426].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit envmod)) (declare (uses commonmod)) (module envmod * | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | (declare (unit envmod)) (declare (uses commonmod)) (module envmod * (import scheme (chicken base)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) (import commonmod) ;; (use (prefix ulex ulex:)) (include "common_records.scm") ) |
Modified ezstepsmod.scm from [b506cc05b8] to [bb1c5c176e].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit ezstepsmod)) (declare (uses commonmod)) (module ezstepsmod * | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | (declare (unit ezstepsmod)) (declare (uses commonmod)) (module ezstepsmod * (import scheme (chicken base)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) (import commonmod) ;; (use (prefix ulex ulex:)) (include "common_records.scm") ) |
Modified gutilsmod.scm from [35fcf6a225] to [c359b2a4cc].
︙ | ︙ | |||
16 17 18 19 20 21 22 | ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; ;;====================================================================== (require-library iup) (import (prefix iup iup:)) | | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; ;;====================================================================== (require-library iup) (import (prefix iup iup:)) (import canvas-draw) (use srfi-1 regex regex-case srfi-69) (declare (unit gutilsmod)) (module gutilsmod * (import scheme chicken.base chicken.string srfi-1) (include "gutils-inc.scm") ) |
Modified http-transportmod.scm from [4e67f1acae] to [fd86ce120c].
︙ | ︙ | |||
24 25 26 27 28 29 30 | (declare (uses mtargs)) (declare (uses mtconfigf)) (declare (uses testsmod)) (module apimod * | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | (declare (uses mtargs)) (declare (uses mtconfigf)) (declare (uses testsmod)) (module apimod * (import scheme (chicken base) (chicken file) srfi-13 srfi-18 spiffy http-client spiffy-directory-listing spiffy-request-vars tcp ) (import commonmod) (import stml2) (import apimod) |
︙ | ︙ |
Modified itemsmod.scm from [fc849e85b2] to [bf5ffac038].
︙ | ︙ | |||
21 22 23 24 25 26 27 | (declare (unit itemsmod)) (declare (uses commonmod)) (declare (uses mtconfigf)) (module itemsmod * | | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | (declare (unit itemsmod)) (declare (uses commonmod)) (declare (uses mtconfigf)) (module itemsmod * (import scheme (chicken base) chicken.pretty-print chicken.string) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) (import commonmod) (import(prefix mtconfigf configf:)) ;; (use (prefix ulex ulex:)) ;; (include "common_records.scm") ;; (include "items-inc.scm") |
︙ | ︙ |
Modified keysmod.scm from [8e1a16b91c] to [836dccbaf5].
︙ | ︙ | |||
19 20 21 22 23 24 25 | ;;====================================================================== (declare (unit keysmod)) (module keysmod * | | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ;;====================================================================== (declare (unit keysmod)) (module keysmod * (import scheme (chicken base) ) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) ;; (import commonmod) ;; (use (prefix ulex ulex:)) (import srfi-13) ;; (include "common_records.scm") |
︙ | ︙ |
Modified launchmod.scm from [317d9c947e] to [7192ac4785].
︙ | ︙ | |||
21 22 23 24 25 26 27 | (declare (unit launchmod)) (declare (uses commonmod)) (module launchmod * | | | | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | (declare (unit launchmod)) (declare (uses commonmod)) (module launchmod * (import scheme chicken.base chicken.file) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 chicken.format chicken.port srfi-1 matchable z3 (prefix base64 base64:) regex call-with-environment-variables) (import commonmod) ) |
Modified megamod.scm from [2105b4eb5b] to [1c8d082097].
︙ | ︙ | |||
41 42 43 44 45 46 47 | (declare (uses subrunmod)) (declare (uses itemsmod)) (declare (uses runsmod)) (module megamod * | | | | | | | | | > > > > > > | > | | < | | | 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 | (declare (uses subrunmod)) (declare (uses itemsmod)) (declare (uses runsmod)) (module megamod * (import scheme chicken.base) (import (prefix base64 base64:) (prefix dbi dbi:) ;; (prefix nanomsg nmsg:) (prefix sqlite3 sqlite3:) call-with-environment-variables ;;csv ;;csv-xml ;;data-structures directory-utils dot-locking ;;extras chicken.file chicken.condition chicken.process-context chicken.process-context.posix chicken.process chicken.random chicken.string fmt chicken.format system-information hostinfo http-client intarweb chicken.irregex matchable md5 message-digest pathname-expand ;; pkts chicken.port ;; queue regex regex-case s11n sparse-vectors spiffy spiffy-directory-listing spiffy-request-vars sql-de-lite srfi-1 srfi-4 srfi-13 srfi-18 srfi-69 stack ;;tcp typed-records ;;udp uri-common z3 ) (import (prefix mtconfigf configf:)) (define read-config configf:read-config) (define find-and-read-config configf:find-and-read-config) |
︙ | ︙ |
Modified megatest.scm from [0c9be227b7] to [d4333c215e].
︙ | ︙ | |||
18 19 20 21 22 23 24 | ;; (include "common.scm") ;; (include "megatest-version.scm") ;; fake out readline usage of toplevel-command (define (toplevel-command . a) #f) | | | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ;; (include "common.scm") ;; (include "megatest-version.scm") ;; fake out readline usage of toplevel-command (define (toplevel-command . a) #f) (import (prefix sqlite3 sqlite3:) srfi-1 regex regex-case srfi-69 (prefix base64 base64:) breadline apropos json http-client directory-utils typed-records http-client srfi-18 chicken.format tcp6) ;; Added for csv stuff - will be removed ;; (use sparse-vectors) (declare (uses mtargs)) (declare (uses mtconfigf)) |
︙ | ︙ | |||
2361 2362 2363 2364 2365 2366 2367 | ;; (exit) ;; EOF (repl)) (else (begin (set! *db* dbstruct) | < | | 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 | ;; (exit) ;; EOF (repl)) (else (begin (set! *db* dbstruct) ;; (import csi) (import breadline) (import apropos) (import dbmod) (import rmtmod) (import commonmod) ;; (import (prefix sqlite3 sqlite3:)) ;; doesn't work ... (if *use-new-readline* |
︙ | ︙ |
Modified mtargs/mtargs.scm from [e2f1c247b7] to [a907d8beb0].
︙ | ︙ | |||
24 25 26 27 28 29 30 | usage get-args print-args any-defined? help ) | | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | usage get-args print-args any-defined? help ) (import scheme (chicken base) (chicken port) (chicken file) (chicken process-context)) (import srfi-69 srfi-1) (define arg-hash (make-hash-table)) (define help "") (define (get-arg arg . default) (if (null? default) (hash-table-ref/default arg-hash arg #f) |
︙ | ︙ |
Modified mtconfigf/mtconfigf.scm from [f14586a434] to [1f14c46c82].
︙ | ︙ | |||
69 70 71 72 73 74 75 | get-eval-string squelch-debug-prints ;; misc realpath find-chicken-lib ) | | | | | > | | | | | | | | | | | 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 | get-eval-string squelch-debug-prints ;; misc realpath find-chicken-lib ) (import scheme (chicken base) (chicken string) (chicken file) (chicken port)) (import typed-records srfi-18 pathname-expand) (import regex regex-case srfi-69 srfi-1 directory-utils srfi-13 ) (import (chicken io) (chicken condition) (chicken process-context)) (import (chicken process) (chicken pathname) (chicken pretty-print) (chicken time)) (import srfi-69 (chicken platform) (chicken sort)) ;; stub debug printers overridden by set-debug-printers (define (debug:print n e . args) (apply print args)) (define (debug:print-info n e . args) (apply print "INFO: " args)) (define (debug:print-error n e . args) (apply print "ERROR: " args)) ;;(import (prefix mtdebug debug:)) ;;(define args:any? args:any-defined?) ;; cannot name it any? in mtargs module ;; FROM common.scm ;; ;; this plugs a hole in posix-extras in recent chicken versions > 4.9) ;;;(let-values (( (chicken-release-number chicken-major-version) ;;; (apply values ;;; (map string->number ;;; (take ;;; (string-split (chicken-version) ".") ;;; 2))))) ;;; (if (or (> chicken-release-number 4) ;;; (and (eq? 4 chicken-release-number) (> chicken-major-version 9))) ;;; (define ##sys#expand-home-path pathname-expand))) ;;(define (set-verbosity v)(debug:set-verbosity v)) (define *default-log-port* (current-error-port)) (define (debug:print-error n . args) ;;; n available to end-users but ignored for |
︙ | ︙ | |||
214 215 216 217 218 219 220 | (if (substring-index ":" key) ;; variables containing : are for internal use and cannot be environment variables. (debug:print-error 4 *default-log-port* "skip setting internal use only variables containing \":\"") (if (and (string? val) (string? key)) (handle-exceptions exn (debug:print-error 0 *default-log-port* "bad value for setenv, key=" key ", value=" val) | | | | | | | 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 | (if (substring-index ":" key) ;; variables containing : are for internal use and cannot be environment variables. (debug:print-error 4 *default-log-port* "skip setting internal use only variables containing \":\"") (if (and (string? val) (string? key)) (handle-exceptions exn (debug:print-error 0 *default-log-port* "bad value for setenv, key=" key ", value=" val) (set-environment-variable! key val)) (debug:print-error 0 *default-log-port* "bad value for setenv, key=" key ", value=" val)))) ;; accept an alist or hash table containing envvar/env value pairs (value of #f causes unset) ;; execute thunk in context of environment modified as per this list ;; restore env to prior state then return value of eval'd thunk. ;; ** this is not thread safe ** (define (with-env-vars delta-env-alist-or-hash-table thunk) (let* ((delta-env-alist (if (hash-table? delta-env-alist-or-hash-table) (hash-table->alist delta-env-alist-or-hash-table) delta-env-alist-or-hash-table)) (restore-thunks (filter identity (map (lambda (env-pair) (let* ((env-var (car env-pair)) (new-val (let ((tmp (cdr env-pair))) (if (list? tmp) (car tmp) tmp))) (current-val (get-environment-variable env-var)) (restore-thunk (cond ((not current-val) (lambda () (unset-environment-variable! env-var))) ((not (string? new-val)) #f) ((eq? current-val new-val) #f) (else (lambda () (set-environment-variable! env-var current-val)))))) ;;(when (not (string? new-val)) ;; (debug:print 0 *default-log-port* " PROBLEM: not a string: "new-val"\n from env-alist:\n"delta-env-alist) ;; (pp delta-env-alist) ;; (exit 1)) (cond ((not new-val) ;; modify env here (unset-environment-variable! env-var)) ((string? new-val) (set-environment-variable! env-var new-val))) restore-thunk)) delta-env-alist)))) (let ((rv (thunk))) (for-each (lambda (x) (x)) restore-thunks) ;; restore env to original state rv))) (define (cmd-run->list cmd #!key (delta-env-alist-or-hash-table '())) |
︙ | ︙ | |||
681 682 683 684 685 686 687 | (loop (configf:read-line inp res (calc-allow-system allow-system curr-section-name sections) settings) curr-section-name #f #f))) (configf:script-rx ( x include-script params);; handle-exceptions ;; exn ;; (begin ;; (debug:print '(0 2 9) #f "INFO: include from script " include-script " failed.") ;; (loop (configf:read-line inp res (calc-allow-system allow-system curr-section-name sections) settings) curr-section-name #f #f)) | | | 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 | (loop (configf:read-line inp res (calc-allow-system allow-system curr-section-name sections) settings) curr-section-name #f #f))) (configf:script-rx ( x include-script params);; handle-exceptions ;; exn ;; (begin ;; (debug:print '(0 2 9) #f "INFO: include from script " include-script " failed.") ;; (loop (configf:read-line inp res (calc-allow-system allow-system curr-section-name sections) settings) curr-section-name #f #f)) (if (and (safe-file-exists? include-script)(file-executable? include-script)) (let* ((local-allow-system (calc-allow-system allow-system curr-section-name sections)) (env-delta (cfgdat->env-alist curr-section-name res local-allow-system)) (new-inp-port (with-env-vars env-delta (lambda () (open-input-pipe (conc include-script " " params)))))) |
︙ | ︙ | |||
817 818 819 820 821 822 823 | ;; (define (find-and-read-config fname #!key (environ-patt #f)(given-toppath #f)(pathenvvar #f)(set-fields #f)(keep-filenames #f)) (let* ((curr-dir (current-directory)) (configinfo (find-config fname toppath: given-toppath)) (toppath (car configinfo)) (configfile (cadr configinfo))) (if toppath (change-directory toppath)) | | | 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 | ;; (define (find-and-read-config fname #!key (environ-patt #f)(given-toppath #f)(pathenvvar #f)(set-fields #f)(keep-filenames #f)) (let* ((curr-dir (current-directory)) (configinfo (find-config fname toppath: given-toppath)) (toppath (car configinfo)) (configfile (cadr configinfo))) (if toppath (change-directory toppath)) (if (and toppath pathenvvar)(set-environment-variable! pathenvvar toppath)) (let ((configdat (if configfile (read-config configfile #f #t environ-patt: environ-patt post-section-procs: (if set-fields (list (cons "^fields$" set-fields) ) '()) #f keep-filenames: keep-filenames)))) (if toppath (change-directory curr-dir)) (list configdat toppath configfile fname)))) |
︙ | ︙ | |||
1049 1050 1051 1052 1053 1054 1055 | ;; reads a refdb into an assoc array of assoc arrays ;; returns (list dat msg) (define (read-refdb refdb-path) (let ((sheets-file (conc refdb-path "/sheet-names.cfg"))) (if (not (safe-file-exists? sheets-file)) (list #f (conc "ERROR: no refdb found at " refdb-path)) | | | 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 | ;; reads a refdb into an assoc array of assoc arrays ;; returns (list dat msg) (define (read-refdb refdb-path) (let ((sheets-file (conc refdb-path "/sheet-names.cfg"))) (if (not (safe-file-exists? sheets-file)) (list #f (conc "ERROR: no refdb found at " refdb-path)) (if (not (file-readable? sheets-file)) (list #f (conc "ERROR: refdb file not readable at " refdb-path)) (let* ((sheets (with-input-from-file sheets-file (lambda () (let loop ((inl (read-line)) (res '())) (if (eof-object? inl) (reverse res) |
︙ | ︙ |
Modified mtexec.scm from [f01922b9b2] to [d5c3b6f442].
︙ | ︙ | |||
18 19 20 21 22 23 24 | ;; (include "common.scm") ;; (include "megatest-version.scm") ;; fake out readline usage of toplevel-command (define (toplevel-command . a) #f) | | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ;; (include "common.scm") ;; (include "megatest-version.scm") ;; fake out readline usage of toplevel-command (define (toplevel-command . a) #f) (import srfi-1 srfi-69 breadline ;; regex regex-case srfi-69 apropos json http-client directory-utils rpc typed-records;; (srfi 18) extras) srfi-19 srfi-18 chicken.format pkts regex regex-case (prefix dbi dbi:) ) ;; (declare (uses common)) ;; (declare (uses megatest-version)) ;; (declare (uses margs)) ;; (declare (uses configf)) |
︙ | ︙ | |||
103 104 105 106 107 108 109 | (begin (print help) (exit))) (if (or (args:get-arg "-repl") (args:get-arg "-load")) (begin | < | | 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | (begin (print help) (exit))) (if (or (args:get-arg "-repl") (args:get-arg "-load")) (begin ;; (import csi) (import breadline) (import apropos) ;; (import (prefix sqlite3 sqlite3:)) ;; doesn't work ... (install-history-file (get-environment-variable "HOME") ".mtutil_history") ;; [homedir] [filename] [nlines]) (current-input-port (make-readline-port "mtutil> ")) (if (args:get-arg "-repl") (repl) |
︙ | ︙ |
Modified mtmod.scm from [2726f35fde] to [ba81190fe6].
︙ | ︙ | |||
32 33 34 35 36 37 38 | (declare (uses subrunmod)) (declare (uses tasksmod)) (declare (uses testsmod)) (module mtmod * | | | | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | (declare (uses subrunmod)) (declare (uses tasksmod)) (declare (uses testsmod)) (module mtmod * (import scheme chicken.base chicken.port chicken.file chicken.string) (import (prefix sqlite3 sqlite3:) srfi-69 regex srfi-18 srfi-13 srfi-1 call-with-environment-variables z3 (prefix base64 base64:) typed-records directory-utils) (import (prefix mtargs args:)) (import (prefix mtconfigf configf:)) (import commonmod) (import dbmod) (import pgdbmod) (import rmtmod) |
︙ | ︙ |
Modified mtut.scm from [d24a197a9e] to [b1f9aa5dee].
︙ | ︙ | |||
18 19 20 21 22 23 24 | ;; (include "common.scm") ;; (include "megatest-version.scm") ;; fake out readline usage of toplevel-command (define (toplevel-command . a) #f) | | | | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ;; (include "common.scm") ;; (include "megatest-version.scm") ;; fake out readline usage of toplevel-command (define (toplevel-command . a) #f) (import srfi-1 srfi-69 breadline ;; regex regex-case srfi-69 apropos json http-client directory-utils rpc typed-records;; (srfi 18) extras) srfi-19 srfi-18 chicken.format pkts regex regex-case (prefix dbi dbi:) nanomsg) ;; (declare (uses common)) ;; (declare (uses megatest-version)) ;; (declare (uses margs)) |
︙ | ︙ | |||
1901 1902 1903 1904 1905 1906 1907 | (begin (stml:main #f) (exit))) (if (or (args:get-arg "-repl") (args:get-arg "-load")) (begin | < | | 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 | (begin (stml:main #f) (exit))) (if (or (args:get-arg "-repl") (args:get-arg "-load")) (begin ;; (import csi) (import breadline) (import apropos) ;; (import (prefix sqlite3 sqlite3:)) ;; doesn't work ... (install-history-file (get-environment-variable "HOME") ".mtutil_history") ;; [homedir] [filename] [nlines]) (current-input-port (make-readline-port "mtutil> ")) (if (args:get-arg "-repl") (repl) |
︙ | ︙ |
Modified mutils/mutils.scm from [9ec33d98cf] to [a5f23f82ed].
︙ | ︙ | |||
10 11 12 13 14 15 16 | ;; This is from the perl world, a hash of hashes is a super easy way to keep a handle on ;; lots of disparate data ;; (module mutils * | | < | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | ;; This is from the perl world, a hash of hashes is a super easy way to keep a handle on ;; lots of disparate data ;; (module mutils * (import (chicken base) (chicken io) scheme ;; data-structures posix srfi-1 ;; srfi-13 srfi-69 ;; ports regex ) (define (mutils:hierhash-ref hh . keys) (if (null? keys) #f (let loop ((ht hh) |
︙ | ︙ | |||
85 86 87 88 89 90 91 | (if (eof-object? l) (reverse res) (if (or (string-match comment l) (string-match blank l)) (loop (read-line fh) res) (loop (read-line fh) (cons l res))))))) | | | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | (if (eof-object? l) (reverse res) (if (or (string-match comment l) (string-match blank l)) (loop (read-line fh) res) (loop (read-line fh) (cons l res))))))) (import sparse-vectors) ;; this is a simple two dimensional sparse array ;; ONLY TWO DIMENSIONS!!! SEE ARRAY-LIB IF YOUR NEEDS ARE GREATER!! ;; (define (mutils:make-sparse-array) (let ((a (make-sparse-vector))) |
︙ | ︙ |
Modified odsmod.scm from [f8aba8b41f] to [b9327d9ad8].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit odsmod)) (declare (uses commonmod)) (module odsmod * | | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | (declare (unit odsmod)) (declare (uses commonmod)) (module odsmod * (import scheme (chicken base) (chicken string) (chicken port) (chicken io) (chicken file) regex) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) (chicken process) srfi-1 matchable srfi-13) (import commonmod) ;; (use (prefix ulex ulex:)) (define ods:dirs '("Configurations2" "Configurations2/toolpanel" "Configurations2/menubar" |
︙ | ︙ |
Added pathname-expand/pathname-expand.egg version [39095f0126].
> > > > | 1 2 3 4 | ((license "BSD") (category os) (author "The CHICKEN team") (components (extension pathname-expand))) |
Added pathname-expand/pathname-expand.meta version [89e94e5069].
> > > > > > > > | 1 2 3 4 5 6 7 8 | ;; -*-scheme-*- ((synopsis "Pathname expansion") (license "BSD") (category os) (doc-from-wiki) ;; No tests; this is very hard to do in a cross-platform way without ;; writing a reimplementation of the functionality in our tests... (author "The CHICKEN team")) |
Added pathname-expand/pathname-expand.scm version [9bc2d4d6ac].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ;;; Pathname expansion, to replace the deprecated core functionality. ; ; Copyright (c) 2014, 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. (module pathname-expand (pathname-expand) (import (chicken base) (chicken pathname) (chicken condition) (chicken platform) scheme) (import (chicken fixnum) (chicken process-context) (chicken process-context posix)) (import srfi-13 (chicken file) ) ;; Expand pathname starting with "~", and/or apply base directory to ;; relative pathname ; ; Inspired by Gambit's "path-expand" procedure. (define pathname-expand (let* ((home ;; Effective uid might be changed at runtime so this has to ;; be a lambda, but we could try to cache the result on uid. (lambda () (cond-expand ((and windows (not cygwin)) (or (get-environment-variable "USERPROFILE") (get-environment-variable "HOME") ".")) (else (let ((info (user-information (current-effective-user-id)))) (list-ref info 5)))))) (slash (cond-expand ((and windows (not cygwin)) '(#\\ #\/)) (else '(#\/)))) (ts (string-append "~" (string (car slash)))) (tts (string-append "~" ts))) (lambda (path #!optional (base (current-directory))) (if (absolute-pathname? path) path (let ((len (string-length path))) (cond ((or (string=? "~~" path) (and (fx>= len 3) (string=? tts (substring path 0 3)))) ;; Repository-path (let ((rp (repository-path))) (if rp (string-append rp (substring path 2 len)) (signal (make-composite-condition (make-property-condition 'exn 'location 'pathname-expand 'message "No repository path defined" 'arguments (list path)) (make-property-condition 'pathname-expand) (make-property-condition 'repository-path)))))) ((or (string=? "~" path) (and (fx> len 2) (string=? ts (substring path 0 2)))) ;; Current user's home dir (string-append (home) (substring path 1 len))) ((and (fx> len 0) (char=? #\~ (string-ref path 0))) ;; Arbitrary user's home dir (let ((rest (substring path 1 len))) (if (and (fx> len 1) (memq (string-ref path 1) slash)) (string-append (home) rest) (let* ((p (string-index path (lambda (c) (memq c slash)))) (user (substring path 1 (or p len))) (info (user-information user))) (if info (let ((dir (list-ref info 5))) (if p (make-pathname dir (substring path p)) dir)) (signal (make-composite-condition (make-property-condition 'exn 'location 'pathname-expand 'message "Cannot expand homedir for user" 'arguments (list path)) (make-property-condition 'pathname-expand) (make-property-condition 'username)))))))) (else (make-pathname base path)))))))) ) |
Added pathname-expand/pathname-expand.setup version [b6d5471d8e].
> > | 1 2 | ;; -*-scheme-*- (standard-extension 'pathname-expand 0.1) |
Modified pgdbmod.scm from [cbf87ade64] to [3525eec6ab].
︙ | ︙ | |||
22 23 24 25 26 27 28 | (declare (uses mtconfigf)) (declare (uses commonmod)) (declare (uses mtargs)) (module pgdbmod * | | | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | (declare (uses mtconfigf)) (declare (uses commonmod)) (declare (uses mtargs)) (module pgdbmod * (import scheme (chicken base) (chicken file) (chicken string) (chicken sort) (chicken condition) (chicken string)) (import (prefix dbi dbi:) srfi-69 srfi-1 typed-records) (import (prefix mtconfigf configf:)) (import (prefix mtargs args:)) (import commonmod) |
︙ | ︙ |
Modified pkts/pkts.scm from [d1cd1cb6f6] to [1f160e9533].
︙ | ︙ | |||
160 161 162 163 164 165 166 | pktdb-pktspec ;; utility procs increment-string ;; used to get indexes for strings in ref pkts make-report ;; make a .dot file ) | > | | | 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | pktdb-pktspec ;; utility procs increment-string ;; used to get indexes for strings in ref pkts make-report ;; make a .dot file ) (import (chicken base) scheme (chicken process) (chicken time posix) (chicken io) (chicken file)) (import chicken.process-context.posix (chicken string) (chicken time) (chicken sort) (chicken file posix) (chicken condition) srfi-1 regex srfi-13 srfi-69 (chicken port) ) (import crypt sha1 message-digest (prefix dbi dbi:) typed-records) ;;====================================================================== ;; DATA MANIPULATION UTILS ;;====================================================================== (define-inline (unescape-data data) (string-translate* data '(("\\n" . "\n") ("\\\\" . "\\")))) |
︙ | ︙ | |||
693 694 695 696 697 698 699 | (for-each (lambda (pktsdir) ;; look at all (cond ((not (file-exists? pktsdir)) (print "ERROR: packets directory " pktsdir " does not exist.")) ((not (directory? pktsdir)) (print "ERROR: packets directory path " pktsdir " is not a directory.")) | | | 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 | (for-each (lambda (pktsdir) ;; look at all (cond ((not (file-exists? pktsdir)) (print "ERROR: packets directory " pktsdir " does not exist.")) ((not (directory? pktsdir)) (print "ERROR: packets directory path " pktsdir " is not a directory.")) ((not (file-readable? pktsdir)) (print "ERROR: packets directory path " pktsdir " is not readable.")) (else ;; (print "INFO: Loading packets found in " pktsdir) (let ((pkts (glob (conc pktsdir "/*.pkt")))) (for-each (lambda (pkt) (let* ((uuid (cadr (string-match ".*/([0-9a-f]+).pkt" pkt))) |
︙ | ︙ |
Modified portlogger-inc.scm from [cfa15af2ea] to [9a694666d2].
︙ | ︙ | |||
24 25 26 27 28 29 30 | (exists (common:file-exists? fname)) (db (if avail (sqlite3:open-database fname) (begin (system (conc "rm -f " fname)) (sqlite3:open-database fname)))) (handler (sqlite3:make-busy-timeout 136000)) | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | (exists (common:file-exists? fname)) (db (if avail (sqlite3:open-database fname) (begin (system (conc "rm -f " fname)) (sqlite3:open-database fname)))) (handler (sqlite3:make-busy-timeout 136000)) (canwrite (file-writable? fname))) ;; (db-init (lambda () ;; (sqlite3:execute ;; db ;; "CREATE TABLE IF NOT EXISTS ports ( ;; port INTEGER PRIMARY KEY, ;; state TEXT DEFAULT 'not-used', ;; fail_count INTEGER DEFAULT 0, |
︙ | ︙ | |||
120 121 122 123 124 125 126 | (let* ((lowport (let ((val (configf:lookup *configdat* "server" "lowport"))) (if (and val (string->number val)) (string->number val) 32768))) (portnum (or (portlogger:get-prev-used-port db) (+ lowport ;; top of registered ports is 49152 but lets use ports in the registered range | | | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | (let* ((lowport (let ((val (configf:lookup *configdat* "server" "lowport"))) (if (and val (string->number val)) (string->number val) 32768))) (portnum (or (portlogger:get-prev-used-port db) (+ lowport ;; top of registered ports is 49152 but lets use ports in the registered range (pseudo-random-integer (- 64000 lowport)))))) (handle-exceptions exn (begin (debug:print 0 *default-log-port* "EXCEPTION: portlogger database probably overloaded or unreadable. If you see this message again remove /tmp/.$USER-portlogger.db") (debug:print 0 *default-log-port* " message: " ((condition-property-accessor 'exn 'message) exn)) (debug:print 5 *default-log-port* "exn=" (condition->list exn)) (print-call-chain (current-error-port)) |
︙ | ︙ |
Modified processmod.scm from [98ca1f67b1] to [ef2a252107].
︙ | ︙ | |||
19 20 21 22 23 24 25 | ;;====================================================================== (declare (unit processmod)) (module processmod * | | | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ;;====================================================================== (declare (unit processmod)) (module processmod * (import scheme (chicken base) ) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable regex directory-utils) ;;====================================================================== ;; supporting functions ;;====================================================================== ) |
Modified rmtmod.scm from [90119f80f9] to [036b87360f].
︙ | ︙ | |||
25 26 27 28 29 30 31 | (declare (uses dbmod)) (declare (uses itemsmod)) (declare (uses ulex)) (module rmtmod * | | | < < | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | (declare (uses dbmod)) (declare (uses itemsmod)) (declare (uses ulex)) (module rmtmod * (import scheme chicken.base chicken.time chicken.string chicken.condition chicken.sort chicken.file chicken.random) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 chicken.format chicken.port srfi-1 matchable) (import (prefix ulex ulex:)) (import commonmod) (import itemsmod) (import apimod) (import dbmod) ;; ;; THESE ARE ALL CALLED ON THE CLIENT SIDE!!! ;; ;; generate entries for ~/.megatestrc with the following ;; ;; grep define ../rmt.scm | grep rmt: |perl -pi -e 's/\(define\s+\((\S+)\W.*$/\1/'|sort -u |
︙ | ︙ | |||
70 71 72 73 74 75 76 | #f))) (if cinfo cinfo (if (server:check-if-running areapath) (client:setup areapath) #f)))) | > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > | > | 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 | #f))) (if cinfo cinfo (if (server:check-if-running areapath) (client:setup areapath) #f)))) ;; return the handle struct for sending queries to a specific database ;; - initializes the connection object if this is the first access ;; - finds the "captain" and asks who to talk to for the given dbfname ;; - establishes the connection to the current dbowner ;; (define (rmt:connect alldat dbfname dbtype) (let* ((ulexdat (or (alldat-ulexdat alldat) (rmt:setup-ulex alldat)))) (ulex:connect ulexdat dbfname dbtype))) ;; setup the remote calls (define (rmt:setup-ulex alldat) (let* ((new-ulexdat (ulex:setup))) ;; establish connection to ulex (alldat-ulexdat-set! alldat new-ulexdat) (let ((udata (alldat-ulexdat alldat))) ;; register all needed procs (ulex:register-handler udata 'ping common:get-full-version) (ulex:register-handler udata 'login common:get-full-version) ;; force setup of the connection new-ulexdat))) ;; set up a connection to the current owner of the dbfile associated with rid ;; then send the query to that dbfile owner and wait for a response. ;; (define (rmt:send-receive cmd rid params #!key (attemptnum 1)(area-dat #f)) ;; start attemptnum at 1 so the modulo below works as expected (let* ((alldat *alldat*) (areapath (alldat-areapath alldat)) (dbtype (if (or (not rid)(< rid 1)) ;; this is the criteria for "main.db" 'main 'runs)) (dbfname (if (eq? dbtype 'main) "main.db" (conc rid ".db"))) (dbfile (conc areapath "/.db/" dbfname)) (ulexconn (rmt:connect alldat dbfname dbtype))) (rmt:open-qry-close-locally cmd 0 params))) ;; ;; ;; #;(common:telemetry-log (conc "rmt:"(->string cmd)) ;; ;; #;(define (rmt:send-receive cmd rid params #!key (attemptnum 1)(area-dat #f)) ;; start attemptnum at 1 so the modulo below works as expected ;; ;; ;; ;; #;(common:telemetry-log (conc "rmt:"(->string cmd)) ;; ;; payload: `((rid . ,rid) ;; ;; (params . ,params))) |
︙ | ︙ | |||
307 308 309 310 311 312 313 | (mutex-unlock! *db-stats-mutex*) res)) (define (rmt:open-qry-close-locally cmd run-id params #!key (remretries 5)) (let* ((qry-is-write (not (member cmd api:read-only-queries))) (db-file-path (db:dbfile-path)) ;; 0)) (dbstruct-local (db:setup #t)) ;; make-dbr:dbstruct path: dbdir local: #t))) | | | 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | (mutex-unlock! *db-stats-mutex*) res)) (define (rmt:open-qry-close-locally cmd run-id params #!key (remretries 5)) (let* ((qry-is-write (not (member cmd api:read-only-queries))) (db-file-path (db:dbfile-path)) ;; 0)) (dbstruct-local (db:setup #t)) ;; make-dbr:dbstruct path: dbdir local: #t))) (read-only (not (file-writable? db-file-path))) (start (current-milliseconds)) (resdat (if (not (and read-only qry-is-write)) (let ((v (api:execute-requests dbstruct-local (vector (symbol->string cmd) params)))) (handle-exceptions ;; there has been a long history of receiving strange errors from values returned by the client when things go wrong.. exn ;; This is an attempt to detect that situation and recover gracefully (begin (debug:print 0 *default-log-port* "ERROR: bad data from server " v " message: " ((condition-property-accessor 'exn 'message) exn)) |
︙ | ︙ | |||
331 332 333 334 335 336 337 | (duration (- (current-milliseconds) start))) (if (and read-only qry-is-write) (debug:print 0 *default-log-port* "ERROR: attempt to write to read-only database ignored. cmd=" cmd)) (if (not success) (if (> remretries 0) (begin (debug:print-error 0 *default-log-port* "local query failed. Trying again.") | | | 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | (duration (- (current-milliseconds) start))) (if (and read-only qry-is-write) (debug:print 0 *default-log-port* "ERROR: attempt to write to read-only database ignored. cmd=" cmd)) (if (not success) (if (> remretries 0) (begin (debug:print-error 0 *default-log-port* "local query failed. Trying again.") (thread-sleep! (/ (pseudo-random-integer 5000) 1000)) ;; some random delay (rmt:open-qry-close-locally cmd run-id params remretries: (- remretries 1))) (begin (debug:print-error 0 *default-log-port* "too many retries in rmt:open-qry-close-locally, giving up") #f)) (begin ;; (rmt:update-db-stats run-id cmd params duration) ;; mark this run as dirty if this was a write, the watchdog is responsible for syncing it |
︙ | ︙ | |||
915 916 917 918 919 920 921 | remote-ro-mode-checked-set! remote-ro-mode-checked) (define (rmtmod:calc-ro-mode runremote *toppath*) (if (and runremote (remote-ro-mode-checked runremote)) (remote-ro-mode runremote) (let* ((dbfile (conc *toppath* "/megatest.db")) | | | 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 | remote-ro-mode-checked-set! remote-ro-mode-checked) (define (rmtmod:calc-ro-mode runremote *toppath*) (if (and runremote (remote-ro-mode-checked runremote)) (remote-ro-mode runremote) (let* ((dbfile (conc *toppath* "/megatest.db")) (ro-mode (not (file-writable? dbfile)))) ;; TODO: use dbstruct or runremote to figure this out in future (if runremote (begin (remote-ro-mode-set! runremote ro-mode) (remote-ro-mode-checked-set! runremote #t) ro-mode) ro-mode)))) |
︙ | ︙ |
Modified runconfigmod.scm from [c100771fed] to [bd94510a8b].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit runconfigmod)) (declare (uses commonmod)) (module runconfigmod * | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | (declare (unit runconfigmod)) (declare (uses commonmod)) (module runconfigmod * (import scheme (chicken base) ) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) (import commonmod) ;; (use (prefix ulex ulex:)) (include "common_records.scm") ) |
Modified runsmod.scm from [4385dac738] to [7b35777037].
︙ | ︙ | |||
34 35 36 37 38 39 40 | (declare (uses tasksmod)) (declare (uses testsmod)) (declare (uses itemsmod)) (module runsmod * | | | > > | | | < | 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 | (declare (uses tasksmod)) (declare (uses testsmod)) (declare (uses itemsmod)) (module runsmod * (import scheme chicken.base chicken.random chicken.port chicken.file chicken.string) (import chicken.time chicken.condition chicken.process chicken.process-context.posix chicken.process-context) (import system-information chicken.process.signal chicken.sort chicken.file.posix chicken.io chicken.time.posix chicken.pretty-print) (import chicken.pathname) (import (prefix base64 base64:) (prefix sqlite3 sqlite3:) call-with-environment-variables ;;csv directory-utils format matchable message-digest md5 chicken.port regex srfi-1 srfi-1 srfi-13 srfi-18 srfi-18 srfi-69 |
︙ | ︙ | |||
94 95 96 97 98 99 100 | hed tal reg reruns test-record test-name item-path jobgroup waitons testmode newtal itemmaps prereqs-not-met) (define (set-item-env-vars itemdat) (for-each (lambda (item) (debug:print 2 *default-log-port* "setenv " (car item) " " (cadr item)) | | | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | hed tal reg reruns test-record test-name item-path jobgroup waitons testmode newtal itemmaps prereqs-not-met) (define (set-item-env-vars itemdat) (for-each (lambda (item) (debug:print 2 *default-log-port* "setenv " (car item) " " (cadr item)) (set-environment-variable! (car item) (cadr item))) itemdat)) ;; Every time can-run-more-tests is called increment the delay ;; ;; NOTE: We run this server-side!! Do not use this global except in the runs:can-run-more-tests routine ;; (define *last-num-running-tests* 0) |
︙ | ︙ | |||
325 326 327 328 329 330 331 | (define (runs:run-tests target runname test-patts user flags #!key (run-count 1)) ;; test-names (let* ((keys (keys:config-get-fields *configdat*)) (keyvals (keys:target->keyval keys target)) (run-id (rmt:register-run keyvals runname "new" "n/a" user (args:get-arg "-contour"))) ;; test-name))) ;; (deferred '()) ;; delay running these since they have a waiton clause (runconfigf (conc *toppath* "/runconfigs.config")) (dbfile (conc *toppath* "/megatest.db")) | | | 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | (define (runs:run-tests target runname test-patts user flags #!key (run-count 1)) ;; test-names (let* ((keys (keys:config-get-fields *configdat*)) (keyvals (keys:target->keyval keys target)) (run-id (rmt:register-run keyvals runname "new" "n/a" user (args:get-arg "-contour"))) ;; test-name))) ;; (deferred '()) ;; delay running these since they have a waiton clause (runconfigf (conc *toppath* "/runconfigs.config")) (dbfile (conc *toppath* "/megatest.db")) (readonly-mode (not (file-writable? dbfile))) (test-records (make-hash-table)) ;; need to process runconfigs before generating these lists (all-tests-registry #f) ;; (tests:get-all)) ;; (tests:get-valid-tests (make-hash-table) test-search-path)) ;; all valid tests to check waiton names (all-test-names #f) ;; (hash-table-keys all-tests-registry)) (test-names #f) ;; Generated by a call to (tests:filter-test-names all-test-names test-patts)) (required-tests #f) ;; Put fully qualified test/testpath names in this list to be done (waitors-upon (make-hash-table)) ;; given a test, return list of tests waiting upon this test. |
︙ | ︙ | |||
492 493 494 495 496 497 498 | ;;====================================================================== (if (not (null? test-names)) ;; BEGIN test-names loop (let loop ((hed (car test-names)) ;; NOTE: This is the main loop that iterates over the test-names (tal (cdr test-names))) ;; 'return-procs tells the config reader to prep running system but return a proc (debug:print-info 4 *default-log-port* "\n\ntestpatt elaboration loop => hed="hed " tal="tal" test-patts="test-patts" test-names="test-names) (change-directory *toppath*) ;; PLEASE OPTIMIZE ME!!! I think this should be a no-op but there are several places where change-directories could be happening. | | | 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 | ;;====================================================================== (if (not (null? test-names)) ;; BEGIN test-names loop (let loop ((hed (car test-names)) ;; NOTE: This is the main loop that iterates over the test-names (tal (cdr test-names))) ;; 'return-procs tells the config reader to prep running system but return a proc (debug:print-info 4 *default-log-port* "\n\ntestpatt elaboration loop => hed="hed " tal="tal" test-patts="test-patts" test-names="test-names) (change-directory *toppath*) ;; PLEASE OPTIMIZE ME!!! I think this should be a no-op but there are several places where change-directories could be happening. (set-environment-variable! "MT_TEST_NAME" hed) ;; (let*-values (((waitons waitors config) (tests:get-waitons hed all-tests-registry)) ;; NOTE: Have the config - can extract [waitons] section ((hed-mode) (let ((m (configf:lookup config "requirements" "mode"))) (if m (map string->symbol (string-split m)) '(normal)))) |
︙ | ︙ | |||
783 784 785 786 787 788 789 | ;; - prereqs are completed and passed (we could consider removing "and passed" -- it would change behavior from current) ((or (null? prereqs-not-met) (and (member 'toplevel testmode) (null? non-completed))) (debug:print-info 4 *default-log-port* "cond branch - " "ei-2") (debug:print-info 4 *default-log-port* "runs:expand-items: (or (null? prereqs-not-met) (and (member 'toplevel testmode)(null? non-completed)))") (let ((test-name (tests:testqueue-get-testname test-record))) | | | | 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 | ;; - prereqs are completed and passed (we could consider removing "and passed" -- it would change behavior from current) ((or (null? prereqs-not-met) (and (member 'toplevel testmode) (null? non-completed))) (debug:print-info 4 *default-log-port* "cond branch - " "ei-2") (debug:print-info 4 *default-log-port* "runs:expand-items: (or (null? prereqs-not-met) (and (member 'toplevel testmode)(null? non-completed)))") (let ((test-name (tests:testqueue-get-testname test-record))) (set-environment-variable! "MT_TEST_NAME" test-name) ;; (set-environment-variable! "MT_RUNNAME" runname) (runs:set-megatest-env-vars run-id inrunname: runname) ;; these may be needed by the launching process (let ((items-list (items:get-items-from-config tconfig))) (if (list? items-list) (begin (if (null? items-list) (let ((test-id (rmt:get-test-id run-id test-name "")) (num-items (rmt:test-toplevel-num-items run-id test-name))) |
︙ | ︙ | |||
1914 1915 1916 1917 1918 1919 1920 | (lambda (vardat) (let ((var (car vardat)) (val (cdr vardat))) (if (not (equal? (get-environment-variable var) val)) (handle-exceptions exn (debug:print-error 0 *default-log-port* "Failed to set " var " to " val) | | | 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 | (lambda (vardat) (let ((var (car vardat)) (val (cdr vardat))) (if (not (equal? (get-environment-variable var) val)) (handle-exceptions exn (debug:print-error 0 *default-log-port* "Failed to set " var " to " val) (set-environment-variable! var val))))) all-vars) )) ;;====================================================================== ;; END OF NEW STUFF ;;====================================================================== |
︙ | ︙ | |||
2065 2066 2067 2068 2069 2070 2071 | (state-status (if (string? new-state-status) (string-split new-state-status ",") '(#f #f))) (rp-mutex (make-mutex)) (bup-mutex (make-mutex)) (keep-records (args:get-arg "-keep-records"))) ;; used in conjunction with -remove-runs to keep the records, TODO: consolidate this with "mode". (let* ((write-access-actions '(remove-runs set-state-status archive run-wait kill-runs)) (dbfile (conc *toppath* "/megatest.db")) | | | 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 | (state-status (if (string? new-state-status) (string-split new-state-status ",") '(#f #f))) (rp-mutex (make-mutex)) (bup-mutex (make-mutex)) (keep-records (args:get-arg "-keep-records"))) ;; used in conjunction with -remove-runs to keep the records, TODO: consolidate this with "mode". (let* ((write-access-actions '(remove-runs set-state-status archive run-wait kill-runs)) (dbfile (conc *toppath* "/megatest.db")) (readonly-mode (not (file-writable? dbfile)))) (when (and readonly-mode (member action write-access-actions)) (debug:print-error 0 *default-log-port* "megatest.db is readonly. Cannot proceed with action ["action"] in which write-access isrequired .") (exit 1))) (debug:print-info 4 *default-log-port* "runs:operate-on => Header: " header " action: " action " new-state-status: " new-state-status) (if (> 2 (length state-status)) |
︙ | ︙ | |||
2871 2872 2873 2874 2875 2876 2877 | #t) (process-signal pid signal/int) (thread-sleep! 5) (if (process:alive? pid) (process-signal pid signal/kill))))) ;; (call-with-environment-variables (let ((old-targethost (getenv "TARGETHOST"))) | | | | | | | 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 | #t) (process-signal pid signal/int) (thread-sleep! 5) (if (process:alive? pid) (process-signal pid signal/kill))))) ;; (call-with-environment-variables (let ((old-targethost (getenv "TARGETHOST"))) (set-environment-variable! "TARGETHOST" hostname) (set-environment-variable! "TARGETHOST_LOGF" "server-kills.log") (system (conc "nbfake kill " pid)) (if old-targethost (set-environment-variable! "TARGETHOST" old-targethost)) (unset-environment-variable! "TARGETHOST") (unset-environment-variable! "TARGETHOST_LOGF")))) (debug:print-error 0 *default-log-port* "no record or improper record for " target "/" run-name " in tasks_queue in main.db")))) records))) (define (task:get-run-times) (let* ( (run-patt (if (args:get-arg "-run-patt") (args:get-arg "-run-patt") |
︙ | ︙ | |||
3541 3542 3543 3544 3545 3546 3547 | (maxload (if force-maxload maxload-in (max maxload-in 0.5))) ;; so maxload must be greater than 0.5 for now BUG - FIXME? (first (car loadavg)) (next (cadr loadavg)) (adjload (* maxload (max 1 numcpus))) ;; possible bug where numcpus (or could be maxload) is zero, crude fallback is to at least use 1 (loadjmp (- first next)) | | | 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 | (maxload (if force-maxload maxload-in (max maxload-in 0.5))) ;; so maxload must be greater than 0.5 for now BUG - FIXME? (first (car loadavg)) (next (cadr loadavg)) (adjload (* maxload (max 1 numcpus))) ;; possible bug where numcpus (or could be maxload) is zero, crude fallback is to at least use 1 (loadjmp (- first next)) (adjwait (min (+ 300 (pseudo-random-integer 10)) (abs (* (+ (pseudo-random-integer 10)(/ (- 1000 count) 10) waitdelay) (- first adjload) )) ))) ;; add some randomness to the time to break any alignment where netbatch dumps many jobs to machines simultaneously (debug:print-info 1 *default-log-port* "Checking cpuload on " (or remote-host "localhost") ", maxload: " maxload ", load: " first ", adjload: " adjload ", loadjmp: " loadjmp) (cond ((and (> first adjload) (> count 0)) (debug:print-info 0 *default-log-port* "server start delayed " adjwait " seconds due to load " first " exceeding max of " adjload " on server " (or remote-host (get-host-name)) " (normalized load-limit: " maxload ") " (if msg msg "")) (thread-sleep! adjwait) |
︙ | ︙ | |||
3792 3793 3794 3795 3796 3797 3798 | ;; Do NOT check if not on homehost! ;; (define (common:exit-on-version-changed) (if (common:on-homehost?) (if (common:api-changed?) (let* ((mtconf (conc (get-environment-variable "MT_RUN_AREA_HOME") "/megatest.config")) (dbfile (conc (get-environment-variable "MT_RUN_AREA_HOME") "/megatest.db")) | | | 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 | ;; Do NOT check if not on homehost! ;; (define (common:exit-on-version-changed) (if (common:on-homehost?) (if (common:api-changed?) (let* ((mtconf (conc (get-environment-variable "MT_RUN_AREA_HOME") "/megatest.config")) (dbfile (conc (get-environment-variable "MT_RUN_AREA_HOME") "/megatest.db")) (read-only (not (file-writable? dbfile))) (dbstruct (db:setup #t))) (debug:print 0 *default-log-port* "WARNING: Version mismatch!\n" " expected: " (common:version-signature) "\n" " got: " (common:get-last-run-version)) (cond ((get-environment-variable "MT_SKIP_DB_MIGRATE") #t) |
︙ | ︙ | |||
3930 3931 3932 3933 3934 3935 3936 | (let* ((ns (server:get-num-servers)) (servers (server:get-best (server:get-list areapath)))) ;; (print "servers: " servers " ns: " ns) (if (or (and servers (null? servers)) (not servers) (and (list? servers) | | | 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 | (let* ((ns (server:get-num-servers)) (servers (server:get-best (server:get-list areapath)))) ;; (print "servers: " servers " ns: " ns) (if (or (and servers (null? servers)) (not servers) (and (list? servers) (< (length servers) (pseudo-random-integer ns)))) ;; somewhere between 0 and numservers #f (let loop ((hed (car servers)) (tal (cdr servers))) (let ((res (server:check-server hed))) (if res res (if (null? tal) |
︙ | ︙ | |||
3986 3987 3988 3989 3990 3991 3992 | (if (and target-host ;; look at target host, is it host.domain.tld or ip address and does it ;; match current ip or hostname (not (string-match (conc "("curr-host "|" curr-host"\\..*)") target-host)) (not (equal? curr-ip target-host))) (begin (debug:print-info 0 *default-log-port* "Starting server on " target-host ", logfile is " logfile) | | | | | | | | 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 | (if (and target-host ;; look at target host, is it host.domain.tld or ip address and does it ;; match current ip or hostname (not (string-match (conc "("curr-host "|" curr-host"\\..*)") target-host)) (not (equal? curr-ip target-host))) (begin (debug:print-info 0 *default-log-port* "Starting server on " target-host ", logfile is " logfile) (set-environment-variable! "TARGETHOST" target-host))) (set-environment-variable! "TARGETHOST_LOGF" logfile) (thread-sleep! (/ (pseudo-random-integer 5000) 1000)) ;; add about a random (up to 5 seconds) initial delay. It seems pretty common that many running tests request a server at the same time (common:wait-for-normalized-load load-limit " delaying server start due to load" target-host) ;; do not try starting servers on an already overloaded machine, just wait forever (system (conc "nbfake " cmdln)) (unset-environment-variable! "TARGETHOST_LOGF") (if (get-environment-variable "TARGETHOST")(unset-environment-variable! "TARGETHOST")) (thread-join! log-rotate) (pop-directory))) ;; kind start up of servers, wait 40 seconds before allowing another server for a given ;; run-id to be launched #;(define (server:kind-run areapath) (if (not (server:check-if-running areapath)) ;; why try if there is already a server running? (let* ((last-run-dat (hash-table-ref/default *server-kind-run* areapath '(0 0))) ;; callnum, whenrun (call-num (car last-run-dat)) (when-run (cadr last-run-dat)) (run-delay (+ (case call-num ((0) 0) ((1) 20) ((2) 300) (else 600)) (pseudo-random-integer 5))) ;; add a small random number just in case a lot of jobs hit the work hosts simultaneously (lock-file (conc areapath "/logs/server-start.lock"))) (if (> (- (current-seconds) when-run) run-delay) (begin (common:simple-file-lock-and-wait lock-file expire-time: 15) (server:run areapath) (thread-sleep! 2) ;; don't release the lock for at least a few seconds (common:simple-file-release-lock lock-file))) |
︙ | ︙ | |||
4087 4088 4089 4090 4091 4092 4093 | (if (> my-start-time (handle-exceptions exn 0 (file-modification-time lockf))) ;; we started since current re-gen in flight, delay a little and try again (begin (debug:print-info 1 *default-log-port* "Waiting to update " outputfilename ", another test currently updating it") | | | 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 | (if (> my-start-time (handle-exceptions exn 0 (file-modification-time lockf))) ;; we started since current re-gen in flight, delay a little and try again (begin (debug:print-info 1 *default-log-port* "Waiting to update " outputfilename ", another test currently updating it") (thread-sleep! (+ 5 (pseudo-random-integer 5))) ;; delay between 5 and 10 seconds (loop (common:simple-file-lock lockf)))))))))) (define (tests:generate-html-summary-for-iterated-test run-id test-id test-name outputfilename) (let ((counts (make-hash-table)) (statecounts (make-hash-table)) (outtxt "") (tot 0) |
︙ | ︙ | |||
4768 4769 4770 4771 4772 4773 4774 | '() (lambda (x p) (let* ((targ-path (string-intersperse p "/")) (full-path (conc linktree "/" targ-path)) (run-name (car (reverse p)))) (if (and (common:file-exists? full-path) (directory? full-path) | | | 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 | '() (lambda (x p) (let* ((targ-path (string-intersperse p "/")) (full-path (conc linktree "/" targ-path)) (run-name (car (reverse p)))) (if (and (common:file-exists? full-path) (directory? full-path) (file-writable? full-path)) (s:a run-name 'href (conc targ-path "/run-summary.html")) (begin (debug:print 0 *default-log-port* "INFO: Can't create " targ-path "/run-summary.html") (conc run-name " (Not able to create summary at " targ-path ")"))))))))))) (close-output-port oup) (common:simple-file-release-lock lockfile) |
︙ | ︙ | |||
4807 4808 4809 4810 4811 4812 4813 | path-parts)) test-dats)) (tests-htree (common:list->htree tests-tree-dat)) (html-dir (conc linktree "/" (string-intersperse run-dir "/"))) (html-path (conc html-dir "/run-summary.html")) (oup (if (and (common:file-exists? html-dir) (directory? html-dir) | | | 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 | path-parts)) test-dats)) (tests-htree (common:list->htree tests-tree-dat)) (html-dir (conc linktree "/" (string-intersperse run-dir "/"))) (html-path (conc html-dir "/run-summary.html")) (oup (if (and (common:file-exists? html-dir) (directory? html-dir) (file-writable? html-dir)) (open-output-file html-path) #f))) ;; (print "run-dir: " run-dir ", tests-tree-dat: " tests-tree-dat) (if oup (begin (s:output-new oup |
︙ | ︙ | |||
4839 4840 4841 4842 4843 4844 4845 | (alt-file (conc full-targ "/megatest-rollup-" test-name ".html")) (html-file (if (common:file-exists? alt-file) alt-file std-file)) (run-name (car (reverse p)))) (if (and (not (common:file-exists? full-targ)) (directory? full-targ) | | | 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 | (alt-file (conc full-targ "/megatest-rollup-" test-name ".html")) (html-file (if (common:file-exists? alt-file) alt-file std-file)) (run-name (car (reverse p)))) (if (and (not (common:file-exists? full-targ)) (directory? full-targ) (file-writable? full-targ)) (tests:summarize-test run-id (rmt:get-test-id run-id test-name item-path))) (if (common:file-exists? full-targ) (s:a run-name 'href html-file) (begin (debug:print 0 *default-log-port* "ERROR: can't access " full-targ) |
︙ | ︙ | |||
4918 4919 4920 4921 4922 4923 4924 | ;; summarize test in to a file test-summary.html in the test directory ;; (define (tests:summarize-test run-id test-id) (let* ((test-dat (rmt:get-test-info-by-id run-id test-id)) (out-dir (db:test-get-rundir test-dat)) (out-file (conc out-dir "/test-summary.html"))) ;; first verify we are able to write the output file | | | 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 | ;; summarize test in to a file test-summary.html in the test directory ;; (define (tests:summarize-test run-id test-id) (let* ((test-dat (rmt:get-test-info-by-id run-id test-id)) (out-dir (db:test-get-rundir test-dat)) (out-file (conc out-dir "/test-summary.html"))) ;; first verify we are able to write the output file (if (not (file-writable? out-dir)) (debug:print 0 *default-log-port* "ERROR: cannot write test-summary.html to " out-dir) (let* (;; (steps-dat (rmt:get-steps-for-test run-id test-id)) (test-name (db:test-get-testname test-dat)) (item-path (db:test-get-item-path test-dat)) (full-name (db:test-make-full-name test-name item-path)) (oup (open-output-file out-file)) (status (db:test-get-status test-dat)) |
︙ | ︙ | |||
5122 5123 5124 5125 5126 5127 5128 | (if enccmd (common:read-encoded-string enccmd) '()))) ;; return (conc status ": " comment) from the final section so that ;; the comment can be set in the step record in launch.scm ;; | | | 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 | (if enccmd (common:read-encoded-string enccmd) '()))) ;; return (conc status ": " comment) from the final section so that ;; the comment can be set in the step record in launch.scm ;; #;(define (launch:load-logpro-dat run-id test-id stepname) (let ((cname (conc stepname ".dat"))) (if (common:file-exists? cname) (let* ((dat (configf:read-config cname #f #f)) (csvr (db:logpro-dat->csv dat stepname)) (csvt (let-values (((fmt-cell fmt-record fmt-csv) (make-format ","))) (fmt-csv (map list->csv-record csvr)))) (status (configf:lookup dat "final" "exit-status")) |
︙ | ︙ | |||
5254 5255 5256 5257 5258 5259 5260 | (let ((exinfo (launch:einf-exit-code exit-info)) ;; (vector-ref exit-info 2)) (logfna (if logpro-used (conc stepname ".html") "")) (comment #f)) (if logpro-used (let ((datfile (conc stepname ".dat"))) ;; load the .dat file into the test_data table if it exists | | | | 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 | (let ((exinfo (launch:einf-exit-code exit-info)) ;; (vector-ref exit-info 2)) (logfna (if logpro-used (conc stepname ".html") "")) (comment #f)) (if logpro-used (let ((datfile (conc stepname ".dat"))) ;; load the .dat file into the test_data table if it exists ;;(if (common:file-exists? datfile) ;; (set! comment (launch:load-logpro-dat run-id test-id stepname))) (rmt:test-set-log! run-id test-id (conc stepname ".html")))) (rmt:teststep-set-status! run-id test-id stepname "end" exinfo comment logfna)) ;; set the test final status (let* ((process-exit-status (launch:einf-exit-code exit-info)) ;; (vector-ref exit-info 2)) (this-step-status (cond ((and (eq? process-exit-status 2) logpro-used) 'warn) ;; logpro 2 = warnings ((and (eq? process-exit-status 3) logpro-used) 'check) ;; logpro 3 = check |
︙ | ︙ | |||
5413 5414 5415 5416 5417 5418 5419 | (prevstep #f)) (debug:print-info 0 *default-log-port* "Processing ezstep \"" (string-intersperse ezstep " ") "\"") ;; check exit-info (vector-ref exit-info 1) (if (launch:einf-exit-status exit-info) ;; (vector-ref exit-info 1) (let ((logpro-used (launch:runstep ezstep run-id test-id exit-info m tal testconfig)) (stepname (car ezstep))) ;; if logpro-used read in the stepname.dat file | | | | 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 | (prevstep #f)) (debug:print-info 0 *default-log-port* "Processing ezstep \"" (string-intersperse ezstep " ") "\"") ;; check exit-info (vector-ref exit-info 1) (if (launch:einf-exit-status exit-info) ;; (vector-ref exit-info 1) (let ((logpro-used (launch:runstep ezstep run-id test-id exit-info m tal testconfig)) (stepname (car ezstep))) ;; if logpro-used read in the stepname.dat file ;;(if (and logpro-used (common:file-exists? (conc stepname ".dat"))) ;; (launch:load-logpro-dat run-id test-id stepname)) (if (steprun-good? logpro-used (launch:einf-exit-code exit-info)) (if (not (null? tal)) (loop (car tal) (cdr tal) stepname)) (debug:print 0 *default-log-port* "WARNING: step " (car ezstep) " failed. Stopping"))) (debug:print 0 *default-log-port* "WARNING: a prior step failed, stopping at " ezstep))))))))) (define (launch:monitor-job run-id test-id item-path fullrunscript ezsteps test-name tconfigreg exit-info m work-area runtlim misc-flags) |
︙ | ︙ | |||
5551 5552 5553 5554 5555 5556 5557 | (let* ((target (or intarget (common:args-get-target) (get-environment-variable "MT_TARGET"))) (keys (if inkeys inkeys (rmt:get-keys))) (keyvals (if inkeyvals inkeyvals (keys:target->keyval keys target))) (vals (hash-table-ref/default *env-vars-by-run-id* run-id #f)) (link-tree (common:get-linktree))) ;; (configf:lookup *configdat* "setup" "linktree"))) | | | | | | 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 | (let* ((target (or intarget (common:args-get-target) (get-environment-variable "MT_TARGET"))) (keys (if inkeys inkeys (rmt:get-keys))) (keyvals (if inkeyvals inkeyvals (keys:target->keyval keys target))) (vals (hash-table-ref/default *env-vars-by-run-id* run-id #f)) (link-tree (common:get-linktree))) ;; (configf:lookup *configdat* "setup" "linktree"))) (if testname (set-environment-variable! "MT_TEST_NAME" testname)) (if itempath (set-environment-variable! "MT_ITEMPATH" itempath)) ;; get the info from the db and put it in the cache (if link-tree (set-environment-variable! "MT_LINKTREE" link-tree) (debug:print-error 0 *default-log-port* "linktree not set, should be set in megatest.config in [setup] section.")) (if (not vals) (let ((ht (make-hash-table))) (hash-table-set! *env-vars-by-run-id* run-id ht) (set! vals ht) (for-each (lambda (key) (hash-table-set! vals (car key) (cadr key))) keyvals))) ;; from the cached data set the vars (hash-table-for-each vals (lambda (key val) (debug:print 2 *default-log-port* "setenv " key " " val) (safe-setenv key val))) ;;(bb-check-path msg: "runs:set-megatest-env-vars block 1") ;;(BB> "*env-vars-by-run-id*/runid("run-id" vals="(hash-table->alist vals)) (if (not (get-environment-variable "MT_TARGET"))(set-environment-variable! "MT_TARGET" target)) ;; we had a case where there was an exception generated by the hash-table-ref ;; due to *configdat* being #f Adding a handle and exit (let fatal-loop ((count 0)) (handle-exceptions exn (let ((call-chain (get-call-chain)) (msg ((condition-property-accessor 'exn 'message) exn))) |
︙ | ︙ | |||
5611 5612 5613 5614 5615 5616 5617 | (thread-sleep! 2) ;; assuming nfs lag. (launch:setup force-reread: #t)) (alist->env-vars (hash-table-ref/default *configdat* "env-override" '())))) ;;;; environment is tainted HERE in this let block. ;;(bb-check-path msg: "runs:set-megatest-env-vars block 2") ;; Lets use this as an opportunity to put MT_RUNNAME in the environment (let ((runname (if inrunname inrunname (rmt:get-run-name-from-id run-id)))) (if runname | | | | | | | | 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 | (thread-sleep! 2) ;; assuming nfs lag. (launch:setup force-reread: #t)) (alist->env-vars (hash-table-ref/default *configdat* "env-override" '())))) ;;;; environment is tainted HERE in this let block. ;;(bb-check-path msg: "runs:set-megatest-env-vars block 2") ;; Lets use this as an opportunity to put MT_RUNNAME in the environment (let ((runname (if inrunname inrunname (rmt:get-run-name-from-id run-id)))) (if runname (set-environment-variable! "MT_RUNNAME" runname) (debug:print-error 0 *default-log-port* "no value for runname for id " run-id))) (set-environment-variable! "MT_RUN_AREA_HOME" *toppath*) ;; if a testname and itempath are available set the remaining appropriate variables (if testname (set-environment-variable! "MT_TEST_NAME" testname)) (if itempath (set-environment-variable! "MT_ITEMPATH" itempath)) ;;(bb-check-path msg: "runs:set-megatest-env-vars block 3") (if (and testname link-tree) (set-environment-variable! "MT_TEST_RUN_DIR" (conc (getenv "MT_LINKTREE") "/" (getenv "MT_TARGET") "/" (getenv "MT_RUNNAME") "/" (getenv "MT_TEST_NAME") (if (and itempath (not (equal? itempath ""))) (conc "/" itempath) "")))))) (define (launch:execute encoded-cmd) (let* ((cmdinfo (common:read-encoded-string encoded-cmd)) (tconfigreg #f)) (set-environment-variable! "MT_CMDINFO" encoded-cmd) ;;(bb-check-path msg: "launch:execute incoming") (if (list? cmdinfo) ;; ((testpath /tmp/mrwellan/jazzmind/src/example_run/tests/sqlitespeed) ;; (test-name sqlitespeed) (runscript runscript.rb) (db-host localhost) (run-id 1)) (let* ((testpath (assoc/default 'testpath cmdinfo)) ;; testpath is the test spec area (top-path (assoc/default 'toppath cmdinfo)) (work-area (assoc/default 'work-area cmdinfo)) ;; work-area is the test run area (test-name (assoc/default 'test-name cmdinfo)) |
︙ | ︙ | |||
5669 5670 5671 5672 5673 5674 5675 | (keyvals #f) (fullrunscript (if (not runscript) #f (if (substring-index "/" runscript) runscript ;; use unadultered if contains slashes (let ((fulln (conc work-area "/" runscript))) (if (and (common:file-exists? fulln) | | | 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 | (keyvals #f) (fullrunscript (if (not runscript) #f (if (substring-index "/" runscript) runscript ;; use unadultered if contains slashes (let ((fulln (conc work-area "/" runscript))) (if (and (common:file-exists? fulln) (file-executable? fulln)) fulln runscript))))) ;; assume it is on the path (check-work-area (lambda () ;; NFS might not have propagated the directory meta data to the run host - give it time if needed (let loop ((count 0)) (if (or (common:directory-exists? work-area) (> count 10)) |
︙ | ︙ | |||
5710 5711 5712 5713 5714 5715 5716 | (debug:print 0 *default-log-port* "INFO: test data from " testpath " not copied properly or filesystem problems causing data to not be found. Re-running the copy command.") (debug:print 0 *default-log-port* "INFO: missing files from " work-area ": " (string-intersperse bad-files ", ")) (launch:test-copy testpath work-area)))) ;; one more time, change to the work-area directory (change-directory work-area))) ) ;; let* | | | | | | | | | | 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 | (debug:print 0 *default-log-port* "INFO: test data from " testpath " not copied properly or filesystem problems causing data to not be found. Re-running the copy command.") (debug:print 0 *default-log-port* "INFO: missing files from " work-area ": " (string-intersperse bad-files ", ")) (launch:test-copy testpath work-area)))) ;; one more time, change to the work-area directory (change-directory work-area))) ) ;; let* (if contour (set-environment-variable! "MT_CONTOUR" contour)) ;; immediated set some key variables from CMDINFO data, yes, these will be set again below ... ;; (set-environment-variable! "MT_TESTSUITENAME" areaname) (set-environment-variable! "MT_RUN_AREA_HOME" top-path) (set! *toppath* top-path) (change-directory *toppath*) ;; temporarily switch to the run area home (set-environment-variable! "MT_TEST_RUN_DIR" work-area) (launch:setup) ;; should be properly in the run area home now (if contour (set-environment-variable! "MT_CONTOUR" contour)) ;; immediated set some key variables from CMDINFO data, yes, these will be set again below ... ;; (set-environment-variable! "MT_TESTSUITENAME" areaname) (set-environment-variable! "MT_RUN_AREA_HOME" top-path) (set! *toppath* top-path) (change-directory *toppath*) ;; temporarily switch to the run area home (set-environment-variable! "MT_TEST_RUN_DIR" work-area) (launch:setup) ;; should be properly in the run area home now (set! tconfigreg (tests:get-all)) ;; mapping of testname => test source path (let ((sighand (lambda (signum) ;; (signal-mask! signum) ;; to mask or not? seems to cause issues in exiting (if (eq? signum signal/stop) |
︙ | ︙ | |||
5858 5859 5860 5861 5862 5863 5864 | (debug:print 4 *default-log-port* "varpairs: " varpairs) (map (lambda (varpair) (let ((varval (string-split varpair "="))) (if (eq? (length varval) 2) (let ((var (car varval)) (val (cadr varval))) (debug:print 1 *default-log-port* "Adding pre-var/val " var " = " val " to the environment") | | | | | | | | 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 | (debug:print 4 *default-log-port* "varpairs: " varpairs) (map (lambda (varpair) (let ((varval (string-split varpair "="))) (if (eq? (length varval) 2) (let ((var (car varval)) (val (cadr varval))) (debug:print 1 *default-log-port* "Adding pre-var/val " var " = " val " to the environment") (set-environment-variable! var val))))) varpairs))) ;;(bb-check-path msg: "launch:execute post block 2") (for-each (lambda (varval) (let ((var (car varval)) (val (cadr varval))) (if val (set-environment-variable! var val) (begin (debug:print-error 0 *default-log-port* "required variable " var " does not have a valid value. Exiting") (exit))))) (list (list "MT_TEST_RUN_DIR" work-area) (list "MT_TEST_NAME" test-name) (list "MT_ITEM_INFO" (conc itemdat)) (list "MT_ITEMPATH" item-path) (list "MT_RUNNAME" runname) (list "MT_MEGATEST" megatest) (list "MT_TARGET" target) (list "MT_LINKTREE" (common:get-linktree)) ;; (configf:lookup *configdat* "setup" "linktree")) (list "MT_TESTSUITENAME" (common:get-testsuite-name)))) ;;(bb-check-path msg: "launch:execute post block 3") (if mt-bindir-path (set-environment-variable! "PATH" (conc (getenv "PATH") ":" mt-bindir-path))) ;;(bb-check-path msg: "launch:execute post block 4") ;; (change-directory top-path) ;; Can setup as client for server mode now ;; (client:setup) ;; environment overrides are done *before* the remaining critical envars. (alist->env-vars env-ovrd) ;;(bb-check-path msg: "launch:execute post block 41") (runs:set-megatest-env-vars run-id inkeys: keys inkeyvals: keyvals) ;;(bb-check-path msg: "launch:execute post block 42") (set-item-env-vars itemdat) ;;(bb-check-path msg: "launch:execute post block 43") (let ((blacklist (configf:lookup *configdat* "setup" "blacklistvars"))) (if blacklist (let ((vars (string-split blacklist))) (save-environment-as-files "megatest" ignorevars: vars) (for-each (lambda (var) (unset-environment-variable! var)) vars)) (save-environment-as-files "megatest"))) ;;(bb-check-path msg: "launch:execute post block 44") ;; open-run-close not needed for test-set-meta-info ;; (tests:set-full-meta-info #f test-id run-id 0 work-area) ;; (tests:set-full-meta-info test-id run-id 0 work-area) (tests:set-full-meta-info #f test-id run-id 0 work-area 10) ;; (thread-sleep! 0.3) ;; NFS slowness has caused grief here (if (args:get-arg "-xterm") (set! fullrunscript "xterm") (if (and fullrunscript (common:file-exists? fullrunscript) (not (file-executable? fullrunscript))) (system (conc "chmod ug+x " fullrunscript)))) ;; We are about to actually kick off the test ;; so this is a good place to remove the records for ;; any previous runs ;; (db:test-remove-steps db run-id testname itemdat) ;; now is also a good time to write the .testconfig file (let* ((tconfig-fname (conc work-area "/.testconfig")) (tconfig-tmpfile (conc tconfig-fname ".tmp")) (tconfig (tests:get-testconfig test-name item-path tconfigreg #t force-create: #t))) ;; 'return-procs))) (configf:write-alist tconfig tconfig-tmpfile) (move-file tconfig-tmpfile tconfig-fname #t)) ;; (let* ((m (make-mutex)) (kill-job? #f) (exit-info (make-launch:einf pid: #t exit-status: #t exit-code: #t rollup-status: 0)) ;; pid exit-status exit-code (i.e. process was successfully run) rollup-status (job-thread #f) ;; (keep-going #t) (misc-flags (let ((ht (make-hash-table))) |
︙ | ︙ | |||
6193 6194 6195 6196 6197 6198 6199 | (set! *configinfo* first-pass) (set! *toppath* (or toppath (cadr first-pass))) ;; use the gathered data unless already have it (set! toppath *toppath*) (if (not *toppath*) (begin (debug:print-error 0 *default-log-port* "you are not in a megatest area!") (exit 1))) | | | | 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 | (set! *configinfo* first-pass) (set! *toppath* (or toppath (cadr first-pass))) ;; use the gathered data unless already have it (set! toppath *toppath*) (if (not *toppath*) (begin (debug:print-error 0 *default-log-port* "you are not in a megatest area!") (exit 1))) (set-environment-variable! "MT_RUN_AREA_HOME" *toppath*) ;; the seed read is done, now read runconfigs, cache it then read megatest.config one more time and cache it (let* ((keys (rmt:get-keys)) (key-vals (keys:target->keyval keys target)) (linktree (common:get-linktree)) ;; (or (getenv "MT_LINKTREE")(if *configdat* (configf:lookup *configdat* "setup" "linktree") #f))) ; (if *configdat* ; (configf:lookup *configdat* "setup" "linktree") ; (conc *toppath* "/lt")))) (second-pass (configf:find-and-read-config mtconfig environ-patt: "env-override" given-toppath: toppath pathenvvar: "MT_RUN_AREA_HOME")) (runconfigdat (begin ;; this read of the runconfigs will see any adjustments made by re-reading megatest.config (for-each (lambda (kt) (set-environment-variable! (car kt) (cadr kt))) key-vals) (configf:read-config (conc toppath "/runconfigs.config") *runconfigdat* #t ;; consider using runconfig:read some day ... sections: sections))) (cachefiles (launch:get-cache-file-paths areapath toppath target mtconfig)) (mtcachef (car cachefiles)) (rccachef (cdr cachefiles))) ;; trap exception due to stale NFS handle -- Error: (open-output-file) cannot open file - Stale NFS file handle: "/p/fdk/gwa/lefkowit/mtTesting/qa/primbeqa/links/p1222/11/PDK_r1.1.1/prim/clean/pcell_testgen/.runconfigs.cfg-1.6427-7d1e789cb3f62f9cde719a4865bb51b3c17ea853" - ticket 220546342 |
︙ | ︙ | |||
6287 6288 6289 6290 6291 6292 6293 | (create-symbolic-link linktree tlink))))) (begin (debug:print-error 0 *default-log-port* "linktree not defined in [setup] section of megatest.config") ))) (if (and *toppath* (directory-exists? *toppath*)) (begin | | | | 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 | (create-symbolic-link linktree tlink))))) (begin (debug:print-error 0 *default-log-port* "linktree not defined in [setup] section of megatest.config") ))) (if (and *toppath* (directory-exists? *toppath*)) (begin (set-environment-variable! "MT_RUN_AREA_HOME" *toppath*) (set-environment-variable! "MT_TESTSUITENAME" (common:get-testsuite-name))) (begin (debug:print-error 0 *default-log-port* "failed to find the top path to your Megatest area.") (set! *toppath* #f) ;; force it to be false so we return #f #f)) ;; one more attempt to cache the configs for future reading (let* ((cachefiles (launch:get-cache-file-paths areapath toppath target mtconfig)) |
︙ | ︙ | |||
6320 6321 6322 6323 6324 6325 6326 | ) (if (and rccachef mtcachef *runconfigdat* *configdat*) (set! *configstatus* 'fulldata))) ;; if have -append-config then read and append here (let ((cfname (args:get-arg "-append-config"))) (if (and cfname | | | 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 | ) (if (and rccachef mtcachef *runconfigdat* *configdat*) (set! *configstatus* 'fulldata))) ;; if have -append-config then read and append here (let ((cfname (args:get-arg "-append-config"))) (if (and cfname (file-readable? cfname)) (configf:read-config cfname *configdat* #t))) ;; values are added to the hash, no need to do anything special. *toppath*))) (define (get-best-disk confdat testconfig) (let* ((disks (or (and testconfig (hash-table-ref/default testconfig "disks" #f)) (hash-table-ref/default confdat "disks" #f))) (minspace (let ((m (configf:lookup confdat "setup" "minspace"))) |
︙ | ︙ | |||
7081 7082 7083 7084 7085 7086 7087 | (let* ((rundir (if (and (getenv "MT_LINKTREE")(getenv "MT_TARGET")(getenv "MT_RUNNAME")) (conc (getenv "MT_LINKTREE") "/" (getenv "MT_TARGET") "/" (getenv "MT_RUNNAME")) #f)) (cfgf (if rundir (conc rundir "/.runconfig." megatest-version "-" megatest-fossil-hash) #f))) (if (and cfgf (common:file-exists? cfgf) | | | | | | 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 | (let* ((rundir (if (and (getenv "MT_LINKTREE")(getenv "MT_TARGET")(getenv "MT_RUNNAME")) (conc (getenv "MT_LINKTREE") "/" (getenv "MT_TARGET") "/" (getenv "MT_RUNNAME")) #f)) (cfgf (if rundir (conc rundir "/.runconfig." megatest-version "-" megatest-fossil-hash) #f))) (if (and cfgf (common:file-exists? cfgf) (file-writable? cfgf) (common:use-cache?)) (configf:read-alist cfgf) (let* ((keys (rmt:get-keys)) (target (common:args-get-target)) (key-vals (if target (keys:target->keyval keys target) #f)) (sections (if target (list "default" target) #f)) (data (begin (set-environment-variable! "MT_RUN_AREA_HOME" *toppath*) (if key-vals (for-each (lambda (kt) (set-environment-variable! (car kt) (cadr kt))) key-vals)) ;; (read-config (conc *toppath* "/runconfigs.config") #f #t sections: sections)))) (runconfig:read (conc *toppath* "/runconfigs.config") target #f)))) (if (and rundir ;; have all needed variabless (directory-exists? rundir) (file-writable? rundir)) (begin (if (not (common:in-running-test?)) (configf:write-alist data cfgf)) ;; force re-read of megatest.config - this resolves circular references between megatest.config (launch:setup force-reread: #t) ;; (launch:cache-config) ;; there are two independent config cache locations, turning this one off for now. MRW. )) ;; we can safely cache megatest.config since we have a valid runconfig |
︙ | ︙ |
Modified serialize-env.scm from [e0a42785e8] to [53598630e3].
|
| | | | 1 2 3 4 5 6 7 8 9 | (import z3) (import chicken.port chicken.process-context chicken.pretty-print base64) (let* ((env-str (with-output-to-string (lambda () (pp (get-environment-variables))))) (zipped-env-str (z3:encode-buffer env-str)) (b64-env-str (base64-encode zipped-env-str))) (print b64-env-str)) |
Modified servermod.scm from [4e677db538] to [b71a809860].
︙ | ︙ | |||
24 25 26 27 28 29 30 | (declare (uses mtconfigf)) (declare (uses mtargs)) (declare (uses tasksmod)) (module servermod * | | | | > > > | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | (declare (uses mtconfigf)) (declare (uses mtargs)) (declare (uses tasksmod)) (module servermod * (import scheme (chicken base) (chicken file) (chicken condition)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable directory-utils md5 message-digest regex chicken.file.posix chicken.io chicken.sort chicken.time chicken.string chicken.process chicken.process-context chicken.process-context.posix chicken.random system-information stack) (import commonmod) (import dbmod) (import tasksmod) (import (prefix mtargs args:)) (import (prefix mtconfigf configf:)) |
︙ | ︙ | |||
88 89 90 91 92 93 94 | (delete-file* (common:get-sync-lock-filepath)) ) ;; clear out junk records ;; ((dejunk) (db:delay-if-busy mtdb) ;; ok to delay on mtdb | | | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | (delete-file* (common:get-sync-lock-filepath)) ) ;; clear out junk records ;; ((dejunk) (db:delay-if-busy mtdb) ;; ok to delay on mtdb (when (file-writable? (db:dbdat-get-path mtdb)) (db:clean-up mtdb)) (db:clean-up tmpdb) (db:clean-up refndb)) ;; sync runs, test_meta etc. ;; ((old2new) (set! data-synced |
︙ | ︙ | |||
187 188 189 190 191 192 193 | (let ((fname-rx (regexp "^(|.*/)server-(\\d+)-(\\S+).log$")) (day-seconds (* 24 60 60))) ;; if the directory exists continue to get the list ;; otherwise attempt to create the logs dir and then ;; continue (if (if (directory-exists? (conc areapath "/logs")) '() | | | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | (let ((fname-rx (regexp "^(|.*/)server-(\\d+)-(\\S+).log$")) (day-seconds (* 24 60 60))) ;; if the directory exists continue to get the list ;; otherwise attempt to create the logs dir and then ;; continue (if (if (directory-exists? (conc areapath "/logs")) '() (if (file-writable? areapath) (begin (condition-case (create-directory (conc areapath "/logs") #t) (exn (i/o file)(debug:print 0 *default-log-port* "ERROR: Cannot create directory at " (conc areapath "/logs"))) (exn ()(debug:print 0 *default-log-port* "ERROR: Unknown error attemtping to get server list."))) (directory-exists? (conc areapath "/logs"))) '())) |
︙ | ︙ | |||
286 287 288 289 290 291 292 | ;; (print "start-time: " start-time " mod-time: " mod-time) (and start-time mod-time (> (- now start-time) 0) ;; been running at least 0 seconds (< (- now mod-time) 16) ;; still alive - file touched in last 16 seconds (< (- now start-time) (+ (- (string->number (or (configf:lookup *configdat* "server" "runtime") "3600")) 180) | | | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | ;; (print "start-time: " start-time " mod-time: " mod-time) (and start-time mod-time (> (- now start-time) 0) ;; been running at least 0 seconds (< (- now mod-time) 16) ;; still alive - file touched in last 16 seconds (< (- now start-time) (+ (- (string->number (or (configf:lookup *configdat* "server" "runtime") "3600")) 180) (pseudo-random-integer 360))) ;; under one hour running time +/- 180 )) #f)) srvlst) (lambda (a b) (< (list-ref a 3) (list-ref b 3)))))) (if (> (length slst) nums) |
︙ | ︙ | |||
309 310 311 312 313 314 315 | #f))) (define (server:get-rand-best areapath) (let ((srvrs (server:get-best (server:get-list areapath)))) (if (and (list? srvrs) (not (null? srvrs))) (let* ((len (length srvrs)) | | | 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | #f))) (define (server:get-rand-best areapath) (let ((srvrs (server:get-best (server:get-list areapath)))) (if (and (list? srvrs) (not (null? srvrs))) (let* ((len (length srvrs)) (idx (pseudo-random-integer len))) (list-ref srvrs idx)) #f))) (define (server:record->url servr) (match-let (((mod-time host port start-time pid) servr)) |
︙ | ︙ |
Modified sharedat.scm from [bb858ca5c8] to [91d62266bc].
︙ | ︙ | |||
117 118 119 120 121 122 123 | (begin (print "[database]\nlocation /some/path\n\n Is missing from the config file!") (exit 1))) (if (and path (directory? path) (file-read-access? path)) (let* ((dbpath (conc path "/spublish.db")) | | | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | (begin (print "[database]\nlocation /some/path\n\n Is missing from the config file!") (exit 1))) (if (and path (directory? path) (file-read-access? path)) (let* ((dbpath (conc path "/spublish.db")) (writeable (file-writable? dbpath)) (dbexists (file-exists? dbpath))) (handle-exceptions exn (begin (debug:print 2 *default-log-port* "ERROR: problem accessing db " dbpath ((condition-property-accessor 'exn 'message) exn)) (exit 1)) |
︙ | ︙ |
Modified stml2/cookie.scm from [d78a525a3a] to [fba413a4c8].
︙ | ︙ | |||
43 44 45 46 47 48 49 | ;; <http://www.netscape.com/newsref/std/cookie_spec.html> ;; (declare (unit cookie)) (module cookie * | | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | ;; <http://www.netscape.com/newsref/std/cookie_spec.html> ;; (declare (unit cookie)) (module cookie * (import (chicken base) scheme queues srfi-13 (chicken port) (chicken io)(chicken file) (chicken format) (chicken string) (chicken time posix)) (require-extension srfi-1 srfi-13 srfi-14 regex) ;; (use srfi-1 srfi-13 srfi-14 regex) ;; (declare (export parse-cookie-string construct-cookie-string)) ;; #> ;; #include <time.h> |
︙ | ︙ |
Modified stml2/stml2.scm from [ee4c13898d] to [44fdf7437b].
︙ | ︙ | |||
10 11 12 13 14 15 16 | ;; stml is a list of html strings ;; (declare (unit stml)) (module stml2 * | | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | ;; stml is a list of html strings ;; (declare (unit stml)) (module stml2 * (import (chicken random) (chicken base) (chicken string) (chicken time) scheme queues srfi-13 (chicken port) (chicken io) (chicken file) srfi-69 srfi-1 (chicken condition) (chicken time posix) (chicken process-context posix) (chicken pathname) (chicken blob) (chicken format) (chicken process) (chicken process-context)) (import cookie) (import (prefix dbi dbi:) (prefix crypt c:) typed-records) ;; (declare (uses misc-stml)) (import regex) ;; The (usually global) sdat contains everything about the session ;; (defstruct sdat ;; database (dbtype 'pg) (dbinit #f) |
︙ | ︙ | |||
419 420 421 422 423 424 425 | ;; to obscure and indirect database ids use one time keys ;; ;; (s:get-key 'n 1) => "n99e1882" n=number 99e is the week number since 1970, remainder is random ;; (s:key->val "n1882") => 1 ;; ;; first letter is a type: n=number, s=string, b=boolean (define (s:get-key key-type val) | | | 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | ;; to obscure and indirect database ids use one time keys ;; ;; (s:get-key 'n 1) => "n99e1882" n=number 99e is the week number since 1970, remainder is random ;; (s:key->val "n1882") => 1 ;; ;; first letter is a type: n=number, s=string, b=boolean (define (s:get-key key-type val) (let ((mkrandstr (lambda (innum)(number->string (pseudo-random-integer innum) 16))) (week (number->string (quotient (current-seconds) (* 7 24 60 60)) 16))) (let loop ((siz 1000) (key (conc key-type week (mkrandstr 100))) (num 0)) (if (s:session-var-get key) ;; have a collision (loop (cond ;; in the unlikey event we have trouble getting a new var, keep increasing the size of the number ((< num 50) 100) |
︙ | ︙ | |||
647 648 649 650 651 652 653 | #;(define session:valid-chars "abcdefghijklmnopqrstuvwxyz0123456789") ;; cookies are case insensitive. #;(define session:num-valid-chars (string-length session:valid-chars)) #;(define (session:get-nth-char nth) (substring session:valid-chars nth (+ nth 1))) #;(define (session:get-rand-char) | | | | 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 | #;(define session:valid-chars "abcdefghijklmnopqrstuvwxyz0123456789") ;; cookies are case insensitive. #;(define session:num-valid-chars (string-length session:valid-chars)) #;(define (session:get-nth-char nth) (substring session:valid-chars nth (+ nth 1))) #;(define (session:get-rand-char) (session:get-nth-char (pseudo-random-integer session:num-valid-chars))) #;(define (session:make-rand-string len) (let loop ((res "") (n 1)) (if (> n len) res (loop (string-append res (session:get-rand-char)) (+ n 1))))) ;; maybe replace above make-rand-string with this someday? ;; #;(define (session:generic-make-rand-string len seed-string) (let ((num-chars (string-length seed-string))) (let loop ((res "") (n 1)) (let ((char-num (pseudo-random-integer num-chars))) (if (> n len) res (loop (string-append res (substring seed-string char-num (+ char-num 1))) (+ n 1))))))) ;; Rely on crypt egg's default settings being secure enough, accept ;; backwards-compatible OpenSSL crypt passwords too. ;; |
︙ | ︙ | |||
1427 1428 1429 1430 1431 1432 1433 | (define session:valid-chars "abcdefghijklmnopqrstuvwxyz0123456789") ;; cookies are case insensitive. (define session:num-valid-chars (string-length session:valid-chars)) (define (session:get-nth-char nth) (substring session:valid-chars nth (+ nth 1))) (define (session:get-rand-char) | | | | 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 | (define session:valid-chars "abcdefghijklmnopqrstuvwxyz0123456789") ;; cookies are case insensitive. (define session:num-valid-chars (string-length session:valid-chars)) (define (session:get-nth-char nth) (substring session:valid-chars nth (+ nth 1))) (define (session:get-rand-char) (session:get-nth-char (pseudo-random-integer session:num-valid-chars))) (define (session:make-rand-string len) (let loop ((res "") (n 1)) (if (> n len) res (loop (string-append res (session:get-rand-char)) (+ n 1))))) ;; maybe replace above make-rand-string with this someday? ;; (define (session:generic-make-rand-string len seed-string) (let ((num-chars (string-length seed-string))) (let loop ((res "") (n 1)) (let ((char-num (pseudo-random-integer num-chars))) (if (> n len) res (loop (string-append res (substring seed-string char-num (+ char-num 1))) (+ n 1))))))) ;;====================================================================== ;; P A R A M S |
︙ | ︙ | |||
1705 1706 1707 1708 1709 1710 1711 | (if debugmode (session:log self "session:setup dbfname=" dbfname ", dbtype=" dbtype ", dbinit=" dbinit)) (if (eq? dbtype 'sqlite3) ;; The 'auto method will distribute dbs across the disk using hash ;; of user host and user. TODO ;; (if (eq? dbfname 'auto) ;; This is the auto assignment of a db based on hash of IP (let ((dbpath (pathname-directory dbfname))) ;; do a couple sanity checks here to make setting up easier (if debugmode (session:log self "INFO: setting up for sqlite3 db access to " dbfname)) | | | 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 | (if debugmode (session:log self "session:setup dbfname=" dbfname ", dbtype=" dbtype ", dbinit=" dbinit)) (if (eq? dbtype 'sqlite3) ;; The 'auto method will distribute dbs across the disk using hash ;; of user host and user. TODO ;; (if (eq? dbfname 'auto) ;; This is the auto assignment of a db based on hash of IP (let ((dbpath (pathname-directory dbfname))) ;; do a couple sanity checks here to make setting up easier (if debugmode (session:log self "INFO: setting up for sqlite3 db access to " dbfname)) (if (not (file-writable? dbpath)) (session:log self "WARNING: Cannot write to " dbpath) (if debugmode (session:log self "INFO: " dbpath " is writeable"))) (if (file-exists? dbfname) (begin ;; (session:log self "setting dbexists to #t") (set! dbexists #t)))) (if debugmode (session:log self "INFO: setting up for pg db access to account info " dbinit))) |
︙ | ︙ |
Modified subrunmod.scm from [6e3ff280b3] to [78cceca1b1].
︙ | ︙ | |||
22 23 24 25 26 27 28 | (declare (uses commonmod)) (declare (uses mtconfigf)) (module subrunmod * | | | | > | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | (declare (uses commonmod)) (declare (uses mtconfigf)) (module subrunmod * (import scheme (chicken base) chicken.file chicken.file.posix chicken.string ) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 chicken.format (chicken port) srfi-1 matchable chicken.irregex chicken.process chicken.process-context chicken.time call-with-environment-variables) (import commonmod) (import (prefix mtconfigf configf:)) ;; (use (prefix ulex ulex:)) |
︙ | ︙ |
Modified tasksmod.scm from [f340b0fd3c] to [96bece454d].
︙ | ︙ | |||
23 24 25 26 27 28 29 | (declare (uses commonmod)) (declare (uses pgdbmod)) (declare (uses mtconfigf)) (module tasksmod * | | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | (declare (uses commonmod)) (declare (uses pgdbmod)) (declare (uses mtconfigf)) (module tasksmod * (import scheme (chicken base) (chicken condition) (chicken string) (chicken process) (chicken process-context) (chicken process-context posix) (chicken file) (chicken file posix) system-information ) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format srfi-1 matchable regex) (import commonmod) (import (prefix mtconfigf configf:)) (import pgdbmod) (include "common_records.scm") |
︙ | ︙ | |||
114 115 116 117 118 119 120 | (print-call-chain (current-error-port)) (debug:print 0 *default-log-port* " message: " ((condition-property-accessor 'exn 'message) exn)) (debug:print 5 *default-log-port* " exn=" (condition->list exn)))) (let* ((dbpath (db:dbfile-path )) ;; (tasks:get-task-db-path)) (dbfile (conc dbpath "/monitor.db")) (avail (tasks:wait-on-journal dbpath 10)) ;; wait up to about 10 seconds for the journal to go away (exists (common:file-exists? dbpath)) | | | | | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | (print-call-chain (current-error-port)) (debug:print 0 *default-log-port* " message: " ((condition-property-accessor 'exn 'message) exn)) (debug:print 5 *default-log-port* " exn=" (condition->list exn)))) (let* ((dbpath (db:dbfile-path )) ;; (tasks:get-task-db-path)) (dbfile (conc dbpath "/monitor.db")) (avail (tasks:wait-on-journal dbpath 10)) ;; wait up to about 10 seconds for the journal to go away (exists (common:file-exists? dbpath)) (write-access (file-writable? dbpath)) (mdb (cond ;; what the hek is *toppath* doing here? ((and (string? *toppath*)(file-writable? *toppath*)) (sqlite3:open-database dbfile)) ((file-readable? dbpath) (sqlite3:open-database dbfile)) (else (sqlite3:open-database ":memory:")))) ;; (never-give-up-open-db dbpath)) (handler (sqlite3:make-busy-timeout 36000))) (if (and exists (not write-access)) (set! *db-write-access* write-access)) ;; only unset so other db's also can use this control (sqlite3:set-busy-handler! mdb handler) (db:set-sync mdb) ;; (sqlite3:execute mdb (conc "PRAGMA synchronous = 0;")) |
︙ | ︙ | |||
198 199 200 201 202 203 204 | (define (tasks:need-server run-id) (equal? (configf:lookup *configdat* "server" "required") "yes")) ;; no elegance here ... ;; (define (tasks:kill-server hostname pid #!key (kill-switch "")) (debug:print-info 0 *default-log-port* "Attempting to kill server process " pid " on host " hostname) | | | | | | 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 | (define (tasks:need-server run-id) (equal? (configf:lookup *configdat* "server" "required") "yes")) ;; no elegance here ... ;; (define (tasks:kill-server hostname pid #!key (kill-switch "")) (debug:print-info 0 *default-log-port* "Attempting to kill server process " pid " on host " hostname) (set-environment-variable! "TARGETHOST" hostname) (let* ((logdir (if (directory-exists? "logs") "logs/" "")) (logfile (if logdir (conc "logs/server-"pid"-"hostname".log") #f)) (gzfile (if logfile (conc logfile ".gz")))) (set-environment-variable! "TARGETHOST_LOGF" (conc logdir "server-kills.log")) (system (conc "nbfake kill "kill-switch" "pid)) (when logfile (thread-sleep! 0.5) (if (common:file-exists? gzfile) (delete-file gzfile)) (system (conc "gzip " logfile)) (unset-environment-variable! "TARGETHOST_LOGF") (unset-environment-variable! "TARGETHOST")))) ;;====================================================================== ;; M O N I T O R S ;;====================================================================== (define (tasks:remove-monitor-record mdb) |
︙ | ︙ |
Modified template-mod.scm from [be6fda2ce0] to [23263b7be1].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit rmtmod)) (declare (uses commonmod)) (module rmtmod * | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | (declare (unit rmtmod)) (declare (uses commonmod)) (module rmtmod * (import scheme (chicken base)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) (import commonmod) ;; (use (prefix ulex ulex:)) (include "common_records.scm") ) |
Modified testsmod.scm from [c8d571e7fd] to [628e421573].
︙ | ︙ | |||
26 27 28 29 30 31 32 | (declare (uses mtconfigf)) (declare (uses itemsmod)) (declare (uses dbmod)) (module testsmod * | | | | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | (declare (uses mtconfigf)) (declare (uses itemsmod)) (declare (uses dbmod)) (module testsmod * (import scheme chicken.base chicken.file chicken.string chicken.process chicken.condition chicken.process-context) (import chicken.sort chicken.file.posix chicken.io chicken.pathname chicken.process-context.posix) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 chicken.format chicken.port srfi-1 matchable directory-utils regex srfi-13) (import commonmod) (import servermod) (import itemsmod) |
︙ | ︙ | |||
80 81 82 83 84 85 86 | ;; The setting of :keyfield in args should be turned off ASAP ;; (define (keys:target-set-args keys target ht) (if target (let ((vals (string-split target "/"))) (if (eq? (length vals)(length keys)) (for-each (lambda (key val) | | | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | ;; The setting of :keyfield in args should be turned off ASAP ;; (define (keys:target-set-args keys target ht) (if target (let ((vals (string-split target "/"))) (if (eq? (length vals)(length keys)) (for-each (lambda (key val) (set-environment-variable! key val) (if ht (hash-table-set! ht (conc ":" key) val))) keys vals) (debug:print-error 0 *default-log-port* "wrong number of values in " target ", should match " keys)) vals) (debug:print 4 *default-log-port* "ERROR: keys:target-set-args called with no target."))) |
︙ | ︙ | |||
519 520 521 522 523 524 525 | local-tcdir #f)) (conc *toppath* "/tests/" test-name))) (test-configf (conc test-path "/testconfig")) (testexists (let loopa ((tries-left 30)) (cond ( | | | 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 | local-tcdir #f)) (conc *toppath* "/tests/" test-name))) (test-configf (conc test-path "/testconfig")) (testexists (let loopa ((tries-left 30)) (cond ( (and (common:file-exists? test-configf)(file-readable? test-configf)) #t) ( (common:file-exists? test-configf) (debug:print 0 *default-log-port* "WARNING: Cannot read testconfig file: "test-configf) #f) ( (and wait-a-minute (> tries-left 0)) |
︙ | ︙ | |||
543 544 545 546 547 548 549 | "pre-launch-env-vars" #f)) #f))) (if (and tcfg cache-file) (hash-table-set! tcfg "have fulldata" #t)) ;; mark this as fully read data (if tcfg (hash-table-set! *testconfigs* test-full-name tcfg)) (if (and testexists cache-file | | | 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | "pre-launch-env-vars" #f)) #f))) (if (and tcfg cache-file) (hash-table-set! tcfg "have fulldata" #t)) ;; mark this as fully read data (if tcfg (hash-table-set! *testconfigs* test-full-name tcfg)) (if (and testexists cache-file (file-writable? cache-path) allow-write-cache) (let ((tpath (conc cache-path "/.testconfig"))) (debug:print-info 1 *default-log-port* "Caching testconfig for " test-name " in " tpath) (if (and tcfg (not (common:in-running-test?))) (configf:write-alist tcfg tpath)))) tcfg)))))) |
︙ | ︙ | |||
652 653 654 655 656 657 658 | (conc "env -i PATH=$PATH dot -T" outtype " < " temp-path) (lambda () (let ((res (read-lines))) ;; (delete-file temp-path) res)))))) (define (tests:write-dot-file test-records fname sizex sizey) | | | 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 | (conc "env -i PATH=$PATH dot -T" outtype " < " temp-path) (lambda () (let ((res (read-lines))) ;; (delete-file temp-path) res)))))) (define (tests:write-dot-file test-records fname sizex sizey) (if (file-writable? (pathname-directory fname)) (with-output-to-file fname (lambda () (map print (tests:tests->dot test-records sizex sizey)))))) (define (tests:tests->dot test-records sizex sizey) (let ((all-testnames (hash-table-keys test-records))) (if (null? all-testnames) |
︙ | ︙ |
Modified treemod.scm from [0a4dc2bcc5] to [4a5b8ff868].
︙ | ︙ | |||
19 20 21 22 23 24 25 | ;;====================================================================== (declare (unit treemod)) (module treemod * | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 | ;;====================================================================== (declare (unit treemod)) (module treemod * (import scheme (chicken base)) (import (prefix iup iup:)) ;; (prefix sqlite3 sqlite3:) posix typed-records srfi-18 srfi-69 format ports srfi-1 matchable) ;; (import commonmod) ;;; DO NOT ALLOW rmt*scm TO DEPEND ON common*scm!!!! ;; (include "common_records.scm") ) |
Modified ulex/ulex.scm from [ef093072a2] to [7c80ad793d].
︙ | ︙ | |||
22 23 24 25 26 27 28 | ;; See README in the distribution at https://www.kiatoa.com/fossils/ulex ;; NOTES: ;; Why sql-de-lite and not say, dbi? - performance mostly, then simplicity. ;; ;;====================================================================== ;; (use rpc pkts mailbox sqlite3) | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < | < < < < < < < < < < < < < | < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < | < | < < < | < < < < < < < < < < < < | < < < < < < < < | < < < < < < < < < < < < < < < < < | < | < < < | < < < | < < | < | < < < < < < < < | < < < | < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < > > < < < < < < < < < | < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < | < < < < < < < | < < < < < < | < < < < < < < < < < < | < < < < | < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < | < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < | < < < < | < | < < < < < | < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < | < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < | < < < | < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < > | < | < < < < < < < < < < < < < < < < < | < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < | < < < < < < < < | < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < | < < | < | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < | | 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 | ;; See README in the distribution at https://www.kiatoa.com/fossils/ulex ;; NOTES: ;; Why sql-de-lite and not say, dbi? - performance mostly, then simplicity. ;; ;;====================================================================== ;; (use rpc pkts mailbox sqlite3) (module ulex * (import scheme (chicken base) queues (chicken port) (chicken io) (chicken file) mailbox system-information) (import srfi-18 pkts matchable regex typed-records srfi-69 srfi-1 srfi-4 regex-case (prefix sqlite3 sqlite3:) (chicken foreign) (chicken sort) (chicken process-context posix) (chicken process-context) tcp6 ;; ulex-netutil hostinfo (chicken file posix) (chicken random) (chicken pretty-print) (chicken string) (chicken time) (chicken condition) (chicken tcp)) ;; ulex-netutil) ;;====================================================================== ;; KEY FUNCTIONS - THESE ARE TOO BE EXPOSED AND USED ;;====================================================================== ;; connection setup and management functions ;; This is the basic setup command. Must always be ;; called before connecting to a db using connect. ;; ;; find or become the captain ;; setup and return a ulex object ;; (define (setup) (let* ((udata (make-udat)) (cpkts (get-all-captain-pkts udata)) ;; read captain pkts (captn (get-winning-pkt cpkts))) (if captn (let* ((port (alist-ref 'port captn)) (host (alist-ref 'host captn)) (ipaddr (alist-ref 'ipaddr captn)) (pid (alist-ref 'pid captn)) (Z (alist-ref 'Z captn))) (udat-captain-address-set! udata ipaddr) (udat-captain-host-set! udata host) (udat-captain-port-set! udata port) (udat-captain-pid-set! udata pid) (if (ping udata (conc ipaddr ":" port)) udata (begin (remove-captain-pkt udata captn) (setup)))) (begin (setup-as-captain udata) ;; this saves the thread to captain-thread and starts the thread (setup))) )) ;; connect to a specific dbfile (define (connect udata dbfname dbtype) udata) (define (ping udata host-port) (let ((cookie (make-cookie udata))) (send udata host-port 'ping "just pinging" (conc (current-seconds))) ;; (mailbox-rec )) ;;====================================================================== ;; network utilities ;;====================================================================== (define (rate-ip ipaddr) (regex-case ipaddr ( "^127\\..*" _ 0 ) ( "^(10\\.0|192\\.168)\\..*" _ 1 ) ( else 2 ) )) ;; Change this to bias for addresses with a reasonable broadcast value? ;; (define (ip-pref-less? a b) (> (rate-ip a) (rate-ip b))) (define (get-my-best-address) (let ((all-my-addresses (get-all-ips)) ;;(all-my-addresses-old (vector->list (hostinfo-addresses (hostname->hostinfo (get-host-name))))) ) (cond |
︙ | ︙ | |||
1444 1445 1446 1447 1448 1449 1450 1451 | ;; all-my-addresses)))) ))) (define (get-all-ips-sorted) (sort (get-all-ips) ip-pref-less?)) | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | 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 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 | ;; all-my-addresses)))) ))) (define (get-all-ips-sorted) (sort (get-all-ips) ip-pref-less?)) (define (get-all-ips) (map ip->string (vector->list (hostinfo-addresses (host-information (get-host-name)))))) ;; make it a global? Well, it is local to area module (define *captain-pktspec* `((captain (host . h) (port . p) (pid . i) (ipaddr . a) ) #;(data (hostname . h) ;; sender hostname (port . p) ;; sender port (ipaddr . a) ;; sender ip (hostkey . k) ;; sending host key - store info at server under this key (servkey . s) ;; server key - this needs to match at server end or reject the msg (format . f) ;; sb=serialized-base64, t=text, sx=sexpr, j=json (data . d) ;; base64 encoded slln data ))) ;; struct for keeping track of our world ;;(use trace) ;;(trace-call-sites #t) (defstruct udat ;; captain info (captain-address #f) (captain-host #f) (captain-port #f) (captain-pid #f) (ulex-dir (conc (get-environment-variable "HOME") "/.ulex")) (cpkts-dir (conc (get-environment-variable "HOME") "/.ulex/pkts")) (cpkt-spec *captain-pktspec*) ;; this processes info (my-cpkt-key #f) ;; put Z card here when I create a pkt for myself as captain (my-address #f) (my-hostname #f) (my-port #f) (my-pid (current-process-id)) ;; server and handler thread (serv-listener #f) ;; this processes server info (handler-thread #f) (handlers (make-hash-table)) (outgoing-conns (make-hash-table)) ;; host:port -> conn (mboxes (make-hash-table)) ;; key => mbox (work-queue (make-queue)) ;; most stuff goes here (fast-queue (make-queue)) ;; super quick stuff goes here (e.g. ping) (busy #f) ;; is either of the queues busy ;; app info (appname #f) (dbtypes (make-hash-table)) ;; this should be an alist but hash is easier. dbtype => [ initproc syncproc ] ;; cookies (cnum 0) ;; cookie num ) ;; struct for keeping track of others we are talking to (defstruct peer (addr-port #f) (hostname #f) (pid #f) (inp #f) ;; input port from the peer (oup #f) ;; output port to the peer (owns '()) ;; list of databases this peer is currently handling ) (defstruct work (peer-dat #f) (handlerkey #f) (qrykey #f) (data #f) (start (current-milliseconds))) ;;====================================================================== ;; Captain pkt functions ;;====================================================================== ;; given a pkts dir read ;;(hash-table-set! ht dbname (pseudo-random-integer 10000))))) ;; (define (get-all-captain-pkts udata) (let* ((pktsdir (let ((d (udat-cpkts-dir udata))) (if (file-exists? d) d (begin (create-directory d #t) d)))) (all-pkt-files (glob (conc pktsdir "/*.pkt"))) (pkt-spec (udat-cpkt-spec udata))) (map (lambda (pkt-file) (read-pkt->alist pkt-file pktspec: pkt-spec)) all-pkt-files))) ;; sort by D then Z, return one, choose the oldest then ;; differentiate if needed using the Z key ;;l (define (get-winning-pkt pkts) (if (null? pkts) #f (car (sort pkts (lambda (a b) (let ((ad (string->number (alist-ref 'D a))) (bd (string->number (alist-ref 'D b)))) (if (eq? a b) (let ((az (alist-ref 'Z a)) (bz (alist-ref 'Z b))) (string>=? az bz)) (> ad bd)))))))) ;; remove pkt associated with captn (the Z key .pkt) ;; (define (remove-captain-pkt udata captn) (let ((Z (alist-ref 'Z captn)) (cpktdir (udat-cpkts-dir udata))) (delete-file* (conc cpktdir "/" Z ".pkt")))) ;;====================================================================== ;; server primitives ;;====================================================================== (define (make-cookie udata) (let ((newcnum (+ (udat-cnum udata)))) (udat-cnum-set! udata newcnum) (conc (udat-my-address udata) ":" (udat-my-port udata) "-" (udat-my-pid udata) "-" newcnum))) ;; create a tcp listener and return a populated udat struct with ;; my port, address, hostname, pid etc. ;; return #f if fail to find a port to allocate. ;; (define (start-server-find-port udata #!optional (port 4242)) (handle-exceptions exn (if (< port 65535)(start-server-find-port udata (+ port 1)) #f) (connect-server udata port))) (define (connect-server udata port) ;; (tcp-listener-socket LISTENER)(socket-name so) ;; sockaddr-address, sockaddr-port, sockaddr->string (let* ((tlsn (tcp-listen port 1000 #f)) ;; (tcp-listen TCPPORT [BACKLOG [HOST]]) (addr (get-my-best-address))) ;; (hostinfo-addresses (host-information (current-hostname))) (udat-my-address-set! udata addr) (udat-my-port-set! udata port) (udat-my-hostname-set! udata (get-host-name)) (udat-serv-listener-set! udata tlsn) udata)) ;; put the host, ip, port and pid into a pkt in ;; the captain pkts dir ;; - assumes user has already fired up a server ;; which will be in the udata struct ;; (define (create-captain-pkt udata) (if (not (udat-serv-listener udata)) (begin (print "ERROR: create-captain-pkt called with out a listener") #f) (let* ((pktdat `((port . ,(udat-my-port udata)) (host . ,(udat-my-hostname udata)) (ipaddr . ,(udat-my-address udata)) (pid . ,(udat-my-pid udata)))) (pktdir (udat-cpkts-dir udata)) (pktspec (udat-cpkt-spec udata)) ) (udat-my-cpkt-key-set! udata (write-alist->pkt pktdir pktdat pktspec: pktspec ptype: 'captain)) (udat-my-cpkt-key udata)))) ;; NB// This needs to be started in a thread ;; ;; setup to be a captain ;; - start server ;; - create pkt ;; - start server port handler ;; (define (setup-as-captain udata) (if (start-server-find-port udata) ;; puts the server in udata (if (create-captain-pkt udata) (let* ((th (make-thread (lambda () (ulex-handler udata)) "Captain handler"))) (udat-handler-thread-set! udata th) (thread-start! th)) #f) #f)) (define (get-peer-dat udata host-port #!optional (hostname #f)(pid #f)) (let* ((pdat (or (hash-table-ref/default (udat-outgoing-conns udata) host-port #f) (handle-exceptions ;; ERROR - MAKE THIS EXCEPTION HANDLER MORE SPECIFIC exn #f (let ((npdat (make-peer addr-port: host-port))) (if hostname (peer-hostname-set! npdat hostname)) (if pid (peer-pid-set! npdat pid)) (let-values (((ninp noup)(tcp-connect host-port))) (peer-inp-set! npdat ninp) (peer-oup-set! npdat noup)) (hash-table-set! (udat-outgoing-conns udata) host-port npdat) npdat))))) pdat)) (define (get-peer-ports udata host-port #!optional (hostname #f)(pid #f)) (let ((pdat (get-peer-dat udata host-port hostname pid))) (if pdat (values (peer-inp pdat)(peer-oup pdat)) (values #f #f)))) ;; send structured data to recipient ;; ;; NOTE: qrykey is what was called the "cookie" previously ;; (define (send udata host-port handler qrykey data #!key (hostname #f)(pid #f)(params '())) (let-values (((inp oup)(get-peer-ports udata host-port hostname pid))) ;; CONTROL LINE: (note: removed the hostname - I don't think it adds much value ;; ;; handlerkey host:port pid qrykey params ... ;; (if (and inp oup) (begin (write-line (conc handler " " (udat-my-address udata) ":" (udat-my-port udata) " " ;; (udat-my-hostname udata) " " (udat-my-pid udata) " " qrykey (if (null? params) "" (conc " " (string-intersperse params " ")))) oup) (write-line data oup) #t ;; NOTE: DO NOT BE TEMPTED TO LOOK AT ANY DATA ON INP HERE! ;; (there is a listener for handling that) ) #f))) ;; #f means failed to connect and send ;; send a request to the given host-port and register a mailbox in udata ;; wait for the mailbox data and return it ;; (define (send-receive udata host-port handler qrykey data #!key (hostname #f)(pid #f)(params '())) (let ((mbox (make-mailbox)) (mbox-time (current-milliseconds)) (mboxes (udat-mboxes udata))) (hash-table-set! mboxes qrykey mbox) (if (send udata host-port handler qrykey data hostname: hostname pid: pid params: params) (let* ((mbox-timeout-secs 20) (mbox-timeout-result 'MBOX_TIMEOUT) (res (mailbox-receive! mbox mbox-timeout-secs mbox-timeout-result)) (mbox-receive-time (current-milliseconds))) (hash-table-delete! mboxes qrykey) res) #f))) ;; #f means failed to communicate (define (add-to-work-queue udata peer-dat handlerkey qrykey data) (let ((wdat (make-work peer-dat: peer-dat handlerkey: handlerkey qrykey: qrykey data: data))) (if (udat-busy udata) (queue-add! (udat-work-queue udata) wdat) (process-work udata wdat)) ;; passing in wdat tells process-work to first process the passed in wdat )) (define (do-work udata wdat) #f) (define (process-work udata #!optional wdat) (if wdat (do-work udata wdat)) ;; process wdat (let ((wqueue (udat-work-queue udata))) (if (not (queue-empty? wqueue)) (let loop ((wd (queue-remove! wqueue))) (do-work udata wd) (if (not (queue-empty? wqueue)) (loop (queue-remove! wqueue))))))) ;; send back ack - this is tcp we are talking about, do we really need an ack? ;; ;; NOTE: No need to send back host:port of self - that is locked in by qrykey ;; (define (send-ack udata host-port qrykey) ;; #!optional (hostname #f)(pid #f)) (send udata host-port "ack" qrykey qrykey)) ;; we must send a second line - for the ack let it be the qrykey ;; ;; (define (ulex-handler udata) (let* ((serv-listener (udat-serv-listener udata))) (let-values (((inp oup)(tcp-accept serv-listener))) ;; data comes as two lines ;; handlerkey resp-addr:resp-port hostname pid qrykey [dbpath/dbfile.db] ;; data (let loop ((state 'start)) (let* ((controldat (read-line inp)) (data (read-line inp))) (match (string-split controldat) ((handlerkey host:port pid qrykey params ...) (print "handlerkey: " handlerkey " host:port: " host:port " pid: " pid " qrykey: " qrykey " params: " params) (case (string->symbol handlerkey) ((ack)(print "Got ack!")) ((ping) (let* ((proc (hash-table-ref/default (udat-handlers udata) 'ping #f)) (val (if proc (proc) "gotping"))) (send udata host:port "version" qrykey val))) ((rucaptain) (send udata host:port "iamcaptain" qrykey (if (udat-my-cpkt-key udata) "yes" "no"))) (else ;; (send-ack udata host:port qrykey) (add-to-work-queue udata (get-peer-dat udata host:port) handlerkey qrykey data)))) (else (print "BAD DATA? controldat=" controldat " data=" data)))) (loop state))))) ;; add a proc to the handler list (define (register-handler udata key proc) (hash-table-set! (udat-handlers udata) key proc)) ;;====================================================================== ;; Generic db handling ;; setup a inmem db instance ;; open connection to on-disk db ;; sync on-disk db to inmem ;; get lock in on-disk db for dbowner of this db ;; put sync-proc, init-proc, on-disk handle, inmem handle in dbconn stuct ;; return the stuct ;;====================================================================== (defstruct dbconn (inmem #f) (conn #f) (sync #f) ;; sync proc (init #f) ;; init proc (lastsync (current-seconds)) ) (defstruct dbinfo (initproc #f) (syncproc #f)) ;; open inmem and disk database ;; init with initproc ;; return db struct ;; ;; appname; megatest, ulex or something else. ;; (define (setup-db-connection udata fname-in appname dbtype) (let* ((is-ulex (eq? appname 'ulex)) (dbinf (if is-ulex ;; ulex is a built-in special case (make-dbinfo initproc: ulexdb-init syncproc: ulexdb-sync) (hash-table-ref/default (udat-dbtypes udata) dbtype #f))) (initproc (dbinfo-initproc dbinf)) (syncproc (dbinfo-syncproc dbinf)) (fname (if is-ulex (conc (udat-ulex-dir udata) "/ulex.db") fname-in)) (inmem-db (open-and-initdb udata #f 'inmem (dbinfo-initproc dbinf))) (disk-db (open-and-initdb udata fname 'disk (dbinfo-initproc dbinf)))) (make-dbconn inmem: inmem-db conn: disk-db sync: syncproc init: initproc))) ;; dest='inmem or 'disk ;; (define (open-and-initdb udata filename dest init-proc) (let* ((inmem (eq? dest 'inmem)) (dbfile (if inmem ":INMEM:" filename)) (dbexists (if inmem #t (file-exists? dbfile))) (db (sqlite3:open-database dbfile))) (sqlite3:set-busy-handler! db (sqlite3:make-busy-timeout 136000)) (if (not dbexists) (init-proc db)) db)) ;;====================================================================== ;; Ulex db ;;====================================================================== (define (ulexdb-init db inmem) (sqlite3:with-transaction db (lambda () (for-each (lambda (stmt) (if stmt (sqlite3:execute db stmt))) `("CREATE TABLE IF NOT EXISTS processes (id INTEGER PRIMARY KEY, host TEXT NOT NULL, ipadr TEXT NOT NULL, port INTEGER NOT NULL, pid INTEGER NOT NULL, regtime INTEGER DEFAULT (strftime('%s','now')), last_update INTEGER DEFAULT (strftime('%s','now')));" (if inmem "CREATE TRIGGER IF NOT EXISTS update_proces_trigger AFTER UPDATE ON processes FOR EACH ROW BEGIN UPDATE processes SET last_update=(strftime('%s','now')) WHERE id=old.id; END;" #f)))))) ;; open databases, do initial sync (define (ulexdb-sync dbconndat udata) #f) ) ;; END OF ULEX ;;; ;;====================================================================== ;;; ;; D E B U G H E L P E R S ;;; ;;====================================================================== ;;; ;;; (define (dbg> . args) ;;; (with-output-to-port (current-error-port) ;;; (lambda () ;;; (apply print "dbg> " args)))) ;;; ;;; (define (debug-pp . args) ;;; (if (get-environment-variable "ULEX_DEBUG") ;;; (with-output-to-port (current-error-port) ;;; (lambda () ;;; (apply pp args))))) ;;; ;;; (define *default-debug-port* (current-error-port)) ;;; ;;; (define (sdbg> fn stage-name stage-start stage-end start-time . message) ;;; (if (get-environment-variable "ULEX_DEBUG") ;;; (with-output-to-port *default-debug-port* ;;; (lambda () ;;; (apply print "ulex:" fn " " stage-name " took " (- (if stage-end stage-end (current-milliseconds)) stage-start) " ms. " ;;; (if start-time ;;; (conc "total time " (- (current-milliseconds) start-time) ;;; " ms.") ;;; "") ;;; message ;;; ))))) ;;====================================================================== ;; M A C R O S ;;====================================================================== ;; iup callbacks are not dumping the stack, this is a work-around ;; ;; Some of these routines use: ;; ;; http://www.cs.toronto.edu/~gfb/scheme/simple-macros.html ;; ;; Syntax for defining macros in a simple style similar to function definiton, ;; when there is a single pattern for the argument list and there are no keywords. ;; ;; (define-simple-syntax (name arg ...) body ...) ;; ;; ;; (define-syntax define-simple-syntax ;; (syntax-rules () ;; ((_ (name arg ...) body ...) ;; (define-syntax name (syntax-rules () ((name arg ...) (begin body ...))))))) ;; ;; (define-simple-syntax (catch-and-dump proc procname) ;; (handle-exceptions ;; exn ;; (begin ;; (print-call-chain (current-error-port)) ;; (with-output-to-port (current-error-port) ;; (lambda () ;; (print ((condition-property-accessor 'exn 'message) exn)) ;; (print "Callback error in " procname) ;; (print "Full condition info:\n" (condition->list exn))))) ;; (proc))) ;; ;; ;;====================================================================== ;; R E C O R D S ;;====================================================================== ;;; ;; information about me as a server ;;; ;; ;;; (defstruct area ;;; ;; about this area ;;; (useportlogger #f) ;;; (lowport 32768) ;;; (server-type 'auto) ;; auto=create up to five servers/pkts, main=create pkts, passive=no pkt (unless there are no pkts at all) ;;; (conn #f) ;;; (port #f) ;;; (myaddr (get-my-best-address)) ;;; pktid ;; get pkt from hosts table if needed ;;; pktfile ;;; pktsdir ;;; dbdir ;;; (dbhandles (make-hash-table)) ;; fname => list-of-dbh, NOTE: Should really never need more than one? ;;; (mutex (make-mutex)) ;;; (rtable (make-hash-table)) ;; registration table of available actions ;;; (dbs (make-hash-table)) ;; filename => random number, used for choosing what dbs I serve ;;; ;; about other servers ;;; (hosts (make-hash-table)) ;; key => hostdat ;;; (hoststats (make-hash-table)) ;; key => alist of fname => ( qcount . qtime ) ;;; (reqs (make-hash-table)) ;; uri => queue ;;; ;; work queues ;;; (wqueues (make-hash-table)) ;; fname => qdat ;;; (stats (make-hash-table)) ;; fname => totalqueries ;;; (last-srvup (current-seconds)) ;; last time we updated the known servers ;;; (cookie2mbox (make-hash-table)) ;; map cookie for outstanding request to mailbox of awaiting call ;;; (ready #f) ;;; (health (make-hash-table)) ;; ipaddr:port => num failed pings since last good ping ;;; ) ;;; ;;; ;; host stats ;;; ;; ;;; (defstruct hostdat ;;; (pkt #f) ;;; (dbload (make-hash-table)) ;; "dbfile.db" => queries/min ;;; (hostload #f) ;; normalized load ( 5min load / numcpus ) ;;; ) ;;; ;;; ;; dbdat ;;; ;; ;;; (defstruct dbdat ;;; (dbh #f) ;;; (fname #f) ;;; (write-access #f) ;;; (sths (make-hash-table)) ;; hash mapping query strings to handles ;;; ) ;;; ;;; ;; qdat ;;; ;; ;;; (defstruct qdat ;;; (writeq (make-queue)) ;;; (readq (make-queue)) ;;; (rwq (make-queue)) ;;; (logq (make-queue)) ;; do we need a queue for logging? yes, if we use sqlite3 db for logging ;;; (osshort (make-queue)) ;;; (oslong (make-queue)) ;;; (misc (make-queue)) ;; used for things like ping-full ;;; ) ;;; ;;; ;; calldat ;;; ;; ;;; (defstruct calldat ;;; (ctype 'dbwrite) ;;; (obj #f) ;; this would normally be an SQL statement e.g. SELECT, INSERT etc. ;;; (rtime (current-milliseconds))) ;;; ;;; ;; make it a global? Well, it is local to area module ;;; ;;; (define *pktspec* ;;; `((server (hostname . h) ;;; (port . p) ;;; (pid . i) ;;; (ipaddr . a) ;;; ) ;;; (data (hostname . h) ;; sender hostname ;;; (port . p) ;; sender port ;;; (ipaddr . a) ;; sender ip ;;; (hostkey . k) ;; sending host key - store info at server under this key ;;; (servkey . s) ;; server key - this needs to match at server end or reject the msg ;;; (format . f) ;; sb=serialized-base64, t=text, sx=sexpr, j=json ;;; (data . d) ;; base64 encoded slln data ;;; ))) ;;; ;;; ;; work item ;;; ;; ;;; (defstruct witem ;;; (rhost #f) ;; return host ;;; (ripaddr #f) ;; return ipaddr ;;; (rport #f) ;; return port ;;; (servkey #f) ;; the packet representing the client of this workitem, used by final send-message ;;; (rdat #f) ;; the request - usually an sql query, type is rdat ;;; (action #f) ;; the action: immediate, dbwrite, dbread,oslong, osshort ;;; (cookie #f) ;; cookie id for response ;;; (data #f) ;; the data payload, i.e. parameters ;;; (result #f) ;; the result from processing the data ;;; (caller #f)) ;; the calling peer according to rpc itself ;;; ;;; (define (trim-pktid pktid) ;;; (if (string? pktid) ;;; (substring pktid 0 4) ;;; "nopkt")) ;;; ;;; (define (any->number num) ;;; (cond ;;; ((number? num) num) ;;; ((string? num) (string->number num)) ;;; (else num))) ;;; ;;; (use trace) ;;; (trace-call-sites #t) ;;; ;;; ;;====================================================================== ;;; ;; D A T A B A S E H A N D L I N G ;;; ;;====================================================================== ;;; ;;; ;; look in dbhandles for a db, return it, else return #f ;;; ;; ;;; (define (get-dbh acfg fname) ;;; (let ((dbh-lst (hash-table-ref/default (area-dbhandles acfg) fname '()))) ;;; (if (null? dbh-lst) ;;; (begin ;;; ;; (print "opening db for " fname) ;;; (open-db acfg fname)) ;; Note that the handles get put back in the queue in the save-dbh calls ;;; (let ((rem-lst (cdr dbh-lst))) ;;; ;; (print "re-using saved connection for " fname) ;;; (hash-table-set! (area-dbhandles acfg) fname rem-lst) ;;; (car dbh-lst))))) ;;; ;;; (define (save-dbh acfg fname dbdat) ;;; ;; (print "saving dbh for " fname) ;;; (hash-table-set! (area-dbhandles acfg) fname (cons dbdat (hash-table-ref/default (area-dbhandles acfg) fname '())))) ;;; ;;; ;; open the database, if never before opened init it. put the handle in the ;;; ;; open db's hash table ;;; ;; returns: the dbdat ;;; ;; ;;; (define (open-db acfg fname) ;;; (let* ((fullname (conc (area-dbdir acfg) "/" fname)) ;;; (exists (file-exists? fullname)) ;;; (write-access (if exists ;;; (file-write-access? fullname) ;;; (file-write-access? (area-dbdir acfg)))) ;;; (db (sqlite3:open-database fullname)) ;;; (handler (sqlite3:make-busy-timeout 136000)) ;;; ) ;;; (sqlite3:set-busy-handler! db handler) ;;; (sqlite3:execute db "PRAGMA synchronous = 0;") ;;; (if (not exists) ;; need to init the db ;;; (if write-access ;;; (let ((isql (get-rsql acfg 'dbinitsql))) ;; get the init sql statements ;;; ;; (sqlite3:with-transaction ;;; ;; db ;;; ;; (lambda () ;;; (if isql ;;; (for-each ;;; (lambda (sql) ;;; (sqlite3:execute db sql)) ;;; isql))) ;;; (print "ERROR: no write access to " (area-dbdir acfg)))) ;;; (make-dbdat dbh: db fname: fname write-access: write-access))) ;;; ;;; ;; This is a low-level command to retrieve or to prepare, save and return a prepared statment ;;; ;; you must extract the db handle ;;; ;; ;;; (define (get-sth db cache stmt) ;;; (if (hash-table-exists? cache stmt) ;;; (begin ;;; ;; (print "Reusing cached stmt for " stmt) ;;; (hash-table-ref/default cache stmt #f)) ;;; (let ((sth (sqlite3:prepare db stmt))) ;;; (hash-table-set! cache stmt sth) ;;; ;; (print "prepared stmt for " stmt) ;;; sth))) ;;; ;;; ;; a little more expensive but does all the tedious deferencing - only use if you don't already ;;; ;; have dbdat and db sitting around ;;; ;; ;;; (define (full-get-sth acfg fname stmt) ;;; (let* ((dbdat (get-dbh acfg fname)) ;;; (db (dbdat-dbh dbdat)) ;;; (sths (dbdat-sths dbdat))) ;;; (get-sth db sths stmt))) ;;; ;;; ;; write to a db ;;; ;; acfg: area data ;;; ;; rdat: request data ;;; ;; hdat: (host . port) ;;; ;; ;;; ;; (define (dbwrite acfg rdat hdat data-in) ;;; ;; (let* ((dbname (car data-in)) ;;; ;; (dbdat (get-dbh acfg dbname)) ;;; ;; (db (dbdat-dbh dbdat)) ;;; ;; (sths (dbdat-sths dbdat)) ;;; ;; (stmt (calldat-obj rdat)) ;;; ;; (sth (get-sth db sths stmt)) ;;; ;; (data (cdr data-in))) ;;; ;; (print "dbname: " dbname " acfg: " acfg " rdat: " (calldat->alist rdat) " hdat: " hdat " data: " data) ;;; ;; (print "dbdat: " (dbdat->alist dbdat)) ;;; ;; (apply sqlite3:execute sth data) ;;; ;; (save-dbh acfg dbname dbdat) ;;; ;; #t ;;; ;; )) ;;; ;;; (define (finalize-all-db-handles acfg) ;;; (let* ((dbhandles (area-dbhandles acfg)) ;; dbhandles is hash of fname ==> dbdat ;;; (num 0)) ;;; (for-each ;;; (lambda (area-name) ;;; (print "Closing handles for " area-name) ;;; (let ((dbdats (hash-table-ref/default dbhandles area-name '()))) ;;; (for-each ;;; (lambda (dbdat) ;;; ;; first close all statement handles ;;; (for-each ;;; (lambda (sth) ;;; (sqlite3:finalize! sth) ;;; (set! num (+ num 1))) ;;; (hash-table-values (dbdat-sths dbdat))) ;;; ;; now close the dbh ;;; (set! num (+ num 1)) ;;; (sqlite3:finalize! (dbdat-dbh dbdat))) ;;; dbdats))) ;;; (hash-table-keys dbhandles)) ;;; (print "FINALIZED " num " dbhandles"))) ;;; ;;; ;;====================================================================== ;;; ;; W O R K Q U E U E H A N D L I N G ;;; ;;====================================================================== ;;; ;;; (define (register-db-as-mine acfg dbname) ;;; (let ((ht (area-dbs acfg))) ;;; (if (not (hash-table-ref/default ht dbname #f)) ;;; (hash-table-set! ht dbname (random 10000))))) ;;; ;;; (define (work-queue-add acfg fname witem) ;;; (let* ((work-queue-start (current-milliseconds)) ;;; (action (witem-action witem)) ;; NB the action is the index into the rdat actions ;;; (qdat (or (hash-table-ref/default (area-wqueues acfg) fname #f) ;;; (let ((newqdat (make-qdat))) ;;; (hash-table-set! (area-wqueues acfg) fname newqdat) ;;; newqdat))) ;;; (rdat (hash-table-ref/default (area-rtable acfg) action #f))) ;;; (if rdat ;;; (queue-add! ;;; (case (calldat-ctype rdat) ;;; ((dbwrite) (register-db-as-mine acfg fname)(qdat-writeq qdat)) ;;; ((dbread) (register-db-as-mine acfg fname)(qdat-readq qdat)) ;;; ((dbrw) (register-db-as-mine acfg fname)(qdat-rwq qdat)) ;;; ((oslong) (qdat-oslong qdat)) ;;; ((osshort) (qdat-osshort qdat)) ;;; ((full-ping) (qdat-misc qdat)) ;;; (else ;;; (print "ERROR: no queue for " action ". Adding to dbwrite queue.") ;;; (qdat-writeq qdat))) ;;; witem) ;;; (case action ;;; ((full-ping)(qdat-misc qdat)) ;;; (else ;;; (print "ERROR: No action " action " was registered")))) ;;; (sdbg> "work-queue-add" "queue-add" work-queue-start #f #f) ;;; #t)) ;; for now, simply return #t to indicate request got to the queue ;;; ;;; (define (doqueue acfg q fname dbdat dbh) ;;; ;; (print "doqueue: " fname) ;;; (let* ((start-time (current-milliseconds)) ;;; (qlen (queue-length q))) ;;; (if (> qlen 1) ;;; (print "Processing queue of length " qlen)) ;;; (let loop ((count 0) ;;; (responses '())) ;;; (let ((delta (- (current-milliseconds) start-time))) ;;; (if (or (queue-empty? q) ;;; (> delta 400)) ;; stop working on this queue after 400ms have passed ;;; (list count delta responses) ;; return count, delta and responses list ;;; (let* ((witem (queue-remove! q)) ;;; (action (witem-action witem)) ;;; (rdat (witem-rdat witem)) ;;; (stmt (calldat-obj rdat)) ;;; (sth (full-get-sth acfg fname stmt)) ;;; (ctype (calldat-ctype rdat)) ;;; (data (witem-data witem)) ;;; (cookie (witem-cookie witem))) ;;; ;; do the processing and save the result in witem-result ;;; (witem-result-set! ;;; witem ;;; (case ctype ;; action ;;; ((noblockwrite) ;; blind write, no ack of success returned ;;; (apply sqlite3:execute sth data) ;;; (sqlite3:last-insert-rowid dbh)) ;;; ((dbwrite) ;; blocking write ;;; (apply sqlite3:execute sth data) ;;; #t) ;;; ((dbread) ;; TODO: consider breaking this up and shipping in pieces for large query ;;; (apply sqlite3:map-row (lambda x x) sth data)) ;;; ((full-ping) 'full-ping) ;;; (else (print "Not ready for action " action) #f))) ;;; (loop (add1 count) ;;; (if cookie ;;; (cons witem responses) ;;; responses)))))))) ;;; ;;; ;; do up to 400ms of processing on each queue ;;; ;; - the work-queue-processor will allow the max 1200ms of work to complete but it will flag as overloaded ;;; ;; ;;; (define (process-db-queries acfg fname) ;;; (if (hash-table-exists? (area-wqueues acfg) fname) ;;; (let* ((process-db-queries-start-time (current-milliseconds)) ;;; (qdat (hash-table-ref/default (area-wqueues acfg) fname #f)) ;;; (queue-sym->queue (lambda (queue-sym) ;;; (case queue-sym ;; lookup the queue from qdat given a name (symbol) ;;; ((wqueue) (qdat-writeq qdat)) ;;; ((rqueue) (qdat-readq qdat)) ;;; ((rwqueue) (qdat-rwq qdat)) ;;; ((misc) (qdat-misc qdat)) ;;; (else #f)))) ;;; (dbdat (get-dbh acfg fname)) ;;; (dbh (if (dbdat? dbdat)(dbdat-dbh dbdat) #f)) ;;; (nowtime (current-seconds))) ;;; ;; handle the queues that require a transaction ;;; ;; ;;; (map ;; ;;; (lambda (queue-sym) ;;; ;; (print "processing queue " queue-sym) ;;; (let* ((queue (queue-sym->queue queue-sym))) ;;; (if (not (queue-empty? queue)) ;;; (let ((responses ;;; (sqlite3:with-transaction ;; todo - catch exceptions... ;;; dbh ;;; (lambda () ;;; (let* ((res (doqueue acfg queue fname dbdat dbh))) ;; this does the work! ;;; ;; (print "res=" res) ;;; (match res ;;; ((count delta responses) ;;; (update-stats acfg fname queue-sym delta count) ;;; (sdbg> "process-db-queries" "sqlite3-transaction" process-db-queries-start-time #f #f) ;;; responses) ;; return responses ;;; (else ;;; (print "ERROR: bad return data from doqueue " res))) ;;; ))))) ;;; ;; having completed the transaction, send the responses. ;;; ;; (print "INFO: sending " (length responses) " responses.") ;;; (let loop ((responses-left responses)) ;;; (cond ;;; ((null? responses-left) #t) ;;; (else ;;; (let* ((witem (car responses-left)) ;;; (response (cdr responses-left))) ;;; (call-deliver-response acfg (witem-ripaddr witem)(witem-rport witem) ;;; (witem-cookie witem)(witem-result witem))) ;;; (loop (cdr responses-left)))))) ;;; ))) ;;; '(wqueue rwqueue rqueue)) ;;; ;;; ;; handle misc queue ;;; ;; ;;; ;; (print "processing misc queue") ;;; (let ((queue (queue-sym->queue 'misc))) ;;; (doqueue acfg queue fname dbdat dbh)) ;;; ;; .... ;;; (save-dbh acfg fname dbdat) ;;; #t ;; just to let the tests know we got here ;;; ) ;;; #f ;; nothing processed ;;; )) ;;; ;;; ;; run all queues in parallel per db but sequentially per queue for that db. ;;; ;; - process the queues every 500 or so ms ;;; ;; - allow for long running queries to continue but all other activities for that ;;; ;; db will be blocked. ;;; ;; ;;; (define (work-queue-processor acfg) ;;; (let* ((threads (make-hash-table))) ;; fname => thread ;;; (let loop ((fnames (hash-table-keys (area-wqueues acfg))) ;;; (target-time (+ (current-milliseconds) 50))) ;;; ;;(if (not (null? fnames))(print "Processing for these databases: " fnames)) ;;; (for-each ;;; (lambda (fname) ;;; ;; (print "processing for " fname) ;;; ;;(process-db-queries acfg fname)) ;;; (let ((th (hash-table-ref/default threads fname #f))) ;;; (if (and th (not (member (thread-state th) '(dead terminated)))) ;;; (begin ;;; (print "WARNING: worker thread for " fname " is taking a long time.") ;;; (print "Thread is in state " (thread-state th))) ;;; (let ((th1 (make-thread (lambda () ;;; ;; (catch-and-dump ;;; ;; (lambda () ;;; ;; (print "Process queries for " fname) ;;; (let ((start-time (current-milliseconds))) ;;; (process-db-queries acfg fname) ;;; ;; (thread-sleep! 0.01) ;; need the thread to take at least some time ;;; (hash-table-delete! threads fname)) ;; no mutexes? ;;; fname) ;;; "th1"))) ;; )) ;;; (hash-table-set! threads fname th1) ;;; (thread-start! th1))))) ;;; fnames) ;;; ;; (thread-sleep! 0.1) ;; give the threads some time to process requests ;;; ;; burn time until 400ms is up ;;; (let ((now-time (current-milliseconds))) ;;; (if (< now-time target-time) ;;; (let ((delta (- target-time now-time))) ;;; (thread-sleep! (/ delta 1000))))) ;;; (loop (hash-table-keys (area-wqueues acfg)) ;;; (+ (current-milliseconds) 50))))) ;;; ;;; ;;====================================================================== ;;; ;; S T A T S G A T H E R I N G ;;; ;;====================================================================== ;;; ;;; (defstruct stat ;;; (qcount-avg 0) ;; coarse running average ;;; (qtime-avg 0) ;; coarse running average ;;; (qcount 0) ;; total ;;; (qtime 0) ;; total ;;; (last-qcount 0) ;; last ;;; (last-qtime 0) ;; last ;;; (dbs '()) ;; list of db files handled by this node ;;; (when 0)) ;; when the last query happened - seconds ;;; ;;; ;;; (define (update-stats acfg fname bucket duration numqueries) ;;; (let* ((key fname) ;; for now do not use bucket. Was: (conc fname "-" bucket)) ;; lazy but good enough ;;; (stats (or (hash-table-ref/default (area-stats acfg) key #f) ;;; (let ((newstats (make-stat))) ;;; (hash-table-set! (area-stats acfg) key newstats) ;;; newstats)))) ;;; ;; when the last query happended (used to remove the fname from the active list) ;;; (stat-when-set! stats (current-seconds)) ;;; ;; last values ;;; (stat-last-qcount-set! stats numqueries) ;;; (stat-last-qtime-set! stats duration) ;;; ;; total over process lifetime ;;; (stat-qcount-set! stats (+ (stat-qcount stats) numqueries)) ;;; (stat-qtime-set! stats (+ (stat-qtime stats) duration)) ;;; ;; coarse average ;;; (stat-qcount-avg-set! stats (/ (+ (stat-qcount-avg stats) numqueries) 2)) ;;; (stat-qtime-avg-set! stats (/ (+ (stat-qtime-avg stats) duration) 2)) ;;; ;;; ;; here is where we add the stats for a given dbfile ;;; (if (not (member fname (stat-dbs stats))) ;;; (stat-dbs-set! stats (cons fname (stat-dbs stats)))) ;;; ;;; )) ;;; ;;; ;;====================================================================== ;;; ;; S E R V E R S T U F F ;;; ;;====================================================================== ;;; ;;; ;; this does NOT return! ;;; ;; ;;; (define (find-free-port-and-open acfg) ;;; (let ((port (or (area-port acfg) 3200))) ;;; (handle-exceptions ;;; exn ;;; (begin ;;; (print "INFO: cannot bind to port " (rpc:default-server-port) ", trying next port") ;;; (area-port-set! acfg (+ port 1)) ;;; (find-free-port-and-open acfg)) ;;; (rpc:default-server-port port) ;;; (area-port-set! acfg port) ;;; (tcp-read-timeout 120000) ;;; ;; ((rpc:make-server (tcp-listen port)) #t) ;;; (tcp-listen (rpc:default-server-port) ;;; )))) ;;; ;;; ;; register this node by putting a packet into the pkts dir. ;;; ;; look for other servers ;;; ;; contact other servers and compile list of servers ;;; ;; there are two types of server ;;; ;; main servers - dashboards, runners and dedicated servers - need pkt ;;; ;; passive servers - test executers, step calls, list-runs - no pkt ;;; ;; ;;; (define (register-node acfg hostip port-num) ;;; ;;(mutex-lock! (area-mutex acfg)) ;;; (let* ((server-type (area-server-type acfg)) ;; auto, main, passive (no pkt created) ;;; (best-ip (or hostip (get-my-best-address))) ;;; (mtdir (area-dbdir acfg)) ;;; (pktdir (area-pktsdir acfg))) ;; conc mtdir "/.server-pkts"))) ;;; (print "Registering node " best-ip ":" port-num) ;;; (if (not mtdir) ;; require a home for this node to put or find databases ;;; #f ;;; (begin ;;; (if (not (directory? pktdir))(create-directory pktdir)) ;;; ;; server is started, now create pkt if needed ;;; (print "Starting server in " server-type " mode with port " port-num) ;;; (if (member server-type '(auto main)) ;; TODO: if auto, count number of servers registers, if > 3 then don't put out a pkt ;;; (begin ;;; (area-pktid-set! acfg ;;; (write-alist->pkt ;;; pktdir ;;; `((hostname . ,(get-host-name)) ;;; (ipaddr . ,best-ip) ;;; (port . ,port-num) ;;; (pid . ,(current-process-id))) ;;; pktspec: *pktspec* ;;; ptype: 'server)) ;;; (area-pktfile-set! acfg (conc pktdir "/" (area-pktid acfg) ".pkt")))) ;;; (area-port-set! acfg port-num) ;;; #;(mutex-unlock! (area-mutex acfg)))))) ;;; ;;; (define *cookie-seqnum* 0) ;;; (define (make-cookie key) ;;; (set! *cookie-seqnum* (add1 *cookie-seqnum*)) ;;; ;;(print "MAKE COOKIE CALLED -- on "servkey"-"*cookie-seqnum*) ;;; (conc key "-" *cookie-seqnum*) ;;; ) ;;; ;;; ;; dispatch locally if possible ;;; ;; ;;; (define (call-deliver-response acfg ipaddr port cookie data) ;;; (if (and (equal? (area-myaddr acfg) ipaddr) ;;; (equal? (area-port acfg) port)) ;;; (deliver-response acfg cookie data) ;;; ((rpc:procedure 'response ipaddr port) cookie data))) ;;; ;;; (define (deliver-response acfg cookie data) ;;; (let ((deliver-response-start (current-milliseconds))) ;;; (thread-start! (make-thread ;;; (lambda () ;;; (let loop ((tries-left 5)) ;;; ;;(print "TOP OF DELIVER_RESPONSE LOOP; triesleft="tries-left) ;;; ;;(pp (hash-table->alist (area-cookie2mbox acfg))) ;;; (let* ((mbox (hash-table-ref/default (area-cookie2mbox acfg) cookie #f))) ;;; (cond ;;; ((eq? 0 tries-left) ;;; (print "ulex:deliver-response: I give up. Mailbox never appeared. cookie="cookie) ;;; ) ;;; (mbox ;;; ;;(print "got mbox="mbox" got data="data" send.") ;;; (mailbox-send! mbox data)) ;;; (else ;;; ;;(print "no mbox yet. look for "cookie) ;;; (thread-sleep! (/ (- 6 tries-left) 10)) ;;; (loop (sub1 tries-left)))))) ;;; ;; (debug-pp (list (conc "ulex:deliver-response took " (- (current-milliseconds) deliver-response-start) " ms, cookie=" cookie " data=") data)) ;;; (sdbg> "deliver-response" "mailbox-send" deliver-response-start #f #f cookie) ;;; ) ;;; (conc "deliver-response thread for cookie="cookie)))) ;;; #t) ;;; ;;; ;; action: ;;; ;; immediate - quick actions, no need to put in queues ;;; ;; dbwrite - put in dbwrite queue ;;; ;; dbread - put in dbread queue ;;; ;; oslong - os actions, e.g. du, that could take a long time ;;; ;; osshort - os actions that should be quick, e.g. df ;;; ;; ;;; (define (request acfg from-ipaddr from-port servkey action cookie fname params) ;; std-peer-handler ;;; ;; NOTE: Use rpc:current-peer for getting return address ;;; (let* ((std-peer-handler-start (current-milliseconds)) ;;; ;; (raw-data (alist-ref 'data dat)) ;;; (rdat (hash-table-ref/default ;;; (area-rtable acfg) action #f)) ;; this looks up the sql query or other details indexed by the action ;;; (witem (make-witem ripaddr: from-ipaddr ;; rhost: from-host ;;; rport: from-port action: action ;;; rdat: rdat cookie: cookie ;;; servkey: servkey data: params ;; TODO - rename data to params ;;; caller: (rpc:current-peer)))) ;;; (if (not (equal? servkey (area-pktid acfg))) ;;; `(#f . ,(conc "I don't know you servkey=" servkey ", pktid=" (area-pktid acfg))) ;; immediately return this ;;; (let* ((ctype (if rdat ;;; (calldat-ctype rdat) ;; is this necessary? these should be identical ;;; action))) ;;; (sdbg> "std-peer-handler" "immediate" std-peer-handler-start #f #f) ;;; (case ctype ;;; ;; (dbwrite acfg rdat (cons from-ipaddr from-port) data))) ;;; ((full-ping) `(#t "ack to full ping" ,(work-queue-add acfg fname witem) ,cookie)) ;;; ((response) `(#t "ack from requestor" ,(deliver-response acfg fname params))) ;;; ((dbwrite) `(#t "db write submitted" ,(work-queue-add acfg fname witem) ,cookie)) ;;; ((dbread) `(#t "db read submitted" ,(work-queue-add acfg fname witem) ,cookie )) ;;; ((dbrw) `(#t "db read/write submitted" ,cookie)) ;;; ((osshort) `(#t "os short submitted" ,cookie)) ;;; ((oslong) `(#t "os long submitted" ,cookie)) ;;; (else `(#f "unrecognised action" ,ctype))))))) ;;; ;;; ;; Call this to start the actual server ;;; ;; ;;; ;; start_server ;;; ;; ;;; ;; mode: ' ;;; ;; handler: proc which takes pktrecieved as argument ;;; ;; ;;; ;;; (define (start-server acfg) ;;; (let* ((conn (find-free-port-and-open acfg)) ;;; (port (area-port acfg))) ;;; (rpc:publish-procedure! ;;; 'delist-db ;;; (lambda (fname) ;;; (hash-table-delete! (area-dbs acfg) fname))) ;;; (rpc:publish-procedure! ;;; 'calling-addr ;;; (lambda () ;;; (rpc:current-peer))) ;;; (rpc:publish-procedure! ;;; 'ping ;;; (lambda ()(real-ping acfg))) ;;; (rpc:publish-procedure! ;;; 'request ;;; (lambda (from-addr from-port servkey action cookie dbname params) ;;; (request acfg from-addr from-port servkey action cookie dbname params))) ;;; (rpc:publish-procedure! ;;; 'response ;;; (lambda (cookie res-dat) ;;; (deliver-response acfg cookie res-dat))) ;;; (area-ready-set! acfg #t) ;;; (area-conn-set! acfg conn) ;;; ((rpc:make-server conn) #f)));; ((tcp-listen (rpc:default-server-port)) #t) ;;; ;;; ;;; (define (launch acfg) ;; #!optional (proc std-peer-handler)) ;;; (print "starting launch") ;;; (update-known-servers acfg) ;; gotta do this on every start (thus why limit number of publicised servers) ;;; #;(let ((original-handler (current-exception-handler))) ;; is th ;;; (lambda (exception) ;;; (server-exit-procedure) ;;; (original-handler exception))) ;;; (on-exit (lambda () ;;; (shutdown acfg))) ;; (finalize-all-db-handles acfg))) ;;; ;; set up the rpc handler ;;; (let* ((th1 (make-thread ;;; (lambda ()(start-server acfg)) ;;; "server thread")) ;;; (th2 (make-thread ;;; (lambda () ;;; (print "th2 starting") ;;; (let loop () ;;; (work-queue-processor acfg) ;;; (print "work-queue-processor crashed!") ;;; (loop))) ;;; "work queue thread"))) ;;; (thread-start! th1) ;;; (thread-start! th2) ;;; (let loop () ;;; (thread-sleep! 0.025) ;;; (if (area-ready acfg) ;;; #t ;;; (loop))) ;;; ;; attempt to fix my address ;;; (let* ((all-addr (get-all-ips-sorted))) ;; could use (tcp-addresses conn)? ;;; (let loop ((rem-addrs all-addr)) ;;; (if (null? rem-addrs) ;;; (begin ;;; (print "ERROR: Failed to figure out the ip address of myself as a server. Giving up.") ;;; (exit 1)) ;; BUG Changeme to raising an exception ;;; ;;; (let* ((addr (car rem-addrs)) ;;; (good-addr (handle-exceptions ;;; exn ;;; #f ;;; ((rpc:procedure 'calling-addr addr (area-port acfg)))))) ;;; (if good-addr ;;; (begin ;;; (print "Got good-addr of " good-addr) ;;; (area-myaddr-set! acfg good-addr)) ;;; (loop (cdr rem-addrs))))))) ;;; (register-node acfg (area-myaddr acfg)(area-port acfg)) ;;; (print "INFO: Server started on " (area-myaddr acfg) ":" (area-port acfg)) ;;; ;; (update-known-servers acfg) ;; gotta do this on every start (thus why limit number of publicised servers) ;;; )) ;;; ;;; (define (clear-server-pkt acfg) ;;; (let ((pktf (area-pktfile acfg))) ;;; (if pktf (delete-file* pktf)))) ;;; ;;; (define (shutdown acfg) ;;; (let (;;(conn (area-conn acfg)) ;;; (pktf (area-pktfile acfg)) ;;; (port (area-port acfg))) ;;; (if pktf (delete-file* pktf)) ;;; (send-all "imshuttingdown") ;;; ;; (rpc:close-all-connections!) ;; don't know if this is actually needed ;;; (finalize-all-db-handles acfg))) ;;; ;;; (define (send-all msg) ;;; #f) ;;; ;;; ;; given a area record look up all the packets ;;; ;; ;;; (define (get-all-server-pkts acfg) ;;; (let ((all-pkt-files (glob (conc (area-pktsdir acfg) "/*.pkt")))) ;;; (map (lambda (pkt-file) ;;; (read-pkt->alist pkt-file pktspec: *pktspec*)) ;;; all-pkt-files))) ;;; ;;; #;((Z . "9a0212302295a19610d5796fce0370fa130758e9") ;;; (port . "34827") ;;; (pid . "28748") ;;; (hostname . "zeus") ;;; (T . "server") ;;; (D . "1549427032.0")) ;;; ;;; #;(define (get-my-best-address) ;;; (let ((all-my-addresses (get-all-ips))) ;; (vector->list (hostinfo-addresses (hostname->hostinfo (get-host-name)))))) ;;; (cond ;;; ((null? all-my-addresses) ;;; (get-host-name)) ;; no interfaces? ;;; ((eq? (length all-my-addresses) 1) ;;; (ip->string (car all-my-addresses))) ;; only one to choose from, just go with it ;;; (else ;;; (ip->string (car (filter (lambda (x) ;; take any but 127. ;;; (not (eq? (u8vector-ref x 0) 127))) ;;; all-my-addresses))))))) ;;; ;;; ;; whoami? I am my pkt ;;; ;; ;;; (define (whoami? acfg) ;;; (hash-table-ref/default (area-hosts acfg)(area-pktid acfg) #f)) ;;; ;;; ;;====================================================================== ;;; ;; "Client side" operations ;;; ;;====================================================================== ;;; ;;; (define (safe-call call-key host port . params) ;;; (handle-exceptions ;;; exn ;;; (begin ;;; (print "Call " call-key " to " host ":" port " failed") ;;; #f) ;;; (apply (rpc:procedure call-key host port) params))) ;;; ;;; ;; ;; convert to/from string / sexpr ;;; ;; ;;; ;; (define (string->sexpr str) ;;; ;; (if (string? str) ;;; ;; (with-input-from-string str read) ;;; ;; str)) ;;; ;; ;;; ;; (define (sexpr->string s) ;;; ;; (with-output-to-string (lambda ()(write s)))) ;;; ;;; ;; is the server alive? ;;; ;; ;;; (define (ping acfg host port) ;;; (let* ((myaddr (area-myaddr acfg)) ;;; (myport (area-port acfg)) ;;; (start-time (current-milliseconds)) ;;; (res (if (and (equal? myaddr host) ;;; (equal? myport port)) ;;; (real-ping acfg) ;;; ((rpc:procedure 'ping host port))))) ;;; (cons (- (current-milliseconds) start-time) ;;; res))) ;;; ;;; ;; returns ( ipaddr port alist-fname=>randnum ) ;;; (define (real-ping acfg) ;;; `(,(area-myaddr acfg) ,(area-port acfg) ,(get-host-stats acfg))) ;;; ;;; ;; is the server alive AND the queues processing? ;;; ;; ;;; #;(define (full-ping acfg servpkt) ;;; (let* ((start-time (current-milliseconds)) ;;; (res (send-message acfg servpkt '(full-ping) 'full-ping))) ;;; (cons (- (current-milliseconds) start-time) ;;; res))) ;; (equal? res "got ping")))) ;;; ;;; ;;; ;; look up all pkts and get the server id (the hash), port, host/ip ;;; ;; store this info in acfg ;;; ;; return the number of responsive servers found ;;; ;; ;;; ;; DO NOT VERIFY THAT THE SERVER IS ALIVE HERE. This is called at times where the current server is not yet alive and cannot ping itself ;;; ;; ;;; (define (update-known-servers acfg) ;;; ;; readll all pkts ;;; ;; foreach pkt; if it isn't me ping the server; if alive, add to hosts hash, else rm the pkt ;;; (let* ((start-time (current-milliseconds)) ;;; (all-pkts (delete-duplicates ;;; (append (get-all-server-pkts acfg) ;;; (hash-table-values (area-hosts acfg))))) ;;; (hostshash (area-hosts acfg)) ;;; (my-id (area-pktid acfg)) ;;; (pktsdir (area-pktsdir acfg)) ;; needed to remove pkts from non-responsive servers ;;; (numsrvs 0) ;;; (delpkt (lambda (pktsdir sid) ;;; (print "clearing out server " sid) ;;; (delete-file* (conc pktsdir "/" sid ".pkt")) ;;; (hash-table-delete! hostshash sid)))) ;;; (area-last-srvup-set! acfg (current-seconds)) ;;; (for-each ;;; (lambda (servpkt) ;;; (if (list? servpkt) ;;; ;; (pp servpkt) ;;; (let* ((shost (alist-ref 'ipaddr servpkt)) ;;; (sport (any->number (alist-ref 'port servpkt))) ;;; (res (handle-exceptions ;;; exn ;;; (begin ;;; ;; (print "INFO: bad server on " shost ":" sport) ;;; #f) ;;; (ping acfg shost sport))) ;;; (sid (alist-ref 'Z servpkt)) ;; Z code is our name for the server ;;; (url (conc shost ":" sport)) ;;; ) ;;; #;(if (or (not res) ;;; (null? res)) ;;; (begin ;;; (print "STRANGE: ping of " url " gave " res))) ;;; ;;; ;; (print "Got " res " from " shost ":" sport) ;;; (match res ;;; ((qduration . payload) ;;; ;; (print "Server pkt:" (alist-ref 'ipaddr servpkt) ":" (alist-ref 'port servpkt) ;;; ;; (if payload ;;; ;; "Success" "Fail")) ;;; (match payload ;;; ((host port stats) ;;; ;; (print "From " host ":" port " got stats: " stats) ;;; (if (and host port stats) ;;; (let ((url (conc host ":" port))) ;;; (hash-table-set! hostshash sid servpkt) ;;; ;; store based on host:port ;;; (hash-table-set! (area-hoststats acfg) sid stats)) ;;; (print "missing data from the server, not sure what that means!")) ;;; (set! numsrvs (+ numsrvs 1))) ;;; (#f ;;; (print "Removing pkt " sid " due to #f from server or failed ping") ;;; (delpkt pktsdir sid)) ;;; (else ;;; (print "Got ")(pp res)(print " from server ")(pp servpkt) " but response did not match (#f/#t . msg)"))) ;;; (else ;;; ;; here we delete the pkt - can't reach the server, remove it ;;; ;; however this logic is inadequate. we should mark the server as checked ;;; ;; and not good, if it happens a second time - then remove the pkt ;;; ;; or something similar. I.e. don't be too quick to assume the server is wedged or dead ;;; ;; could be it is simply too busy to reply ;;; (let ((bad-pings (hash-table-ref/default (area-health acfg) url 0))) ;;; (if (> bad-pings 1) ;; two bad pings - remove pkt ;;; (begin ;;; (print "INFO: " bad-pings " bad responses from " url ", deleting pkt " sid) ;;; (delpkt pktsdir sid)) ;;; (begin ;;; (print "INFO: " bad-pings " bad responses from " shost ":" sport " not deleting pkt yet") ;;; (hash-table-set! (area-health acfg) ;;; url ;;; (+ (hash-table-ref/default (area-health acfg) url 0) 1)) ;;; )) ;;; )))) ;;; ;; servpkt is not actually a pkt? ;;; (begin ;;; (print "Bad pkt " servpkt)))) ;;; all-pkts) ;;; (sdbg> "update-known-servers" "end" start-time #f #f " found " numsrvs ;;; " servers, pkts: " (map (lambda (p) ;;; (alist-ref 'Z p)) ;;; all-pkts)) ;;; numsrvs)) ;;; ;;; (defstruct srvstat ;;; (numfiles 0) ;; number of db files handled by this server - subtract 1 for the db being currently looked at ;;; (randnum #f) ;; tie breaker number assigned to by the server itself - applies only to the db under consideration ;;; (pkt #f)) ;; the server pkt ;;; ;;; ;;(define (srv->srvstat srvpkt) ;;; ;;; ;; Get the server best for given dbname and key ;;; ;; ;;; ;; NOTE: key is not currently used. The key points to the kind of query, this may be useful for directing read-only queries. ;;; ;; ;;; (define (get-best-server acfg dbname key) ;;; (let* (;; (servers (hash-table-values (area-hosts acfg))) ;;; (servers (area-hosts acfg)) ;;; (skeys (sort (hash-table-keys servers) string>=?)) ;; a stable listing ;;; (start-time (current-milliseconds)) ;;; (srvstats (make-hash-table)) ;; srvid => srvstat ;;; (url (conc (area-myaddr acfg) ":" (area-port acfg)))) ;;; ;; (print "scores for " dbname ": " (map (lambda (k)(cons k (calc-server-score acfg dbname k))) skeys)) ;;; (if (null? skeys) ;;; (if (> (update-known-servers acfg) 0) ;;; (get-best-server acfg dbname key) ;; some risk of infinite loop here, TODO add try counter ;;; (begin ;;; (print "ERROR: no server found!") ;; since this process is also a server this should never happen ;;; #f)) ;;; (begin ;;; ;; (print "in get-best-server with skeys=" skeys) ;;; (if (> (- (current-seconds) (area-last-srvup acfg)) 10) ;;; (begin ;;; (update-known-servers acfg) ;;; (sdbg> "get-best-server" "update-known-servers" start-time #f #f))) ;;; ;;; ;; for each server look at the list of dbfiles, total number of dbs being handled ;;; ;; and the rand number, save the best host ;;; ;; also do a delist-db for each server dbfile not used ;;; (let* ((best-server #f) ;;; (servers-to-delist (make-hash-table))) ;;; (for-each ;;; (lambda (srvid) ;;; (let* ((server (hash-table-ref/default servers srvid #f)) ;;; (stats (hash-table-ref/default (area-hoststats acfg) srvid '(())))) ;;; ;; (print "stats: " stats) ;;; (if server ;;; (let* ((dbweights (car stats)) ;;; (srvload (length (filter (lambda (x)(not (equal? dbname (car x)))) dbweights))) ;;; (dbrec (alist-ref dbname dbweights equal?)) ;; get the pair with fname . randscore ;;; (randnum (if dbrec ;;; dbrec ;; (cdr dbrec) ;;; 0))) ;;; (hash-table-set! srvstats srvid (make-srvstat numfiles: srvload randnum: randnum pkt: server)))))) ;;; skeys) ;;; ;;; (let* ((sorted (sort (hash-table-values srvstats) ;;; (lambda (a b) ;;; (let ((numfiles-a (srvstat-numfiles a)) ;;; (numfiles-b (srvstat-numfiles b)) ;;; (randnum-a (srvstat-randnum a)) ;;; (randnum-b (srvstat-randnum b))) ;;; (if (< numfiles-a numfiles-b) ;; Note, I don't think adding an offset works here. Goal was only move file handling to a different server if it has 2 less ;;; #t ;;; (if (and (equal? numfiles-a numfiles-b) ;;; (< randnum-a randnum-b)) ;;; #t ;;; #f)))))) ;;; (best (if (null? sorted) ;;; (begin ;;; (print "ERROR: should never be null due to self as server.") ;;; #f) ;;; (srvstat-pkt (car sorted))))) ;;; #;(print "SERVER(" url "): " dbname ": " (map (lambda (srv) ;;; (let ((p (srvstat-pkt srv))) ;;; (conc (alist-ref 'ipaddr p) ":" (alist-ref 'port p) ;;; "(" (srvstat-numfiles srv)","(srvstat-randnum srv)")"))) ;;; sorted)) ;;; best)))))) ;;; ;;; ;; send out an "I'm about to exit notice to all known servers" ;;; ;; ;;; (define (death-imminent acfg) ;;; '()) ;;; ;;; ;;====================================================================== ;;; ;; U L E X - T H E I N T E R E S T I N G S T U F F ! ! ;;; ;;====================================================================== ;;; ;;; ;; register a handler ;;; ;; NOTES: ;;; ;; dbinitsql is reserved for a list of sql statements for initializing the db ;;; ;; dbinitfn is reserved for a db init function, if exists called after dbinitsql ;;; ;; ;;; (define (register acfg key obj #!optional (ctype 'dbwrite)) ;;; (let ((ht (area-rtable acfg))) ;;; (if (hash-table-exists? ht key) ;;; (print "WARNING: redefinition of entry " key)) ;;; (hash-table-set! ht key (make-calldat obj: obj ctype: ctype)))) ;;; ;;; ;; usage: register-batch acfg '((key1 . sql1) (key2 . sql2) ... ) ;;; ;; NB// obj is often an sql query ;;; ;; ;;; (define (register-batch acfg ctype data) ;;; (let ((ht (area-rtable acfg))) ;;; (map (lambda (dat) ;;; (hash-table-set! ht (car dat)(make-calldat obj: (cdr dat) ctype: ctype))) ;;; data))) ;;; ;;; (define (initialize-area-calls-from-specfile area specfile) ;;; (let* ((callspec (with-input-from-file specfile read ))) ;;; (for-each (lambda (group) ;;; (register-batch ;;; area ;;; (car group) ;;; (cdr group))) ;;; callspec))) ;;; ;;; ;; get-rentry ;;; ;; ;;; (define (get-rentry acfg key) ;;; (hash-table-ref/default (area-rtable acfg) key #f)) ;;; ;;; (define (get-rsql acfg key) ;;; (let ((cdat (get-rentry acfg key))) ;;; (if cdat ;;; (calldat-obj cdat) ;;; #f))) ;;; ;;; ;;; ;;; ;; blocking call: ;;; ;; client server ;;; ;; ------ ------ ;;; ;; call() ;;; ;; send-message() ;;; ;; nmsg-send() ;;; ;; nmsg-receive() ;;; ;; nmsg-respond(ack,cookie) ;;; ;; ack, cookie ;;; ;; mbox-thread-wait(cookie) ;;; ;; nmsg-send(client,cookie,result) ;;; ;; nmsg-respond(ack) ;;; ;; return result ;;; ;; ;;; ;; reserved action: ;;; ;; 'immediate ;;; ;; 'dbinitsql ;;; ;; ;;; (define (call acfg dbname action params #!optional (count 0)) ;;; (let* ((call-start-time (current-milliseconds)) ;;; (srv (get-best-server acfg dbname action)) ;;; (post-get-start-time (current-milliseconds)) ;;; (rdat (hash-table-ref/default (area-rtable acfg) action #f)) ;;; (myid (trim-pktid (area-pktid acfg))) ;;; (srvid (trim-pktid (alist-ref 'Z srv))) ;;; (cookie (make-cookie myid))) ;;; (sdbg> "call" "get-best-server" call-start-time #f call-start-time " from: " myid " to server: " srvid " for " dbname " action: " action " params: " params " rdat: " rdat) ;;; (print "INFO: call to " (alist-ref 'ipaddr srv) ":" (alist-ref 'port srv) " from " (area-myaddr acfg) ":" (area-port acfg) " for " dbname) ;;; (if (and srv rdat) ;; need both to dispatch a request ;;; (let* ((ripaddr (alist-ref 'ipaddr srv)) ;;; (rsrvid (alist-ref 'Z srv)) ;;; (rport (any->number (alist-ref 'port srv))) ;;; (res-full (if (and (equal? ripaddr (area-myaddr acfg)) ;;; (equal? rport (area-port acfg))) ;;; (request acfg ripaddr rport (area-pktid acfg) action cookie dbname params) ;;; (safe-call 'request ripaddr rport ;;; (area-myaddr acfg) ;;; (area-port acfg) ;;; #;(area-pktid acfg) ;;; rsrvid ;;; action cookie dbname params)))) ;;; ;; (print "res-full: " res-full) ;;; (match res-full ;;; ((response-ok response-msg rem ...) ;;; (let* ((send-message-time (current-milliseconds)) ;;; ;; (match res-full ;;; ;; ((response-ok response-msg) ;;; ;; (response-ok (car res-full)) ;;; ;; (response-msg (cadr res-full) ;;; ) ;;; ;; (res (take res-full 3))) ;; ctype == action, TODO: converge on one term <<=== what was this? BUG ;;; ;; (print "ulex:call: send-message took " (- send-message-time post-get-start-time) " ms params=" params) ;;; (sdbg> "call" "send-message" post-get-start-time #f call-start-time) ;;; (cond ;;; ((not response-ok) #f) ;;; ((member response-msg '("db read submitted" "db write submitted")) ;;; (let* ((cookie-id (cadddr res-full)) ;;; (mbox (make-mailbox)) ;;; (mbox-time (current-milliseconds))) ;;; (hash-table-set! (area-cookie2mbox acfg) cookie-id mbox) ;;; (let* ((mbox-timeout-secs 20) ;;; (mbox-timeout-result 'MBOX_TIMEOUT) ;;; (res (mailbox-receive! mbox mbox-timeout-secs mbox-timeout-result)) ;;; (mbox-receive-time (current-milliseconds))) ;;; (hash-table-delete! (area-cookie2mbox acfg) cookie-id) ;;; (sdbg> "call" "mailbox-receive" mbox-time #f call-start-time " from: " myid " to server: " srvid " for " dbname) ;;; ;; (print "ulex:call mailbox-receive took " (- mbox-receive-time mbox-time) "ms params=" params) ;;; res))) ;;; (else ;;; (print "Unhandled response \""response-msg"\"") ;;; #f)) ;;; ;; depending on what action (i.e. ctype) is we will block here waiting for ;;; ;; all the data (mechanism to be determined) ;;; ;; ;;; ;; if res is a "working on it" then wait ;;; ;; wait for result ;;; ;; mailbox thread wait on ;;; ;;; ;; if res is a "can't help you" then try a different server ;;; ;; if res is a "ack" (e.g. for one-shot requests) then return res ;;; )) ;;; (else ;;; (if (< count 10) ;;; (let* ((url (conc (alist-ref 'ipaddr srv) ":" (alist-ref 'port srv)))) ;;; (thread-sleep! 1) ;;; (print "ERROR: Bad result from " url ", dbname: " dbname ", action: " action ", params: " params ". Trying again in 1 second.") ;;; (call acfg dbname action params (+ count 1))) ;;; (begin ;;; (error (conc "ERROR: " count " tries, still have improper response res-full=" res-full))))))) ;;; (begin ;;; (if (not rdat) ;;; (print "ERROR: action " action " not registered.") ;;; (if (< count 10) ;;; (begin ;;; (thread-sleep! 1) ;;; (area-hosts-set! acfg (make-hash-table)) ;; clear out all known hosts ;;; (print "ERROR: no server found, srv=" srv ", trying again in 1 seconds") ;;; (call acfg dbname action params (+ count 1))) ;;; (begin ;;; (error (conc "ERROR: no server found after 10 tries, srv=" srv ", giving up.")) ;;; #;(error "No server available")))))))) ;;; ;;; ;;; ;;====================================================================== ;;; ;; U T I L I T I E S ;;; ;;====================================================================== ;;; ;;; ;; get a signature for identifing this process ;;; ;; ;;; (define (get-process-signature) ;;; (cons (get-host-name)(current-process-id))) ;;; ;;; ;;====================================================================== ;;; ;; S Y S T E M S T U F F ;;; ;;====================================================================== ;;; ;;; ;; get normalized cpu load by reading from /proc/loadavg and ;;; ;; /proc/cpuinfo return all three values and the number of real cpus ;;; ;; and the number of threads returns alist '((adj-cpu-load ;;; ;; . normalized-proc-load) ... etc. keys: adj-proc-load, ;;; ;; adj-core-load, 1m-load, 5m-load, 15m-load ;;; ;; ;;; (define (get-normalized-cpu-load) ;;; (let ((res (get-normalized-cpu-load-raw)) ;;; (default `((adj-proc-load . 2) ;; there is no right answer ;;; (adj-core-load . 2) ;;; (1m-load . 2) ;;; (5m-load . 0) ;; causes a large delta - thus causing default of throttling if stuff goes wrong ;;; (15m-load . 0) ;;; (proc . 1) ;;; (core . 1) ;;; (phys . 1) ;;; (error . #t)))) ;;; (cond ;;; ((and (list? res) ;;; (> (length res) 2)) ;;; res) ;;; ((eq? res #f) default) ;; add messages? ;;; ((eq? res #f) default) ;; this would be the #eof ;;; (else default)))) ;;; ;;; (define (get-normalized-cpu-load-raw) ;;; (let* ((actual-host (get-host-name))) ;; #f is localhost ;;; (let ((data (append ;;; (with-input-from-file "/proc/loadavg" read-lines) ;;; (with-input-from-file "/proc/cpuinfo" read-lines) ;;; (list "end"))) ;;; (load-rx (regexp "^([\\d\\.]+)\\s+([\\d\\.]+)\\s+([\\d\\.]+)\\s+.*$")) ;;; (proc-rx (regexp "^processor\\s+:\\s+(\\d+)\\s*$")) ;;; (core-rx (regexp "^core id\\s+:\\s+(\\d+)\\s*$")) ;;; (phys-rx (regexp "^physical id\\s+:\\s+(\\d+)\\s*$")) ;;; (max-num (lambda (p n)(max (string->number p) n)))) ;;; ;; (print "data=" data) ;;; (if (null? data) ;; something went wrong ;;; #f ;;; (let loop ((hed (car data)) ;;; (tal (cdr data)) ;;; (loads #f) ;;; (proc-num 0) ;; processor includes threads ;;; (phys-num 0) ;; physical chip on motherboard ;;; (core-num 0)) ;; core ;;; ;; (print hed ", " loads ", " proc-num ", " phys-num ", " core-num) ;;; (if (null? tal) ;; have all our data, calculate normalized load and return result ;;; (let* ((act-proc (+ proc-num 1)) ;;; (act-phys (+ phys-num 1)) ;;; (act-core (+ core-num 1)) ;;; (adj-proc-load (/ (car loads) act-proc)) ;;; (adj-core-load (/ (car loads) act-core)) ;;; (result ;;; (append (list (cons 'adj-proc-load adj-proc-load) ;;; (cons 'adj-core-load adj-core-load)) ;;; (list (cons '1m-load (car loads)) ;;; (cons '5m-load (cadr loads)) ;;; (cons '15m-load (caddr loads))) ;;; (list (cons 'proc act-proc) ;;; (cons 'core act-core) ;;; (cons 'phys act-phys))))) ;;; result) ;;; (regex-case ;;; hed ;;; (load-rx ( x l1 l5 l15 ) (loop (car tal)(cdr tal)(map string->number (list l1 l5 l15)) proc-num phys-num core-num)) ;;; (proc-rx ( x p ) (loop (car tal)(cdr tal) loads (max-num p proc-num) phys-num core-num)) ;;; (phys-rx ( x p ) (loop (car tal)(cdr tal) loads proc-num (max-num p phys-num) core-num)) ;;; (core-rx ( x c ) (loop (car tal)(cdr tal) loads proc-num phys-num (max-num c core-num))) ;;; (else ;;; (begin ;;; ;; (print "NO MATCH: " hed) ;;; (loop (car tal)(cdr tal) loads proc-num phys-num core-num)))))))))) ;;; ;;; (define (get-host-stats acfg) ;;; (let ((stats-hash (area-stats acfg))) ;;; ;; use this opportunity to remove references to dbfiles which have not been accessed in a while ;;; (for-each ;;; (lambda (dbname) ;;; (let* ((stats (hash-table-ref stats-hash dbname)) ;;; (last-access (stat-when stats))) ;;; (if (and (> last-access 0) ;; if zero then there has been no access ;;; (> (- (current-seconds) last-access) 10)) ;; not used in ten seconds ;;; (begin ;;; (print "Removing " dbname " from stats list") ;;; (hash-table-delete! stats-hash dbname) ;; remove from stats hash ;;; (stat-dbs-set! stats (hash-table-keys stats)))))) ;;; (hash-table-keys stats-hash)) ;;; ;;; `(,(hash-table->alist (area-dbs acfg)) ;; dbname => randnum ;;; ,(map (lambda (dbname) ;; dbname is the db name ;;; (cons dbname (stat-when (hash-table-ref stats-hash dbname)))) ;;; (hash-table-keys stats-hash)) ;;; (cpuload . ,(get-normalized-cpu-load))))) ;;; #;(stats . ,(map (lambda (k) ;; create an alist from the stats data ;;; (cons k (stat->alist (hash-table-ref (area-stats acfg) k)))) ;;; (hash-table-keys (area-stats acfg)))) ;;; ;;; #;(trace ;;; ;; assv ;;; ;; cdr ;;; ;; caar ;;; ;; ;; cdr ;;; ;; call ;;; ;; finalize-all-db-handles ;;; ;; get-all-server-pkts ;;; ;; get-normalized-cpu-load ;;; ;; get-normalized-cpu-load-raw ;;; ;; launch ;;; ;; nmsg-send ;;; ;; process-db-queries ;;; ;; receive-message ;;; ;; std-peer-handler ;;; ;; update-known-servers ;;; ;; work-queue-processor ;;; ) ;;; ;;; ;;====================================================================== ;;; ;; netutil ;;; ;; move this back to ulex-netutil.scm someday? ;;; ;;====================================================================== ;;; ;;; ;; #include <stdio.h> ;;; ;; #include <netinet/in.h> ;;; ;; #include <string.h> ;;; ;; #include <arpa/inet.h> ;;; ;;; (foreign-declare "#include \"sys/types.h\"") ;;; (foreign-declare "#include \"sys/socket.h\"") ;;; (foreign-declare "#include \"ifaddrs.h\"") ;;; (foreign-declare "#include \"arpa/inet.h\"") ;;; ;;; ;; get IP addresses from ALL interfaces ;;; (define get-all-ips ;;; (foreign-safe-lambda* scheme-object () ;;; " ;;; ;;; // from https://stackoverflow.com/questions/17909401/linux-c-get-default-interfaces-ip-address : ;;; ;;; ;;; C_word lst = C_SCHEME_END_OF_LIST, len, str, *a; ;;; // struct ifaddrs *ifa, *i; ;;; // struct sockaddr *sa; ;;; ;;; struct ifaddrs * ifAddrStruct = NULL; ;;; struct ifaddrs * ifa = NULL; ;;; void * tmpAddrPtr = NULL; ;;; ;;; if ( getifaddrs(&ifAddrStruct) != 0) ;;; C_return(C_SCHEME_FALSE); ;;; ;;; // for (i = ifa; i != NULL; i = i->ifa_next) { ;;; for (ifa = ifAddrStruct; ifa != NULL; ifa = ifa->ifa_next) { ;;; if (ifa->ifa_addr->sa_family==AF_INET) { // Check it is ;;; // a valid IPv4 address ;;; tmpAddrPtr = &((struct sockaddr_in *)ifa->ifa_addr)->sin_addr; ;;; char addressBuffer[INET_ADDRSTRLEN]; ;;; inet_ntop(AF_INET, tmpAddrPtr, addressBuffer, INET_ADDRSTRLEN); ;;; // printf(\"%s IP Address %s\\n\", ifa->ifa_name, addressBuffer); ;;; len = strlen(addressBuffer); ;;; a = C_alloc(C_SIZEOF_PAIR + C_SIZEOF_STRING(len)); ;;; str = C_string(&a, len, addressBuffer); ;;; lst = C_a_pair(&a, str, lst); ;;; } ;;; ;;; // else if (ifa->ifa_addr->sa_family==AF_INET6) { // Check it is ;;; // // a valid IPv6 address ;;; // tmpAddrPtr = &((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr; ;;; // char addressBuffer[INET6_ADDRSTRLEN]; ;;; // inet_ntop(AF_INET6, tmpAddrPtr, addressBuffer, INET6_ADDRSTRLEN); ;;; //// printf(\"%s IP Address %s\\n\", ifa->ifa_name, addressBuffer); ;;; // len = strlen(addressBuffer); ;;; // a = C_alloc(C_SIZEOF_PAIR + C_SIZEOF_STRING(len)); ;;; // str = C_string(&a, len, addressBuffer); ;;; // lst = C_a_pair(&a, str, lst); ;;; // } ;;; ;;; // else { ;;; // printf(\" not an IPv4 address\\n\"); ;;; // } ;;; ;;; } ;;; ;;; freeifaddrs(ifa); ;;; C_return(lst); ;;; ;;; ")) ;;; ;;; ;; Change this to bias for addresses with a reasonable broadcast value? ;;; ;; ;;; (define (ip-pref-less? a b) ;;; (let* ((rate (lambda (ipstr) ;;; (regex-case ipstr ;;; ( "^127\\." _ 0 ) ;;; ( "^(10\\.0|192\\.168\\.)\\..*" _ 1 ) ;;; ( else 2 ) )))) ;;; (< (rate a) (rate b)))) ;;; ;;; ;;; (define (get-my-best-address) ;;; (let ((all-my-addresses (get-all-ips)) ;;; ;;(all-my-addresses-old (vector->list (hostinfo-addresses (hostname->hostinfo (get-host-name))))) ;;; ) ;;; (cond ;;; ((null? all-my-addresses) ;;; (get-host-name)) ;; no interfaces? ;;; ((eq? (length all-my-addresses) 1) ;;; (car all-my-addresses)) ;; only one to choose from, just go with it ;;; ;;; (else ;;; (car (sort all-my-addresses ip-pref-less?))) ;;; ;; (else ;;; ;; (ip->string (car (filter (lambda (x) ;; take any but 127. ;;; ;; (not (eq? (u8vector-ref x 0) 127))) ;;; ;; all-my-addresses)))) ;;; ;;; ))) ;;; ;;; (define (get-all-ips-sorted) ;;; (sort (get-all-ips) ip-pref-less?)) ;;; ;;; |
Modified utils/deps.scm from [62d9987751] to [4c1694d6c8].
︙ | ︙ | |||
15 16 17 18 19 20 21 | (lambda () (let loop ((l (read-line))) (if (eof-object? l) data (begin (regex-case l | | | > > > > > | | 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 | (lambda () (let loop ((l (read-line))) (if (eof-object? l) data (begin (regex-case l ("^\\s*\\((import|use)\\s+([^\\s]+)\\).*" (x junk md )(print "\"" md "\" -> \"" modname "\";")) ;; now get entries with prefix ("^\\s*\\((import|use)\\s+\\(prefix\\s+([^\\s]+)\\s+.*\\).*" (x junk md ) (print "\"" md "\" -> \"" modname "\";")) ) (loop (read-line))))))))) (define (do-all-mod-files) (let ((modfiles (append ;; '("megatest.scm" "dashboard.scm") (get-files "*mod.scm")))) (for-each (lambda (mfile) (print "// " mfile) (get-deps mfile)) modfiles))) (do-all-mod-files) |
︙ | ︙ |
Modified vg-inc.scm from [2f4cfbf9d9] to [e48e59b042].
︙ | ︙ | |||
369 370 371 372 373 374 375 | (arithmetic-shift r 16) (arithmetic-shift g 8) b)) ;; Obsolete function ;; (define (vg:generate-color) | | | | | | | | 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | (arithmetic-shift r 16) (arithmetic-shift g 8) b)) ;; Obsolete function ;; (define (vg:generate-color) (vg:rgb->number (pseudo-random-integer 255) (pseudo-random-integer 255) (pseudo-random-integer 255))) ;; Need to return a string of random iup-color for graph ;; (define (vg:generate-color-rgb) (conc (number->string (pseudo-random-integer 255)) " " (number->string (pseudo-random-integer 255)) " " (number->string (pseudo-random-integer 255)))) (define (vg:iup-color->number iup-color) (apply vg:rgb->number (map string->number (string-split iup-color)))) ;;====================================================================== ;; graphing ;;====================================================================== |
︙ | ︙ |
Modified vg_records.scm from [67dafc9ef0] to [fd7139b2bc].
︙ | ︙ | |||
15 16 17 18 19 20 21 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; | | | | | 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 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;; (import simple-exceptions) (define vg:lib-exn (make-exception "wrong record type, expected vg:lib." 'assert)) (define (pmake-vg:lib . params)(let ((v (if (null? params)(make-vector 2)(apply vector 'vg:lib params)))) v)) (define (make-vg:lib #!key (comps #f) ) (vector 'vg:lib comps)) (define-inline (vg:lib-comps vec)(if (eq? (vector-ref vec 0) 'vg:lib)(vector-ref vec 1)(raise (vg:lib-exn 'vg:lib-comps 'xpr)))) (define-inline (vg:lib-comps-set! vec val)(if (eq? (vector-ref vec 0) 'vg:lib)(vector-set! vec 1 val)(raise (vg:lib-exn 'comps)))) ;; Generated using make-vector-record -safe vg comp objs name file (import simple-exceptions) (define vg:comp-exn (make-exception "wrong record type, expected vg:comp." 'assert)) (define (pmake-vg:comp . params)(let ((v (if (null? params)(make-vector 4)(apply vector 'vg:comp params)))) v)) (define (make-vg:comp #!key (objs #f) (name #f) (file #f) ) (vector 'vg:comp objs name file)) (define-inline (vg:comp-objs vec)(if (eq? (vector-ref vec 0) 'vg:comp)(vector-ref vec 1)(raise (vg:comp-exn 'vg:comp-objs 'xpr)))) (define-inline (vg:comp-name vec)(if (eq? (vector-ref vec 0) 'vg:comp)(vector-ref vec 2)(raise (vg:comp-exn 'vg:comp-name 'xpr)))) (define-inline (vg:comp-file vec)(if (eq? (vector-ref vec 0) 'vg:comp)(vector-ref vec 3)(raise (vg:comp-exn 'vg:comp-file 'xpr)))) (define-inline (vg:comp-objs-set! vec val)(if (eq? (vector-ref vec 0) 'vg:comp)(vector-set! vec 1 val)(raise (vg:comp-exn 'objs)))) (define-inline (vg:comp-name-set! vec val)(if (eq? (vector-ref vec 0) 'vg:comp)(vector-set! vec 2 val)(raise (vg:comp-exn 'name)))) (define-inline (vg:comp-file-set! vec val)(if (eq? (vector-ref vec 0) 'vg:comp)(vector-set! vec 3 val)(raise (vg:comp-exn 'file)))) ;; Generated using make-vector-record -safe vg obj type pts fill-color text line-color call-back angle font attrib extents proc (import simple-exceptions) (define vg:obj-exn (make-exception "wrong record type, expected vg:obj." 'assert)) (define (pmake-vg:obj . params)(let ((v (if (null? params)(make-vector 12)(apply vector 'vg:obj params)))) v)) (define (make-vg:obj #!key (type #f) (pts #f) (fill-color #f) (text #f) |
︙ | ︙ | |||
90 91 92 93 94 95 96 | (define-inline (vg:obj-angle-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 7 val)(raise (vg:obj-exn 'angle)))) (define-inline (vg:obj-font-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 8 val)(raise (vg:obj-exn 'font)))) (define-inline (vg:obj-attrib-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 9 val)(raise (vg:obj-exn 'attrib)))) (define-inline (vg:obj-extents-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 10 val)(raise (vg:obj-exn 'extents)))) (define-inline (vg:obj-proc-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 11 val)(raise (vg:obj-exn 'proc)))) ;; Generated using make-vector-record -safe vg inst libname compname theta xoff yoff scalex scaley mirrx mirry call-back cache | | | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | (define-inline (vg:obj-angle-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 7 val)(raise (vg:obj-exn 'angle)))) (define-inline (vg:obj-font-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 8 val)(raise (vg:obj-exn 'font)))) (define-inline (vg:obj-attrib-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 9 val)(raise (vg:obj-exn 'attrib)))) (define-inline (vg:obj-extents-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 10 val)(raise (vg:obj-exn 'extents)))) (define-inline (vg:obj-proc-set! vec val)(if (eq? (vector-ref vec 0) 'vg:obj)(vector-set! vec 11 val)(raise (vg:obj-exn 'proc)))) ;; Generated using make-vector-record -safe vg inst libname compname theta xoff yoff scalex scaley mirrx mirry call-back cache (import simple-exceptions) (define vg:inst-exn (make-exception "wrong record type, expected vg:inst." 'assert)) (define (pmake-vg:inst . params)(let ((v (if (null? params)(make-vector 12)(apply vector 'vg:inst params)))) v)) (define (make-vg:inst #!key (libname #f) (compname #f) (theta #f) (xoff #f) |
︙ | ︙ | |||
133 134 135 136 137 138 139 | (define-inline (vg:inst-scaley-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 7 val)(raise (vg:inst-exn 'scaley)))) (define-inline (vg:inst-mirrx-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 8 val)(raise (vg:inst-exn 'mirrx)))) (define-inline (vg:inst-mirry-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 9 val)(raise (vg:inst-exn 'mirry)))) (define-inline (vg:inst-call-back-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 10 val)(raise (vg:inst-exn 'call-back)))) (define-inline (vg:inst-cache-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 11 val)(raise (vg:inst-exn 'cache)))) ;; Generated using make-vector-record -safe vg drawing libs insts scalex scaley xoff yoff cnv cache | | | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | (define-inline (vg:inst-scaley-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 7 val)(raise (vg:inst-exn 'scaley)))) (define-inline (vg:inst-mirrx-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 8 val)(raise (vg:inst-exn 'mirrx)))) (define-inline (vg:inst-mirry-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 9 val)(raise (vg:inst-exn 'mirry)))) (define-inline (vg:inst-call-back-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 10 val)(raise (vg:inst-exn 'call-back)))) (define-inline (vg:inst-cache-set! vec val)(if (eq? (vector-ref vec 0) 'vg:inst)(vector-set! vec 11 val)(raise (vg:inst-exn 'cache)))) ;; Generated using make-vector-record -safe vg drawing libs insts scalex scaley xoff yoff cnv cache (import simple-exceptions) (define vg:drawing-exn (make-exception "wrong record type, expected vg:drawing." 'assert)) (define (pmake-vg:drawing . params)(let ((v (if (null? params)(make-vector 9)(apply vector 'vg:drawing params)))) v)) (define (make-vg:drawing #!key (libs #f) (insts #f) (scalex #f) (scaley #f) |
︙ | ︙ |
Modified vgmod.scm from [1373ea9f94] to [d5a0d635d9].
︙ | ︙ | |||
20 21 22 23 24 25 26 | (declare (unit vgmod)) ;; (declare (uses commonmod)) (module vgmod * | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 | (declare (unit vgmod)) ;; (declare (uses commonmod)) (module vgmod * (import scheme (chicken base)) (import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable) ;; (import commonmod) ;; (use (prefix ulex ulex:)) ) |