Megatest

Check-in [ee54617ab1]
Login
Overview
Comment:Doesn't compile. WIP
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | v1.6584-ck5
Files: files | file ages | folders
SHA1: ee54617ab1fa223109a77bf6019628f87fdff1e9
User & Date: matt on 2021-04-07 22:12:04
Other Links: branch diff | manifest | tags
Context
2021-04-07
23:25
wip check-in: 50cc8ed2e2 user: matt tags: v1.6584-ck5
22:12
Doesn't compile. WIP check-in: ee54617ab1 user: matt tags: v1.6584-ck5
20:15
Added missing file check-in: 984d886371 user: matt tags: v1.6584-ck5
Changes

Modified Makefile from [7db0c5f9d8] to [f00b41cab1].

32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#            diff-report.scm cgisetup/models/pgdb.scm

# module source files
# MSRCFILES = 
# ftail.scm rmtmod.scm commonmod.scm removed
MSRCFILES = autoload.scm dbi.scm ducttape-lib.scm pkts.scm stml2.scm	\
            cookie.scm mutils.scm mtargs.scm apimod.scm commonmod.scm	\
            dbmod.scm rmtmod.scm debugprint.scm mtver.scm	\
            csv-xml.scm servermod.scm hostinfo.scm

# commonmod.scm dbmod.scm adjutant.scm ulex.scm	\
#            rmtmod.scm apimod.scm

GUISRCF = dashboard-context-menu.scm dashboard-tests.scm		\
          dashboard-guimonitor.scm gutils.scm dcommon.scm tree.scm	\
          vg.scm







|
|







32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#            diff-report.scm cgisetup/models/pgdb.scm

# module source files
# MSRCFILES = 
# ftail.scm rmtmod.scm commonmod.scm removed
MSRCFILES = autoload.scm dbi.scm ducttape-lib.scm pkts.scm stml2.scm	\
            cookie.scm mutils.scm mtargs.scm apimod.scm commonmod.scm	\
            dbmod.scm rmtmod.scm debugprint.scm mtver.scm csv-xml.scm	\
            servermod.scm hostinfo.scm adjutant.scm

# commonmod.scm dbmod.scm adjutant.scm ulex.scm	\
#            rmtmod.scm apimod.scm

GUISRCF = dashboard-context-menu.scm dashboard-tests.scm		\
          dashboard-guimonitor.scm gutils.scm dcommon.scm tree.scm	\
          vg.scm

Modified adjutant.scm from [0f2ee22f04] to [e7bfe77fd6].

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;     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/>.

;;======================================================================

;; (declare (unit adjutant))

(module adjutant *

(import scheme chicken.base)
(import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69
	md5 message-digest
	regex srfi-1)







|







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;     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/>.

;;======================================================================

(declare (unit adjutant))

(module adjutant *

(import scheme chicken.base)
(import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69
	md5 message-digest
	regex srfi-1)

Modified common_records.scm from [80f9e14f2d] to [9a86cd2d43].

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

     (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)))

;; Need a mutex protected way to get and set values
;; or use (define-simple-syntax ??
;;
(define-inline (with-mutex mtx accessor record . val)
  (mutex-lock! mtx)
  (let ((res (apply accessor record val)))
    (mutex-unlock! mtx)
    res))

;; this was cached based on results from profiling but it turned out the profiling
;; somehow went wrong - perhaps too many processes writing to it. Leaving the caching
;; in for now but can probably take it out later.
;;
(define (debug:calc-verbosity vstr)
  (or (hash-table-ref/default *verbosity-cache* vstr #f)
      (let ((res (cond
                  ((number? vstr) vstr)
                  ((not (string?  vstr))   1)
                  ;; ((string-match  "^\\s*$" vstr) 1)
                  (vstr           (let ((debugvals  (filter number? (map string->number (string-split vstr ",")))))
                                    (cond
                                     ((> (length debugvals) 1) debugvals)
                                     ((> (length debugvals) 0)(car debugvals))
                                     (else 1))))
                  ((args:get-arg "-v")   2)
                  ((args:get-arg "-q")    0)
                  (else                   1))))
        (hash-table-set! *verbosity-cache* vstr res)
        res)))

;; check verbosity, #t is ok
(define (debug:check-verbosity verbosity vstr)
  (if (not (or (number? verbosity)
	       (list?   verbosity)))
      (begin
	(print "ERROR: Invalid debug value \"" vstr "\"")
	#f)
      #t))

(define (debug:debug-mode n)
  (cond
   ((and (number? *verbosity*)   ;; number number
	 (number? n))
    (<= n *verbosity*))
   ((and (list? *verbosity*)     ;; list   number
	 (number? n))
    (member n *verbosity*))
   ((and (list? *verbosity*)     ;; list   list
	 (list? n))
    (not (null? (lset-intersection! eq? *verbosity* n))))
   ((and (number? *verbosity*)
	 (list? n))
    (member *verbosity* n))))

(define (debug:setup)
  (let ((debugstr (or (args:get-arg "-debug")
		      (args:get-arg "-debug-noprop")
		      (getenv "MT_DEBUG_MODE"))))
    (set! *verbosity* (debug:calc-verbosity debugstr))
    (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 (and (not (args:get-arg "-debug-noprop"))
	     (or (args:get-arg "-debug")
		 (not (getenv "MT_DEBUG_MODE"))))
	(setenv "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 ()
	  (if *logging*
	      (db:log-event (apply conc params))
	      (apply print params)
	      )))))

;; Brandon's debug printer shortcut (indulge me :)
(define *BB-process-starttime* (current-milliseconds))
(define (BB> . in-args)
  (let* ((stack (get-call-chain))
         (location "??"))
    (for-each
     (lambda (frame)
       (let* ((this-loc (vector-ref frame 0))
              (temp     (string-split (->string this-loc) " "))
              (this-func (if (and (list? temp) (> (length temp) 1)) (cadr temp) "???")))
         (if (equal? this-func "BB>")
             (set! location this-loc))))
     stack)
    (let* ((color-on "\x1b[1m")
           (color-off "\x1b[0m")
           (dp-args
            (append
             (list 0 *default-log-port*
                   (conc color-on location "@"(/ (- (current-milliseconds) *BB-process-starttime*) 1000) color-off "   ")  )
             in-args)))
      (apply debug:print dp-args))))

(define *BBpp_custom_expanders_list* (make-hash-table))



;; register hash tables with BBpp.
(hash-table-set! *BBpp_custom_expanders_list* HASH_TABLE:
                 (cons hash-table? hash-table->alist))

;; test name converter
(define (BBpp_custom_converter arg)
  (let ((res #f))
    (for-each
     (lambda (custom-type-name)
       (let* ((custom-type-info      (hash-table-ref *BBpp_custom_expanders_list* custom-type-name))
              (custom-type-test      (car custom-type-info))
              (custom-type-converter (cdr custom-type-info)))
         (when (and (not res) (custom-type-test arg))
           (set! res (custom-type-converter arg)))))
     (hash-table-keys *BBpp_custom_expanders_list*))
    (if res (BBpp_ res) arg)))

(define (BBpp_ arg)
  (cond
   ;;((SOMESTRUCT? arg) (cons SOMESTRUCT: (SOMESTRUCT->alist arg)))
   ;;((dboard:tabdat? arg) (cons dboard:tabdat: (dboard:tabdat->alist arg)))
   ((hash-table? arg)
    (let ((al (hash-table->alist arg)))
      (BBpp_ (cons HASH_TABLE: al))))
   ((null? arg) '())
   ;;((list? arg) (cons (BBpp_ (car arg)) (BBpp_ (cdr arg))))
   ((pair? arg) (cons (BBpp_ (car arg)) (BBpp_ (cdr arg))))
   (else (BBpp_custom_converter arg))))

;; Brandon's pretty printer.  It expands hashes and custom types in addition to regular pp
(define (BBpp arg)
  (pp (BBpp_ arg)))

;(use define-macro)
(define-syntax inspect
  (syntax-rules ()
    [(_ x)
    ;; (with-output-to-port (current-error-port)
       (printf "~a is: ~a\n" 'x (with-output-to-string (lambda () (BBpp x))))

     ;;  )
     ]
    [(_ x y ...) (begin (inspect x) (inspect y ...))]))

(define (debug:print-error n e . params)
  ;; normal print
  (if (debug:debug-mode n)
      (with-output-to-port (if (port? e) e (current-error-port))
	(lambda ()
	  (if *logging*
	      (db:log-event (apply conc params))
	      ;; (apply print "pid:" (current-process-id) " " params)
	      (apply print "ERROR: " params)
	      ))))
  ;; pass important messages to stderr
  (if (and (eq? n 0)(not (eq? e (current-error-port)))) 
      (with-output-to-port (current-error-port)
	(lambda ()
	  (apply print "ERROR: " params)
	  ))))

(define (debug:print-info n e . params)
  (if (debug:debug-mode n)
      (with-output-to-port (if (port? e) e (current-error-port))
	(lambda ()
	  (if *logging*
	      (let ((res (format#format #f "INFO: (~a) ~a" n (apply conc params))))
		(db:log-event res))
	      ;; (apply print "pid:" (current-process-id) " " "INFO: (" n ") " params) ;; res)
	      (apply print "INFO: (" n ") " params) ;; res)
	      )))))



;; if a value is printable (i.e. string or number) return the value
;; else return an empty string
(define-inline (printable val)
  (if (or (number? val)(string? val)) val ""))









<
<
<
<
<
<
<
<
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
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
     (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)))










;;      ;; this was cached based on results from profiling but it turned out the profiling
;;      ;; somehow went wrong - perhaps too many processes writing to it. Leaving the caching
;;      ;; in for now but can probably take it out later.
;;      ;;
;;      (define (debug:calc-verbosity vstr)
;;        (or (hash-table-ref/default *verbosity-cache* vstr #f)
;;            (let ((res (cond
;;                        ((number? vstr) vstr)
;;                        ((not (string?  vstr))   1)
;;                        ;; ((string-match  "^\\s*$" vstr) 1)
;;                        (vstr           (let ((debugvals  (filter number? (map string->number (string-split vstr ",")))))
;;                                          (cond
;;                                           ((> (length debugvals) 1) debugvals)
;;                                           ((> (length debugvals) 0)(car debugvals))
;;                                           (else 1))))
;;                        ((args:get-arg "-v")   2)
;;                        ((args:get-arg "-q")    0)
;;                        (else                   1))))
;;              (hash-table-set! *verbosity-cache* vstr res)
;;              res)))
;;      
;;      ;; check verbosity, #t is ok
;;      (define (debug:check-verbosity verbosity vstr)
;;        (if (not (or (number? verbosity)
;;      	       (list?   verbosity)))
;;            (begin
;;      	(print "ERROR: Invalid debug value \"" vstr "\"")
;;      	#f)
;;            #t))
;;      
;;      (define (debug:debug-mode n)
;;        (cond
;;         ((and (number? *verbosity*)   ;; number number
;;      	 (number? n))
;;          (<= n *verbosity*))
;;         ((and (list? *verbosity*)     ;; list   number
;;      	 (number? n))
;;          (member n *verbosity*))
;;         ((and (list? *verbosity*)     ;; list   list
;;      	 (list? n))
;;          (not (null? (lset-intersection! eq? *verbosity* n))))
;;         ((and (number? *verbosity*)
;;      	 (list? n))
;;          (member *verbosity* n))))
;;      
;;      (define (debug:setup)
;;        (let ((debugstr (or (args:get-arg "-debug")
;;      		      (args:get-arg "-debug-noprop")
;;      		      (getenv "MT_DEBUG_MODE"))))
;;          (set! *verbosity* (debug:calc-verbosity debugstr))
;;          (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 (and (not (args:get-arg "-debug-noprop"))
;;      	     (or (args:get-arg "-debug")
;;      		 (not (getenv "MT_DEBUG_MODE"))))
;;      	(setenv "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 ()
;;      	  (if *logging*
;;      	      (db:log-event (apply conc params))
;;      	      (apply print params)
;;      	      )))))
;;      
;;      ;; Brandon's debug printer shortcut (indulge me :)
;;      (define *BB-process-starttime* (current-milliseconds))
;;      (define (BB> . in-args)
;;        (let* ((stack (get-call-chain))
;;               (location "??"))
;;          (for-each
;;           (lambda (frame)
;;             (let* ((this-loc (vector-ref frame 0))
;;                    (temp     (string-split (->string this-loc) " "))
;;                    (this-func (if (and (list? temp) (> (length temp) 1)) (cadr temp) "???")))
;;               (if (equal? this-func "BB>")
;;                   (set! location this-loc))))
;;           stack)
;;          (let* ((color-on "\x1b[1m")
;;                 (color-off "\x1b[0m")
;;                 (dp-args
;;                  (append
;;                   (list 0 *default-log-port*
;;                         (conc color-on location "@"(/ (- (current-milliseconds) *BB-process-starttime*) 1000) color-off "   ")  )
;;                   in-args)))
;;            (apply debug:print dp-args))))
;;      
;;      (define *BBpp_custom_expanders_list* (make-hash-table))
;;      
;;      
;;      
;;      ;; register hash tables with BBpp.
;;      (hash-table-set! *BBpp_custom_expanders_list* HASH_TABLE:
;;                       (cons hash-table? hash-table->alist))
;;      
;;      ;; test name converter
;;      (define (BBpp_custom_converter arg)
;;        (let ((res #f))
;;          (for-each
;;           (lambda (custom-type-name)
;;             (let* ((custom-type-info      (hash-table-ref *BBpp_custom_expanders_list* custom-type-name))
;;                    (custom-type-test      (car custom-type-info))
;;                    (custom-type-converter (cdr custom-type-info)))
;;               (when (and (not res) (custom-type-test arg))
;;                 (set! res (custom-type-converter arg)))))
;;           (hash-table-keys *BBpp_custom_expanders_list*))
;;          (if res (BBpp_ res) arg)))
;;      
;;      (define (BBpp_ arg)
;;        (cond
;;         ;;((SOMESTRUCT? arg) (cons SOMESTRUCT: (SOMESTRUCT->alist arg)))
;;         ;;((dboard:tabdat? arg) (cons dboard:tabdat: (dboard:tabdat->alist arg)))
;;         ((hash-table? arg)
;;          (let ((al (hash-table->alist arg)))
;;            (BBpp_ (cons HASH_TABLE: al))))
;;         ((null? arg) '())
;;         ;;((list? arg) (cons (BBpp_ (car arg)) (BBpp_ (cdr arg))))
;;         ((pair? arg) (cons (BBpp_ (car arg)) (BBpp_ (cdr arg))))
;;         (else (BBpp_custom_converter arg))))
;;      
;;      ;; Brandon's pretty printer.  It expands hashes and custom types in addition to regular pp
;;      (define (BBpp arg)
;;        (pp (BBpp_ arg)))
;;      
;;      ;(use define-macro)
;;      (define-syntax inspect
;;        (syntax-rules ()
;;          [(_ x)
;;          ;; (with-output-to-port (current-error-port)
;;             (printf "~a is: ~a\n" 'x (with-output-to-string (lambda () (BBpp x))))
;;           ;;  )
;;           ]

;;          [(_ x y ...) (begin (inspect x) (inspect y ...))]))
;;      
;;      (define (debug:print-error n e . params)
;;        ;; normal print
;;        (if (debug:debug-mode n)
;;            (with-output-to-port (if (port? e) e (current-error-port))
;;      	(lambda ()
;;      	  (if *logging*
;;      	      (db:log-event (apply conc params))
;;      	      ;; (apply print "pid:" (current-process-id) " " params)
;;      	      (apply print "ERROR: " params)
;;      	      ))))
;;        ;; pass important messages to stderr
;;        (if (and (eq? n 0)(not (eq? e (current-error-port)))) 
;;            (with-output-to-port (current-error-port)
;;      	(lambda ()
;;      	  (apply print "ERROR: " params)
;;      	  ))))
;;      
;;      (define (debug:print-info n e . params)
;;        (if (debug:debug-mode n)
;;            (with-output-to-port (if (port? e) e (current-error-port))
;;      	(lambda ()
;;      	  (if *logging*
;;      	      (let ((res (format#format #f "INFO: (~a) ~a" n (apply conc params))))
;;      		(db:log-event res))
;;      	      ;; (apply print "pid:" (current-process-id) " " "INFO: (" n ") " params) ;; res)
;;      	      (apply print "INFO: (" n ") " params) ;; res)
;;      	      )))))
;;      
;;      
;;      
;;      ;; if a value is printable (i.e. string or number) return the value
;;      ;; else return an empty string
;;      (define-inline (printable val)
;;        (if (or (number? val)(string? val)) val ""))
;;      
;;      

Deleted fs-transport.scm version [d1050dcefe].

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

;; Copyright 2006-2012, 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/>.

(require-extension (srfi 18) extras tcp s11n)

(use sqlite3 srfi-1 posix regex regex-case srfi-69 hostinfo md5 message-digest)
(import (prefix sqlite3 sqlite3:))

(use spiffy uri-common intarweb http-client spiffy-request-vars)

(tcp-buffer-size 2048)

(declare (unit fs-transport))

(declare (uses common))
(declare (uses db))
(declare (uses tests))
(declare (uses tasks)) ;; tasks are where stuff is maintained about what is running.

(include "common_records.scm")
(include "db_records.scm")


;;======================================================================
;; F S   T R A N S P O R T   S E R V E R
;;======================================================================

;; There is no "server" per se but a convience routine to make it non
;; necessary to be reopening the db over and over again.
;;

(define (fs:process-queue-item packet)
  (if (not *dbstruct-db*) ;; we will require that (setup-for-run) has already been called
      (set! *dbstruct-db* (db:setup-db)))
  (debug:print-info 11 *default-log-port* "fs:process-queue-item called with packet=" packet)
  (db:process-queue-item *dbstruct-db* packet))
      
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<








































































































Modified megatest.scm from [2a8c23771e] to [165242d338].

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
;; (include "dbi/dbi.scm")
;; (include "stml2/cookie.scm")
;; (include "stml2/stml2.scm")
;; (include "pkts/pkts.scm")
;; (include "csv-xml/csv-xml.scm")
;; (include "ducttape/ducttape-lib.scm")
;; (include "hostinfo/hostinfo.scm")
(include "adjutant.scm")

(declare (uses autoload))
(declare (uses pkts))
(declare (uses stml2))
(declare (uses cookie))
(declare (uses csv-xml))
(declare (uses hostinfo))

(declare (uses mutils))
(declare (uses ducttape-lib))
(declare (uses mtargs))
(declare (uses commonmod))
(declare (uses apimod))
(declare (uses dbmod))
(declare (uses rmtmod))
(declare (uses servermod))
(declare (uses mtver))


;; (include "call-with-environment-variables/call-with-environment-variables.scm")

(module megatest-main
	*

  (import scheme







|

















>







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
;; (include "dbi/dbi.scm")
;; (include "stml2/cookie.scm")
;; (include "stml2/stml2.scm")
;; (include "pkts/pkts.scm")
;; (include "csv-xml/csv-xml.scm")
;; (include "ducttape/ducttape-lib.scm")
;; (include "hostinfo/hostinfo.scm")
;; (include "adjutant.scm")

(declare (uses autoload))
(declare (uses pkts))
(declare (uses stml2))
(declare (uses cookie))
(declare (uses csv-xml))
(declare (uses hostinfo))

(declare (uses mutils))
(declare (uses ducttape-lib))
(declare (uses mtargs))
(declare (uses commonmod))
(declare (uses apimod))
(declare (uses dbmod))
(declare (uses rmtmod))
(declare (uses servermod))
(declare (uses mtver))
(declare (uses adjutant))

;; (include "call-with-environment-variables/call-with-environment-variables.scm")

(module megatest-main
	*

  (import scheme
131
132
133
134
135
136
137

138
139
140
141
142
143
144
	  (prefix dbi dbi:)

	  apimod
	  commonmod
	  dbmod
	  rmtmod
	  servermod

	  
	  )
	
;; fake out readline usage of toplevel-command
(define (toplevel-command . a) #f)
(define setenv set-environment-variable!)
(define unsetenv unset-environment-variable!)







>







132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
	  (prefix dbi dbi:)

	  apimod
	  commonmod
	  dbmod
	  rmtmod
	  servermod
	  debugprint
	  
	  )
	
;; fake out readline usage of toplevel-command
(define (toplevel-command . a) #f)
(define setenv set-environment-variable!)
(define unsetenv unset-environment-variable!)
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
;; (declare (uses api))
;; (declare (uses tasks)) ;; only used for debugging.
;; (declare (uses env))
;; (declare (uses diff-report))
;; (declare (uses ftail))
;; (import ftail)

(define (blahblah)(thread-sleep! 1.234))

(define *db* #f) ;; this is only for the repl, do not use in general!!!!

(include "common_records.scm")
(include "key_records.scm")
(include "db_records.scm")
(include "run_records.scm")







|







163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
;; (declare (uses api))
;; (declare (uses tasks)) ;; only used for debugging.
;; (declare (uses env))
;; (declare (uses diff-report))
;; (declare (uses ftail))
;; (import ftail)

;; (define (blahblah)(thread-sleep! 1.234))

(define *db* #f) ;; this is only for the repl, do not use in general!!!!

(include "common_records.scm")
(include "key_records.scm")
(include "db_records.scm")
(include "run_records.scm")
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
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295

2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
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
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
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
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578







2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643

2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716

2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738

2739




(include "diff-report.scm")
(include "cgisetup/models/pgdb.scm")
(include "runconfig.scm")
(include "archive.scm")
(include "ods.scm")
(include "http-transport.scm")

;; (use (prefix sqlite3 sqlite3:) srfi-1 posix regex regex-case srfi-69 (prefix base64 base64:)
;;      readline apropos json http-client directory-utils typed-records
;;      http-client srfi-18 extras format)

;; Added for csv stuff - will be removed
;;
;; (use sparse-vectors)
;; 
;; (require-library mutils)

;; copied from egg call-with-environment-variables
;;
(define (call-with-environment-variables variables thunk)
  ;; @("Sets up environment variable via dynamic-wind which are taken down after thunk."
  ;;   (variables "An alist of the form {{'((\"var\" . \"value\") ...)}}")
  ;;   (thunk "The thunk to execute with a modified environment"))
  (let ((pre-existing-variables
         (map (lambda (var-value)
                (let ((var (car var-value)))
                  (cons var (get-environment-variable var))))
              variables)))
    (dynamic-wind
        (lambda () (void))
        (lambda ()
;;           (use posix)
          (for-each (lambda (var-value)
                      (setenv (car var-value) (cdr var-value)))
            variables)
          (thunk))
        (lambda ()
          (for-each (lambda (var-value)
                      (let ((var (car var-value))
                            (value (cdr var-value)))
                        (if value
                            (setenv var value)
                            (unsetenv var))))
            pre-existing-variables)))))



(define *usage-log-file* #f)    ;; put path to file for logging usage in this var in the ~/.megatestrc file
(define *usage-use-seconds* #t) ;; for Epoc seconds in usage logging change this to #t in ~/.megatestrc file

;; load the ~/.megatestrc file, put (use trace)(trace-call-sites #t)(trace function-you-want-to-trace) in this file
;;





(let ((debugcontrolf (conc (get-environment-variable "HOME") "/.megatestrc")))
  (if (common:file-exists? debugcontrolf)
      (load debugcontrolf)))

;; usage logging, careful with this, it is not designed to deal with all real world challenges!
;;
(if (and *usage-log-file*
         (file-writable? *usage-log-file*))
    (with-output-to-file
        *usage-log-file*
      (lambda ()
        (print
         (if *usage-use-seconds*
             (current-seconds)
             (time->string
              (seconds->local-time (current-seconds))
              "%Yww%V.%w %H:%M:%S"))
         " "
         (current-user-name) " "
         (current-directory) " "
         "\"" (string-intersperse (argv) " ") "\""))
      #:append))

;; Disabled help items
;;  -rollup                 : (currently disabled) fill run (set by :runname)  with latest test(s)
;;                            from prior runs with same keys
;;  -daemonize              : fork into background and disconnect from stdin/out

(define help (conc "
Megatest, documentation at http://www.kiatoa.com/fossils/megatest
  version " megatest-version "
  license GPL, Copyright Matt Welland 2006-2017
 
Usage: megatest [options]
  -h                      : this help
  -manual                 : show the Megatest user manual
  -version                : print megatest version (currently " megatest-version ")

Launching and managing runs
  -run                    : run all tests or as specified by -testpatt
  -remove-runs            : remove the data for a run, requires -runname and -testpatt
                            Optionally use :state and :status, use -keep-records to remove only
                            the run data. Use -kill-wait to override the 10 second
                            per test wait after kill delay (e.g. -kill-wait 0). 
  -kill-runs              : kill existing run(s) (all incomplete tests killed)
  -kill-rerun             : kill an existing run (all incomplete tests killed and run is rerun)
  -set-state-status X,Y   : set state to X and status to Y, requires controls per -remove-runs
  -rerun FAIL,WARN...     : force re-run for tests with specificed status(s)
  -rerun-clean            : set all tests not COMPLETED+PASS,WARN,WAIVED to NOT_STARTED,n/a
                            and then run the specified testpatt with -preclean
  -rerun-all              : set all tests to NOT_STARTED,n/a and run with -preclean
  -lock                   : lock run specified by target and runname
  -unlock                 : unlock run specified by target and runname
  -set-run-status status  : sets status for run to status, requires -target and -runname
  -get-run-status         : gets status for run specified by target and runname
  -run-wait               : wait on run specified by target and runname
  -preclean               : remove the existing test directory before running the test
  -clean-cache            : remove the cached megatest.config and runconfigs.config files
  -no-cache               : do not use the cached config files. 
  -one-pass               : launch as many tests as you can but do not wait for more to be ready
  -remove-keep N          : remove all but N most recent runs per target; use '-actions, -age, -precmd'
  -age <age>              : 120d,3h,20m to apply only to runs older than the 
                                 specified age. NB// M=month, m=minute
  -actions <action>[,...] : actions to take; print,remove-runs,archive,kill-runs
  -precmd                 : insert a wrapper command in front of the commands run

Selectors (e.g. use for -runtests, -remove-runs, -set-state-status, -list-runs etc.)
  -target key1/key2/...   : run for key1, key2, etc.
  -reqtarg key1/key2/...  : run for key1, key2, etc. but key1/key2 must be in runconfigs
  -testpatt patt1/patt2,patt3/...  : % is wildcard
  -runname                : required, name for this particular test run
  -state                  : Applies to runs, tests or steps depending on context
  -status                 : Applies to runs, tests or steps depending on context
  -modepatt key           : load testpatt from <key> in runconfigs instead of default TESTPATT if -testpatt and -tagexpr are not specified
  -tagexpr tag1,tag2%,..  : select tests with tags matching expression
  

Test helpers (for use inside tests)
  -step stepname
  -test-status            : set the state and status of a test (use :state and :status)
  -setlog logfname        : set the path/filename to the final log relative to the test
                            directory. may be used with -test-status
  -set-toplog logfname    : set the overall log for a suite of sub-tests
  -summarize-items        : for an itemized test create a summary html 
  -m comment              : insert a comment for this test

Test data capture
  -set-values             : update or set values in the testdata table
  :category               : set the category field (optional)
  :variable               : set the variable name (optional)
  :value                  : value measured (required)
  :expected               : value expected (required)
  :tol                    : |value-expect| <= tol (required, can be <, >, >=, <= or number)
  :units                  : name of the units for value, expected_value etc. (optional)
  -load-test-data         : read test specific data for storage in the test_data table
                            from standard in. Each line is comma delimited with four
                            fields category,variable,value,comment

Queries
  -list-runs patt         : list runs matching pattern \"patt\", % is the wildcard
  -show-keys              : show the keys used in this megatest setup
  -test-files targpatt    : get the most recent test path/file matching targpatt e.g. %/% or '*.log'
                            returns list sorted by age ascending, see examples below
  -test-paths             : get the test paths matching target, runname, item and test
                            patterns.
  -list-disks             : list the disks available for storing runs
  -list-targets           : list the targets in runconfigs.config
  -list-db-targets        : list the target combinations used in the db
  -show-config            : dump the internal representation of the megatest.config file
  -show-runconfig         : dump the internal representation of the runconfigs.config file
  -dumpmode MODE          : dump in MODE format instead of sexpr, MODE=json,ini,sexp etc. (add -debug 0,9 to see which file contributes each line)
  -show-cmdinfo           : dump the command info for a test (run in test environment)
  -section sectionName
  -var varName            : for config and runconfig lookup value for sectionName varName
  -since N                : get list of runs changed since time N (Unix seconds)
  -fields fieldspec       : fields to include in json dump; runs:id,runame+tests:testname+steps
  -sort fieldname         : in -list-runs sort tests by this field
  -testdata-csv [categorypatt/]varpatt  : dump testdata for given category

Misc 
  -start-dir path         : switch to this directory before running megatest
  -contour cname          : add a level of hierarcy to the linktree and run paths
  -area-tag tagname       : add a tag to an area while syncing to pgdb
  -run-tag tagname        : add a tag to a run while syncing to pgdb
  -rebuild-db             : bring the database schema up to date
  -cleanup-db             : remove any orphan records, vacuum the db
  -import-megatest.db     : push data from megatest.db to cache db files in /tmp/$USER
  -sync-to-megatest.db    : pull data from cache files in /tmp/$USER to megatest.db
  -sync-to dest           : sync to new postgresql central style database
  -update-meta            : update the tests metadata for all tests
  -setvars VAR1=val1,VAR2=val2 : Add environment variables to a run NB// these are
                                 overwritten by values set in config files.
  -server -|hostname      : start the server (reduces contention on megatest.db), use
                            - to automatically figure out hostname
  -adjutant C,M           : start the server/adjutant with allocated cores C and Mem M (Gig), 
                            use 0,0 to auto use full machine
  -transport http|rpc     : use http or rpc for transport (default is http) 
  -log logfile            : send stdout and stderr to logfile
  -list-servers           : list the servers 
  -kill-servers           : kill all servers
  -repl                   : start a repl (useful for extending megatest)
  -load file.scm          : load and run file.scm
  -mark-incompletes       : find and mark incomplete tests
  -ping run-id|host:port  : ping server, exit with 0 if found
  -debug N|N,M,O...       : enable debug 0-N or N and M and O ...
  -debug-noprop N|M,M,O...: enable debug but do not propagate to subprocesses via MT_DEBUG
  -config fname           : override the megatest.config file with fname
  -append-config fname    : append fname to the megatest.config file

Utilities
  -env2file fname         : write the environment to fname.csh and fname.sh
  -envcap a               : save current variables labeled as context 'a' in file envdat.db
  -envdelta a-b           : output enviroment delta from context a to context b to -o fname
                            set the output mode with -dumpmode csh, bash or ini
                            note: ini format will use calls to use curr and minimize path
  -refdb2dat refdb        : convert refdb to sexp or to format specified by s-dumpmode
                            formats: perl, ruby, sqlite3, csv (for csv the -o param
                            will substitute %s for the sheet name in generating 
                            multiple sheets)
  -o                      : output file for refdb2dat (defaults to stdout)
  -archive cmd            : archive runs specified by selectors to one of disks specified
                            in the [archive-disks] section.
                            cmd: keep-html, restore, save, save-remove, get, replicate-db (use 
                            -dest to set destination), -include path1,path2... to get or save specific files
  -generate-html          : create a simple html dashboard for browsing your runs
  -generate-html-structure  : create a top level html veiw to list targets/runs and a Run view within each run directory.  
  -list-run-time          : list time requered to complete runs. It supports following switches
                            -run-patt <patt> -target-patt <patt> -dumpmode <csv,json,plain-text>
  -list-test-time	  : list time requered to complete each test in a run. It following following arguments
                            -runname <patt> -target <patt> -dumpmode <csv,json,plain-text>
  -syscheck               : do some very basic checks; write access and space in tmp, home, runs, links and 
                            is $DISPLAY valid 
  -list-waivers           : dump waivers for specified target, runname, testpatt to stdout

Diff report
  -diff-rep               : generate diff report (must include -src-target, -src-runname, -target, -runname
                                                  and either -diff-email or -diff-html)
  -src-target <target>
  -src-runname <target>
  -diff-email <emails>    : comma separated list of email addresses to send diff report
  -diff-html  <rep.html>  : path to html file to generate

Spreadsheet generation
  -extract-ods fname.ods  : extract an open document spreadsheet from the database
  -pathmod path           : insert path, i.e. path/runame/itempath/logfile.html
                            will clear the field if no rundir/testname/itempath/logfile
                            if it contains forward slashes the path will be converted
                            to windows style
Getting started
  -create-megatest-area   : create a skeleton megatest area. You will be prompted for paths
  -create-test testname   : create a skeleton megatest test. You will be prompted for info

Examples

# Get test path, use '.' to get a single path or a specific path/file pattern
megatest -test-files 'logs/*.log' -target ubuntu/n%/no% -runname w49% -testpatt test_mt%

Called as " (string-intersperse (argv) " ") "
Version " megatest-version ", built from " megatest-fossil-hash ))

;;  -gui                    : start a gui interface
;;  -config fname           : override the runconfigs file with fname

;; process args
(define remargs (args:get-args 
		 (argv)
		 (list  "-runtests"  ;; run a specific test
			"-config"    ;; override the config file name
			"-append-config"
			"-execute"   ;; run the command encoded in the base64 parameter
			"-step"
			"-target"
			"-reqtarg"
			":runname"
			"-runname"
			":state"  
			"-state"
			":status"
			"-status"
			"-list-runs"
                        "-testdata-csv"
			"-testpatt"
                        "--modepatt"
                        "-modepatt"
                        "-tagexpr"
			"-itempatt"
			"-setlog"
			"-set-toplog"
			"-runstep"
			"-logpro"
			"-m"
			"-rerun"

			"-days"
			"-rename-run"
			"-to"
			"-dest"
                        "-source" 
                        "-time-stamp" 
			;; values and messages
			":category"
			":variable"
			":value"
			":expected"
			":tol"
			":units"

			;; misc
			"-start-dir"
                        "-run-patt"
                        "-target-patt"   
			"-contour"
                        "-area-tag"  
                        "-area"  
			"-run-tag"
			"-server"
			"-adjutant"
			"-transport"
			"-port"
			"-extract-ods"
			"-pathmod"
			"-env2file"
			"-envcap"
			"-envdelta"
			"-setvars"
			"-set-state-status"

                        ;; move runs stuff here
                        "-remove-keep"           
			"-set-run-status"
			"-age"

			;; archive 
			"-archive"
			"-actions"
			"-precmd"
			"-include"
			"-exclude-rx"
			"-exclude-rx-from"
			
			"-debug" ;; for *verbosity* > 2
			"-debug-noprop"
			"-create-test"
			"-override-timeout"
			"-test-files"  ;; -test-paths is for listing all
			"-load"        ;; load and exectute a scheme file
			"-section"
			"-var"
			"-dumpmode"
			"-run-id"
			"-ping"
			"-refdb2dat"
			"-o"
			"-log"
                        "-sync-log"
			"-since"
			"-fields"
			"-recover-test" ;; run-id,test-id - used internally to recover a test stuck in RUNNING state
			"-sort"
			"-target-db"
			"-source-db"
			"-prefix-target"

                        "-src-target"
                        "-src-runname"
                        "-diff-email"
			"-sync-to"			
			"-pgsync"
			"-kill-wait"    ;; wait this long before removing test (default is 10 sec)
                        "-diff-html"

			;; wizards, area capture, setup new ...
			"-extract-skeleton"
			)

 		 (list  "-h" "-help" "--help"
			"-manual"
			"-version"
		        "-force"
		        "-xterm"
		        "-showkeys"
		        "-show-keys"
		        "-test-status"
			"-set-values"
			"-load-test-data"
			"-summarize-items"
		        "-gui"
			"-daemonize"
			"-preclean"
			"-rerun-clean"
			"-rerun-all"
			"-clean-cache"
			"-no-cache"
			"-cache-db"
			"-cp-eventtime-to-publishtime"
                        "-use-db-cache"
                        "-prepend-contour"


			;; misc
			"-repl"
			"-lock"
			"-unlock"
			"-list-servers"
			"-kill-servers"
                        "-run-wait"      ;; wait on a run to complete (i.e. no RUNNING)
			"-one-pass"      ;;
			"-local"         ;; run some commands using local db access
			"-generate-html"
			"-generate-html-structure" 
			"-list-run-time"
                        "-list-test-time"
			
			;; misc queries
			"-list-disks"
			"-list-targets"
			"-list-db-targets"
			"-show-runconfig"
			"-show-config"
			"-show-cmdinfo"
			"-get-run-status"
			"-list-waivers"

			;; queries
			"-test-paths" ;; get path(s) to a test, ordered by youngest first

			"-runall"    ;; run all tests, respects -testpatt, defaults to %
			"-run"       ;; alias for -runall
			"-remove-runs"
                        "-kill-runs"
                        "-kill-rerun"
                        "-keep-records" ;; use with -remove-runs to remove only the run data
			"-rebuild-db"
			"-cleanup-db"
			"-rollup"
			"-update-meta"
			"-create-megatest-area"
			"-mark-incompletes"

			"-convert-to-norm"
			"-convert-to-old"
			"-import-megatest.db"
			"-sync-to-megatest.db"
                        "-sync-brute-force"
			"-logging"
			"-v" ;; verbose 2, more than normal (normal is 1)
			"-q" ;; quiet 0, errors/warnings only

                        "-diff-rep"

			"-syscheck"
			"-obfuscate"
			;; junk placeholder

			;; "-:p"
			
                        )
		 args:arg-hash
		 0))

;; Add args that use remargs here
;;
(if (and (not (null? remargs))
	 (not (or
	       (args:get-arg "-runstep")
	       (args:get-arg "-envcap")
	       (args:get-arg "-envdelta")
	       )

	      ))
    (debug:print-error 0 *default-log-port* "Unrecognised arguments: " (string-intersperse (if (list? remargs) remargs (argv))  " ")))

;; before doing anything else change to the start-dir if provided
;;
(if (args:get-arg "-start-dir")
    (if (common:file-exists? (args:get-arg "-start-dir"))
        (let ((fullpath (common:real-path (args:get-arg "-start-dir"))))
          (setenv "PWD" fullpath)
          (change-directory fullpath))
	(begin
	  (debug:print-error 0 *default-log-port* "non-existant start dir " (args:get-arg "-start-dir") " specified, exiting.")
	  (exit 1))))

;; immediately set MT_TARGET if -reqtarg or -target are available
;;
(let ((targ (or (args:get-arg "-reqtarg")(args:get-arg "-target"))))
  (if targ (setenv "MT_TARGET" targ)))

;; The watchdog is to keep an eye on things like db sync etc.

;;

;; TODO: for multiple areas, we will have multiple watchdogs; and multiple threads to manage
(define *watchdog* (make-thread
		    (lambda ()
		      (handle-exceptions
			  exn
			  (begin
			    (print-call-chain)
			    (print " message: " ((condition-property-accessor 'exn 'message) exn) ", exn=" exn))
			(common:watchdog)))
		    "Watchdog thread"))

;;(if (not (args:get-arg "-server"))
;;    (thread-start! *watchdog*)) ;; if starting a server; wait till we get to running state before kicking off watchdog
(let* ((no-watchdog-args
       '("-list-runs"
         "-testdata-csv"
         "-list-servers"
         "-server"
	 "-adjutant"
         "-list-disks"
         "-list-targets"
         "-show-runconfig"
         ;;"-list-db-targets"
         "-show-runconfig"
         "-show-config"
         "-show-cmdinfo"
	 "-cleanup-db"
            ))
       (no-watchdog-argvals (list '("-archive" . "replicate-db")))
       (start-watchdog-specail-arg-val (let loop ((hed  (car no-watchdog-argvals))
                                                  (tail (cdr   no-watchdog-argvals)))
                                             ;; (print "hed" hed " arg " (args:get-arg (car hed)) " val:" (cdr hed)  " eql" (equal? (args:get-arg (car hed)) (cdr hed)))  
                                             (if (equal? (args:get-arg (car hed)) (cdr hed))
                                               #f
                                               (if (null? tail)
                                                 #t
                                                 (loop (car tail) (cdr tail))))))      
       (no-watchdog-args-vals (filter (lambda (x) x)
                                      (map args:get-arg no-watchdog-args)))
       (start-watchdog (and (null? no-watchdog-args-vals) start-watchdog-specail-arg-val)))
       ;(print  "no-watchdog-args="no-watchdog-args "no-watchdog-args-vals="no-watchdog-args-vals " start-watchdog-specail-arg-val:" start-watchdog-specail-arg-val " start-watchdog:" start-watchdog) 
  (if start-watchdog
      (thread-start! *watchdog*)))


;; bracket open-output-file with code to make leading directory if it does not exist and handle exceptions
(define (open-logfile logpath-in)
  (condition-case
   (let* ((log-dir (or (pathname-directory logpath-in) "."))
	  (fname   (pathname-strip-directory logpath-in))
	  (logpath (if (> (string-length fname) 250)
		       (let ((newlogf (conc log-dir "/" (common:get-signature fname) ".log")))
			 (debug:print 0 *default-log-port* "WARNING: log file " logpath-in " path too long, converted to " newlogf)
			 newlogf)
		       logpath-in)))
     (if (not (directory-exists? log-dir))
         (system (conc "mkdir -p " log-dir)))
     (open-output-file logpath))
   (exn ()
        (debug:print-error 0 *default-log-port* "Could not open log file for write: "logpath-in)
        (define *didsomething* #t)  
        (exit 1))))

;; this segment will run launch:setup only if -log is not set. This is fairly safe as servers are not
;; manually started and thus should never be started in a non-megatest area. Thus no need to handle situation
;; where (launch:setup) returns #f?















;;
(if (or (args:get-arg "-log")(args:get-arg "-server")) ;; redirect the log always when a server
    (handle-exceptions
	exn
	(begin
	  (print "ERROR: Failed to switch to log output. " ((condition-property-accessor 'exn 'message) exn) ", exn=" exn)
	  )
      (let* ((tl   (or (args:get-arg "-log")(launch:setup)))   ;; run launch:setup if -server, ensure we do NOT run launch:setup if -log specified
	     (logf (or (args:get-arg "-log") ;; use -log unless we are a server, then craft a logfile name
		       (conc tl "/logs/server-" (current-process-id) "-" (get-host-name) ".log")))
	     (oup  (open-logfile logf)))
	(if (not (args:get-arg "-log"))
	    (hash-table-set! args:arg-hash "-log" logf)) ;; fake out future queries of -log
	(debug:print-info 0 *default-log-port* "Sending log output to " logf)
	(set! *default-log-port* oup))))

(if (or (args:get-arg "-h")
	(args:get-arg "-help")
	(args:get-arg "--help"))
    (begin
      (print help)
      (exit)))

(if (args:get-arg "-manual")
    (let* ((htmlviewercmd (or (configf:lookup *configdat* "setup" "htmlviewercmd")
			      (common:which '("firefox" "arora"))))
	   (install-home  (common:get-install-area))
	   (manual-html   (conc install-home "/share/docs/megatest_manual.html")))
      (if (and install-home
	       (common:file-exists? manual-html))
	  (system (conc "(" htmlviewercmd " " manual-html " ) &"))
	  (system (conc "(" htmlviewercmd " http://www.kiatoa.com/cgi-bin/fossils/megatest/doc/tip/docs/manual/megatest_manual.html ) &")))
      (exit)))

(if (args:get-arg "-version")
    (begin
      (print (common:version-signature)) ;; (print megatest-version)
      (exit)))

(define *didsomething* #f)

;; Overall exit handling setup immediately
;;
(if (or (args:get-arg "-process-reap"))
        ;; (args:get-arg "-runtests")
	;; (args:get-arg "-execute")
	;; (args:get-arg "-remove-runs")
	;; (args:get-arg "-runstep"))
    (let ((original-exit (exit-handler)))
      (exit-handler (lambda (#!optional (exit-code 0))
		      (printf "Preparing to exit with exit code ~A ...\n" exit-code)
		      (for-each
		       
		       (lambda (pid)
			 (handle-exceptions
			     exn
			   (begin
			     (printf "process reap failed. exn=~A\n" exn)
			     #t)
			  (let-values (((pid-val exit-status exit-code) (process-wait pid #t)))
				      (if (or (eq? pid-val pid)
					      (eq? pid-val 0))
					  (begin
					    (printf "Sending signal/term to ~A\n" pid)
					    (process-signal pid signal/term))))))
		       (process:children #f))
		      (original-exit exit-code)))))

;; for some switches always print the command to stderr
;;
(if (args:any? "-run" "-runall" "-remove-runs" "-set-state-status" "-kill-runs" "-kill-rerun")
    (debug:print 0 *default-log-port* (string-intersperse (argv) " ")))

;; some switches imply homehost. Exit here if not on homehost
;;
(let ((homehost-required  (list "-cleanup-db" "-server")))
  (if (apply args:any? homehost-required)
      (if (not (common:on-homehost?))
	  (for-each
	   (lambda (switch)
	     (if (args:get-arg switch)
		 (begin
		   (debug:print 0 *default-log-port* "ERROR: you must be on the homehost to run with " switch
				", you can move homehost by removing the .homehost file but this will disrupt any runs in progress.")
		   (exit 1))))
	   homehost-required))))

;;======================================================================
;; Misc setup stuff
;;======================================================================

(debug:setup)

(if (args:get-arg "-logging")(set! *logging* #t))

;;(if (debug:debug-mode 3) ;; we are obviously debugging
;;    (set! open-run-close open-run-close-no-exception-handling))

(if (args:get-arg "-itempatt")
    (let ((newval (conc (args:get-arg "-testpatt") "/" (args:get-arg "-itempatt"))))
      (debug:print 0 *default-log-port* "WARNING: -itempatt has been deprecated, please use -testpatt testpatt/itempatt method, new testpatt is "newval)
      (hash-table-set! args:arg-hash "-testpatt" newval)
      (hash-table-delete! args:arg-hash "-itempatt")))

(if (args:get-arg "-runtests")
    (debug:print 0 *default-log-port* "WARNING: \"-runtests\" is deprecated. Use \"-run\" with \"-testpatt\" instead"))

(on-exit std-exit-procedure)

;;======================================================================
;; Misc general calls
;;======================================================================

(if (and (args:get-arg "-cache-db")
         (args:get-arg "-source-db"))
    (let* ((temp-dir (or (args:get-arg "-target-db") (create-directory (conc "/tmp/" (getenv "USER") "/" (string-translate (current-directory) "/" "_")))))
           (target-db (conc temp-dir "/cached.db"))
           (source-db (args:get-arg "-source-db")))        
      (db:cache-for-read-only source-db target-db)
      (set! *didsomething* #t)))

;; handle a clean-cache request as early as possible












;;
(if (args:get-arg "-clean-cache")
    (let ((toppath  (launch:setup)))
      (set! *didsomething* #t) ;; suppress the help output.
      (runs:clean-cache (common:args-get-target)
			(args:get-arg "-runname")
			toppath)))
	  
(if (args:get-arg "-env2file")
    (begin
      (save-environment-as-files (args:get-arg "-env2file"))
      (set! *didsomething* #t)))

(if (args:get-arg "-list-disks")
    (let ((toppath (launch:setup)))
      (print 
       (string-intersperse 
	(map (lambda (x)
	       (string-intersperse 
		x

		" => "))
	     (common:get-disks *configdat*))
	"\n"))
      (set! *didsomething* #t)))

;; csv processing record
(define (make-refdb:csv)
  (vector 
   (make-sparse-array)
   (make-hash-table)
   (make-hash-table)
   0

   0))
(define-inline (refdb:csv-get-svec     vec)    (vector-ref  vec 0))
(define-inline (refdb:csv-get-rows     vec)    (vector-ref  vec 1))
(define-inline (refdb:csv-get-cols     vec)    (vector-ref  vec 2))
(define-inline (refdb:csv-get-maxrow   vec)    (vector-ref  vec 3))
(define-inline (refdb:csv-get-maxcol   vec)    (vector-ref  vec 4))
(define-inline (refdb:csv-set-svec!    vec val)(vector-set! vec 0 val))
(define-inline (refdb:csv-set-rows!    vec val)(vector-set! vec 1 val))
(define-inline (refdb:csv-set-cols!    vec val)(vector-set! vec 2 val))
(define-inline (refdb:csv-set-maxrow!  vec val)(vector-set! vec 3 val))
(define-inline (refdb:csv-set-maxcol!  vec val)(vector-set! vec 4 val))

(define (get-dat results sheetname)
  (or (hash-table-ref/default results sheetname #f)
      (let ((tmp-vec  (make-refdb:csv)))
	(hash-table-set! results sheetname tmp-vec)
	tmp-vec)))

(if (args:get-arg "-refdb2dat")
    (let* ((input-db (args:get-arg "-refdb2dat"))
	   (out-file (args:get-arg "-o"))
	   (out-fmt  (or (args:get-arg "-dumpmode") "scheme"))
	   (out-port (if (and out-file 
			      (not (member out-fmt '("sqlite3" "csv"))))
			 (open-output-file out-file)
			 (current-output-port)))
	   (res-data (configf:read-refdb input-db))
	   (data     (car res-data))
	   (msg      (cadr res-data)))
      (if (not data)
	  (debug:print 0 *default-log-port* "Bad input? data=" data) ;; some error occurred
	  (with-output-to-port out-port
	    (lambda ()
	      (case (string->symbol out-fmt)
		((scheme)(pp data))
		((perl)
		 ;; (print "%hash = (")
		 ;;        key1 => 'value1',
		 ;;        key2 => 'value2',
		 ;;        key3 => 'value3',
		 ;; );
		 (configf:map-all-hier-alist 
		  data 
		  (lambda (sheetname sectionname varname val)
		    (print "$data{\"" sheetname "\"}{\"" sectionname "\"}{\"" varname "\"} = \"" val "\";"))))
		((python ruby)
		 (print "data={}")
		 (configf:map-all-hier-alist
		  data
		  (lambda (sheetname sectionname varname val)
		    (print "data[\"" sheetname "\"][\"" sectionname "\"][\"" varname "\"] = \"" val "\""))
		  initproc1:
		  (lambda (sheetname)
		    (print "data[\"" sheetname "\"] = {}"))
		  initproc2:
		  (lambda (sheetname sectionname)
		    (print "data[\"" sheetname "\"][\"" sectionname "\"] = {}"))))
		((csv)
		 (let* ((results  (make-hash-table)) ;; (make-sparse-array)))
			(row-cols (make-hash-table))) ;; hash of hashes where section => ht { row-<name> => num or col-<name> => num
		   ;; (print "data=")
		   ;; (pp data)
		   (configf:map-all-hier-alist
		    data
		    (lambda (sheetname sectionname varname val)
		      ;; (print "sheetname: " sheetname ", sectionname: " sectionname ", varname: " varname ", val: " val)
		      (let* ((dat      (get-dat results sheetname))
			     (vec      (refdb:csv-get-svec dat))
			     (rownames (refdb:csv-get-rows dat))
			     (colnames (refdb:csv-get-cols dat))
			     (currrown (hash-table-ref/default rownames varname #f))
			     (currcoln (hash-table-ref/default colnames sectionname #f))
			     (rown     (or currrown 
					   (let* ((lastn   (refdb:csv-get-maxrow dat))
						  (newrown (+ lastn 1)))
					     (refdb:csv-set-maxrow! dat newrown)
					     newrown)))
			     (coln     (or currcoln 
					   (let* ((lastn   (refdb:csv-get-maxcol dat))
						  (newcoln (+ lastn 1)))
					     (refdb:csv-set-maxcol! dat newcoln)
					     newcoln))))
			(if (not (sparse-array-ref vec 0 coln)) ;; (eq? rown 0)
			    (begin
			      (sparse-array-set! vec 0 coln sectionname)
			      ;; (print "sparse-array-ref " 0 "," coln "=" (sparse-array-ref vec 0 coln))
			      ))
			(if (not (sparse-array-ref vec rown 0)) ;; (eq? coln 0)
			    (begin
			      (sparse-array-set! vec rown 0 varname)
			      ;; (print "sparse-array-ref " rown "," 0 "=" (sparse-array-ref vec rown 0))
			      ))
			(if (not currrown)(hash-table-set! rownames varname rown))
			(if (not currcoln)(hash-table-set! colnames sectionname coln))
			;; (print "dat=" dat ", rown=" rown ", coln=" coln)
			(sparse-array-set! vec rown coln val)
			;; (print "sparse-array-ref " rown "," coln "=" (sparse-array-ref vec rown coln))
			)))
		   (for-each
		    (lambda (sheetname)
		      (let* ((sheetdat (get-dat results sheetname))
			     (svec     (refdb:csv-get-svec sheetdat))
			     (maxrow   (refdb:csv-get-maxrow sheetdat))
			     (maxcol   (refdb:csv-get-maxcol sheetdat))
			     (fname    (if out-file 
					   (string-substitute "%s" sheetname out-file) ;; "/foo/bar/%s.csv")
					   (conc sheetname ".csv"))))
			(with-output-to-file fname
			  (lambda ()
			    ;; (print "Sheetname: " sheetname)
			    (let loop ((row       0)
				       (col       0)
				       (curr-row '())
				       (result   '()))
			      (let* ((val (sparse-array-ref svec row col))
				     (disp-val (if val
						   (conc "\"" val "\"")
						   "")))
				(if (> col 0)(display ","))
				(display disp-val)
				(cond
				 ((> row maxrow)(display "\n") result)
				 ((>= col maxcol)
				  (display "\n")
				  (loop (+ row 1) 0 '() (append result (list curr-row))))
				 (else
				  (loop row (+ col 1) (append curr-row (list val)) result)))))))))
		    (hash-table-keys results))))
		((sqlite3)
		 (let* ((db-file   (or out-file (pathname-file input-db)))
			(db-exists (common:file-exists? db-file))
			(db        (sqlite3:open-database db-file)))
		   (if (not db-exists)(sqlite3:execute db "CREATE TABLE data (sheet,section,var,val);"))
		   (configf:map-all-hier-alist
		    data
		    (lambda (sheetname sectionname varname val)
		      (sqlite3:execute db
				       "INSERT OR REPLACE INTO data (sheet,section,var,val) VALUES (?,?,?,?);"
				       sheetname sectionname varname val)))
		   (sqlite3:finalize! db)))
		(else
		 (pp data))))))
      (if out-file (close-output-port out-port))
      (exit) ;; yes, bending the rules here - need to exit since this is a utility
      ))

(if (args:get-arg "-ping")
    (let* ((server-id     (string->number (args:get-arg "-ping"))) ;; extract run-id (i.e. no ":"
	   (host:port     (args:get-arg "-ping")))
      (server:ping (or server-id host:port) #f do-exit: #t)))

;;======================================================================
;; Capture, save and manipulate environments
;;======================================================================

;; NOTE: Keep these above the section where the server or client code is setup

(let ((envcap (args:get-arg "-envcap")))
  (if envcap
      (let* ((db      (env:open-db (if (null? remargs) "envdat.db" (car remargs)))))
	(env:save-env-vars db envcap)
	(env:close-database db)
	(set! *didsomething* #t))))

;; delta "language" will eventually be res=a+b-c but for now it is just res=a-b 
;;
(let ((envdelta (args:get-arg "-envdelta")))
  (if envdelta
      (let ((match (string-split envdelta "-")));; (string-match "([a-z0-9_]+)=([a-z0-9_\\-,]+)" envdelta)))
	(if (not (null? match))
	    (let* ((db        (env:open-db (if (null? remargs) "envdat.db" (car remargs))))
		   ;; (resctx    (cadr match))
		   ;; (equn      (caddr match))
		   (parts     match) ;; (string-split equn "-"))
		   (minuend   (car parts))
		   (subtraend (cadr parts))
		   (added     (env:get-added   db minuend subtraend))
		   (removed   (env:get-removed db minuend subtraend))
		   (changed   (env:get-changed db minuend subtraend)))
	      ;; (pp (hash-table->alist added))
	      ;; (pp (hash-table->alist removed))
	      ;; (pp (hash-table->alist changed))
	      (if (args:get-arg "-o")
		  (with-output-to-file
		      (args:get-arg "-o")
		    (lambda ()
		      (env:print added removed changed)))
		  (env:print added removed changed))
	      (env:close-database db)
	      (set! *didsomething* #t))
	    (debug:print-error 0 *default-log-port* "Parameter to -envdelta should be new=start-end")))))

;;======================================================================
;; Start the server - can be done in conjunction with -runall or -runtests (one day...)
;;   we start the server if not running else start the client thread
;;======================================================================

;; Server? Start up here.
;;
(if (args:get-arg "-server")
    (let ((tl        (launch:setup))
          (transport-type (string->symbol (or (args:get-arg "-transport") "http"))))
      (server:launch 0 transport-type)
      (set! *didsomething* #t)))

;; The adjutant is a bit different, it does NOT run (launch:setup) as it is not necessarily tied to
;; a specific Megatest area. Detail are being hashed out and this may change.
;;
(if (args:get-arg "-adjutant")
    (begin
      (adjutant-run)
      (set! *didsomething* #t)))

(if (or (args:get-arg "-list-servers")
        (args:get-arg "-kill-servers"))
    (let ((tl (launch:setup)))
      (if tl ;; all roads from here exit
	  (let* ((servers (server:get-list *toppath*))
		 (fmtstr  "~8a~22a~20a~20a~8a\n"))
	    (format #t fmtstr "pid" "Interface:port" "age (hms)" "Last mod" "State")
	    (format #t fmtstr "===" "==============" "=========" "========" "=====")
	    (for-each ;;  ( mod-time host port start-time pid )
	     (lambda (server)
	       (let* ((mtm (any->number (car server)))
		      (mod (if mtm (- (current-seconds) mtm) "unk"))
		      (age (- (current-seconds)(or (any->number (list-ref server 3)) (current-seconds))))
		      (url (conc (cadr server) ":" (caddr server)))
		      (pid (list-ref server 4))
		      (alv (if (number? mod)(< mod 10) #f)))
		 (format #t
			 fmtstr
			 pid
			 url
			 (seconds->hr-min-sec age)
			 (seconds->hr-min-sec mod)
			 (if alv "alive" "dead"))
		 (if (and alv
			  (args:get-arg "-kill-servers"))
		     (begin
		       (debug:print-info 0 *default-log-port* "Attempting to kill server with pid " pid)
		       (server:kill server)))))
	     (sort servers (lambda (a b)
			     (let ((ma (or (any->number (car a)) 9e9))
				   (mb (or (any->number (car b)) 9e9)))
			       (> ma mb)))))
	    ;; (debug:print-info 1 *default-log-port* "Done with listservers")
	    (set! *didsomething* #t)
	    (exit))
	  (exit))))
      ;; must do, would have to add checks to many/all calls below

;;======================================================================
;; Weird special calls that need to run *after* the server has started?
;;======================================================================

(if (args:get-arg "-list-targets")
    (if (launch:setup)
        (let ((targets (common:get-runconfig-targets)))
          ;; (debug:print 1 *default-log-port* "Found "(length targets) " targets")
          (case (string->symbol (or (args:get-arg "-dumpmode") "alist"))
            ((alist)
             (for-each (lambda (x)
                         ;; (print "[" x "]"))
                         (print x))
                       targets))
            ((json)
             (json-write targets))
            (else
             (debug:print-error 0 *default-log-port* "dump output format " (args:get-arg "-dumpmode") " not supported for -list-targets")))
          (set! *didsomething* #t))))

;; cache the runconfigs in $MT_LINKTREE/$MT_TARGET/$MT_RUNNAME/.runconfig
;;
(define (full-runconfigs-read)
;; in the envprocessing branch the below code replaces the further below code
;;  (if (eq? *configstatus* 'fulldata)
;;      *runconfigdat*
;;      (begin
;;	(launch:setup)
;;	*runconfigdat*)))

  (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
			   (setenv "MT_RUN_AREA_HOME" *toppath*)
			   (if key-vals
			       (for-each (lambda (kt)
					   (setenv (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
	  data))))

(if (args:get-arg "-show-runconfig")
    (let ((tl (launch:setup)))
      (push-directory *toppath*)
      (let ((data (full-runconfigs-read)))
	;; keep this one local
	(cond
	 ((and (args:get-arg "-section")
	       (args:get-arg "-var"))
	  (let ((val (or (configf:lookup data (args:get-arg "-section")(args:get-arg "-var"))
			 (configf:lookup data "default" (args:get-arg "-var")))))
	    (if val (print val))))
	 ((or (not (args:get-arg "-dumpmode"))
              (string=? (args:get-arg "-dumpmode") "ini"))
	  (configf:config->ini data))
	 ((string=? (args:get-arg "-dumpmode") "sexp")
	  (pp (hash-table->alist data)))
	 ((string=? (args:get-arg "-dumpmode") "json")
	  (json-write data))
	 (else
	  (debug:print-error 0 *default-log-port* "-dumpmode of " (args:get-arg "-dumpmode") " not recognised")))
	(set! *didsomething* #t))
      (pop-directory)))

(if (args:get-arg "-show-config")
    (let ((tl   (launch:setup))
	  (data *configdat*)) ;; (read-config "megatest.config" #f #t)))
      (push-directory *toppath*)
      ;; keep this one local
      (cond 
       ((and (args:get-arg "-section")
	     (args:get-arg "-var"))
	(let ((val (configf:lookup data (args:get-arg "-section")(args:get-arg "-var"))))
	  (if val (print val))))

       ;; print just a section if only -section

       ((equal? (args:get-arg "-dumpmode") "sexp")
	(pp (hash-table->alist data)))
       ((equal? (args:get-arg "-dumpmode") "json")
	(json-write data))
       ((or (not (args:get-arg "-dumpmode"))
	    (string=? (args:get-arg "-dumpmode") "ini"))
	(configf:config->ini data))
       (else
	(debug:print-error 0 *default-log-port* "-dumpmode of " (args:get-arg "-dumpmode") " not recognised")))
      (set! *didsomething* #t)
      (pop-directory)
      (set! *time-to-exit* #t)))

(if (args:get-arg "-show-cmdinfo")
    (if (or (args:get-arg ":value")(getenv "MT_CMDINFO"))
	(let ((data (common:read-encoded-string (or (args:get-arg ":value")(getenv "MT_CMDINFO")))))
	  (if (equal? (args:get-arg "-dumpmode") "json")
	      (json-write data)
	      (pp data))
	  (set! *didsomething* #t))
	(debug:print-info 0 *default-log-port* "environment variable MT_CMDINFO is not set")))

;;======================================================================
;; Remove old run(s)
;;======================================================================

;; since several actions can be specified on the command line the removal
;; is done first
(define (operate-on action #!key (mode #f)(target-in #f)(runname-in #f)(keys-in #f)(keyvals-in #f)) ;; #f is "use default"
  (let* ((runrec (runs:runrec-make-record))
	 (target (or target-in   (common:args-get-target))) ;; eventually get rid of the call to common:args-get-target
	 (runname (or runname-in
		      (args:get-arg "-runname"))) ;; eventually get rid of the get-arg calls
	 (testpatt (or (args:get-arg "-testpatt")
		       (and (eq? action 'archive) ;; if it is an archive command fallback to MT_TEST_NAME and MT_ITEMPATH
			    (common:get-full-test-name))
		       (and (eq? action 'kill-runs)
			    "%/%") ;; I'm just guessing that this is correct :(
		       (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")))
		       ))) ;;
    (cond
     ((not target)
      (debug:print-error 0 *default-log-port* "Missing required parameter for "
			 action ", you must specify -target or -reqtarg")
      (exit 1))
     ((not runname)
      (debug:print-error 0 *default-log-port* "Missing required parameter for "
			 action ", you must specify the run name pattern with -runname patt")
      (exit 2))
     ((not testpatt)
      (debug:print-error 0 *default-log-port* "Missing required parameter for "
			 action ", you must specify the test pattern with -testpatt")
      (exit 3))
     (else
      (if (not (car *configinfo*))
	  (begin
	    (debug:print-error 0 *default-log-port* "Attempted " action "on test(s) but run area config file not found")
	    (exit 1))
	  ;; put test parameters into convenient variables
	  (begin
	    ;; check for correct version, exit with message if not correct
	    (common:exit-on-version-changed)
	    (runs:operate-on  action
			      target
			      runname
			      testpatt
			      state:  (common:args-get-state)
			      status: (common:args-get-status)
			      new-state-status: (args:get-arg "-set-state-status")
                              mode: mode)))
      (set! *didsomething* #t)))))

(if (args:get-arg "-kill-runs")
    (general-run-call 
     "-kill-runs"
     "kill runs"
     (lambda (target runname keys keyvals)
       (operate-on 'kill-runs mode: #f)
       )))

(if (args:get-arg "-kill-rerun")
    (let* ((target-patt (common:args-get-target))
           (runname-patt (args:get-arg "-runname")))
      (cond ((not target-patt)
             (debug:print-error 0 *default-log-port* "Missing target, must specify target for -kill-rerun with -target <target name>")
             (exit 1))
            ((not runname-patt)
             (debug:print-error 0 *default-log-port* "Missing runname, must specify runname for -kill-rerun with -runname <run name>")
             (exit 1))
            ((string-search "[ ,%]" target-patt)
             (debug:print-error 0 *default-log-port* "Invalid target ["target-patt"], must specify exact target (no wildcards) for -kill-rerun with -target <target name>")
             (exit 1))
            ((string-search "[ ,%]" runname-patt)
             (debug:print-error 0 *default-log-port* "Invalid runname ["runname-patt"], must specify exact runname (no wildcards) for -kill-rerun with -runname <runname name>")
             (exit 1))
            (else
             (general-run-call 
              "-kill-runs"
              "kill runs"
              (lambda (target runname keys keyvals)
                (operate-on 'kill-runs mode: #f)
                ))
      
             (thread-sleep! 15))
            ;; fall thru and let "-run" loop fire
            )))



(if (args:get-arg "-remove-runs")
    (general-run-call 
     "-remove-runs"
     "remove runs"
     (lambda (target runname keys keyvals)
       (operate-on 'remove-runs mode: (if (args:get-arg "-keep-records")
                                          'remove-data-only
                                          'remove-all)))))

(if (args:get-arg "-remove-keep")
    (general-run-call 
     "-remove-keep"
     "remove keep"
     (lambda (target runname keys keyvals)
       (let ((actions (map string->symbol
                           (string-split
			    (or (args:get-arg "-actions")
				"print")
			    ",")))) ;; default to printing the output
         (runs:remove-all-but-last-n-runs-per-target target runname
						     (string->number (args:get-arg "-remove-keep"))
						     actions: actions)))))

(if (args:get-arg "-set-state-status")
    (general-run-call 
     "-set-state-status"
     "set state and status"
     (lambda (target runname keys keyvals)
       (operate-on 'set-state-status))))

(if (or (args:get-arg "-set-run-status")
	(args:get-arg "-get-run-status"))
    (general-run-call
     "-set-run-status"
     "set run status"
     (lambda (target runname keys keyvals)
       (let* ((runsdat  (rmt:get-runs-by-patt keys runname 
					(common:args-get-target)
					#f #f #f #f))
	      (header   (vector-ref runsdat 0))
	      (rows     (vector-ref runsdat 1)))
	 (if (null? rows)
	     (begin
	       (debug:print-info 0 *default-log-port* "No matching run found.")
	       (exit 1))
	     (let* ((row      (car (vector-ref runsdat 1)))
		    (run-id   (db:get-value-by-header row header "id")))
	       (if (args:get-arg "-set-run-status")
		   (rmt:set-run-status run-id (args:get-arg "-set-run-status") msg: (args:get-arg "-m"))
		   (print (rmt:get-run-status run-id))
		   )))))))

;;======================================================================
;; Query runs
;;======================================================================

;; -fields runs:id,target,runname,comment+tests:id,testname,item_path+steps
;;
;; csi> (extract-fields-constraints "runs:id,target,runname,comment+tests:id,testname,item_path+steps")
;;         => (("runs" "id" "target" "runname" "comment") ("tests" "id" "testname" "item_path") ("steps"))
;;
;;   NOTE: remember that the cdr will be the list you expect (cdr ("runs" "id" "target" "runname" "comment")) => ("id" "target" "runname" "comment")
;;         and so alist-ref will yield what you expect
;;
(define (extract-fields-constraints fields-spec)
  (map (lambda (table-spec) ;; runs:id,target,runname
	 (let ((dat (string-split table-spec ":"))) ;; ("runs" "id,target,runname")
	   (if (> (length dat) 1)
	       (cons (car dat)(string-split (cadr dat) ",")) ;; "id,target,runname"
	       dat)))
       (string-split fields-spec "+")))

(define (get-value-by-fieldname datavec test-field-index fieldname)
  (let ((indx (hash-table-ref/default test-field-index fieldname #f)))
    (if indx
	(if (>= indx (vector-length datavec))
	    #f ;; index too high, should raise an error I suppose
	    (vector-ref datavec indx))
	#f)))





(when (args:get-arg "-testdata-csv")
  (if (launch:setup)
      (let* ((keys        (rmt:get-keys)) ;; (db:get-keys dbstruct))
             (runpatt     (or (args:get-arg "-runname") "%"))
             (testpatt    (common:args-get-testpatt #f))
             (datapatt    (args:get-arg "-testdata-csv"))
             (match-data  (string-match "^([^/]+)/(.*)" (args:get-arg "-testdata-csv")))
             (categorypatt (if match-data (list-ref match-data 1) "%"))
             (setvarpatt  (if match-data
                              (list-ref match-data 2)
                              (args:get-arg "-testdata-csv")))
             (runsdat     (rmt:get-runs-by-patt keys (or runpatt "%") 
                                                (common:args-get-target) #f #f '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
             (header      (db:get-header runsdat))
             (access-mode (db:get-access-mode))
             (testpatt    (common:args-get-testpatt #f))
             (fields-spec (if (args:get-arg "-fields")
                              (extract-fields-constraints (args:get-arg "-fields"))
                              (list (cons "runs" (append keys (list "id" "runname" "state" "status" "owner" "event_time" "comment" "fail_count" "pass_count")))
                                    (cons "tests"  db:test-record-fields) ;; "id" "testname" "test_path")
                                    (list "steps" "id" "stepname"))))
             (tests-spec  (let ((t (alist-ref "tests" fields-spec equal?)))
                            (if (and t (null? t)) ;; all fields
                                db:test-record-fields
                                t)))
             (adj-tests-spec (delete-duplicates (if tests-spec (cons "id" tests-spec) db:test-record-fields))) 
             (test-field-index (make-hash-table))
             (runs (db:get-rows runsdat))
             )

        (if (and tests-spec (not (null? tests-spec))) ;; do some validation and processing of the test-spec
            (let ((invalid-tests-spec (filter (lambda (x)(not (member x db:test-record-fields))) tests-spec)))
              (if (null? invalid-tests-spec)
                  ;; generate the lookup map test-field-name => index-number
                  (let loop ((hed (car adj-tests-spec))
                             (tal (cdr adj-tests-spec))
                             (idx 0))
                    (hash-table-set! test-field-index hed idx)
                    (if (not (null? tal))(loop (car tal)(cdr tal)(+ idx 1))))
                  (begin
                    (debug:print-error 0 *default-log-port* "Invalid test fields specified: " (string-intersperse invalid-tests-spec ", "))
                    (exit)))))
        (let* ((table-header (string-split "target,run,test,itempath,category,var,value,comment" ","))
               (table-rows
                (apply append (map  
                               (lambda (run)
                                 (let* ((target (string-intersperse (map (lambda (x)
							 (db:get-value-by-header run header x))
						       keys) "/"))
                                        (statuses (string-split (or (args:get-arg "-status") "") ","))
                                        (run-id  (db:get-value-by-header run header "id"))
                                        (runname (db:get-value-by-header run header "runname")) 
                                        (states  (string-split (or (args:get-arg "-state") "") ","))
                                        (tests   (if tests-spec
                                                     (rmt:get-tests-for-run run-id testpatt states statuses #f #f #f 'testname 'asc ;; (db:get-tests-for-run dbstruct run-id testpatt '() '() #f #f #f 'testname 'asc 
                                                                        ;; use qryvals if test-spec provided
                                                                        (if tests-spec
                                                                            (string-intersperse adj-tests-spec ",")
                                                                            ;; db:test-record-fields
                                                                            #f)
                                                                        #f
                                                                        'normal)
                                                     '())))
                                   (apply append
                                          (map
                                           (lambda (test)
                                             (let* (
                                                    (test-id      (if (member "id"           tests-spec)(get-value-by-fieldname test test-field-index "id"          ) #f)) ;; (db:test-get-id         test))
                                                    (testname     (if (member "testname"     tests-spec)(get-value-by-fieldname test test-field-index "testname"    ) #f)) ;; (db:test-get-testname   test))
                                                    (itempath     (if (member "item_path"    tests-spec)(get-value-by-fieldname test test-field-index "item_path"   ) #f)) ;; (db:test-get-item-path  test))
                                                    (fullname     (conc testname
                                                                        (if (equal? itempath "")
                                                                            "" 
                                                                            (conc "/" itempath ))))
                                                    (testdat-raw (map vector->list (rmt:read-test-data-varpatt run-id test-id categorypatt setvarpatt)))
                                                    (testdat (filter
                                                              (lambda (x)
                                                                (not (equal? "logpro"
                                                                             (list-ref x 10))))
                                                              testdat-raw)))
                                               (map 
                                                (lambda (item)
                                                  (receive (id test_id category
                                                               variable value expected
                                                               tol units comment status type)
                                                      (apply values item)
                                                    (list target runname testname itempath category variable value comment)))
                                                testdat)))
                                           tests))))
                               runs))))
          (print (string-join table-header ","))
          (for-each (lambda(table-row)
                      (print (string-join (map ->string table-row) ",")))

                    
                            table-rows))))
  (set! *didsomething* #t)
  (set! *time-to-exit* #t))



;; NOTE: list-runs and list-db-targets operate on local db!!!
;;









;; IDEA: megatest list -runname blah% ...
;;
(if (or (args:get-arg "-list-runs")
	(args:get-arg "-list-db-targets"))
    (if (launch:setup)
	(let* (;; (dbstruct    (make-dbr:dbstruct path: *toppath* local: (args:get-arg "-local")))
	       (runpatt     (args:get-arg "-list-runs"))
               (access-mode (db:get-access-mode))
	       (testpatt    (common:args-get-testpatt #f))
	       ;; (if (args:get-arg "-testpatt") 
	       ;;  	        (args:get-arg "-testpatt") 
	       ;;  	        "%"))
	       (keys        (rmt:get-keys)) ;; (db:get-keys dbstruct))
	       ;; (runsdat  (db:get-runs dbstruct runpatt #f #f '()))
	;; (runsdat     (rmt:get-runs-by-patt keys (or runpatt "%") (common:args-get-target) ;; (db:get-runs-by-patt dbstruct keys (or runpatt "%") (common:args-get-target)
	;; 		           	 #f #f '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
	       (runsdat     (rmt:get-runs-by-patt keys (or runpatt "%") 
                                                  (common:args-get-target) #f #f '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
	       (runstmp     (db:get-rows runsdat))
	       (header      (db:get-header runsdat))
	       ;; this is "-since" support. This looks at last mod times of <run-id>.db files
	       ;; and collects those modified since the -since time.
	       (runs        runstmp)
                        ;; (if (and (not (null? runstmp))
			;;        (args:get-arg "-since"))
			;;   (let ((changed-ids (db:get-changed-run-ids (string->number (args:get-arg "-since")))))
			;;     (let loop ((hed (car runstmp))
			;;   	     (tal (cdr runstmp))
			;;   	     (res '()))
			;;       (let ((new-res (if (member (db:get-value-by-header hed header "id") changed-ids)
			;;   		       (cons hed res)
			;;   		       res)))
			;;         (if (null? tal)
			;;   	  (reverse new-res)
			;;   	  (loop (car tal)(cdr tal) new-res)))))
			;;   runstmp))
	       (db-targets  (args:get-arg "-list-db-targets"))
	       (seen        (make-hash-table))
	       (dmode       (let ((d (args:get-arg "-dumpmode"))) ;; json, sexpr
			      (if d (string->symbol d) #f)))
	       (data        (make-hash-table))
	       (fields-spec (if (args:get-arg "-fields")
				(extract-fields-constraints (args:get-arg "-fields"))
				(list (cons "runs" (append keys (list "id" "runname" "state" "status" "owner" "event_time" "comment" "fail_count" "pass_count")))
				      (cons "tests"  db:test-record-fields) ;; "id" "testname" "test_path")
				      (list "steps" "id" "stepname"))))
	       (runs-spec   (let ((r (alist-ref "runs"  fields-spec equal?))) ;; the check is now unnecessary
			      (if (and r (not (null? r))) r (list "id" ))))
	       (tests-spec  (let ((t (alist-ref "tests" fields-spec equal?)))
			      (if (and t (null? t)) ;; all fields
				  db:test-record-fields
				  t)))
	       (adj-tests-spec (delete-duplicates (if tests-spec (cons "id" tests-spec) db:test-record-fields))) ;; '("id"))))
	       (steps-spec  (alist-ref "steps" fields-spec equal?))
	       (test-field-index (make-hash-table)))
	  (if (and tests-spec (not (null? tests-spec))) ;; do some validation and processing of the test-spec
	      (let ((invalid-tests-spec (filter (lambda (x)(not (member x db:test-record-fields))) tests-spec)))
		(if (null? invalid-tests-spec)
		    ;; generate the lookup map test-field-name => index-number
		    (let loop ((hed (car adj-tests-spec))
			       (tal (cdr adj-tests-spec))
			       (idx 0))
		      (hash-table-set! test-field-index hed idx)
		      (if (not (null? tal))(loop (car tal)(cdr tal)(+ idx 1))))
		    (begin
		      (debug:print-error 0 *default-log-port* "Invalid test fields specified: " (string-intersperse invalid-tests-spec ", "))
		      (exit)))))
	  ;; Each run
	  (for-each 
	   (lambda (run)
	     (let ((targetstr (string-intersperse (map (lambda (x)
							 (db:get-value-by-header run header x))
						       keys) "/")))
	       (if db-targets
		   (if (not (hash-table-ref/default seen targetstr #f))
		       (begin
			 (hash-table-set! seen targetstr #t)
			 ;; (print "[" targetstr "]"))))
			 (if (not dmode)
			     (print targetstr)
			     (hash-table-set! data "targets" (cons targetstr (hash-table-ref/default data "targets" '())))
			     )))
		   (let* ((run-id  (db:get-value-by-header run header "id"))
			  (runname (db:get-value-by-header run header "runname")) 
			  (states  (string-split (or (args:get-arg "-state") "") ","))
			  (statuses (string-split (or (args:get-arg "-status") "") ","))
			  (tests   (if tests-spec
				       (rmt:get-tests-for-run run-id testpatt states statuses #f #f #f 'testname 'asc ;; (db:get-tests-for-run dbstruct run-id testpatt '() '() #f #f #f 'testname 'asc 
							     ;; use qryvals if test-spec provided
							     (if tests-spec
								 (string-intersperse adj-tests-spec ",")
								 ;; db:test-record-fields
								 #f)
							     #f
							     'normal)
				       '())))
		     (case dmode
		       ((json ods sexpr)
			(if runs-spec
			    (for-each 
			     (lambda (field-name)
			       (mutils:hierhash-set! data (conc (db:get-value-by-header run header field-name)) targetstr runname "meta" field-name))
			     runs-spec)))
			;; (mutils:hierhash-set! data (db:get-value-by-header run header "status")     targetstr runname "meta" "status"     )
			;; (mutils:hierhash-set! data (db:get-value-by-header run header "state")      targetstr runname "meta" "state"      )
			;; (mutils:hierhash-set! data (conc (db:get-value-by-header run header "id"))  targetstr runname "meta" "id"         )
			;; (mutils:hierhash-set! data (db:get-value-by-header run header "event_time") targetstr runname "meta" "event_time" )
			;; (mutils:hierhash-set! data (db:get-value-by-header run header "comment")    targetstr runname "meta" "comment"    )
			;; ;; add last entry twice - seems to be a bug in hierhash?
			;; (mutils:hierhash-set! data (db:get-value-by-header run header "comment")    targetstr runname "meta" "comment"    )
		       (else
			(if (null? runs-spec)
			    (print "Run: " targetstr "/" runname 
				   " status: " (db:get-value-by-header run header "state")
				   " run-id: " run-id ", number tests: " (length tests)
				   " event_time: " (db:get-value-by-header run header "event_time"))
			    (begin
			      (if (not (member "target" runs-spec))
			          ;; (display (conc "Target: " targetstr))
			          (display (conc "Run: " targetstr "/" runname " ")))
			      (for-each
			       (lambda (field-name)
				 (if (equal? field-name "target")
				     (display (conc "target: " targetstr " "))
				     (display (conc field-name ": " (db:get-value-by-header run header (conc field-name)) " "))))
			       runs-spec)
			      (newline)))))
		       
		     (for-each 
		      (lambda (test)
		      	(common:debug-handle-exceptions #f
			 exn
			 (begin
			   (debug:print-error 0 *default-log-port* "Bad data in test record? " test)
			   (debug:print-error 5 *default-log-port* "exn=" (condition->list exn))
			   (debug:print 0 *default-log-port* " message: " ((condition-property-accessor 'exn 'message) exn))
			   (print-call-chain (current-error-port)))
			 (let* ((test-id      (if (member "id"           tests-spec)(get-value-by-fieldname test test-field-index "id"          ) #f)) ;; (db:test-get-id         test))
				(testname     (if (member "testname"     tests-spec)(get-value-by-fieldname test test-field-index "testname"    ) #f)) ;; (db:test-get-testname   test))
				(itempath     (if (member "item_path"    tests-spec)(get-value-by-fieldname test test-field-index "item_path"   ) #f)) ;; (db:test-get-item-path  test))
				(comment      (if (member "comment"      tests-spec)(get-value-by-fieldname test test-field-index "comment"     ) #f)) ;; (db:test-get-comment    test))
				(tstate       (if (member "state"        tests-spec)(get-value-by-fieldname test test-field-index "state"       ) #f)) ;; (db:test-get-state      test))
				(tstatus      (if (member "status"       tests-spec)(get-value-by-fieldname test test-field-index "status"      ) #f)) ;; (db:test-get-status     test))
				(event-time   (if (member "event_time"   tests-spec)(get-value-by-fieldname test test-field-index "event_time"  ) #f)) ;; (db:test-get-event_time test))
				(rundir       (if (member "rundir"       tests-spec)(get-value-by-fieldname test test-field-index "rundir"      ) #f)) ;; (db:test-get-rundir     test))
				(final_logf   (if (member "final_logf"   tests-spec)(get-value-by-fieldname test test-field-index "final_logf"  ) #f)) ;; (db:test-get-final_logf test))
				(run_duration (if (member "run_duration" tests-spec)(get-value-by-fieldname test test-field-index "run_duration") #f)) ;; (db:test-get-run_duration test))
				(fullname     (conc testname
						    (if (equal? itempath "")
							"" 
							(conc "(" itempath ")")))))
			   (case dmode
			     ((json ods sexpr)
			      (if tests-spec
				  (for-each
				   (lambda (field-name)
				     (mutils:hierhash-set! data  (get-value-by-fieldname test test-field-index field-name) targetstr runname "data" (conc test-id) field-name))
				   tests-spec)))
			     ;; ;; (mutils:hierhash-set! data  fullname   targetstr runname "data" (conc test-id) "tname"     )
			     ;;  (mutils:hierhash-set! data  testname   targetstr runname "data" (conc test-id) "testname"  )
			     ;;  (mutils:hierhash-set! data  itempath   targetstr runname "data" (conc test-id) "itempath"  )
			     ;;  (mutils:hierhash-set! data  comment    targetstr runname "data" (conc test-id) "comment"   )
			     ;;  (mutils:hierhash-set! data  tstate     targetstr runname "data" (conc test-id) "state"     )
			     ;;  (mutils:hierhash-set! data  tstatus    targetstr runname "data" (conc test-id) "status"    )
			     ;;  (mutils:hierhash-set! data  rundir     targetstr runname "data" (conc test-id) "rundir"    )
			     ;;  (mutils:hierhash-set! data  final_logf targetstr runname "data" (conc test-id) "final_logf")
			     ;;  (mutils:hierhash-set! data  run_duration targetstr runname "data" (conc test-id) "run_duration")
			     ;;  (mutils:hierhash-set! data  event-time targetstr runname "data" (conc test-id) "event_time")
			     ;;  ;; add last entry twice - seems to be a bug in hierhash?
			     ;;  (mutils:hierhash-set! data  event-time targetstr runname "data" (conc test-id) "event_time")
			     ;;  )
			     (else
			      (if (and tstate tstatus event-time)
				  (format #t
					  "  Test: ~25a State: ~15a Status: ~15a Runtime: ~5@as Time: ~22a Host: ~10a\n"
					  (if fullname fullname "")
					  (if tstate   tstate   "")
					  (if tstatus  tstatus  "")
					  (get-value-by-fieldname test test-field-index "run_duration");;(if test     (db:test-get-run_duration test) "")
					  (if event-time event-time "")
					  (get-value-by-fieldname test test-field-index "host")) ;;(if test (db:test-get-host test)) "")
				  (print "  Test: " fullname
					 (if tstate  (conc " State: "  tstate)  "")
					 (if tstatus (conc " Status: " tstatus) "")
					 (if (get-value-by-fieldname test test-field-index "run_duration")
					     (conc " Runtime: " (get-value-by-fieldname test test-field-index "run_duration"))
					     "")
					 (if event-time (conc " Time: " event-time) "")
					 (if (get-value-by-fieldname test test-field-index "host")
					     (conc " Host: " (get-value-by-fieldname test test-field-index "host"))
					     "")))
			      (if (not (or (equal? (get-value-by-fieldname test test-field-index "status") "PASS")
					   (equal? (get-value-by-fieldname test test-field-index "status") "WARN")
					   (equal? (get-value-by-fieldname test test-field-index "state")  "NOT_STARTED")))
				  (begin
				    (print   (if (get-value-by-fieldname test test-field-index "cpuload")
						 (conc "         cpuload:  "   (get-value-by-fieldname test test-field-index "cpuload"))
						 "") ;; (db:test-get-cpuload test)
					     (if (get-value-by-fieldname test test-field-index "diskfree")
						 (conc "\n         diskfree: " (get-value-by-fieldname test test-field-index "diskfree")) ;; (db:test-get-diskfree test)
						 "")
					     (if (get-value-by-fieldname test test-field-index "uname")
						 (conc "\n         uname:    " (get-value-by-fieldname test test-field-index "uname")) ;; (db:test-get-uname test)
						 "")
					     (if (get-value-by-fieldname test test-field-index "rundir")
						 (conc "\n         rundir:   " (get-value-by-fieldname test test-field-index "rundir")) ;; (db:test-get-rundir test)
						 "")
;;					     "\n         rundir:   " (get-value-by-fieldname test test-field-index "") ;; (sdb:qry 'getstr ;; (filedb:get-path *fdb* 
;; 					     (db:test-get-rundir test) ;; )
					     )

				    ;; Each test
				    ;; DO NOT remote run
				    (let ((steps (rmt:get-steps-for-test run-id (db:test-get-id test)))) ;; (db:get-steps-for-test dbstruct run-id (db:test-get-id test))))
				      (for-each 
				       (lambda (step)
					 (format #t 
						 "    Step: ~20a State: ~10a Status: ~10a Time ~22a\n"
						 (tdb:step-get-stepname step)
						 (tdb:step-get-state step)
						 (tdb:step-get-status step)
						 (tdb:step-get-event_time step)))
				       steps)))))))))
		      (if (args:get-arg "-sort")
			  (sort tests
				(lambda (a-test b-test)
				  (let* ((key    (args:get-arg "-sort"))
					 (first  (get-value-by-fieldname a-test test-field-index key))
					 (second (get-value-by-fieldname b-test test-field-index key)))
				    ((cond 
				      ((and (number? first)(number? second)) <)
				      ((and (string? first)(string? second)) string<=?)
				      (else equal?))
				     first second))))
			  tests))))))
	   runs)
	  (case dmode
	    ((json)  (json-write data))
	    ((sexpr) (pp (common:to-alist data))))
	  (let* ((metadat-fields (delete-duplicates
				  (append keys '( "runname" "time" "owner" "pass_count" "fail_count" "state" "status" "comment" "id"))))
		 (run-fields    '(
				  "testname"
				  "item_path"
				  "state"
				  "status"
				  "comment"
				  "event_time"
				  "host"
				  "run_id"
				  "run_duration"
				  "attemptnum"
				  "id"
				  "archived"
				  "diskfree"
				  "cpuload"
				  "final_logf"
				  "shortdir"
				  "rundir"
				  "uname"
				  )
				)


		 (newdat          (common:to-alist data))
		 (allrundat       (if (null? newdat)
				      '()
				      (car (map cdr newdat)))) ;; (car (map cdr (car (map cdr newdat)))))
		 (runs            (append
				   (list "runs" ;; sheetname
					 metadat-fields)
				   (map (lambda (run)
					  ;; (print "run: " run)
					  (let* ((runname (car run))
						 (rundat  (cdr run))
						 (metadat (let ((tmp (assoc "meta" rundat)))
							    (if tmp (cdr tmp) #f))))
					    ;; (print "runname: " runname "\n\nrundat: " )(pp rundat)(print "\n\nmetadat: ")(pp metadat)
					    (if metadat
						(map (lambda (field)
						       (let ((tmp (assoc field metadat)))
							 (if tmp (cdr tmp) "")))
						     metadat-fields)
						(begin
						  (debug:print 0 *default-log-port* "WARNING: meta data for run " runname " not found")
						  '()))))
					allrundat)))
		 ;; '( ( "target" ( "runname" ( "data" ( "runid" ( "id . "37" ) ( ... ))))
		 (run-pages      (map (lambda (targdat)
					(let* ((target  (car targdat))
					       (runsdat (cdr targdat)))
					  (if runsdat
					      (map (lambda (rundat)
						     (let* ((runname  (car rundat))
							    (rundat   (cdr rundat))
							    (testsdat (let ((tmp (assoc "data" rundat)))
									(if tmp (cdr tmp) #f))))
						       (if testsdat
							   (let ((tests (map (lambda (test)
									       (let* ((test-id  (car test))
										      (test-dat (cdr test)))
										 (map (lambda (field)
											(let ((tmp (assoc field test-dat)))
											  (if tmp (cdr tmp) "")))
										      run-fields)))
									     testsdat)))
							     ;; (print "Target: " target "/" runname " tests:")
							     ;; (pp tests)
							     (cons (conc target "/" runname)
								   (cons (list (conc target "/" runname))
									 (cons '()
									       (cons run-fields tests)))))
							   (begin
							     (debug:print 4 *default-log-port* "WARNING: run " target "/" runname " appears to have no data")
							     ;; (pp rundat)
							     '()))))
						   runsdat)
					      '())))
				      newdat)) ;; we use newdat to get target
		 (sheets         (filter (lambda (x)
					   (not (null? x)))
					 (cons runs (map car run-pages)))))
	    ;; (print "allrundat:")
	    ;; (pp allrundat)
	    ;; (print "runs:")
	    ;; (pp runs)
	    ;(print "sheets: ")
	    ;; (pp sheets)
	    (if (eq? dmode 'ods)
		(let* ((tempdir    (conc "/tmp/" (current-user-name) "/" (pseudo-random-integer 10000) "_" (current-process-id)))
		       (outputfile (or (args:get-arg "-o") "out.ods"))
		       (ouf        (if (string-match (regexp "^[/~]+.*") outputfile) ;; full path?
				       outputfile
				       (begin
					 (debug:print 0 *default-log-port* "WARNING: path given, " outputfile " is relative, prefixing with current directory")
					 (conc (current-directory) "/" outputfile)))))
		  (create-directory tempdir #t)
		  (ods:list->ods tempdir ouf sheets))))
	  ;; (system (conc "rm -rf " tempdir))
	  (set! *didsomething* #t)
          (set! *time-to-exit* #t)
          ) ;; end if true branch (end of a let)
        ) ;; end if
    ) ;; end if -list-runs

;; list-waivers
(if (and (args:get-arg "-list-waivers")
	 (launch:setup))
    (let* ((runpatt     (or (args:get-arg "-runname") "%"))
	   (testpatt    (common:args-get-testpatt #f))
	   (keys        (rmt:get-keys)) 
	   (runsdat     (rmt:get-runs-by-patt
			 keys runpatt 
			 (common:args-get-target) #f #f
			 '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
	   (runs        (db:get-rows runsdat))
	   (header      (db:get-header runsdat))
	   (results     (make-hash-table))  ;; [target] ( (testname/itempath . "comment") ... )
	   (addtest     (lambda (target testname itempath comment)
			  (hash-table-set! results target (cons (cons (conc testname "/" itempath) comment)
								(hash-table-ref/default results target '())))))
	   (last-target #f))
      (for-each
       (lambda (run)
	 (let* ((run-id  (db:get-value-by-header run header "id"))
		(target  (rmt:get-target run-id))
		(runname (db:get-value-by-header run header "runname")) 
		(tests   (rmt:get-tests-for-run
			  run-id testpatt '("COMPLETED") '("WAIVED") #f #f #f 'testname 'asc							     ;; use qryvals if test-spec provided
			  #f #f #f)))
	   (if (not (equal? target last-target))
	       (print "[" target "]"))
	   (set! last-target target)
	   (print "# " runname)
	   (for-each
	    (lambda (testdat)
	      (let* ((testfullname (conc (db:test-get-testname testdat)
					 (if (equal? "" (db:test-get-item-path testdat))
					     ""
					     (conc "/" (db:test-get-item-path testdat)))
					 )))
	      (print testfullname " " (db:test-get-comment testdat))))
	    tests)))
       runs)
      (set! *didsomething* #t)))
      
;;======================================================================
;; full run
;;======================================================================

(define (handle-run-requests target runname keys keyvals need-clean)	 
  (if (or (args:get-arg "-kill-rerun") (args:get-arg "-rerun-clean")) ;; first set states/statuses correct
      ;; For rerun-clean do we or do we not support the testpatt?
      (let ((states   (or (configf:lookup *configdat* "validvalues" "cleanrerun-states")
			  "KILLREQ,KILLED,UNKNOWN,INCOMPLETE,STUCK,NOT_STARTED"))
	    (statuses (or (configf:lookup *configdat* "validvalues" "cleanrerun-statuses")
			  "FAIL,INCOMPLETE,ABORT,CHECK,DEAD,PREQ_FAIL,PREQ_DISCARDED")))
	(hash-table-set! args:arg-hash "-preclean" #t)
	(runs:operate-on 'set-state-status
			 target
			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
			 ;; "%" ;; (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
			 (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
			 state:  states
			 ;; status: statuses
			 new-state-status: "NOT_STARTED,n/a")
	(runs:clean-cache target runname *toppath*)
	(runs:operate-on 'set-state-status
			 target
			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
			 ;; "%" ;; (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
			 (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
			 ;; state:  states
			 status: statuses
			 new-state-status: "NOT_STARTED,n/a")))
  ;; RERUN ALL
  (if (args:get-arg "-rerun-all") ;; first set states/statuses correct
      (let* ((rconfig (full-runconfigs-read)))
	(hash-table-set! args:arg-hash "-preclean" #t)
	(runs:operate-on 'set-state-status
			 target
			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
			 (common:args-get-testpatt rconfig) ;; (args:get-arg "-testpatt")
			 state:  #f
			 ;; status: statuses
			 new-state-status: "NOT_STARTED,n/a")
	(runs:clean-cache target runname *toppath*)
	(runs:operate-on 'set-state-status
			 target
			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
			 (common:args-get-testpatt rconfig) ;; (args:get-arg "-testpatt")
			 ;; state:  states
			 status: #f
			 new-state-status: "NOT_STARTED,n/a")))
  (let* ((config-reruns      (let ((x (configf:lookup *configdat* "setup" "reruns")))
			       (if x (string->number x) #f)))
	 (rerun-cnt (if config-reruns
			config-reruns
			1)))

    (runs:run-tests target
		    runname
		    #f ;; (common:args-get-testpatt #f)
		    ;; (or (args:get-arg "-testpatt")
		    ;;     "%")
		    user
		    args:arg-hash
		    run-count: rerun-cnt)))

;; get lock in db for full run for this directory
;; for all tests with deps
;;   walk tree of tests to find head tasks
;;   add head tasks to task queue
;;   add dependant tasks to task queue 
;;   add remaining tasks to task queue
;; for each task in task queue
;;   if have adequate resources
;;     launch task
;;   else
;;     put task in deferred queue
;; if still ok to run tasks
;;   process deferred tasks per above steps

;; run all tests are are Not COMPLETED and PASS or CHECK
(if (or (args:get-arg "-runall")
	(args:get-arg "-run")
	(args:get-arg "-rerun-clean")
	(args:get-arg "-rerun-all")
	(args:get-arg "-runtests")
        (args:get-arg "-kill-rerun"))
    (let ((need-clean (or (args:get-arg "-rerun-clean")
                          (args:get-arg "-rerun-all")))
	  (orig-cmdline (string-intersperse (argv) " ")))
      (general-run-call 
       "-runall"
       "run all tests"
       (lambda (target runname keys keyvals)
	 (if (or (string-search "%" target)
		 (string-search "%" runname)) ;; we are being asked to re-run multiple runs
	     (let* ((run-specs (rmt:simple-get-runs runname #f #f target #f))) ;; list of simple-run records
	       (debug:print-info 0 *default-log-port* "Pattern supplied for target or runname with "
				 (length run-specs) " matches round. Running each in turn.")
	       (if (null? run-specs)
		   (debug:print 0 *default-log-port* "WARNING: No runs match target " target " and runname " runname))
	       (for-each (lambda (spec) 
			   (let* ((precmd     (if (args:get-arg "-precmd")(conc (args:get-arg "-precmd") " ") ""))
				  (newcmdline (conc
					       precmd
					       (string-substitute
						(conc "target " target)
						(conc "target " (simple-run-target spec))
						(string-substitute
						 (conc "runname " runname)
						 (conc "runname " (simple-run-runname spec))
						 orig-cmdline)))))
			     (debug:print 0 *default-log-port* "ORIG: " orig-cmdline)
			     (debug:print 0 *default-log-port* "NEW:  " newcmdline)
			     (system newcmdline)))
			 run-specs))
	     (handle-run-requests target runname keys keyvals need-clean))))))

;;======================================================================
;; run one test
;;======================================================================

;; 1. find the config file
;; 2. change to the test directory
;; 3. update the db with "test started" status, set running host
;; 4. process launch the test
;;    - monitor the process, update stats in the db every 2^n minutes
;; 5. as the test proceeds internally it calls megatest as each step is
;;    started and completed
;;    - step started, timestamp
;;    - step completed, exit status, timestamp
;; 6. test phone home
;;    - if test run time > allowed run time then kill job
;;    - if cannot access db > allowed disconnect time then kill job

;; == duplicated == (if (or (args:get-arg "-run")(args:get-arg "-runtests"))
;; == duplicated ==   (general-run-call 
;; == duplicated ==    "-runtests" 
;; == duplicated ==    "run a test" 
;; == duplicated ==    (lambda (target runname keys keyvals)
;; == duplicated ==      ;;
;; == duplicated ==      ;; May or may not implement it this way ...
;; == duplicated ==      ;;
;; == duplicated ==      ;; Insert this run into the tasks queue
;; == duplicated ==      ;; (open-run-close tasks:add tasks:open-db 
;; == duplicated ==      ;;    	     "runtests" 
;; == duplicated ==      ;;    	     user
;; == duplicated ==      ;;    	     target
;; == duplicated ==      ;;    	     runname
;; == duplicated ==      ;;    	     (args:get-arg "-runtests")
;; == duplicated ==      ;;    	     #f))))
;; == duplicated ==      (runs:run-tests target
;; == duplicated == 		     runname
;; == duplicated == 		     (common:args-get-testpatt #f) ;; (args:get-arg "-runtests")
;; == duplicated == 		     user
;; == duplicated == 		     args:arg-hash))))

;;======================================================================
;; Rollup into a run
;;======================================================================

;; (if (args:get-arg "-rollup")
;;     (general-run-call 
;;      "-rollup" 
;;      "rollup tests" 
;;      (lambda (target runname keys keyvals)
;;        (runs:rollup-run keys
;; 			keyvals
;; 			(or (args:get-arg "-runname")(args:get-arg ":runname") )
;; 			user))))

;;======================================================================
;; Lock or unlock a run
;;======================================================================

(if (or (args:get-arg "-lock")(args:get-arg "-unlock"))
    (general-run-call 
     (if (args:get-arg "-lock") "-lock" "-unlock")
     "lock/unlock tests" 
     (lambda (target runname keys keyvals)
       (runs:handle-locking 
		  target
		  keys
		  (or (args:get-arg "-runname")(args:get-arg ":runname") )
		  (args:get-arg "-lock")
		  (args:get-arg "-unlock")
		  user))))

;;======================================================================
;; Get paths to tests
;;======================================================================
;; Get test paths matching target, runname, and testpatt
(if (or (args:get-arg "-test-files")(args:get-arg "-test-paths"))
    ;; if we are in a test use the MT_CMDINFO data
    (if (getenv "MT_CMDINFO")
	(let* ((startingdir (current-directory))
	       (cmdinfo   (common:read-encoded-string (getenv "MT_CMDINFO")))
	       (transport (assoc/default 'transport cmdinfo))
	       (testpath  (assoc/default 'testpath  cmdinfo))
	       (test-name (assoc/default 'test-name cmdinfo))
	       (runscript (assoc/default 'runscript cmdinfo))
	       (db-host   (assoc/default 'db-host   cmdinfo))
	       (run-id    (assoc/default 'run-id    cmdinfo))
	       (itemdat   (assoc/default 'itemdat   cmdinfo))
	       (state     (args:get-arg ":state"))
	       (status    (args:get-arg ":status"))
	       ;;(target    (args:get-arg "-target"))
	       (target    (common:args-get-target))
	       (toppath   (assoc/default 'toppath   cmdinfo)))
	  (change-directory toppath)
	  (if (not target)
	      (begin
		(debug:print-error 0 *default-log-port* "-target is required.")
		(exit 1)))
	  (if (not (launch:setup))
	      (begin
		(debug:print 0 *default-log-port* "Failed to setup, giving up on -test-paths or -test-files, exiting")
		(exit 1)))
	  (let* ((keys     (rmt:get-keys))
		 ;; db:test-get-paths must not be run remote
		 (paths    (tests:test-get-paths-matching keys target (args:get-arg "-test-files"))))
	    (set! *didsomething* #t)
	    (for-each (lambda (path)
			(if (common:file-exists? path)
			(print path)))	
		      paths)))
	;; else do a general-run-call
	(general-run-call 
	 "-test-files"
	 "Get paths to test"
	 (lambda (target runname keys keyvals)
	   (let* ((db       #f)
		  ;; DO NOT run remote
		  (paths    (tests:test-get-paths-matching keys target (args:get-arg "-test-files"))))
	     (for-each (lambda (path)
			 (print path))
		       paths))))))

;;======================================================================
;; Archive tests
;;======================================================================
;; Archive tests matching target, runname, and testpatt
(if (equal? (args:get-arg "-archive") "replicate-db")
    (begin
          ;; check if source
          ;; check if megatest.db exist
         (launch:setup)
         (if (not (args:get-arg "-source"))
             (begin 
             (debug:print-info 1 *default-log-port* "Missing required argument -source <archive path>")
             (exit 1)))
         (if (common:file-exists? (conc  *toppath* "/megatest.db"))
             (begin  
               (debug:print-info 1 *default-log-port* "File " (conc  *toppath* "/megatest.db") " already exists. Please remove it before trying to replicate db")
               (exit 1)))
         (if (and (common:get-db-tmp-area) (> (length (directory   (common:get-db-tmp-area) #f)) 0))
           (begin
           (debug:print-info 1 *default-log-port* (common:get-db-tmp-area) " not empty. Please remove it before trying to replicate db")
           (exit 1)))    
          ;; check if timestamp 
          (let* ((source (args:get-arg "-source"))
                (src     (if (not (equal? (substring source 0 1) "/"))
                             (conc (current-directory) "/" source)
                             source))
                (ts (if (args:get-arg "-time-stamp")   (args:get-arg "-time-stamp") "latest")))
              (if  (common:directory-exists? src)
                  (begin 
                  (archive:restore-db src ts)
            (set! *didsomething* #t))
       (begin
         (debug:print-error 1 *default-log-port* "Path " source " not found")
         (exit 1))))))   
    ;; else do a general-run-call
   (if (and (args:get-arg "-archive") (not (equal? (args:get-arg "-archive") "replicate-db"))) 
    (begin
      ;; for the archive get we need to preserve the starting dir as part of the target path
      (if (and (args:get-arg "-dest")
	       (not (equal? (substring (args:get-arg "-dest") 0 1) "/")))
	  (let ((newpath  (conc (current-directory) "/" (args:get-arg "-dest"))))
	    (debug:print-info 1 *default-log-port* "Preserving original path to destination, was " (args:get-arg "-dest") ", now " newpath)
	    (hash-table-set! args:arg-hash "-dest" newpath)))
      (general-run-call 
       "-archive"
       "Archive"
       (lambda (target runname keys keyvals)
	 (operate-on 'archive target-in: target runname-in: runname )))))

;;======================================================================
;; Extract a spreadsheet from the runs database
;;======================================================================

(if (args:get-arg "-extract-ods")
    (general-run-call
     "-extract-ods"
     "Make ods spreadsheet"
     (lambda (target runname keys keyvals)
       (let ((dbstruct   (make-dbr:dbstruct path: *toppath* local: #t))
	     (outputfile (args:get-arg "-extract-ods"))
	     (runspatt   (or (args:get-arg "-runname")(args:get-arg ":runname")))
	     (pathmod    (args:get-arg "-pathmod")))
	     ;; (keyvalalist (keys->alist keys "%")))
	 (debug:print 2 *default-log-port* "Extract ods, outputfile: " outputfile " runspatt: " runspatt " keyvals: " keyvals)
	 (db:extract-ods-file dbstruct outputfile keyvals (if runspatt runspatt "%") pathmod)
	 (db:close-all dbstruct)
	 (set! *didsomething* #t)))))

;;======================================================================
;; execute the test
;;    - gets called on remote host
;;    - receives info from the -execute param
;;    - passes info to steps via MT_CMDINFO env var (future is to use a dot file)
;;    - gathers host info and 
;;======================================================================

(if (args:get-arg "-execute")
    (begin
      (launch:execute (args:get-arg "-execute"))
      (set! *didsomething* #t)))

;;======================================================================
;; recover from a test where the managing mtest was killed but the underlying
;; process might still be salvageable
;;======================================================================

(if (args:get-arg "-recover-test")
    (let* ((params (string-split (args:get-arg "-recover-test") ",")))
      (if (> (length params) 1) ;; run-id and test-id
	  (let ((run-id (string->number (car params)))
		(test-id (string->number (cadr params))))
	    (if (and run-id test-id)
		(begin
		  (launch:recover-test run-id test-id)
		  (set! *didsomething* #t))
		(begin
		  (debug:print-error 0 *default-log-port* "bad run-id or test-id, must be integers")
		  (exit 1)))))))

;;======================================================================
;; Test commands (i.e. for use inside tests)
;;======================================================================

(define (megatest:step step state status logfile msg)
  (if (not (getenv "MT_CMDINFO"))
      (begin
	(debug:print-error 0 *default-log-port* "MT_CMDINFO env var not set, -step must be called *inside* a megatest invoked environment!")
	(exit 5))
      (let* ((cmdinfo   (common:read-encoded-string (getenv "MT_CMDINFO")))
	     (transport (assoc/default 'transport cmdinfo))
	     (testpath  (assoc/default 'testpath  cmdinfo))
	     (test-name (assoc/default 'test-name cmdinfo))
	     (runscript (assoc/default 'runscript cmdinfo))
	     (db-host   (assoc/default 'db-host   cmdinfo))
	     (run-id    (assoc/default 'run-id    cmdinfo))
	     (test-id   (assoc/default 'test-id   cmdinfo))
	     (itemdat   (assoc/default 'itemdat   cmdinfo))
	     (work-area (assoc/default 'work-area cmdinfo))
	     (db        #f))
	(change-directory testpath)
	(if (not (launch:setup))
	    (begin
	      (debug:print 0 *default-log-port* "Failed to setup, exiting")
	      (exit 1)))
	(if (and state status)
	    (let ((comment (launch:load-logpro-dat run-id test-id step)))
	      ;; (rmt:test-set-log! run-id test-id (conc stepname ".html"))))
	      (rmt:teststep-set-status! run-id test-id step state status (or comment msg) logfile))
	    (begin
	      (debug:print-error 0 *default-log-port* "You must specify :state and :status with every call to -step")
	      (exit 6))))))


(if (args:get-arg "-step")
    (begin
      (thread-sleep! 1.5)
      (megatest:step 
       (args:get-arg "-step")
       (or (args:get-arg "-state")(args:get-arg ":state"))
       (or (args:get-arg "-status")(args:get-arg ":status"))
       (args:get-arg "-setlog")
       (args:get-arg "-m"))
      ;; (if db (sqlite3:finalize! db))
      (set! *didsomething* #t)
      (thread-sleep! 1.5)))
    
(if (or (args:get-arg "-setlog")       ;; since setting up is so costly lets piggyback on -test-status
	;;     (not (args:get-arg "-step")))  ;; -setlog may have been processed already in the "-step" previous
	;;     NEW POLICY - -setlog sets test overall log on every call.
	(args:get-arg "-set-toplog")
	(args:get-arg "-test-status")
	(args:get-arg "-set-values")
	(args:get-arg "-load-test-data")
	(args:get-arg "-runstep")
	(args:get-arg "-summarize-items"))
    (if (not (getenv "MT_CMDINFO"))
	(begin
	  (debug:print-error 0 *default-log-port* "MT_CMDINFO env var not set, commands -test-status, -runstep and -setlog must be called *inside* a megatest environment!")
	  (exit 5))
	(let* ((startingdir (current-directory))
	       (cmdinfo   (common:read-encoded-string (getenv "MT_CMDINFO")))
	       (transport (assoc/default 'transport cmdinfo))
	       (testpath  (assoc/default 'testpath  cmdinfo))
	       (test-name (assoc/default 'test-name cmdinfo))
	       (runscript (assoc/default 'runscript cmdinfo))
	       (db-host   (assoc/default 'db-host   cmdinfo))
	       (run-id    (assoc/default 'run-id    cmdinfo))
	       (test-id   (assoc/default 'test-id   cmdinfo))
	       (itemdat   (assoc/default 'itemdat   cmdinfo))
	       (work-area (assoc/default 'work-area cmdinfo))
	       (db        #f) ;; (open-db))
	       (state     (args:get-arg ":state"))
	       (status    (args:get-arg ":status"))
	       (stepname  (args:get-arg "-step")))
	  (if (not (launch:setup))
	      (begin
		(debug:print 0 *default-log-port* "Failed to setup, exiting")
		(exit 1)))

	  (if (args:get-arg "-runstep")(debug:print-info 1 *default-log-port* "Running -runstep, first change to directory " work-area))
	  (change-directory work-area)
	  ;; can setup as client for server mode now
	  ;; (client:setup)

	  (if (args:get-arg "-load-test-data")
	      ;; has sub commands that are rdb:
	      ;; DO NOT put this one into either rmt: or open-run-close
	      (tdb:load-test-data run-id test-id))
	  (if (args:get-arg "-setlog")
	      (let ((logfname (args:get-arg "-setlog")))
		(rmt:test-set-log! run-id test-id logfname)))
	  (if (args:get-arg "-set-toplog")
	      ;; DO NOT run remote
	      (tests:test-set-toplog! run-id test-name (args:get-arg "-set-toplog")))
	  (if (args:get-arg "-summarize-items")
	      ;; DO NOT run remote
	      (tests:summarize-items run-id test-id test-name #t)) ;; do force here
	  (if (args:get-arg "-runstep")
	      (if (null? remargs)
		  (begin
		    (debug:print-error 0 *default-log-port* "nothing specified to run!")
		    (if db (sqlite3:finalize! db))
		    (exit 6))
		  (let* ((stepname   (args:get-arg "-runstep"))
			 (logprofile (args:get-arg "-logpro"))
			 (logfile    (conc stepname ".log"))
			 (cmd        (if (null? remargs) #f (car remargs)))
			 (params     (if cmd (cdr remargs) '()))
			 (exitstat   #f)
			 (shell      (let ((sh (get-environment-variable "SHELL") ))
				       (if sh 
					   (last (string-split sh "/"))
					   "bash")))
			 (redir      (case (string->symbol shell)
				       ((tcsh csh ksh)    ">&")
				       ((zsh bash sh ash) "2>&1 >")
				       (else ">&")))
			 (fullcmd    (conc "(" (string-intersperse 
						(cons cmd params) " ")
					   ") " redir " " logfile)))
		    ;; mark the start of the test
		    (rmt:teststep-set-status! run-id test-id stepname "start" "n/a" (args:get-arg "-m") logfile)
		    ;; run the test step
		    (debug:print-info 2 *default-log-port* "Running \"" fullcmd "\" in directory \"" startingdir)
		    (change-directory startingdir)
		    (set! exitstat (system fullcmd))
		    (set! *globalexitstatus* exitstat)
		    ;; (change-directory testpath)
		    ;; run logpro if applicable ;; (process-run "ls" (list "/foo" "2>&1" "blah.log"))
		    (if logprofile
			(let* ((htmllogfile (conc stepname ".html"))
			       (oldexitstat exitstat)
			       (cmd         (string-intersperse (list "logpro" logprofile htmllogfile "<" logfile ">" (conc stepname "_logpro.log")) " ")))
			  (debug:print-info 2 *default-log-port* "running \"" cmd "\"")
			  (change-directory startingdir)
			  (set! exitstat (system cmd))
			  (set! *globalexitstatus* exitstat) ;; no necessary
			  (change-directory testpath)
			  (rmt:test-set-log! run-id test-id htmllogfile)))
		    (let ((msg (args:get-arg "-m")))
		      (rmt:teststep-set-status! run-id test-id stepname "end" exitstat msg logfile))
		    )))
	  (if (or (args:get-arg "-test-status")
		  (args:get-arg "-set-values"))
	      (let ((newstatus (cond
				((number? status)       (if (equal? status 0) "PASS" "FAIL"))
				((and (string? status)
				      (string->number status))(if (equal? (string->number status) 0) "PASS" "FAIL"))
				(else status)))
		    ;; transfer relevant keys into a hash to be passed to test-set-status!
		    ;; could use an assoc list I guess. 
		    (otherdata (let ((res (make-hash-table)))
				 (for-each (lambda (key)
					     (if (args:get-arg key)
						 (hash-table-set! res key (args:get-arg key))))
					   (list ":value" ":tol" ":expected" ":first_err" ":first_warn" ":units" ":category" ":variable"))
				 res)))
		(if (and (args:get-arg "-test-status")
			 (or (not state)
			     (not status)))
		    (begin
		      (debug:print-error 0 *default-log-port* "You must specify :state and :status with every call to -test-status\n" help)
		      (if (sqlite3:database? db)(sqlite3:finalize! db))
		      (exit 6)))
		(let* ((msg    (args:get-arg "-m"))
		       (numoth (length (hash-table-keys otherdata))))
		  ;; Convert to rpc inside the tests:test-set-status! call, not here
		  (tests:test-set-status! run-id test-id state newstatus msg otherdata work-area: work-area))))
	  (if (sqlite3:database? db)(sqlite3:finalize! db))
	  (set! *didsomething* #t))))

;;======================================================================
;; Various helper commands can go below here
;;======================================================================

(if (or (args:get-arg "-showkeys")
        (args:get-arg "-show-keys"))
    (let ((db #f)
	  (keys #f))
      (if (not (launch:setup))
	  (begin
	    (debug:print 0 *default-log-port* "Failed to setup, exiting")
	    (exit 1)))
      (set! keys (rmt:get-keys)) ;;  db))
      (debug:print 1 *default-log-port* "Keys: " (string-intersperse keys ", "))
      (if (sqlite3:database? db)(sqlite3:finalize! db))
      (set! *didsomething* #t)))

(if (args:get-arg "-gui")
    (begin
      (debug:print 0 *default-log-port* "Look at the dashboard for now")
      ;; (megatest-gui)
      (set! *didsomething* #t)))

(if (args:get-arg "-create-megatest-area")
    (begin
      (genexample:mk-megatest.config)
      (set! *didsomething* #t)))

(if (args:get-arg "-create-test")
    (let ((testname (args:get-arg "-create-test")))
      (genexample:mk-megatest-test testname)
      (set! *didsomething* #t)))

;;======================================================================
;; Update the database schema, clean up the db
;;======================================================================

(if (args:get-arg "-rebuild-db")
    (begin
      (if (not (launch:setup))
	  (begin
	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
	    (exit 1)))
      ;; keep this one local
      ;; (open-run-close patch-db #f)
      (let ((dbstruct (db:setup #f areapath: *toppath*)))
        (common:cleanup-db dbstruct full: #t))
      (set! *didsomething* #t)))

(if (args:get-arg "-cleanup-db")
    (begin
      (if (not (launch:setup))
	  (begin
	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
	    (exit 1)))
      (let ((dbstruct (db:setup #f areapath: *toppath*)))
        (common:cleanup-db dbstruct))
      (set! *didsomething* #t)))

(if (args:get-arg "-mark-incompletes")
    (begin
      (if (not (launch:setup))
	  (begin
	    (debug:print 0 *default-log-port* "Failed to setup, exiting")
	    (exit 1)))
      (rmt:find-and-mark-incomplete #f)
      (set! *didsomething* #t)))

;;======================================================================
;; Update the tests meta data from the testconfig files
;;======================================================================

(if (args:get-arg "-update-meta")
    (begin
      (if (not (launch:setup))
	  (begin
	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
	    (exit 1)))
      (runs:update-all-test_meta #f)
      (set! *didsomething* #t)))

;;======================================================================
;; Start a repl
;;======================================================================

;; fakeout readline
;; (include "readline-fix.scm")


(when (args:get-arg "-diff-rep")
  (when (and
         (not (args:get-arg "-diff-html"))
         (not (args:get-arg "-diff-email")))
    (debug:print 0 *default-log-port* "Must specify -diff-html or -diff-email with -diff-rep")
    (set! *didsomething* 1)
    (exit 1))
  
  (let* ((toppath (launch:setup)))
    (do-diff-report
     (args:get-arg "-src-target")
     (args:get-arg "-src-runname")
     (args:get-arg "-target")
     (args:get-arg "-runname")
     (args:get-arg "-diff-html")
     (args:get-arg "-diff-email"))
    (set! *didsomething* #t)
    (exit 0)))

(if (or (getenv "MT_RUNSCRIPT")
	(args:get-arg "-repl")
	(args:get-arg "-load"))
    (let* ((toppath (launch:setup))
	   (dbstruct (if (and toppath
                              (common:on-homehost?))
                         (db:setup #t)
                         #f))) ;; make-dbr:dbstruct path: toppath local: (args:get-arg "-local")) #f)))
      (if *toppath*
	  (cond
	   ((getenv "MT_RUNSCRIPT")
	    ;; How to run megatest scripts
	    ;;
	    ;; #!/bin/bash
	    ;;
	    ;; export MT_RUNSCRIPT=yes
	    ;; megatest << EOF
	    ;; (print "Hello world")
	    ;; (exit)
	    ;; EOF

	    (repl))
	   (else
	    (begin
	      (set! *db* dbstruct)
	      ;; (import extras) ;; might not be needed
	      ;; (import csi)
	      ;; (import readline)
	      (import apropos)
	      ;; (import (prefix sqlite3 sqlite3:)) ;; doesn't work ...

	;; (if *use-new-readline*
	;; 	  (begin
	;; 	    (install-history-file (get-environment-variable "HOME") ".megatest_history") ;;  [homedir] [filename] [nlines])
	;; 	    (current-input-port (make-readline-port "megatest> ")))
	;; 	  (begin
	;; 	    (gnu-history-install-file-manager







	;; 	     (string-append
	;; 	      (or (get-environment-variable "HOME") ".") "/.megatest_history"))
	;; 	    (current-input-port (make-gnu-readline-port "megatest> "))))
	      (if (args:get-arg "-repl")
		  (repl)
		  (load (args:get-arg "-load")))
	      ;; (db:close-all dbstruct) <= taken care of by on-exit call
	      )
	    (exit)))
	  (set! *didsomething* #t))))

;;======================================================================
;; Wait on a run to complete
;;======================================================================

(if (and (args:get-arg "-run-wait")
	 (not (or (args:get-arg "-run")
		  (args:get-arg "-runtests")))) ;; run-wait is built into runtests now
    (begin
      (if (not (launch:setup))
	  (begin
	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
	    (exit 1)))
      (operate-on 'run-wait)
      (set! *didsomething* #t)))

;; ;; ;; redo me ;; Not converted to use dbstruct yet
;; ;; ;; redo me ;;
;; ;; ;; redo me (if (args:get-arg "-convert-to-norm")
;; ;; ;; redo me     (let* ((toppath (setup-for-run))
;; ;; ;; redo me 	   (dbstruct (if toppath (make-dbr:dbstruct path: toppath local: #t))))
;; ;; ;; redo me       (for-each 
;; ;; ;; redo me        (lambda (field)
;; ;; ;; redo me 	 (let ((dat '()))
;; ;; ;; redo me 	   (debug:print-info 0 *default-log-port* "Getting data for field " field)
;; ;; ;; redo me 	   (sqlite3:for-each-row
;; ;; ;; redo me 	    (lambda (id val)
;; ;; ;; redo me 	      (set! dat (cons (list id val) dat)))
;; ;; ;; redo me 	    (db:get-db db run-id)
;; ;; ;; redo me 	    (conc "SELECT id," field " FROM tests;"))
;; ;; ;; redo me 	   (debug:print-info 0 *default-log-port* "found " (length dat) " items for field " field)
;; ;; ;; redo me 	   (let ((qry (sqlite3:prepare db (conc "UPDATE tests SET " field "=? WHERE id=?;"))))
;; ;; ;; redo me 	     (for-each
;; ;; ;; redo me 	      (lambda (item)
;; ;; ;; redo me 		(let ((newval ;; (sdb:qry 'getid 
;; ;; ;; redo me 		       (cadr item))) ;; )
;; ;; ;; redo me 		  (if (not (equal? newval (cadr item)))
;; ;; ;; redo me 		      (debug:print-info 0 *default-log-port* "Converting " (cadr item) " to " newval " for test #" (car item)))
;; ;; ;; redo me 		  (sqlite3:execute qry newval (car item))))
;; ;; ;; redo me 	      dat)
;; ;; ;; redo me 	     (sqlite3:finalize! qry))))
;; ;; ;; redo me        (db:close-all dbstruct)
;; ;; ;; redo me        (list "uname" "rundir" "final_logf" "comment"))
;; ;; ;; redo me       (set! *didsomething* #t)))

(if (args:get-arg "-import-megatest.db")
    (begin
      (db:multi-db-sync 
       (db:setup #f)
       'killservers
       'dejunk
       'adj-testids
       'old2new
       ;; 'new2old
       )

      (set! *didsomething* #t)))

(when (args:get-arg "-sync-brute-force")
  ((server:get-bruteforce-syncer (db:setup #t) persist-until-sync: #t))
  (set! *didsomething* #t))

(if (args:get-arg "-sync-to-megatest.db")
    (let* ((dbstruct (db:setup #f))
	   (tmpdbpth (cdr (dbr:dbstruct-tmpdb dbstruct)))
	   (lockfile (conc tmpdbpth ".lock"))
	   (locked   (common:simple-file-lock lockfile)) 
	   (res      (if locked
			 (db:multi-db-sync 
			  dbstruct
			  'new2old)
			 #f)))
      (if res
	  (begin
	    (common:simple-file-release-lock lockfile)
	    (print "Synced " res " records to megatest.db"))
	  (print "Skipping sync, there is a sync in progress."))
      (set! *didsomething* #t)))

(if (args:get-arg "-sync-to")
    (let ((toppath (launch:setup)))
      (tasks:sync-to-postgres *configdat* (args:get-arg "-sync-to"))
      (set! *didsomething* #t)))

(if (args:get-arg "-list-test-time")
     (let* ((toppath (launch:setup))) 
     (task:get-test-times)  
     (set! *didsomething* #t)))

(if (args:get-arg "-list-run-time")
     (let* ((toppath (launch:setup))) 
     (task:get-run-times)  
     (set! *didsomething* #t)))
     
(if (args:get-arg "-generate-html")
    (let* ((toppath (launch:setup)))
      (if (tests:create-html-tree #f)
          (debug:print-info 0 *default-log-port* "HTML output created in " toppath "/lt/page0.html")
          (debug:print 0 *default-log-port* "Failed to create HTML output in " toppath "/lt/runs-index.html"))
      (set! *didsomething* #t)))

(if (args:get-arg "-generate-html-structure")
    (let* ((toppath (launch:setup)))
      ;(if (tests:create-html-tree #f)
 				(if (tests:create-html-summary #f)
          (debug:print-info 0 *default-log-port* "HTML output created in " toppath "/lt/targets.html")
          (debug:print 0 *default-log-port* "Failed to create HTML output in " toppath "/lt/runs-index.html"))
      (set! *didsomething* #t)))

(if (args:get-arg "-syscheck")
    (begin
      (mutils:syscheck common:raw-get-remote-host-load
		       server:get-best-guess-address
		       read-config)
      (set! *didsomething* #t)))

(if (args:get-arg "-extract-skeleton")
    (let* ((toppath (launch:setup)))
      (genexample:extract-skeleton-area (args:get-arg "-extract-skeleton"))
      (set! *didsomething* #t)))

;;======================================================================
;; Exit and clean up
;;======================================================================

(if (not *didsomething*)
    (debug:print 0 *default-log-port* help)
    (set! *time-to-exit* #t)
    )

;;(debug:print-info 13 *default-log-port* "thread-join! watchdog")

;; join the watchdog thread if it has been thread-start!ed  (it may not have been started in the case of a server that never enters running state)
;;   (symbols returned by thread-state: created ready running blocked suspended sleeping terminated dead)
;; TODO: for multiple areas, we will have multiple watchdogs; and multiple threads to manage
(if (thread? *watchdog*)
    (case (thread-state *watchdog*)
      ((ready running blocked sleeping terminated dead)
       (thread-join! *watchdog*))))

(set! *time-to-exit* #t)

(if (not (eq? *globalexitstatus* 0))
    (if (or (args:get-arg "-run")(args:get-arg "-runtests")(args:get-arg "-runall"))
        (begin
           (debug:print 0 *default-log-port* "NOTE: Subprocesses with non-zero exit code detected: " *globalexitstatus*)
           (exit 0))
        (case *globalexitstatus*
         ((0)(exit 0))
         ((1)(exit 1))
         ((2)(exit 2))
         (else (exit 3)))))

)











|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
<
<
<
<
|
>
>
>
>
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
<
|
|
|
|
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
>
>
>
>
>
>
>
>
>
>
>
|
<
<
<
<
<
<
<
<
<
<
<
<
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
<
<
<
<
<
<
<
<
|
>
>
>
>
>
>
>
>
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
<
>
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
>
>
>
>
>
>
|
<
<
<
<
<
<
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
>
>
>
>
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
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
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
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
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
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589







2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645

2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718

2719
2720
2721
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
(include "diff-report.scm")
(include "cgisetup/models/pgdb.scm")
(include "runconfig.scm")
(include "archive.scm")
(include "ods.scm")
(include "http-transport.scm")

;;;      ;; (use (prefix sqlite3 sqlite3:) srfi-1 posix regex regex-case srfi-69 (prefix base64 base64:)
;;;      ;;      readline apropos json http-client directory-utils typed-records
;;;      ;;      http-client srfi-18 extras format)
;;;      
;;;      ;; Added for csv stuff - will be removed
;;;      ;;
;;;      ;; (use sparse-vectors)
;;;      ;; 
;;;      ;; (require-library mutils)
;;;      
;;;      ;; copied from egg call-with-environment-variables
;;;      ;;
;;;      (define (call-with-environment-variables variables thunk)
;;;        ;; @("Sets up environment variable via dynamic-wind which are taken down after thunk."
;;;        ;;   (variables "An alist of the form {{'((\"var\" . \"value\") ...)}}")
;;;        ;;   (thunk "The thunk to execute with a modified environment"))
;;;        (let ((pre-existing-variables
;;;               (map (lambda (var-value)
;;;                      (let ((var (car var-value)))
;;;                        (cons var (get-environment-variable var))))
;;;                    variables)))
;;;          (dynamic-wind
;;;              (lambda () (void))
;;;              (lambda ()
;;;      ;;           (use posix)
;;;                (for-each (lambda (var-value)
;;;                            (setenv (car var-value) (cdr var-value)))
;;;                  variables)
;;;                (thunk))
;;;              (lambda ()
;;;                (for-each (lambda (var-value)
;;;                            (let ((var (car var-value))
;;;                                  (value (cdr var-value)))
;;;                              (if value
;;;                                  (setenv var value)
;;;                                  (unsetenv var))))
;;;                  pre-existing-variables)))))
;;;      
;;;      





;;;      
;;;      (define *usage-log-file* #f)    ;; put path to file for logging usage in this var in the ~/.megatestrc file
;;;      (define *usage-use-seconds* #t) ;; for Epoc seconds in usage logging change this to #t in ~/.megatestrc file
;;;      
;;;      ;; load the ~/.megatestrc file, put (use trace)(trace-call-sites #t)(trace function-you-want-to-trace) in this file
;;;      ;;
;;;      (let ((debugcontrolf (conc (get-environment-variable "HOME") "/.megatestrc")))
;;;        (if (common:file-exists? debugcontrolf)
;;;            (load debugcontrolf)))
;;;      
;;;      ;; usage logging, careful with this, it is not designed to deal with all real world challenges!
;;;      ;;
;;;      (if (and *usage-log-file*
;;;               (file-writable? *usage-log-file*))
;;;          (with-output-to-file
;;;              *usage-log-file*
;;;            (lambda ()
;;;              (print
;;;               (if *usage-use-seconds*
;;;                   (current-seconds)
;;;                   (time->string
;;;                    (seconds->local-time (current-seconds))
;;;                    "%Yww%V.%w %H:%M:%S"))
;;;               " "
;;;               (current-user-name) " "
;;;               (current-directory) " "
;;;               "\"" (string-intersperse (argv) " ") "\""))
;;;            #:append))
;;;      
;;;      ;; Disabled help items
;;;      ;;  -rollup                 : (currently disabled) fill run (set by :runname)  with latest test(s)
;;;      ;;                            from prior runs with same keys
;;;      ;;  -daemonize              : fork into background and disconnect from stdin/out
;;;      
;;;      (define help (conc "
;;;      Megatest, documentation at http://www.kiatoa.com/fossils/megatest
;;;        version " megatest-version "
;;;        license GPL, Copyright Matt Welland 2006-2017
;;;       
;;;      Usage: megatest [options]
;;;        -h                      : this help
;;;        -manual                 : show the Megatest user manual
;;;        -version                : print megatest version (currently " megatest-version ")
;;;      
;;;      Launching and managing runs
;;;        -run                    : run all tests or as specified by -testpatt
;;;        -remove-runs            : remove the data for a run, requires -runname and -testpatt
;;;                                  Optionally use :state and :status, use -keep-records to remove only
;;;                                  the run data. Use -kill-wait to override the 10 second
;;;                                  per test wait after kill delay (e.g. -kill-wait 0). 
;;;        -kill-runs              : kill existing run(s) (all incomplete tests killed)
;;;        -kill-rerun             : kill an existing run (all incomplete tests killed and run is rerun)
;;;        -set-state-status X,Y   : set state to X and status to Y, requires controls per -remove-runs
;;;        -rerun FAIL,WARN...     : force re-run for tests with specificed status(s)
;;;        -rerun-clean            : set all tests not COMPLETED+PASS,WARN,WAIVED to NOT_STARTED,n/a
;;;                                  and then run the specified testpatt with -preclean
;;;        -rerun-all              : set all tests to NOT_STARTED,n/a and run with -preclean
;;;        -lock                   : lock run specified by target and runname
;;;        -unlock                 : unlock run specified by target and runname
;;;        -set-run-status status  : sets status for run to status, requires -target and -runname
;;;        -get-run-status         : gets status for run specified by target and runname
;;;        -run-wait               : wait on run specified by target and runname
;;;        -preclean               : remove the existing test directory before running the test
;;;        -clean-cache            : remove the cached megatest.config and runconfigs.config files
;;;        -no-cache               : do not use the cached config files. 
;;;        -one-pass               : launch as many tests as you can but do not wait for more to be ready
;;;        -remove-keep N          : remove all but N most recent runs per target; use '-actions, -age, -precmd'
;;;        -age <age>              : 120d,3h,20m to apply only to runs older than the 
;;;                                       specified age. NB// M=month, m=minute
;;;        -actions <action>[,...] : actions to take; print,remove-runs,archive,kill-runs
;;;        -precmd                 : insert a wrapper command in front of the commands run
;;;      
;;;      Selectors (e.g. use for -runtests, -remove-runs, -set-state-status, -list-runs etc.)
;;;        -target key1/key2/...   : run for key1, key2, etc.
;;;        -reqtarg key1/key2/...  : run for key1, key2, etc. but key1/key2 must be in runconfigs
;;;        -testpatt patt1/patt2,patt3/...  : % is wildcard
;;;        -runname                : required, name for this particular test run
;;;        -state                  : Applies to runs, tests or steps depending on context
;;;        -status                 : Applies to runs, tests or steps depending on context
;;;        -modepatt key           : load testpatt from <key> in runconfigs instead of default TESTPATT if -testpatt and -tagexpr are not specified
;;;        -tagexpr tag1,tag2%,..  : select tests with tags matching expression
;;;        
;;;      
;;;      Test helpers (for use inside tests)
;;;        -step stepname
;;;        -test-status            : set the state and status of a test (use :state and :status)
;;;        -setlog logfname        : set the path/filename to the final log relative to the test
;;;                                  directory. may be used with -test-status
;;;        -set-toplog logfname    : set the overall log for a suite of sub-tests
;;;        -summarize-items        : for an itemized test create a summary html 
;;;        -m comment              : insert a comment for this test
;;;      
;;;      Test data capture
;;;        -set-values             : update or set values in the testdata table
;;;        :category               : set the category field (optional)
;;;        :variable               : set the variable name (optional)
;;;        :value                  : value measured (required)
;;;        :expected               : value expected (required)
;;;        :tol                    : |value-expect| <= tol (required, can be <, >, >=, <= or number)
;;;        :units                  : name of the units for value, expected_value etc. (optional)
;;;        -load-test-data         : read test specific data for storage in the test_data table
;;;                                  from standard in. Each line is comma delimited with four
;;;                                  fields category,variable,value,comment
;;;      
;;;      Queries
;;;        -list-runs patt         : list runs matching pattern \"patt\", % is the wildcard
;;;        -show-keys              : show the keys used in this megatest setup
;;;        -test-files targpatt    : get the most recent test path/file matching targpatt e.g. %/% or '*.log'
;;;                                  returns list sorted by age ascending, see examples below
;;;        -test-paths             : get the test paths matching target, runname, item and test
;;;                                  patterns.
;;;        -list-disks             : list the disks available for storing runs
;;;        -list-targets           : list the targets in runconfigs.config
;;;        -list-db-targets        : list the target combinations used in the db
;;;        -show-config            : dump the internal representation of the megatest.config file
;;;        -show-runconfig         : dump the internal representation of the runconfigs.config file
;;;        -dumpmode MODE          : dump in MODE format instead of sexpr, MODE=json,ini,sexp etc. (add -debug 0,9 to see which file contributes each line)
;;;        -show-cmdinfo           : dump the command info for a test (run in test environment)
;;;        -section sectionName
;;;        -var varName            : for config and runconfig lookup value for sectionName varName
;;;        -since N                : get list of runs changed since time N (Unix seconds)
;;;        -fields fieldspec       : fields to include in json dump; runs:id,runame+tests:testname+steps
;;;        -sort fieldname         : in -list-runs sort tests by this field
;;;        -testdata-csv [categorypatt/]varpatt  : dump testdata for given category
;;;      
;;;      Misc 
;;;        -start-dir path         : switch to this directory before running megatest
;;;        -contour cname          : add a level of hierarcy to the linktree and run paths
;;;        -area-tag tagname       : add a tag to an area while syncing to pgdb
;;;        -run-tag tagname        : add a tag to a run while syncing to pgdb
;;;        -rebuild-db             : bring the database schema up to date
;;;        -cleanup-db             : remove any orphan records, vacuum the db
;;;        -import-megatest.db     : push data from megatest.db to cache db files in /tmp/$USER
;;;        -sync-to-megatest.db    : pull data from cache files in /tmp/$USER to megatest.db
;;;        -sync-to dest           : sync to new postgresql central style database
;;;        -update-meta            : update the tests metadata for all tests
;;;        -setvars VAR1=val1,VAR2=val2 : Add environment variables to a run NB// these are
;;;                                       overwritten by values set in config files.
;;;        -server -|hostname      : start the server (reduces contention on megatest.db), use
;;;                                  - to automatically figure out hostname
;;;        -adjutant C,M           : start the server/adjutant with allocated cores C and Mem M (Gig), 
;;;                                  use 0,0 to auto use full machine
;;;        -transport http|rpc     : use http or rpc for transport (default is http) 
;;;        -log logfile            : send stdout and stderr to logfile
;;;        -list-servers           : list the servers 
;;;        -kill-servers           : kill all servers
;;;        -repl                   : start a repl (useful for extending megatest)
;;;        -load file.scm          : load and run file.scm
;;;        -mark-incompletes       : find and mark incomplete tests
;;;        -ping run-id|host:port  : ping server, exit with 0 if found
;;;        -debug N|N,M,O...       : enable debug 0-N or N and M and O ...
;;;        -debug-noprop N|M,M,O...: enable debug but do not propagate to subprocesses via MT_DEBUG
;;;        -config fname           : override the megatest.config file with fname
;;;        -append-config fname    : append fname to the megatest.config file
;;;      
;;;      Utilities
;;;        -env2file fname         : write the environment to fname.csh and fname.sh
;;;        -envcap a               : save current variables labeled as context 'a' in file envdat.db
;;;        -envdelta a-b           : output enviroment delta from context a to context b to -o fname
;;;                                  set the output mode with -dumpmode csh, bash or ini
;;;                                  note: ini format will use calls to use curr and minimize path
;;;        -refdb2dat refdb        : convert refdb to sexp or to format specified by s-dumpmode
;;;                                  formats: perl, ruby, sqlite3, csv (for csv the -o param
;;;                                  will substitute %s for the sheet name in generating 
;;;                                  multiple sheets)
;;;        -o                      : output file for refdb2dat (defaults to stdout)
;;;        -archive cmd            : archive runs specified by selectors to one of disks specified
;;;                                  in the [archive-disks] section.
;;;                                  cmd: keep-html, restore, save, save-remove, get, replicate-db (use 
;;;                                  -dest to set destination), -include path1,path2... to get or save specific files
;;;        -generate-html          : create a simple html dashboard for browsing your runs
;;;        -generate-html-structure  : create a top level html veiw to list targets/runs and a Run view within each run directory.  
;;;        -list-run-time          : list time requered to complete runs. It supports following switches
;;;                                  -run-patt <patt> -target-patt <patt> -dumpmode <csv,json,plain-text>
;;;        -list-test-time	  : list time requered to complete each test in a run. It following following arguments
;;;                                  -runname <patt> -target <patt> -dumpmode <csv,json,plain-text>
;;;        -syscheck               : do some very basic checks; write access and space in tmp, home, runs, links and 
;;;                                  is $DISPLAY valid 
;;;        -list-waivers           : dump waivers for specified target, runname, testpatt to stdout
;;;      
;;;      Diff report
;;;        -diff-rep               : generate diff report (must include -src-target, -src-runname, -target, -runname
;;;                                                        and either -diff-email or -diff-html)
;;;        -src-target <target>
;;;        -src-runname <target>
;;;        -diff-email <emails>    : comma separated list of email addresses to send diff report
;;;        -diff-html  <rep.html>  : path to html file to generate
;;;      
;;;      Spreadsheet generation
;;;        -extract-ods fname.ods  : extract an open document spreadsheet from the database
;;;        -pathmod path           : insert path, i.e. path/runame/itempath/logfile.html
;;;                                  will clear the field if no rundir/testname/itempath/logfile
;;;                                  if it contains forward slashes the path will be converted
;;;                                  to windows style
;;;      Getting started
;;;        -create-megatest-area   : create a skeleton megatest area. You will be prompted for paths
;;;        -create-test testname   : create a skeleton megatest test. You will be prompted for info
;;;      
;;;      Examples
;;;      
;;;      # Get test path, use '.' to get a single path or a specific path/file pattern
;;;      megatest -test-files 'logs/*.log' -target ubuntu/n%/no% -runname w49% -testpatt test_mt%
;;;      
;;;      Called as " (string-intersperse (argv) " ") "
;;;      Version " megatest-version ", built from " megatest-fossil-hash ))
;;;      
;;;      ;;  -gui                    : start a gui interface
;;;      ;;  -config fname           : override the runconfigs file with fname
;;;      
;;;      ;; process args
;;;      (define remargs (args:get-args 
;;;      		 (argv)
;;;      		 (list  "-runtests"  ;; run a specific test
;;;      			"-config"    ;; override the config file name
;;;      			"-append-config"
;;;      			"-execute"   ;; run the command encoded in the base64 parameter
;;;      			"-step"
;;;      			"-target"
;;;      			"-reqtarg"
;;;      			":runname"
;;;      			"-runname"
;;;      			":state"  
;;;      			"-state"
;;;      			":status"
;;;      			"-status"
;;;      			"-list-runs"
;;;                              "-testdata-csv"
;;;      			"-testpatt"
;;;                              "--modepatt"
;;;                              "-modepatt"
;;;                              "-tagexpr"
;;;      			"-itempatt"
;;;      			"-setlog"
;;;      			"-set-toplog"
;;;      			"-runstep"
;;;      			"-logpro"
;;;      			"-m"
;;;      			"-rerun"
;;;      
;;;      			"-days"
;;;      			"-rename-run"
;;;      			"-to"
;;;      			"-dest"
;;;                              "-source" 
;;;                              "-time-stamp" 
;;;      			;; values and messages
;;;      			":category"
;;;      			":variable"
;;;      			":value"
;;;      			":expected"
;;;      			":tol"
;;;      			":units"
;;;      
;;;      			;; misc
;;;      			"-start-dir"
;;;                              "-run-patt"
;;;                              "-target-patt"   
;;;      			"-contour"
;;;                              "-area-tag"  
;;;                              "-area"  
;;;      			"-run-tag"
;;;      			"-server"
;;;      			"-adjutant"
;;;      			"-transport"
;;;      			"-port"
;;;      			"-extract-ods"
;;;      			"-pathmod"
;;;      			"-env2file"
;;;      			"-envcap"
;;;      			"-envdelta"
;;;      			"-setvars"
;;;      			"-set-state-status"
;;;      
;;;                              ;; move runs stuff here
;;;                              "-remove-keep"           
;;;      			"-set-run-status"
;;;      			"-age"
;;;      
;;;      			;; archive 
;;;      			"-archive"
;;;      			"-actions"
;;;      			"-precmd"
;;;      			"-include"
;;;      			"-exclude-rx"
;;;      			"-exclude-rx-from"
;;;      			
;;;      			"-debug" ;; for *verbosity* > 2
;;;      			"-debug-noprop"
;;;      			"-create-test"
;;;      			"-override-timeout"
;;;      			"-test-files"  ;; -test-paths is for listing all
;;;      			"-load"        ;; load and exectute a scheme file
;;;      			"-section"
;;;      			"-var"
;;;      			"-dumpmode"
;;;      			"-run-id"
;;;      			"-ping"
;;;      			"-refdb2dat"
;;;      			"-o"
;;;      			"-log"
;;;                              "-sync-log"
;;;      			"-since"
;;;      			"-fields"
;;;      			"-recover-test" ;; run-id,test-id - used internally to recover a test stuck in RUNNING state
;;;      			"-sort"
;;;      			"-target-db"
;;;      			"-source-db"
;;;      			"-prefix-target"
;;;      
;;;                              "-src-target"
;;;                              "-src-runname"
;;;                              "-diff-email"
;;;      			"-sync-to"			
;;;      			"-pgsync"
;;;      			"-kill-wait"    ;; wait this long before removing test (default is 10 sec)
;;;                              "-diff-html"
;;;      
;;;      			;; wizards, area capture, setup new ...
;;;      			"-extract-skeleton"

;;;      			)
;;;       		 (list  "-h" "-help" "--help"
;;;      			"-manual"
;;;      			"-version"
;;;      		        "-force"
;;;      		        "-xterm"
;;;      		        "-showkeys"
;;;      		        "-show-keys"
;;;      		        "-test-status"
;;;      			"-set-values"
;;;      			"-load-test-data"
;;;      			"-summarize-items"
;;;      		        "-gui"
;;;      			"-daemonize"
;;;      			"-preclean"
;;;      			"-rerun-clean"
;;;      			"-rerun-all"
;;;      			"-clean-cache"
;;;      			"-no-cache"
;;;      			"-cache-db"
;;;      			"-cp-eventtime-to-publishtime"
;;;                              "-use-db-cache"
;;;                              "-prepend-contour"
;;;      
;;;      
;;;      			;; misc
;;;      			"-repl"
;;;      			"-lock"
;;;      			"-unlock"
;;;      			"-list-servers"
;;;      			"-kill-servers"
;;;                              "-run-wait"      ;; wait on a run to complete (i.e. no RUNNING)
;;;      			"-one-pass"      ;;
;;;      			"-local"         ;; run some commands using local db access
;;;      			"-generate-html"
;;;      			"-generate-html-structure" 
;;;      			"-list-run-time"
;;;                              "-list-test-time"
;;;      			
;;;      			;; misc queries
;;;      			"-list-disks"
;;;      			"-list-targets"
;;;      			"-list-db-targets"
;;;      			"-show-runconfig"
;;;      			"-show-config"
;;;      			"-show-cmdinfo"
;;;      			"-get-run-status"
;;;      			"-list-waivers"
;;;      
;;;      			;; queries
;;;      			"-test-paths" ;; get path(s) to a test, ordered by youngest first
;;;      
;;;      			"-runall"    ;; run all tests, respects -testpatt, defaults to %
;;;      			"-run"       ;; alias for -runall
;;;      			"-remove-runs"
;;;                              "-kill-runs"
;;;                              "-kill-rerun"
;;;                              "-keep-records" ;; use with -remove-runs to remove only the run data
;;;      			"-rebuild-db"
;;;      			"-cleanup-db"
;;;      			"-rollup"
;;;      			"-update-meta"
;;;      			"-create-megatest-area"
;;;      			"-mark-incompletes"
;;;      
;;;      			"-convert-to-norm"
;;;      			"-convert-to-old"
;;;      			"-import-megatest.db"
;;;      			"-sync-to-megatest.db"
;;;                              "-sync-brute-force"
;;;      			"-logging"
;;;      			"-v" ;; verbose 2, more than normal (normal is 1)
;;;      			"-q" ;; quiet 0, errors/warnings only
;;;      
;;;                              "-diff-rep"
;;;      
;;;      			"-syscheck"
;;;      			"-obfuscate"
;;;      			;; junk placeholder
;;;      			;; "-:p"
;;;      			
;;;                              )

;;;      		 args:arg-hash
;;;      		 0))
;;;      
;;;      ;; Add args that use remargs here
;;;      ;;
;;;      (if (and (not (null? remargs))
;;;      	 (not (or
;;;      	       (args:get-arg "-runstep")
;;;      	       (args:get-arg "-envcap")
;;;      	       (args:get-arg "-envdelta")

;;;      	       )
;;;      	      ))
;;;          (debug:print-error 0 *default-log-port* "Unrecognised arguments: " (string-intersperse (if (list? remargs) remargs (argv))  " ")))
;;;      
;;;      ;; before doing anything else change to the start-dir if provided
;;;      ;;
;;;      (if (args:get-arg "-start-dir")
;;;          (if (common:file-exists? (args:get-arg "-start-dir"))
;;;              (let ((fullpath (common:real-path (args:get-arg "-start-dir"))))
;;;                (setenv "PWD" fullpath)
;;;                (change-directory fullpath))
;;;      	(begin
;;;      	  (debug:print-error 0 *default-log-port* "non-existant start dir " (args:get-arg "-start-dir") " specified, exiting.")
;;;      	  (exit 1))))
;;;      
;;;      ;; immediately set MT_TARGET if -reqtarg or -target are available
;;;      ;;
;;;      (let ((targ (or (args:get-arg "-reqtarg")(args:get-arg "-target"))))
;;;        (if targ (setenv "MT_TARGET" targ)))
;;;      
;;;      ;; The watchdog is to keep an eye on things like db sync etc.
;;;      ;;
;;;      

;;;      ;; TODO: for multiple areas, we will have multiple watchdogs; and multiple threads to manage
;;;      (define *watchdog* (make-thread
;;;      		    (lambda ()
;;;      		      (handle-exceptions
;;;      			  exn
;;;      			  (begin
;;;      			    (print-call-chain)
;;;      			    (print " message: " ((condition-property-accessor 'exn 'message) exn) ", exn=" exn))
;;;      			(common:watchdog)))
;;;      		    "Watchdog thread"))
;;;      
;;;      ;;(if (not (args:get-arg "-server"))
;;;      ;;    (thread-start! *watchdog*)) ;; if starting a server; wait till we get to running state before kicking off watchdog
;;;      (let* ((no-watchdog-args
;;;             '("-list-runs"
;;;               "-testdata-csv"
;;;               "-list-servers"
;;;               "-server"
;;;      	 "-adjutant"
;;;               "-list-disks"
;;;               "-list-targets"
;;;               "-show-runconfig"
;;;               ;;"-list-db-targets"
;;;               "-show-runconfig"
;;;               "-show-config"
;;;               "-show-cmdinfo"
;;;      	 "-cleanup-db"
;;;                  ))
;;;             (no-watchdog-argvals (list '("-archive" . "replicate-db")))
;;;             (start-watchdog-specail-arg-val (let loop ((hed  (car no-watchdog-argvals))
;;;                                                        (tail (cdr   no-watchdog-argvals)))
;;;                                                   ;; (print "hed" hed " arg " (args:get-arg (car hed)) " val:" (cdr hed)  " eql" (equal? (args:get-arg (car hed)) (cdr hed)))  
;;;                                                   (if (equal? (args:get-arg (car hed)) (cdr hed))
;;;                                                     #f
;;;                                                     (if (null? tail)
;;;                                                       #t
;;;                                                       (loop (car tail) (cdr tail))))))      
;;;             (no-watchdog-args-vals (filter (lambda (x) x)
;;;                                            (map args:get-arg no-watchdog-args)))
;;;             (start-watchdog (and (null? no-watchdog-args-vals) start-watchdog-specail-arg-val)))
;;;             ;(print  "no-watchdog-args="no-watchdog-args "no-watchdog-args-vals="no-watchdog-args-vals " start-watchdog-specail-arg-val:" start-watchdog-specail-arg-val " start-watchdog:" start-watchdog) 
;;;        (if start-watchdog
;;;            (thread-start! *watchdog*)))
;;;      
;;;      
;;;      ;; bracket open-output-file with code to make leading directory if it does not exist and handle exceptions
;;;      (define (open-logfile logpath-in)
;;;        (condition-case
;;;         (let* ((log-dir (or (pathname-directory logpath-in) "."))
;;;      	  (fname   (pathname-strip-directory logpath-in))
;;;      	  (logpath (if (> (string-length fname) 250)
;;;      		       (let ((newlogf (conc log-dir "/" (common:get-signature fname) ".log")))
;;;      			 (debug:print 0 *default-log-port* "WARNING: log file " logpath-in " path too long, converted to " newlogf)
;;;      			 newlogf)
;;;      		       logpath-in)))
;;;           (if (not (directory-exists? log-dir))
;;;               (system (conc "mkdir -p " log-dir)))
;;;           (open-output-file logpath))
;;;         (exn ()
;;;              (debug:print-error 0 *default-log-port* "Could not open log file for write: "logpath-in)
;;;              (define *didsomething* #t)  
;;;              (exit 1))))
;;;      
;;;      ;; this segment will run launch:setup only if -log is not set. This is fairly safe as servers are not
;;;      ;; manually started and thus should never be started in a non-megatest area. Thus no need to handle situation
;;;      ;; where (launch:setup) returns #f?
;;;      ;;
;;;      (if (or (args:get-arg "-log")(args:get-arg "-server")) ;; redirect the log always when a server
;;;          (handle-exceptions
;;;      	exn
;;;      	(begin
;;;      	  (print "ERROR: Failed to switch to log output. " ((condition-property-accessor 'exn 'message) exn) ", exn=" exn)
;;;      	  )
;;;            (let* ((tl   (or (args:get-arg "-log")(launch:setup)))   ;; run launch:setup if -server, ensure we do NOT run launch:setup if -log specified
;;;      	     (logf (or (args:get-arg "-log") ;; use -log unless we are a server, then craft a logfile name
;;;      		       (conc tl "/logs/server-" (current-process-id) "-" (get-host-name) ".log")))
;;;      	     (oup  (open-logfile logf)))
;;;      	(if (not (args:get-arg "-log"))
;;;      	    (hash-table-set! args:arg-hash "-log" logf)) ;; fake out future queries of -log
;;;      	(debug:print-info 0 *default-log-port* "Sending log output to " logf)
;;;      	(set! *default-log-port* oup))))
;;;      















;;;      (if (or (args:get-arg "-h")
;;;      	(args:get-arg "-help")
;;;      	(args:get-arg "--help"))
;;;          (begin
;;;            (print help)
;;;            (exit)))
;;;      
;;;      (if (args:get-arg "-manual")
;;;          (let* ((htmlviewercmd (or (configf:lookup *configdat* "setup" "htmlviewercmd")
;;;      			      (common:which '("firefox" "arora"))))
;;;      	   (install-home  (common:get-install-area))
;;;      	   (manual-html   (conc install-home "/share/docs/megatest_manual.html")))
;;;            (if (and install-home
;;;      	       (common:file-exists? manual-html))
;;;      	  (system (conc "(" htmlviewercmd " " manual-html " ) &"))
;;;      	  (system (conc "(" htmlviewercmd " http://www.kiatoa.com/cgi-bin/fossils/megatest/doc/tip/docs/manual/megatest_manual.html ) &")))
;;;            (exit)))
;;;      
;;;      (if (args:get-arg "-version")
;;;          (begin
;;;            (print (common:version-signature)) ;; (print megatest-version)
;;;            (exit)))
;;;      
;;;      (define *didsomething* #f)
;;;      
;;;      ;; Overall exit handling setup immediately
;;;      ;;
;;;      (if (or (args:get-arg "-process-reap"))
;;;              ;; (args:get-arg "-runtests")
;;;      	;; (args:get-arg "-execute")
;;;      	;; (args:get-arg "-remove-runs")
;;;      	;; (args:get-arg "-runstep"))
;;;          (let ((original-exit (exit-handler)))
;;;            (exit-handler (lambda (#!optional (exit-code 0))
;;;      		      (printf "Preparing to exit with exit code ~A ...\n" exit-code)
;;;      		      (for-each
;;;      		       
;;;      		       (lambda (pid)
;;;      			 (handle-exceptions
;;;      			     exn
;;;      			   (begin
;;;      			     (printf "process reap failed. exn=~A\n" exn)
;;;      			     #t)
;;;      			  (let-values (((pid-val exit-status exit-code) (process-wait pid #t)))
;;;      				      (if (or (eq? pid-val pid)
;;;      					      (eq? pid-val 0))
;;;      					  (begin
;;;      					    (printf "Sending signal/term to ~A\n" pid)
;;;      					    (process-signal pid signal/term))))))
;;;      		       (process:children #f))
;;;      		      (original-exit exit-code)))))
;;;      
;;;      ;; for some switches always print the command to stderr
;;;      ;;
;;;      (if (args:any? "-run" "-runall" "-remove-runs" "-set-state-status" "-kill-runs" "-kill-rerun")
;;;          (debug:print 0 *default-log-port* (string-intersperse (argv) " ")))
;;;      
;;;      ;; some switches imply homehost. Exit here if not on homehost
;;;      ;;
;;;      (let ((homehost-required  (list "-cleanup-db" "-server")))
;;;        (if (apply args:any? homehost-required)
;;;            (if (not (common:on-homehost?))
;;;      	  (for-each
;;;      	   (lambda (switch)
;;;      	     (if (args:get-arg switch)
;;;      		 (begin
;;;      		   (debug:print 0 *default-log-port* "ERROR: you must be on the homehost to run with " switch
;;;      				", you can move homehost by removing the .homehost file but this will disrupt any runs in progress.")
;;;      		   (exit 1))))
;;;      	   homehost-required))))
;;;      
;;;      ;;======================================================================
;;;      ;; Misc setup stuff
;;;      ;;======================================================================
;;;      
;;;      (debug:setup)
;;;      
;;;      (if (args:get-arg "-logging")(set! *logging* #t))
;;;      
;;;      ;;(if (debug:debug-mode 3) ;; we are obviously debugging
;;;      ;;    (set! open-run-close open-run-close-no-exception-handling))
;;;      
;;;      (if (args:get-arg "-itempatt")
;;;          (let ((newval (conc (args:get-arg "-testpatt") "/" (args:get-arg "-itempatt"))))
;;;            (debug:print 0 *default-log-port* "WARNING: -itempatt has been deprecated, please use -testpatt testpatt/itempatt method, new testpatt is "newval)
;;;            (hash-table-set! args:arg-hash "-testpatt" newval)
;;;            (hash-table-delete! args:arg-hash "-itempatt")))
;;;      
;;;      (if (args:get-arg "-runtests")
;;;          (debug:print 0 *default-log-port* "WARNING: \"-runtests\" is deprecated. Use \"-run\" with \"-testpatt\" instead"))
;;;      
;;;      (on-exit std-exit-procedure)
;;;      
;;;      ;;======================================================================
;;;      ;; Misc general calls
;;;      ;;======================================================================
;;;      
;;;      (if (and (args:get-arg "-cache-db")
;;;               (args:get-arg "-source-db"))
;;;          (let* ((temp-dir (or (args:get-arg "-target-db") (create-directory (conc "/tmp/" (getenv "USER") "/" (string-translate (current-directory) "/" "_")))))
;;;                 (target-db (conc temp-dir "/cached.db"))
;;;                 (source-db (args:get-arg "-source-db")))        
;;;            (db:cache-for-read-only source-db target-db)
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;; handle a clean-cache request as early as possible
;;;      ;;
;;;      (if (args:get-arg "-clean-cache")
;;;          (let ((toppath  (launch:setup)))
;;;            (set! *didsomething* #t) ;; suppress the help output.
;;;            (runs:clean-cache (common:args-get-target)
;;;      			(args:get-arg "-runname")
;;;      			toppath)))
;;;      	  
;;;      (if (args:get-arg "-env2file")
;;;          (begin
;;;            (save-environment-as-files (args:get-arg "-env2file"))
;;;            (set! *didsomething* #t)))
;;;      












;;;      (if (args:get-arg "-list-disks")
;;;          (let ((toppath (launch:setup)))
;;;            (print 
;;;             (string-intersperse 
;;;      	(map (lambda (x)
;;;      	       (string-intersperse 

;;;      		x
;;;      		" => "))
;;;      	     (common:get-disks *configdat*))
;;;      	"\n"))
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;; csv processing record
;;;      (define (make-refdb:csv)
;;;        (vector 
;;;         (make-sparse-array)
;;;         (make-hash-table)
;;;         (make-hash-table)

;;;         0
;;;         0))
;;;      (define-inline (refdb:csv-get-svec     vec)    (vector-ref  vec 0))
;;;      (define-inline (refdb:csv-get-rows     vec)    (vector-ref  vec 1))
;;;      (define-inline (refdb:csv-get-cols     vec)    (vector-ref  vec 2))
;;;      (define-inline (refdb:csv-get-maxrow   vec)    (vector-ref  vec 3))
;;;      (define-inline (refdb:csv-get-maxcol   vec)    (vector-ref  vec 4))
;;;      (define-inline (refdb:csv-set-svec!    vec val)(vector-set! vec 0 val))
;;;      (define-inline (refdb:csv-set-rows!    vec val)(vector-set! vec 1 val))
;;;      (define-inline (refdb:csv-set-cols!    vec val)(vector-set! vec 2 val))
;;;      (define-inline (refdb:csv-set-maxrow!  vec val)(vector-set! vec 3 val))
;;;      (define-inline (refdb:csv-set-maxcol!  vec val)(vector-set! vec 4 val))
;;;      
;;;      (define (get-dat results sheetname)
;;;        (or (hash-table-ref/default results sheetname #f)
;;;            (let ((tmp-vec  (make-refdb:csv)))
;;;      	(hash-table-set! results sheetname tmp-vec)
;;;      	tmp-vec)))
;;;      
;;;      (if (args:get-arg "-refdb2dat")
;;;          (let* ((input-db (args:get-arg "-refdb2dat"))
;;;      	   (out-file (args:get-arg "-o"))
;;;      	   (out-fmt  (or (args:get-arg "-dumpmode") "scheme"))
;;;      	   (out-port (if (and out-file 
;;;      			      (not (member out-fmt '("sqlite3" "csv"))))
;;;      			 (open-output-file out-file)
;;;      			 (current-output-port)))
;;;      	   (res-data (configf:read-refdb input-db))
;;;      	   (data     (car res-data))
;;;      	   (msg      (cadr res-data)))
;;;            (if (not data)
;;;      	  (debug:print 0 *default-log-port* "Bad input? data=" data) ;; some error occurred
;;;      	  (with-output-to-port out-port
;;;      	    (lambda ()
;;;      	      (case (string->symbol out-fmt)
;;;      		((scheme)(pp data))
;;;      		((perl)
;;;      		 ;; (print "%hash = (")
;;;      		 ;;        key1 => 'value1',
;;;      		 ;;        key2 => 'value2',
;;;      		 ;;        key3 => 'value3',
;;;      		 ;; );
;;;      		 (configf:map-all-hier-alist 
;;;      		  data 
;;;      		  (lambda (sheetname sectionname varname val)
;;;      		    (print "$data{\"" sheetname "\"}{\"" sectionname "\"}{\"" varname "\"} = \"" val "\";"))))
;;;      		((python ruby)
;;;      		 (print "data={}")
;;;      		 (configf:map-all-hier-alist
;;;      		  data
;;;      		  (lambda (sheetname sectionname varname val)
;;;      		    (print "data[\"" sheetname "\"][\"" sectionname "\"][\"" varname "\"] = \"" val "\""))
;;;      		  initproc1:
;;;      		  (lambda (sheetname)
;;;      		    (print "data[\"" sheetname "\"] = {}"))
;;;      		  initproc2:
;;;      		  (lambda (sheetname sectionname)
;;;      		    (print "data[\"" sheetname "\"][\"" sectionname "\"] = {}"))))
;;;      		((csv)
;;;      		 (let* ((results  (make-hash-table)) ;; (make-sparse-array)))
;;;      			(row-cols (make-hash-table))) ;; hash of hashes where section => ht { row-<name> => num or col-<name> => num
;;;      		   ;; (print "data=")
;;;      		   ;; (pp data)
;;;      		   (configf:map-all-hier-alist
;;;      		    data
;;;      		    (lambda (sheetname sectionname varname val)
;;;      		      ;; (print "sheetname: " sheetname ", sectionname: " sectionname ", varname: " varname ", val: " val)
;;;      		      (let* ((dat      (get-dat results sheetname))
;;;      			     (vec      (refdb:csv-get-svec dat))
;;;      			     (rownames (refdb:csv-get-rows dat))
;;;      			     (colnames (refdb:csv-get-cols dat))
;;;      			     (currrown (hash-table-ref/default rownames varname #f))
;;;      			     (currcoln (hash-table-ref/default colnames sectionname #f))
;;;      			     (rown     (or currrown 
;;;      					   (let* ((lastn   (refdb:csv-get-maxrow dat))
;;;      						  (newrown (+ lastn 1)))
;;;      					     (refdb:csv-set-maxrow! dat newrown)
;;;      					     newrown)))
;;;      			     (coln     (or currcoln 
;;;      					   (let* ((lastn   (refdb:csv-get-maxcol dat))
;;;      						  (newcoln (+ lastn 1)))
;;;      					     (refdb:csv-set-maxcol! dat newcoln)
;;;      					     newcoln))))
;;;      			(if (not (sparse-array-ref vec 0 coln)) ;; (eq? rown 0)
;;;      			    (begin
;;;      			      (sparse-array-set! vec 0 coln sectionname)
;;;      			      ;; (print "sparse-array-ref " 0 "," coln "=" (sparse-array-ref vec 0 coln))
;;;      			      ))
;;;      			(if (not (sparse-array-ref vec rown 0)) ;; (eq? coln 0)
;;;      			    (begin
;;;      			      (sparse-array-set! vec rown 0 varname)
;;;      			      ;; (print "sparse-array-ref " rown "," 0 "=" (sparse-array-ref vec rown 0))
;;;      			      ))
;;;      			(if (not currrown)(hash-table-set! rownames varname rown))
;;;      			(if (not currcoln)(hash-table-set! colnames sectionname coln))
;;;      			;; (print "dat=" dat ", rown=" rown ", coln=" coln)
;;;      			(sparse-array-set! vec rown coln val)
;;;      			;; (print "sparse-array-ref " rown "," coln "=" (sparse-array-ref vec rown coln))
;;;      			)))
;;;      		   (for-each
;;;      		    (lambda (sheetname)
;;;      		      (let* ((sheetdat (get-dat results sheetname))
;;;      			     (svec     (refdb:csv-get-svec sheetdat))
;;;      			     (maxrow   (refdb:csv-get-maxrow sheetdat))
;;;      			     (maxcol   (refdb:csv-get-maxcol sheetdat))
;;;      			     (fname    (if out-file 
;;;      					   (string-substitute "%s" sheetname out-file) ;; "/foo/bar/%s.csv")
;;;      					   (conc sheetname ".csv"))))
;;;      			(with-output-to-file fname
;;;      			  (lambda ()
;;;      			    ;; (print "Sheetname: " sheetname)
;;;      			    (let loop ((row       0)
;;;      				       (col       0)
;;;      				       (curr-row '())
;;;      				       (result   '()))
;;;      			      (let* ((val (sparse-array-ref svec row col))
;;;      				     (disp-val (if val
;;;      						   (conc "\"" val "\"")
;;;      						   "")))
;;;      				(if (> col 0)(display ","))
;;;      				(display disp-val)
;;;      				(cond
;;;      				 ((> row maxrow)(display "\n") result)
;;;      				 ((>= col maxcol)
;;;      				  (display "\n")
;;;      				  (loop (+ row 1) 0 '() (append result (list curr-row))))
;;;      				 (else
;;;      				  (loop row (+ col 1) (append curr-row (list val)) result)))))))))
;;;      		    (hash-table-keys results))))
;;;      		((sqlite3)
;;;      		 (let* ((db-file   (or out-file (pathname-file input-db)))
;;;      			(db-exists (common:file-exists? db-file))
;;;      			(db        (sqlite3:open-database db-file)))
;;;      		   (if (not db-exists)(sqlite3:execute db "CREATE TABLE data (sheet,section,var,val);"))
;;;      		   (configf:map-all-hier-alist
;;;      		    data
;;;      		    (lambda (sheetname sectionname varname val)
;;;      		      (sqlite3:execute db
;;;      				       "INSERT OR REPLACE INTO data (sheet,section,var,val) VALUES (?,?,?,?);"
;;;      				       sheetname sectionname varname val)))
;;;      		   (sqlite3:finalize! db)))
;;;      		(else
;;;      		 (pp data))))))
;;;            (if out-file (close-output-port out-port))
;;;            (exit) ;; yes, bending the rules here - need to exit since this is a utility
;;;            ))
;;;      
;;;      (if (args:get-arg "-ping")
;;;          (let* ((server-id     (string->number (args:get-arg "-ping"))) ;; extract run-id (i.e. no ":"
;;;      	   (host:port     (args:get-arg "-ping")))
;;;            (server:ping (or server-id host:port) #f do-exit: #t)))
;;;      
;;;      ;;======================================================================
;;;      ;; Capture, save and manipulate environments
;;;      ;;======================================================================
;;;      
;;;      ;; NOTE: Keep these above the section where the server or client code is setup
;;;      
;;;      (let ((envcap (args:get-arg "-envcap")))
;;;        (if envcap
;;;            (let* ((db      (env:open-db (if (null? remargs) "envdat.db" (car remargs)))))
;;;      	(env:save-env-vars db envcap)
;;;      	(env:close-database db)
;;;      	(set! *didsomething* #t))))
;;;      
;;;      ;; delta "language" will eventually be res=a+b-c but for now it is just res=a-b 
;;;      ;;
;;;      (let ((envdelta (args:get-arg "-envdelta")))
;;;        (if envdelta
;;;            (let ((match (string-split envdelta "-")));; (string-match "([a-z0-9_]+)=([a-z0-9_\\-,]+)" envdelta)))
;;;      	(if (not (null? match))
;;;      	    (let* ((db        (env:open-db (if (null? remargs) "envdat.db" (car remargs))))
;;;      		   ;; (resctx    (cadr match))
;;;      		   ;; (equn      (caddr match))
;;;      		   (parts     match) ;; (string-split equn "-"))
;;;      		   (minuend   (car parts))
;;;      		   (subtraend (cadr parts))
;;;      		   (added     (env:get-added   db minuend subtraend))
;;;      		   (removed   (env:get-removed db minuend subtraend))
;;;      		   (changed   (env:get-changed db minuend subtraend)))
;;;      	      ;; (pp (hash-table->alist added))
;;;      	      ;; (pp (hash-table->alist removed))
;;;      	      ;; (pp (hash-table->alist changed))
;;;      	      (if (args:get-arg "-o")
;;;      		  (with-output-to-file
;;;      		      (args:get-arg "-o")
;;;      		    (lambda ()
;;;      		      (env:print added removed changed)))
;;;      		  (env:print added removed changed))
;;;      	      (env:close-database db)
;;;      	      (set! *didsomething* #t))
;;;      	    (debug:print-error 0 *default-log-port* "Parameter to -envdelta should be new=start-end")))))
;;;      
;;;      ;;======================================================================
;;;      ;; Start the server - can be done in conjunction with -runall or -runtests (one day...)
;;;      ;;   we start the server if not running else start the client thread
;;;      ;;======================================================================
;;;      
;;;      ;; Server? Start up here.
;;;      ;;
;;;      (if (args:get-arg "-server")
;;;          (let ((tl        (launch:setup))
;;;                (transport-type (string->symbol (or (args:get-arg "-transport") "http"))))
;;;            (server:launch 0 transport-type)
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;; The adjutant is a bit different, it does NOT run (launch:setup) as it is not necessarily tied to
;;;      ;; a specific Megatest area. Detail are being hashed out and this may change.
;;;      ;;
;;;      (if (args:get-arg "-adjutant")
;;;          (begin
;;;            (adjutant-run)
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (or (args:get-arg "-list-servers")
;;;              (args:get-arg "-kill-servers"))
;;;          (let ((tl (launch:setup)))
;;;            (if tl ;; all roads from here exit
;;;      	  (let* ((servers (server:get-list *toppath*))
;;;      		 (fmtstr  "~8a~22a~20a~20a~8a\n"))
;;;      	    (format #t fmtstr "pid" "Interface:port" "age (hms)" "Last mod" "State")
;;;      	    (format #t fmtstr "===" "==============" "=========" "========" "=====")
;;;      	    (for-each ;;  ( mod-time host port start-time pid )
;;;      	     (lambda (server)
;;;      	       (let* ((mtm (any->number (car server)))
;;;      		      (mod (if mtm (- (current-seconds) mtm) "unk"))
;;;      		      (age (- (current-seconds)(or (any->number (list-ref server 3)) (current-seconds))))
;;;      		      (url (conc (cadr server) ":" (caddr server)))
;;;      		      (pid (list-ref server 4))
;;;      		      (alv (if (number? mod)(< mod 10) #f)))
;;;      		 (format #t
;;;      			 fmtstr
;;;      			 pid
;;;      			 url
;;;      			 (seconds->hr-min-sec age)
;;;      			 (seconds->hr-min-sec mod)
;;;      			 (if alv "alive" "dead"))
;;;      		 (if (and alv
;;;      			  (args:get-arg "-kill-servers"))
;;;      		     (begin
;;;      		       (debug:print-info 0 *default-log-port* "Attempting to kill server with pid " pid)
;;;      		       (server:kill server)))))
;;;      	     (sort servers (lambda (a b)
;;;      			     (let ((ma (or (any->number (car a)) 9e9))
;;;      				   (mb (or (any->number (car b)) 9e9)))
;;;      			       (> ma mb)))))
;;;      	    ;; (debug:print-info 1 *default-log-port* "Done with listservers")
;;;      	    (set! *didsomething* #t)
;;;      	    (exit))
;;;      	  (exit))))
;;;            ;; must do, would have to add checks to many/all calls below
;;;      
;;;      ;;======================================================================
;;;      ;; Weird special calls that need to run *after* the server has started?
;;;      ;;======================================================================
;;;      
;;;      (if (args:get-arg "-list-targets")
;;;          (if (launch:setup)
;;;              (let ((targets (common:get-runconfig-targets)))
;;;                ;; (debug:print 1 *default-log-port* "Found "(length targets) " targets")
;;;                (case (string->symbol (or (args:get-arg "-dumpmode") "alist"))
;;;                  ((alist)
;;;                   (for-each (lambda (x)
;;;                               ;; (print "[" x "]"))
;;;                               (print x))
;;;                             targets))
;;;                  ((json)
;;;                   (json-write targets))
;;;                  (else
;;;                   (debug:print-error 0 *default-log-port* "dump output format " (args:get-arg "-dumpmode") " not supported for -list-targets")))
;;;                (set! *didsomething* #t))))
;;;      
;;;      ;; cache the runconfigs in $MT_LINKTREE/$MT_TARGET/$MT_RUNNAME/.runconfig
;;;      ;;
;;;      (define (full-runconfigs-read)
;;;      ;; in the envprocessing branch the below code replaces the further below code
;;;      ;;  (if (eq? *configstatus* 'fulldata)
;;;      ;;      *runconfigdat*
;;;      ;;      (begin
;;;      ;;	(launch:setup)
;;;      ;;	*runconfigdat*)))
;;;      
;;;        (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
;;;      			   (setenv "MT_RUN_AREA_HOME" *toppath*)
;;;      			   (if key-vals
;;;      			       (for-each (lambda (kt)
;;;      					   (setenv (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
;;;      	  data))))
;;;      
;;;      (if (args:get-arg "-show-runconfig")
;;;          (let ((tl (launch:setup)))
;;;            (push-directory *toppath*)
;;;            (let ((data (full-runconfigs-read)))
;;;      	;; keep this one local
;;;      	(cond
;;;      	 ((and (args:get-arg "-section")
;;;      	       (args:get-arg "-var"))
;;;      	  (let ((val (or (configf:lookup data (args:get-arg "-section")(args:get-arg "-var"))
;;;      			 (configf:lookup data "default" (args:get-arg "-var")))))
;;;      	    (if val (print val))))
;;;      	 ((or (not (args:get-arg "-dumpmode"))
;;;                    (string=? (args:get-arg "-dumpmode") "ini"))
;;;      	  (configf:config->ini data))
;;;      	 ((string=? (args:get-arg "-dumpmode") "sexp")
;;;      	  (pp (hash-table->alist data)))
;;;      	 ((string=? (args:get-arg "-dumpmode") "json")
;;;      	  (json-write data))
;;;      	 (else
;;;      	  (debug:print-error 0 *default-log-port* "-dumpmode of " (args:get-arg "-dumpmode") " not recognised")))
;;;      	(set! *didsomething* #t))
;;;            (pop-directory)))
;;;      
;;;      (if (args:get-arg "-show-config")
;;;          (let ((tl   (launch:setup))
;;;      	  (data *configdat*)) ;; (read-config "megatest.config" #f #t)))
;;;            (push-directory *toppath*)
;;;            ;; keep this one local
;;;            (cond 
;;;             ((and (args:get-arg "-section")
;;;      	     (args:get-arg "-var"))
;;;      	(let ((val (configf:lookup data (args:get-arg "-section")(args:get-arg "-var"))))
;;;      	  (if val (print val))))
;;;      
;;;             ;; print just a section if only -section
;;;      
;;;             ((equal? (args:get-arg "-dumpmode") "sexp")
;;;      	(pp (hash-table->alist data)))
;;;             ((equal? (args:get-arg "-dumpmode") "json")
;;;      	(json-write data))
;;;             ((or (not (args:get-arg "-dumpmode"))
;;;      	    (string=? (args:get-arg "-dumpmode") "ini"))
;;;      	(configf:config->ini data))
;;;             (else
;;;      	(debug:print-error 0 *default-log-port* "-dumpmode of " (args:get-arg "-dumpmode") " not recognised")))
;;;            (set! *didsomething* #t)
;;;            (pop-directory)
;;;            (set! *time-to-exit* #t)))
;;;      
;;;      (if (args:get-arg "-show-cmdinfo")
;;;          (if (or (args:get-arg ":value")(getenv "MT_CMDINFO"))
;;;      	(let ((data (common:read-encoded-string (or (args:get-arg ":value")(getenv "MT_CMDINFO")))))
;;;      	  (if (equal? (args:get-arg "-dumpmode") "json")
;;;      	      (json-write data)
;;;      	      (pp data))
;;;      	  (set! *didsomething* #t))
;;;      	(debug:print-info 0 *default-log-port* "environment variable MT_CMDINFO is not set")))
;;;      
;;;      ;;======================================================================
;;;      ;; Remove old run(s)
;;;      ;;======================================================================
;;;      
;;;      ;; since several actions can be specified on the command line the removal
;;;      ;; is done first
;;;      (define (operate-on action #!key (mode #f)(target-in #f)(runname-in #f)(keys-in #f)(keyvals-in #f)) ;; #f is "use default"
;;;        (let* ((runrec (runs:runrec-make-record))
;;;      	 (target (or target-in   (common:args-get-target))) ;; eventually get rid of the call to common:args-get-target
;;;      	 (runname (or runname-in
;;;      		      (args:get-arg "-runname"))) ;; eventually get rid of the get-arg calls
;;;      	 (testpatt (or (args:get-arg "-testpatt")
;;;      		       (and (eq? action 'archive) ;; if it is an archive command fallback to MT_TEST_NAME and MT_ITEMPATH
;;;      			    (common:get-full-test-name))
;;;      		       (and (eq? action 'kill-runs)
;;;      			    "%/%") ;; I'm just guessing that this is correct :(
;;;      		       (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")))
;;;      		       ))) ;;
;;;          (cond
;;;           ((not target)
;;;            (debug:print-error 0 *default-log-port* "Missing required parameter for "
;;;      			 action ", you must specify -target or -reqtarg")
;;;            (exit 1))
;;;           ((not runname)
;;;            (debug:print-error 0 *default-log-port* "Missing required parameter for "
;;;      			 action ", you must specify the run name pattern with -runname patt")
;;;            (exit 2))
;;;           ((not testpatt)
;;;            (debug:print-error 0 *default-log-port* "Missing required parameter for "
;;;      			 action ", you must specify the test pattern with -testpatt")
;;;            (exit 3))
;;;           (else
;;;            (if (not (car *configinfo*))
;;;      	  (begin
;;;      	    (debug:print-error 0 *default-log-port* "Attempted " action "on test(s) but run area config file not found")
;;;      	    (exit 1))
;;;      	  ;; put test parameters into convenient variables
;;;      	  (begin
;;;      	    ;; check for correct version, exit with message if not correct
;;;      	    (common:exit-on-version-changed)
;;;      	    (runs:operate-on  action
;;;      			      target
;;;      			      runname
;;;      			      testpatt
;;;      			      state:  (common:args-get-state)
;;;      			      status: (common:args-get-status)
;;;      			      new-state-status: (args:get-arg "-set-state-status")
;;;                                    mode: mode)))
;;;            (set! *didsomething* #t)))))
;;;      
;;;      (if (args:get-arg "-kill-runs")
;;;          (general-run-call 
;;;           "-kill-runs"
;;;           "kill runs"
;;;           (lambda (target runname keys keyvals)
;;;             (operate-on 'kill-runs mode: #f)
;;;             )))
;;;      
;;;      (if (args:get-arg "-kill-rerun")
;;;          (let* ((target-patt (common:args-get-target))
;;;                 (runname-patt (args:get-arg "-runname")))
;;;            (cond ((not target-patt)
;;;                   (debug:print-error 0 *default-log-port* "Missing target, must specify target for -kill-rerun with -target <target name>")
;;;                   (exit 1))
;;;                  ((not runname-patt)
;;;                   (debug:print-error 0 *default-log-port* "Missing runname, must specify runname for -kill-rerun with -runname <run name>")
;;;                   (exit 1))
;;;                  ((string-search "[ ,%]" target-patt)
;;;                   (debug:print-error 0 *default-log-port* "Invalid target ["target-patt"], must specify exact target (no wildcards) for -kill-rerun with -target <target name>")
;;;                   (exit 1))
;;;                  ((string-search "[ ,%]" runname-patt)
;;;                   (debug:print-error 0 *default-log-port* "Invalid runname ["runname-patt"], must specify exact runname (no wildcards) for -kill-rerun with -runname <runname name>")
;;;                   (exit 1))
;;;                  (else
;;;                   (general-run-call 
;;;                    "-kill-runs"
;;;                    "kill runs"
;;;                    (lambda (target runname keys keyvals)
;;;                      (operate-on 'kill-runs mode: #f)
;;;                      ))
;;;            
;;;                   (thread-sleep! 15))
;;;                  ;; fall thru and let "-run" loop fire

;;;                  )))
;;;      
;;;      
;;;      (if (args:get-arg "-remove-runs")
;;;          (general-run-call 
;;;           "-remove-runs"
;;;           "remove runs"
;;;           (lambda (target runname keys keyvals)
;;;             (operate-on 'remove-runs mode: (if (args:get-arg "-keep-records")
;;;                                                'remove-data-only
;;;                                                'remove-all)))))
;;;      
;;;      (if (args:get-arg "-remove-keep")
;;;          (general-run-call 
;;;           "-remove-keep"
;;;           "remove keep"
;;;           (lambda (target runname keys keyvals)
;;;             (let ((actions (map string->symbol
;;;                                 (string-split
;;;      			    (or (args:get-arg "-actions")
;;;      				"print")
;;;      			    ",")))) ;; default to printing the output
;;;               (runs:remove-all-but-last-n-runs-per-target target runname
;;;      						     (string->number (args:get-arg "-remove-keep"))
;;;      						     actions: actions)))))
;;;      
;;;      (if (args:get-arg "-set-state-status")
;;;          (general-run-call 
;;;           "-set-state-status"
;;;           "set state and status"
;;;           (lambda (target runname keys keyvals)
;;;             (operate-on 'set-state-status))))
;;;      
;;;      (if (or (args:get-arg "-set-run-status")
;;;      	(args:get-arg "-get-run-status"))
;;;          (general-run-call
;;;           "-set-run-status"
;;;           "set run status"
;;;           (lambda (target runname keys keyvals)
;;;             (let* ((runsdat  (rmt:get-runs-by-patt keys runname 
;;;      					(common:args-get-target)
;;;      					#f #f #f #f))
;;;      	      (header   (vector-ref runsdat 0))
;;;      	      (rows     (vector-ref runsdat 1)))
;;;      	 (if (null? rows)
;;;      	     (begin
;;;      	       (debug:print-info 0 *default-log-port* "No matching run found.")
;;;      	       (exit 1))
;;;      	     (let* ((row      (car (vector-ref runsdat 1)))
;;;      		    (run-id   (db:get-value-by-header row header "id")))
;;;      	       (if (args:get-arg "-set-run-status")
;;;      		   (rmt:set-run-status run-id (args:get-arg "-set-run-status") msg: (args:get-arg "-m"))
;;;      		   (print (rmt:get-run-status run-id))
;;;      		   )))))))
;;;      
;;;      ;;======================================================================
;;;      ;; Query runs
;;;      ;;======================================================================
;;;      
;;;      ;; -fields runs:id,target,runname,comment+tests:id,testname,item_path+steps
;;;      ;;
;;;      ;; csi> (extract-fields-constraints "runs:id,target,runname,comment+tests:id,testname,item_path+steps")
;;;      ;;         => (("runs" "id" "target" "runname" "comment") ("tests" "id" "testname" "item_path") ("steps"))
;;;      ;;
;;;      ;;   NOTE: remember that the cdr will be the list you expect (cdr ("runs" "id" "target" "runname" "comment")) => ("id" "target" "runname" "comment")
;;;      ;;         and so alist-ref will yield what you expect
;;;      ;;
;;;      (define (extract-fields-constraints fields-spec)
;;;        (map (lambda (table-spec) ;; runs:id,target,runname
;;;      	 (let ((dat (string-split table-spec ":"))) ;; ("runs" "id,target,runname")
;;;      	   (if (> (length dat) 1)
;;;      	       (cons (car dat)(string-split (cadr dat) ",")) ;; "id,target,runname"
;;;      	       dat)))
;;;             (string-split fields-spec "+")))
;;;      
;;;      (define (get-value-by-fieldname datavec test-field-index fieldname)
;;;        (let ((indx (hash-table-ref/default test-field-index fieldname #f)))
;;;          (if indx
;;;      	(if (>= indx (vector-length datavec))
;;;      	    #f ;; index too high, should raise an error I suppose
;;;      	    (vector-ref datavec indx))
;;;      	#f)))
;;;      
;;;      
;;;      
;;;      
;;;      
;;;      (when (args:get-arg "-testdata-csv")
;;;        (if (launch:setup)
;;;            (let* ((keys        (rmt:get-keys)) ;; (db:get-keys dbstruct))
;;;                   (runpatt     (or (args:get-arg "-runname") "%"))
;;;                   (testpatt    (common:args-get-testpatt #f))
;;;                   (datapatt    (args:get-arg "-testdata-csv"))
;;;                   (match-data  (string-match "^([^/]+)/(.*)" (args:get-arg "-testdata-csv")))
;;;                   (categorypatt (if match-data (list-ref match-data 1) "%"))
;;;                   (setvarpatt  (if match-data
;;;                                    (list-ref match-data 2)
;;;                                    (args:get-arg "-testdata-csv")))
;;;                   (runsdat     (rmt:get-runs-by-patt keys (or runpatt "%") 
;;;                                                      (common:args-get-target) #f #f '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
;;;                   (header      (db:get-header runsdat))
;;;                   (access-mode (db:get-access-mode))
;;;                   (testpatt    (common:args-get-testpatt #f))
;;;                   (fields-spec (if (args:get-arg "-fields")
;;;                                    (extract-fields-constraints (args:get-arg "-fields"))
;;;                                    (list (cons "runs" (append keys (list "id" "runname" "state" "status" "owner" "event_time" "comment" "fail_count" "pass_count")))
;;;                                          (cons "tests"  db:test-record-fields) ;; "id" "testname" "test_path")
;;;                                          (list "steps" "id" "stepname"))))
;;;                   (tests-spec  (let ((t (alist-ref "tests" fields-spec equal?)))
;;;                                  (if (and t (null? t)) ;; all fields
;;;                                      db:test-record-fields
;;;                                      t)))
;;;                   (adj-tests-spec (delete-duplicates (if tests-spec (cons "id" tests-spec) db:test-record-fields))) 
;;;                   (test-field-index (make-hash-table))
;;;                   (runs (db:get-rows runsdat))

;;;                   )
;;;              (if (and tests-spec (not (null? tests-spec))) ;; do some validation and processing of the test-spec
;;;                  (let ((invalid-tests-spec (filter (lambda (x)(not (member x db:test-record-fields))) tests-spec)))
;;;                    (if (null? invalid-tests-spec)
;;;                        ;; generate the lookup map test-field-name => index-number
;;;                        (let loop ((hed (car adj-tests-spec))
;;;                                   (tal (cdr adj-tests-spec))
;;;                                   (idx 0))
;;;                          (hash-table-set! test-field-index hed idx)
;;;                          (if (not (null? tal))(loop (car tal)(cdr tal)(+ idx 1))))
;;;                        (begin
;;;                          (debug:print-error 0 *default-log-port* "Invalid test fields specified: " (string-intersperse invalid-tests-spec ", "))
;;;                          (exit)))))
;;;              (let* ((table-header (string-split "target,run,test,itempath,category,var,value,comment" ","))
;;;                     (table-rows
;;;                      (apply append (map  
;;;                                     (lambda (run)
;;;                                       (let* ((target (string-intersperse (map (lambda (x)
;;;      							 (db:get-value-by-header run header x))
;;;      						       keys) "/"))
;;;                                              (statuses (string-split (or (args:get-arg "-status") "") ","))
;;;                                              (run-id  (db:get-value-by-header run header "id"))
;;;                                              (runname (db:get-value-by-header run header "runname")) 
;;;                                              (states  (string-split (or (args:get-arg "-state") "") ","))
;;;                                              (tests   (if tests-spec
;;;                                                           (rmt:get-tests-for-run run-id testpatt states statuses #f #f #f 'testname 'asc ;; (db:get-tests-for-run dbstruct run-id testpatt '() '() #f #f #f 'testname 'asc 
;;;                                                                              ;; use qryvals if test-spec provided
;;;                                                                              (if tests-spec
;;;                                                                                  (string-intersperse adj-tests-spec ",")
;;;                                                                                  ;; db:test-record-fields
;;;                                                                                  #f)
;;;                                                                              #f
;;;                                                                              'normal)
;;;                                                           '())))
;;;                                         (apply append
;;;                                                (map
;;;                                                 (lambda (test)
;;;                                                   (let* (
;;;                                                          (test-id      (if (member "id"           tests-spec)(get-value-by-fieldname test test-field-index "id"          ) #f)) ;; (db:test-get-id         test))
;;;                                                          (testname     (if (member "testname"     tests-spec)(get-value-by-fieldname test test-field-index "testname"    ) #f)) ;; (db:test-get-testname   test))
;;;                                                          (itempath     (if (member "item_path"    tests-spec)(get-value-by-fieldname test test-field-index "item_path"   ) #f)) ;; (db:test-get-item-path  test))
;;;                                                          (fullname     (conc testname
;;;                                                                              (if (equal? itempath "")
;;;                                                                                  "" 
;;;                                                                                  (conc "/" itempath ))))
;;;                                                          (testdat-raw (map vector->list (rmt:read-test-data-varpatt run-id test-id categorypatt setvarpatt)))
;;;                                                          (testdat (filter
;;;                                                                    (lambda (x)
;;;                                                                      (not (equal? "logpro"
;;;                                                                                   (list-ref x 10))))
;;;                                                                    testdat-raw)))
;;;                                                     (map 
;;;                                                      (lambda (item)
;;;                                                        (receive (id test_id category
;;;                                                                     variable value expected
;;;                                                                     tol units comment status type)
;;;                                                            (apply values item)
;;;                                                          (list target runname testname itempath category variable value comment)))
;;;                                                      testdat)))
;;;                                                 tests))))
;;;                                     runs))))
;;;                (print (string-join table-header ","))
;;;                (for-each (lambda(table-row)
;;;                            (print (string-join (map ->string table-row) ",")))









;;;      
;;;                          
;;;                                  table-rows))))
;;;        (set! *didsomething* #t)
;;;        (set! *time-to-exit* #t))
;;;      
;;;      
;;;      
;;;      ;; NOTE: list-runs and list-db-targets operate on local db!!!
;;;      ;;
;;;      ;; IDEA: megatest list -runname blah% ...
;;;      ;;
;;;      (if (or (args:get-arg "-list-runs")
;;;      	(args:get-arg "-list-db-targets"))
;;;          (if (launch:setup)
;;;      	(let* (;; (dbstruct    (make-dbr:dbstruct path: *toppath* local: (args:get-arg "-local")))
;;;      	       (runpatt     (args:get-arg "-list-runs"))
;;;                     (access-mode (db:get-access-mode))
;;;      	       (testpatt    (common:args-get-testpatt #f))
;;;      	       ;; (if (args:get-arg "-testpatt") 
;;;      	       ;;  	        (args:get-arg "-testpatt") 
;;;      	       ;;  	        "%"))
;;;      	       (keys        (rmt:get-keys)) ;; (db:get-keys dbstruct))
;;;      	       ;; (runsdat  (db:get-runs dbstruct runpatt #f #f '()))
;;;      	;; (runsdat     (rmt:get-runs-by-patt keys (or runpatt "%") (common:args-get-target) ;; (db:get-runs-by-patt dbstruct keys (or runpatt "%") (common:args-get-target)
;;;      	;; 		           	 #f #f '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
;;;      	       (runsdat     (rmt:get-runs-by-patt keys (or runpatt "%") 
;;;                                                        (common:args-get-target) #f #f '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
;;;      	       (runstmp     (db:get-rows runsdat))
;;;      	       (header      (db:get-header runsdat))
;;;      	       ;; this is "-since" support. This looks at last mod times of <run-id>.db files
;;;      	       ;; and collects those modified since the -since time.
;;;      	       (runs        runstmp)
;;;                              ;; (if (and (not (null? runstmp))
;;;      			;;        (args:get-arg "-since"))
;;;      			;;   (let ((changed-ids (db:get-changed-run-ids (string->number (args:get-arg "-since")))))
;;;      			;;     (let loop ((hed (car runstmp))
;;;      			;;   	     (tal (cdr runstmp))
;;;      			;;   	     (res '()))
;;;      			;;       (let ((new-res (if (member (db:get-value-by-header hed header "id") changed-ids)
;;;      			;;   		       (cons hed res)
;;;      			;;   		       res)))
;;;      			;;         (if (null? tal)
;;;      			;;   	  (reverse new-res)
;;;      			;;   	  (loop (car tal)(cdr tal) new-res)))))
;;;      			;;   runstmp))
;;;      	       (db-targets  (args:get-arg "-list-db-targets"))
;;;      	       (seen        (make-hash-table))
;;;      	       (dmode       (let ((d (args:get-arg "-dumpmode"))) ;; json, sexpr
;;;      			      (if d (string->symbol d) #f)))
;;;      	       (data        (make-hash-table))
;;;      	       (fields-spec (if (args:get-arg "-fields")
;;;      				(extract-fields-constraints (args:get-arg "-fields"))
;;;      				(list (cons "runs" (append keys (list "id" "runname" "state" "status" "owner" "event_time" "comment" "fail_count" "pass_count")))
;;;      				      (cons "tests"  db:test-record-fields) ;; "id" "testname" "test_path")
;;;      				      (list "steps" "id" "stepname"))))
;;;      	       (runs-spec   (let ((r (alist-ref "runs"  fields-spec equal?))) ;; the check is now unnecessary
;;;      			      (if (and r (not (null? r))) r (list "id" ))))
;;;      	       (tests-spec  (let ((t (alist-ref "tests" fields-spec equal?)))
;;;      			      (if (and t (null? t)) ;; all fields
;;;      				  db:test-record-fields
;;;      				  t)))
;;;      	       (adj-tests-spec (delete-duplicates (if tests-spec (cons "id" tests-spec) db:test-record-fields))) ;; '("id"))))
;;;      	       (steps-spec  (alist-ref "steps" fields-spec equal?))
;;;      	       (test-field-index (make-hash-table)))
;;;      	  (if (and tests-spec (not (null? tests-spec))) ;; do some validation and processing of the test-spec
;;;      	      (let ((invalid-tests-spec (filter (lambda (x)(not (member x db:test-record-fields))) tests-spec)))
;;;      		(if (null? invalid-tests-spec)
;;;      		    ;; generate the lookup map test-field-name => index-number
;;;      		    (let loop ((hed (car adj-tests-spec))
;;;      			       (tal (cdr adj-tests-spec))
;;;      			       (idx 0))
;;;      		      (hash-table-set! test-field-index hed idx)
;;;      		      (if (not (null? tal))(loop (car tal)(cdr tal)(+ idx 1))))
;;;      		    (begin
;;;      		      (debug:print-error 0 *default-log-port* "Invalid test fields specified: " (string-intersperse invalid-tests-spec ", "))
;;;      		      (exit)))))
;;;      	  ;; Each run
;;;      	  (for-each 
;;;      	   (lambda (run)
;;;      	     (let ((targetstr (string-intersperse (map (lambda (x)
;;;      							 (db:get-value-by-header run header x))
;;;      						       keys) "/")))
;;;      	       (if db-targets
;;;      		   (if (not (hash-table-ref/default seen targetstr #f))
;;;      		       (begin
;;;      			 (hash-table-set! seen targetstr #t)
;;;      			 ;; (print "[" targetstr "]"))))
;;;      			 (if (not dmode)
;;;      			     (print targetstr)
;;;      			     (hash-table-set! data "targets" (cons targetstr (hash-table-ref/default data "targets" '())))
;;;      			     )))
;;;      		   (let* ((run-id  (db:get-value-by-header run header "id"))
;;;      			  (runname (db:get-value-by-header run header "runname")) 
;;;      			  (states  (string-split (or (args:get-arg "-state") "") ","))
;;;      			  (statuses (string-split (or (args:get-arg "-status") "") ","))
;;;      			  (tests   (if tests-spec
;;;      				       (rmt:get-tests-for-run run-id testpatt states statuses #f #f #f 'testname 'asc ;; (db:get-tests-for-run dbstruct run-id testpatt '() '() #f #f #f 'testname 'asc 
;;;      							     ;; use qryvals if test-spec provided
;;;      							     (if tests-spec
;;;      								 (string-intersperse adj-tests-spec ",")
;;;      								 ;; db:test-record-fields
;;;      								 #f)
;;;      							     #f
;;;      							     'normal)
;;;      				       '())))
;;;      		     (case dmode
;;;      		       ((json ods sexpr)
;;;      			(if runs-spec
;;;      			    (for-each 
;;;      			     (lambda (field-name)
;;;      			       (mutils:hierhash-set! data (conc (db:get-value-by-header run header field-name)) targetstr runname "meta" field-name))
;;;      			     runs-spec)))
;;;      			;; (mutils:hierhash-set! data (db:get-value-by-header run header "status")     targetstr runname "meta" "status"     )
;;;      			;; (mutils:hierhash-set! data (db:get-value-by-header run header "state")      targetstr runname "meta" "state"      )
;;;      			;; (mutils:hierhash-set! data (conc (db:get-value-by-header run header "id"))  targetstr runname "meta" "id"         )
;;;      			;; (mutils:hierhash-set! data (db:get-value-by-header run header "event_time") targetstr runname "meta" "event_time" )
;;;      			;; (mutils:hierhash-set! data (db:get-value-by-header run header "comment")    targetstr runname "meta" "comment"    )
;;;      			;; ;; add last entry twice - seems to be a bug in hierhash?
;;;      			;; (mutils:hierhash-set! data (db:get-value-by-header run header "comment")    targetstr runname "meta" "comment"    )
;;;      		       (else
;;;      			(if (null? runs-spec)
;;;      			    (print "Run: " targetstr "/" runname 
;;;      				   " status: " (db:get-value-by-header run header "state")
;;;      				   " run-id: " run-id ", number tests: " (length tests)
;;;      				   " event_time: " (db:get-value-by-header run header "event_time"))
;;;      			    (begin
;;;      			      (if (not (member "target" runs-spec))
;;;      			          ;; (display (conc "Target: " targetstr))
;;;      			          (display (conc "Run: " targetstr "/" runname " ")))
;;;      			      (for-each
;;;      			       (lambda (field-name)
;;;      				 (if (equal? field-name "target")
;;;      				     (display (conc "target: " targetstr " "))
;;;      				     (display (conc field-name ": " (db:get-value-by-header run header (conc field-name)) " "))))
;;;      			       runs-spec)
;;;      			      (newline)))))
;;;      		       
;;;      		     (for-each 
;;;      		      (lambda (test)
;;;      		      	(common:debug-handle-exceptions #f
;;;      			 exn
;;;      			 (begin
;;;      			   (debug:print-error 0 *default-log-port* "Bad data in test record? " test)
;;;      			   (debug:print-error 5 *default-log-port* "exn=" (condition->list exn))
;;;      			   (debug:print 0 *default-log-port* " message: " ((condition-property-accessor 'exn 'message) exn))
;;;      			   (print-call-chain (current-error-port)))
;;;      			 (let* ((test-id      (if (member "id"           tests-spec)(get-value-by-fieldname test test-field-index "id"          ) #f)) ;; (db:test-get-id         test))
;;;      				(testname     (if (member "testname"     tests-spec)(get-value-by-fieldname test test-field-index "testname"    ) #f)) ;; (db:test-get-testname   test))
;;;      				(itempath     (if (member "item_path"    tests-spec)(get-value-by-fieldname test test-field-index "item_path"   ) #f)) ;; (db:test-get-item-path  test))
;;;      				(comment      (if (member "comment"      tests-spec)(get-value-by-fieldname test test-field-index "comment"     ) #f)) ;; (db:test-get-comment    test))
;;;      				(tstate       (if (member "state"        tests-spec)(get-value-by-fieldname test test-field-index "state"       ) #f)) ;; (db:test-get-state      test))
;;;      				(tstatus      (if (member "status"       tests-spec)(get-value-by-fieldname test test-field-index "status"      ) #f)) ;; (db:test-get-status     test))
;;;      				(event-time   (if (member "event_time"   tests-spec)(get-value-by-fieldname test test-field-index "event_time"  ) #f)) ;; (db:test-get-event_time test))
;;;      				(rundir       (if (member "rundir"       tests-spec)(get-value-by-fieldname test test-field-index "rundir"      ) #f)) ;; (db:test-get-rundir     test))
;;;      				(final_logf   (if (member "final_logf"   tests-spec)(get-value-by-fieldname test test-field-index "final_logf"  ) #f)) ;; (db:test-get-final_logf test))
;;;      				(run_duration (if (member "run_duration" tests-spec)(get-value-by-fieldname test test-field-index "run_duration") #f)) ;; (db:test-get-run_duration test))
;;;      				(fullname     (conc testname
;;;      						    (if (equal? itempath "")
;;;      							"" 
;;;      							(conc "(" itempath ")")))))
;;;      			   (case dmode
;;;      			     ((json ods sexpr)
;;;      			      (if tests-spec
;;;      				  (for-each
;;;      				   (lambda (field-name)
;;;      				     (mutils:hierhash-set! data  (get-value-by-fieldname test test-field-index field-name) targetstr runname "data" (conc test-id) field-name))
;;;      				   tests-spec)))
;;;      			     ;; ;; (mutils:hierhash-set! data  fullname   targetstr runname "data" (conc test-id) "tname"     )
;;;      			     ;;  (mutils:hierhash-set! data  testname   targetstr runname "data" (conc test-id) "testname"  )
;;;      			     ;;  (mutils:hierhash-set! data  itempath   targetstr runname "data" (conc test-id) "itempath"  )
;;;      			     ;;  (mutils:hierhash-set! data  comment    targetstr runname "data" (conc test-id) "comment"   )
;;;      			     ;;  (mutils:hierhash-set! data  tstate     targetstr runname "data" (conc test-id) "state"     )
;;;      			     ;;  (mutils:hierhash-set! data  tstatus    targetstr runname "data" (conc test-id) "status"    )
;;;      			     ;;  (mutils:hierhash-set! data  rundir     targetstr runname "data" (conc test-id) "rundir"    )
;;;      			     ;;  (mutils:hierhash-set! data  final_logf targetstr runname "data" (conc test-id) "final_logf")
;;;      			     ;;  (mutils:hierhash-set! data  run_duration targetstr runname "data" (conc test-id) "run_duration")
;;;      			     ;;  (mutils:hierhash-set! data  event-time targetstr runname "data" (conc test-id) "event_time")
;;;      			     ;;  ;; add last entry twice - seems to be a bug in hierhash?
;;;      			     ;;  (mutils:hierhash-set! data  event-time targetstr runname "data" (conc test-id) "event_time")
;;;      			     ;;  )
;;;      			     (else
;;;      			      (if (and tstate tstatus event-time)
;;;      				  (format #t
;;;      					  "  Test: ~25a State: ~15a Status: ~15a Runtime: ~5@as Time: ~22a Host: ~10a\n"
;;;      					  (if fullname fullname "")
;;;      					  (if tstate   tstate   "")
;;;      					  (if tstatus  tstatus  "")
;;;      					  (get-value-by-fieldname test test-field-index "run_duration");;(if test     (db:test-get-run_duration test) "")
;;;      					  (if event-time event-time "")
;;;      					  (get-value-by-fieldname test test-field-index "host")) ;;(if test (db:test-get-host test)) "")
;;;      				  (print "  Test: " fullname
;;;      					 (if tstate  (conc " State: "  tstate)  "")
;;;      					 (if tstatus (conc " Status: " tstatus) "")
;;;      					 (if (get-value-by-fieldname test test-field-index "run_duration")
;;;      					     (conc " Runtime: " (get-value-by-fieldname test test-field-index "run_duration"))
;;;      					     "")
;;;      					 (if event-time (conc " Time: " event-time) "")
;;;      					 (if (get-value-by-fieldname test test-field-index "host")
;;;      					     (conc " Host: " (get-value-by-fieldname test test-field-index "host"))
;;;      					     "")))
;;;      			      (if (not (or (equal? (get-value-by-fieldname test test-field-index "status") "PASS")
;;;      					   (equal? (get-value-by-fieldname test test-field-index "status") "WARN")
;;;      					   (equal? (get-value-by-fieldname test test-field-index "state")  "NOT_STARTED")))
;;;      				  (begin
;;;      				    (print   (if (get-value-by-fieldname test test-field-index "cpuload")
;;;      						 (conc "         cpuload:  "   (get-value-by-fieldname test test-field-index "cpuload"))
;;;      						 "") ;; (db:test-get-cpuload test)
;;;      					     (if (get-value-by-fieldname test test-field-index "diskfree")
;;;      						 (conc "\n         diskfree: " (get-value-by-fieldname test test-field-index "diskfree")) ;; (db:test-get-diskfree test)
;;;      						 "")
;;;      					     (if (get-value-by-fieldname test test-field-index "uname")
;;;      						 (conc "\n         uname:    " (get-value-by-fieldname test test-field-index "uname")) ;; (db:test-get-uname test)
;;;      						 "")
;;;      					     (if (get-value-by-fieldname test test-field-index "rundir")
;;;      						 (conc "\n         rundir:   " (get-value-by-fieldname test test-field-index "rundir")) ;; (db:test-get-rundir test)
;;;      						 "")
;;;      ;;					     "\n         rundir:   " (get-value-by-fieldname test test-field-index "") ;; (sdb:qry 'getstr ;; (filedb:get-path *fdb* 
;;;      ;; 					     (db:test-get-rundir test) ;; )

;;;      					     )
;;;      				    ;; Each test
;;;      				    ;; DO NOT remote run
;;;      				    (let ((steps (rmt:get-steps-for-test run-id (db:test-get-id test)))) ;; (db:get-steps-for-test dbstruct run-id (db:test-get-id test))))
;;;      				      (for-each 
;;;      				       (lambda (step)
;;;      					 (format #t 
;;;      						 "    Step: ~20a State: ~10a Status: ~10a Time ~22a\n"
;;;      						 (tdb:step-get-stepname step)
;;;      						 (tdb:step-get-state step)
;;;      						 (tdb:step-get-status step)
;;;      						 (tdb:step-get-event_time step)))
;;;      				       steps)))))))))
;;;      		      (if (args:get-arg "-sort")
;;;      			  (sort tests
;;;      				(lambda (a-test b-test)
;;;      				  (let* ((key    (args:get-arg "-sort"))
;;;      					 (first  (get-value-by-fieldname a-test test-field-index key))
;;;      					 (second (get-value-by-fieldname b-test test-field-index key)))
;;;      				    ((cond 
;;;      				      ((and (number? first)(number? second)) <)
;;;      				      ((and (string? first)(string? second)) string<=?)
;;;      				      (else equal?))
;;;      				     first second))))
;;;      			  tests))))))
;;;      	   runs)
;;;      	  (case dmode
;;;      	    ((json)  (json-write data))
;;;      	    ((sexpr) (pp (common:to-alist data))))
;;;      	  (let* ((metadat-fields (delete-duplicates
;;;      				  (append keys '( "runname" "time" "owner" "pass_count" "fail_count" "state" "status" "comment" "id"))))
;;;      		 (run-fields    '(
;;;      				  "testname"
;;;      				  "item_path"
;;;      				  "state"
;;;      				  "status"
;;;      				  "comment"
;;;      				  "event_time"
;;;      				  "host"
;;;      				  "run_id"
;;;      				  "run_duration"
;;;      				  "attemptnum"
;;;      				  "id"
;;;      				  "archived"
;;;      				  "diskfree"
;;;      				  "cpuload"
;;;      				  "final_logf"
;;;      				  "shortdir"
;;;      				  "rundir"
;;;      				  "uname"


;;;      				  )
;;;      				)
;;;      		 (newdat          (common:to-alist data))
;;;      		 (allrundat       (if (null? newdat)
;;;      				      '()
;;;      				      (car (map cdr newdat)))) ;; (car (map cdr (car (map cdr newdat)))))
;;;      		 (runs            (append
;;;      				   (list "runs" ;; sheetname
;;;      					 metadat-fields)
;;;      				   (map (lambda (run)
;;;      					  ;; (print "run: " run)
;;;      					  (let* ((runname (car run))
;;;      						 (rundat  (cdr run))
;;;      						 (metadat (let ((tmp (assoc "meta" rundat)))
;;;      							    (if tmp (cdr tmp) #f))))
;;;      					    ;; (print "runname: " runname "\n\nrundat: " )(pp rundat)(print "\n\nmetadat: ")(pp metadat)
;;;      					    (if metadat
;;;      						(map (lambda (field)
;;;      						       (let ((tmp (assoc field metadat)))
;;;      							 (if tmp (cdr tmp) "")))
;;;      						     metadat-fields)
;;;      						(begin
;;;      						  (debug:print 0 *default-log-port* "WARNING: meta data for run " runname " not found")
;;;      						  '()))))
;;;      					allrundat)))
;;;      		 ;; '( ( "target" ( "runname" ( "data" ( "runid" ( "id . "37" ) ( ... ))))
;;;      		 (run-pages      (map (lambda (targdat)
;;;      					(let* ((target  (car targdat))
;;;      					       (runsdat (cdr targdat)))
;;;      					  (if runsdat
;;;      					      (map (lambda (rundat)
;;;      						     (let* ((runname  (car rundat))
;;;      							    (rundat   (cdr rundat))
;;;      							    (testsdat (let ((tmp (assoc "data" rundat)))
;;;      									(if tmp (cdr tmp) #f))))
;;;      						       (if testsdat
;;;      							   (let ((tests (map (lambda (test)
;;;      									       (let* ((test-id  (car test))
;;;      										      (test-dat (cdr test)))
;;;      										 (map (lambda (field)
;;;      											(let ((tmp (assoc field test-dat)))
;;;      											  (if tmp (cdr tmp) "")))
;;;      										      run-fields)))
;;;      									     testsdat)))
;;;      							     ;; (print "Target: " target "/" runname " tests:")
;;;      							     ;; (pp tests)
;;;      							     (cons (conc target "/" runname)
;;;      								   (cons (list (conc target "/" runname))
;;;      									 (cons '()
;;;      									       (cons run-fields tests)))))
;;;      							   (begin
;;;      							     (debug:print 4 *default-log-port* "WARNING: run " target "/" runname " appears to have no data")
;;;      							     ;; (pp rundat)
;;;      							     '()))))
;;;      						   runsdat)
;;;      					      '())))
;;;      				      newdat)) ;; we use newdat to get target
;;;      		 (sheets         (filter (lambda (x)
;;;      					   (not (null? x)))
;;;      					 (cons runs (map car run-pages)))))
;;;      	    ;; (print "allrundat:")
;;;      	    ;; (pp allrundat)
;;;      	    ;; (print "runs:")
;;;      	    ;; (pp runs)
;;;      	    ;(print "sheets: ")
;;;      	    ;; (pp sheets)
;;;      	    (if (eq? dmode 'ods)
;;;      		(let* ((tempdir    (conc "/tmp/" (current-user-name) "/" (pseudo-random-integer 10000) "_" (current-process-id)))
;;;      		       (outputfile (or (args:get-arg "-o") "out.ods"))
;;;      		       (ouf        (if (string-match (regexp "^[/~]+.*") outputfile) ;; full path?
;;;      				       outputfile
;;;      				       (begin
;;;      					 (debug:print 0 *default-log-port* "WARNING: path given, " outputfile " is relative, prefixing with current directory")
;;;      					 (conc (current-directory) "/" outputfile)))))
;;;      		  (create-directory tempdir #t)
;;;      		  (ods:list->ods tempdir ouf sheets))))
;;;      	  ;; (system (conc "rm -rf " tempdir))
;;;      	  (set! *didsomething* #t)
;;;                (set! *time-to-exit* #t)
;;;                ) ;; end if true branch (end of a let)
;;;              ) ;; end if
;;;          ) ;; end if -list-runs
;;;      
;;;      ;; list-waivers
;;;      (if (and (args:get-arg "-list-waivers")
;;;      	 (launch:setup))
;;;          (let* ((runpatt     (or (args:get-arg "-runname") "%"))
;;;      	   (testpatt    (common:args-get-testpatt #f))
;;;      	   (keys        (rmt:get-keys)) 
;;;      	   (runsdat     (rmt:get-runs-by-patt
;;;      			 keys runpatt 
;;;      			 (common:args-get-target) #f #f
;;;      			 '("id" "runname" "state" "status" "owner" "event_time" "comment") 0))
;;;      	   (runs        (db:get-rows runsdat))
;;;      	   (header      (db:get-header runsdat))
;;;      	   (results     (make-hash-table))  ;; [target] ( (testname/itempath . "comment") ... )
;;;      	   (addtest     (lambda (target testname itempath comment)
;;;      			  (hash-table-set! results target (cons (cons (conc testname "/" itempath) comment)
;;;      								(hash-table-ref/default results target '())))))
;;;      	   (last-target #f))
;;;            (for-each
;;;             (lambda (run)
;;;      	 (let* ((run-id  (db:get-value-by-header run header "id"))
;;;      		(target  (rmt:get-target run-id))
;;;      		(runname (db:get-value-by-header run header "runname")) 
;;;      		(tests   (rmt:get-tests-for-run
;;;      			  run-id testpatt '("COMPLETED") '("WAIVED") #f #f #f 'testname 'asc							     ;; use qryvals if test-spec provided
;;;      			  #f #f #f)))
;;;      	   (if (not (equal? target last-target))
;;;      	       (print "[" target "]"))
;;;      	   (set! last-target target)
;;;      	   (print "# " runname)
;;;      	   (for-each
;;;      	    (lambda (testdat)
;;;      	      (let* ((testfullname (conc (db:test-get-testname testdat)
;;;      					 (if (equal? "" (db:test-get-item-path testdat))
;;;      					     ""
;;;      					     (conc "/" (db:test-get-item-path testdat)))
;;;      					 )))
;;;      	      (print testfullname " " (db:test-get-comment testdat))))
;;;      	    tests)))
;;;             runs)
;;;            (set! *didsomething* #t)))
;;;            
;;;      ;;======================================================================
;;;      ;; full run
;;;      ;;======================================================================
;;;      
;;;      (define (handle-run-requests target runname keys keyvals need-clean)	 
;;;        (if (or (args:get-arg "-kill-rerun") (args:get-arg "-rerun-clean")) ;; first set states/statuses correct
;;;            ;; For rerun-clean do we or do we not support the testpatt?
;;;            (let ((states   (or (configf:lookup *configdat* "validvalues" "cleanrerun-states")
;;;      			  "KILLREQ,KILLED,UNKNOWN,INCOMPLETE,STUCK,NOT_STARTED"))
;;;      	    (statuses (or (configf:lookup *configdat* "validvalues" "cleanrerun-statuses")
;;;      			  "FAIL,INCOMPLETE,ABORT,CHECK,DEAD,PREQ_FAIL,PREQ_DISCARDED")))
;;;      	(hash-table-set! args:arg-hash "-preclean" #t)
;;;      	(runs:operate-on 'set-state-status
;;;      			 target
;;;      			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
;;;      			 ;; "%" ;; (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
;;;      			 (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
;;;      			 state:  states
;;;      			 ;; status: statuses
;;;      			 new-state-status: "NOT_STARTED,n/a")
;;;      	(runs:clean-cache target runname *toppath*)
;;;      	(runs:operate-on 'set-state-status
;;;      			 target
;;;      			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
;;;      			 ;; "%" ;; (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
;;;      			 (common:args-get-testpatt #f) ;; (args:get-arg "-testpatt")
;;;      			 ;; state:  states
;;;      			 status: statuses
;;;      			 new-state-status: "NOT_STARTED,n/a")))
;;;        ;; RERUN ALL
;;;        (if (args:get-arg "-rerun-all") ;; first set states/statuses correct
;;;            (let* ((rconfig (full-runconfigs-read)))
;;;      	(hash-table-set! args:arg-hash "-preclean" #t)
;;;      	(runs:operate-on 'set-state-status
;;;      			 target
;;;      			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
;;;      			 (common:args-get-testpatt rconfig) ;; (args:get-arg "-testpatt")
;;;      			 state:  #f
;;;      			 ;; status: statuses
;;;      			 new-state-status: "NOT_STARTED,n/a")
;;;      	(runs:clean-cache target runname *toppath*)
;;;      	(runs:operate-on 'set-state-status
;;;      			 target
;;;      			 (common:args-get-runname)  ;; (or (args:get-arg "-runname")(args:get-arg ":runname"))
;;;      			 (common:args-get-testpatt rconfig) ;; (args:get-arg "-testpatt")
;;;      			 ;; state:  states
;;;      			 status: #f
;;;      			 new-state-status: "NOT_STARTED,n/a")))
;;;        (let* ((config-reruns      (let ((x (configf:lookup *configdat* "setup" "reruns")))
;;;      			       (if x (string->number x) #f)))
;;;      	 (rerun-cnt (if config-reruns
;;;      			config-reruns
;;;      			1)))
;;;      
;;;          (runs:run-tests target
;;;      		    runname
;;;      		    #f ;; (common:args-get-testpatt #f)
;;;      		    ;; (or (args:get-arg "-testpatt")
;;;      		    ;;     "%")
;;;      		    user
;;;      		    args:arg-hash
;;;      		    run-count: rerun-cnt)))
;;;      
;;;      ;; get lock in db for full run for this directory
;;;      ;; for all tests with deps
;;;      ;;   walk tree of tests to find head tasks
;;;      ;;   add head tasks to task queue
;;;      ;;   add dependant tasks to task queue 
;;;      ;;   add remaining tasks to task queue
;;;      ;; for each task in task queue
;;;      ;;   if have adequate resources
;;;      ;;     launch task
;;;      ;;   else
;;;      ;;     put task in deferred queue
;;;      ;; if still ok to run tasks
;;;      ;;   process deferred tasks per above steps
;;;      
;;;      ;; run all tests are are Not COMPLETED and PASS or CHECK
;;;      (if (or (args:get-arg "-runall")
;;;      	(args:get-arg "-run")
;;;      	(args:get-arg "-rerun-clean")
;;;      	(args:get-arg "-rerun-all")
;;;      	(args:get-arg "-runtests")
;;;              (args:get-arg "-kill-rerun"))
;;;          (let ((need-clean (or (args:get-arg "-rerun-clean")
;;;                                (args:get-arg "-rerun-all")))
;;;      	  (orig-cmdline (string-intersperse (argv) " ")))
;;;            (general-run-call 
;;;             "-runall"
;;;             "run all tests"
;;;             (lambda (target runname keys keyvals)
;;;      	 (if (or (string-search "%" target)
;;;      		 (string-search "%" runname)) ;; we are being asked to re-run multiple runs
;;;      	     (let* ((run-specs (rmt:simple-get-runs runname #f #f target #f))) ;; list of simple-run records
;;;      	       (debug:print-info 0 *default-log-port* "Pattern supplied for target or runname with "
;;;      				 (length run-specs) " matches round. Running each in turn.")
;;;      	       (if (null? run-specs)
;;;      		   (debug:print 0 *default-log-port* "WARNING: No runs match target " target " and runname " runname))
;;;      	       (for-each (lambda (spec) 
;;;      			   (let* ((precmd     (if (args:get-arg "-precmd")(conc (args:get-arg "-precmd") " ") ""))
;;;      				  (newcmdline (conc
;;;      					       precmd
;;;      					       (string-substitute
;;;      						(conc "target " target)
;;;      						(conc "target " (simple-run-target spec))
;;;      						(string-substitute
;;;      						 (conc "runname " runname)
;;;      						 (conc "runname " (simple-run-runname spec))
;;;      						 orig-cmdline)))))
;;;      			     (debug:print 0 *default-log-port* "ORIG: " orig-cmdline)
;;;      			     (debug:print 0 *default-log-port* "NEW:  " newcmdline)
;;;      			     (system newcmdline)))
;;;      			 run-specs))
;;;      	     (handle-run-requests target runname keys keyvals need-clean))))))
;;;      
;;;      ;;======================================================================
;;;      ;; run one test
;;;      ;;======================================================================
;;;      
;;;      ;; 1. find the config file
;;;      ;; 2. change to the test directory
;;;      ;; 3. update the db with "test started" status, set running host
;;;      ;; 4. process launch the test
;;;      ;;    - monitor the process, update stats in the db every 2^n minutes
;;;      ;; 5. as the test proceeds internally it calls megatest as each step is
;;;      ;;    started and completed
;;;      ;;    - step started, timestamp
;;;      ;;    - step completed, exit status, timestamp
;;;      ;; 6. test phone home
;;;      ;;    - if test run time > allowed run time then kill job
;;;      ;;    - if cannot access db > allowed disconnect time then kill job
;;;      
;;;      ;; == duplicated == (if (or (args:get-arg "-run")(args:get-arg "-runtests"))
;;;      ;; == duplicated ==   (general-run-call 
;;;      ;; == duplicated ==    "-runtests" 
;;;      ;; == duplicated ==    "run a test" 
;;;      ;; == duplicated ==    (lambda (target runname keys keyvals)
;;;      ;; == duplicated ==      ;;
;;;      ;; == duplicated ==      ;; May or may not implement it this way ...
;;;      ;; == duplicated ==      ;;
;;;      ;; == duplicated ==      ;; Insert this run into the tasks queue
;;;      ;; == duplicated ==      ;; (open-run-close tasks:add tasks:open-db 
;;;      ;; == duplicated ==      ;;    	     "runtests" 
;;;      ;; == duplicated ==      ;;    	     user
;;;      ;; == duplicated ==      ;;    	     target
;;;      ;; == duplicated ==      ;;    	     runname
;;;      ;; == duplicated ==      ;;    	     (args:get-arg "-runtests")
;;;      ;; == duplicated ==      ;;    	     #f))))
;;;      ;; == duplicated ==      (runs:run-tests target
;;;      ;; == duplicated == 		     runname
;;;      ;; == duplicated == 		     (common:args-get-testpatt #f) ;; (args:get-arg "-runtests")
;;;      ;; == duplicated == 		     user
;;;      ;; == duplicated == 		     args:arg-hash))))
;;;      
;;;      ;;======================================================================
;;;      ;; Rollup into a run
;;;      ;;======================================================================
;;;      
;;;      ;; (if (args:get-arg "-rollup")
;;;      ;;     (general-run-call 
;;;      ;;      "-rollup" 
;;;      ;;      "rollup tests" 
;;;      ;;      (lambda (target runname keys keyvals)
;;;      ;;        (runs:rollup-run keys
;;;      ;; 			keyvals
;;;      ;; 			(or (args:get-arg "-runname")(args:get-arg ":runname") )
;;;      ;; 			user))))
;;;      
;;;      ;;======================================================================
;;;      ;; Lock or unlock a run
;;;      ;;======================================================================
;;;      
;;;      (if (or (args:get-arg "-lock")(args:get-arg "-unlock"))
;;;          (general-run-call 
;;;           (if (args:get-arg "-lock") "-lock" "-unlock")
;;;           "lock/unlock tests" 
;;;           (lambda (target runname keys keyvals)
;;;             (runs:handle-locking 
;;;      		  target
;;;      		  keys
;;;      		  (or (args:get-arg "-runname")(args:get-arg ":runname") )
;;;      		  (args:get-arg "-lock")
;;;      		  (args:get-arg "-unlock")
;;;      		  user))))
;;;      
;;;      ;;======================================================================
;;;      ;; Get paths to tests
;;;      ;;======================================================================
;;;      ;; Get test paths matching target, runname, and testpatt
;;;      (if (or (args:get-arg "-test-files")(args:get-arg "-test-paths"))
;;;          ;; if we are in a test use the MT_CMDINFO data
;;;          (if (getenv "MT_CMDINFO")
;;;      	(let* ((startingdir (current-directory))
;;;      	       (cmdinfo   (common:read-encoded-string (getenv "MT_CMDINFO")))
;;;      	       (transport (assoc/default 'transport cmdinfo))
;;;      	       (testpath  (assoc/default 'testpath  cmdinfo))
;;;      	       (test-name (assoc/default 'test-name cmdinfo))
;;;      	       (runscript (assoc/default 'runscript cmdinfo))
;;;      	       (db-host   (assoc/default 'db-host   cmdinfo))
;;;      	       (run-id    (assoc/default 'run-id    cmdinfo))
;;;      	       (itemdat   (assoc/default 'itemdat   cmdinfo))
;;;      	       (state     (args:get-arg ":state"))
;;;      	       (status    (args:get-arg ":status"))
;;;      	       ;;(target    (args:get-arg "-target"))
;;;      	       (target    (common:args-get-target))
;;;      	       (toppath   (assoc/default 'toppath   cmdinfo)))
;;;      	  (change-directory toppath)
;;;      	  (if (not target)
;;;      	      (begin
;;;      		(debug:print-error 0 *default-log-port* "-target is required.")
;;;      		(exit 1)))
;;;      	  (if (not (launch:setup))
;;;      	      (begin
;;;      		(debug:print 0 *default-log-port* "Failed to setup, giving up on -test-paths or -test-files, exiting")
;;;      		(exit 1)))
;;;      	  (let* ((keys     (rmt:get-keys))
;;;      		 ;; db:test-get-paths must not be run remote
;;;      		 (paths    (tests:test-get-paths-matching keys target (args:get-arg "-test-files"))))
;;;      	    (set! *didsomething* #t)
;;;      	    (for-each (lambda (path)
;;;      			(if (common:file-exists? path)
;;;      			(print path)))	
;;;      		      paths)))
;;;      	;; else do a general-run-call
;;;      	(general-run-call 
;;;      	 "-test-files"
;;;      	 "Get paths to test"
;;;      	 (lambda (target runname keys keyvals)
;;;      	   (let* ((db       #f)
;;;      		  ;; DO NOT run remote
;;;      		  (paths    (tests:test-get-paths-matching keys target (args:get-arg "-test-files"))))
;;;      	     (for-each (lambda (path)
;;;      			 (print path))
;;;      		       paths))))))
;;;      
;;;      ;;======================================================================
;;;      ;; Archive tests
;;;      ;;======================================================================
;;;      ;; Archive tests matching target, runname, and testpatt
;;;      (if (equal? (args:get-arg "-archive") "replicate-db")
;;;          (begin
;;;                ;; check if source
;;;                ;; check if megatest.db exist
;;;               (launch:setup)
;;;               (if (not (args:get-arg "-source"))
;;;                   (begin 
;;;                   (debug:print-info 1 *default-log-port* "Missing required argument -source <archive path>")
;;;                   (exit 1)))
;;;               (if (common:file-exists? (conc  *toppath* "/megatest.db"))
;;;                   (begin  
;;;                     (debug:print-info 1 *default-log-port* "File " (conc  *toppath* "/megatest.db") " already exists. Please remove it before trying to replicate db")
;;;                     (exit 1)))
;;;               (if (and (common:get-db-tmp-area) (> (length (directory   (common:get-db-tmp-area) #f)) 0))
;;;                 (begin
;;;                 (debug:print-info 1 *default-log-port* (common:get-db-tmp-area) " not empty. Please remove it before trying to replicate db")
;;;                 (exit 1)))    
;;;                ;; check if timestamp 
;;;                (let* ((source (args:get-arg "-source"))
;;;                      (src     (if (not (equal? (substring source 0 1) "/"))
;;;                                   (conc (current-directory) "/" source)
;;;                                   source))
;;;                      (ts (if (args:get-arg "-time-stamp")   (args:get-arg "-time-stamp") "latest")))
;;;                    (if  (common:directory-exists? src)
;;;                        (begin 
;;;                        (archive:restore-db src ts)
;;;                  (set! *didsomething* #t))
;;;             (begin
;;;               (debug:print-error 1 *default-log-port* "Path " source " not found")
;;;               (exit 1))))))   
;;;          ;; else do a general-run-call
;;;         (if (and (args:get-arg "-archive") (not (equal? (args:get-arg "-archive") "replicate-db"))) 
;;;          (begin
;;;            ;; for the archive get we need to preserve the starting dir as part of the target path
;;;            (if (and (args:get-arg "-dest")
;;;      	       (not (equal? (substring (args:get-arg "-dest") 0 1) "/")))
;;;      	  (let ((newpath  (conc (current-directory) "/" (args:get-arg "-dest"))))
;;;      	    (debug:print-info 1 *default-log-port* "Preserving original path to destination, was " (args:get-arg "-dest") ", now " newpath)
;;;      	    (hash-table-set! args:arg-hash "-dest" newpath)))
;;;            (general-run-call 
;;;             "-archive"
;;;             "Archive"
;;;             (lambda (target runname keys keyvals)
;;;      	 (operate-on 'archive target-in: target runname-in: runname )))))
;;;      
;;;      ;;======================================================================
;;;      ;; Extract a spreadsheet from the runs database
;;;      ;;======================================================================
;;;      
;;;      (if (args:get-arg "-extract-ods")
;;;          (general-run-call
;;;           "-extract-ods"
;;;           "Make ods spreadsheet"
;;;           (lambda (target runname keys keyvals)
;;;             (let ((dbstruct   (make-dbr:dbstruct path: *toppath* local: #t))
;;;      	     (outputfile (args:get-arg "-extract-ods"))
;;;      	     (runspatt   (or (args:get-arg "-runname")(args:get-arg ":runname")))
;;;      	     (pathmod    (args:get-arg "-pathmod")))
;;;      	     ;; (keyvalalist (keys->alist keys "%")))
;;;      	 (debug:print 2 *default-log-port* "Extract ods, outputfile: " outputfile " runspatt: " runspatt " keyvals: " keyvals)
;;;      	 (db:extract-ods-file dbstruct outputfile keyvals (if runspatt runspatt "%") pathmod)
;;;      	 (db:close-all dbstruct)
;;;      	 (set! *didsomething* #t)))))
;;;      
;;;      ;;======================================================================
;;;      ;; execute the test
;;;      ;;    - gets called on remote host
;;;      ;;    - receives info from the -execute param
;;;      ;;    - passes info to steps via MT_CMDINFO env var (future is to use a dot file)
;;;      ;;    - gathers host info and 
;;;      ;;======================================================================
;;;      
;;;      (if (args:get-arg "-execute")
;;;          (begin
;;;            (launch:execute (args:get-arg "-execute"))
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;;======================================================================
;;;      ;; recover from a test where the managing mtest was killed but the underlying
;;;      ;; process might still be salvageable
;;;      ;;======================================================================
;;;      
;;;      (if (args:get-arg "-recover-test")
;;;          (let* ((params (string-split (args:get-arg "-recover-test") ",")))
;;;            (if (> (length params) 1) ;; run-id and test-id
;;;      	  (let ((run-id (string->number (car params)))
;;;      		(test-id (string->number (cadr params))))
;;;      	    (if (and run-id test-id)
;;;      		(begin
;;;      		  (launch:recover-test run-id test-id)
;;;      		  (set! *didsomething* #t))
;;;      		(begin
;;;      		  (debug:print-error 0 *default-log-port* "bad run-id or test-id, must be integers")
;;;      		  (exit 1)))))))
;;;      
;;;      ;;======================================================================
;;;      ;; Test commands (i.e. for use inside tests)
;;;      ;;======================================================================
;;;      
;;;      (define (megatest:step step state status logfile msg)
;;;        (if (not (getenv "MT_CMDINFO"))
;;;            (begin
;;;      	(debug:print-error 0 *default-log-port* "MT_CMDINFO env var not set, -step must be called *inside* a megatest invoked environment!")
;;;      	(exit 5))
;;;            (let* ((cmdinfo   (common:read-encoded-string (getenv "MT_CMDINFO")))
;;;      	     (transport (assoc/default 'transport cmdinfo))
;;;      	     (testpath  (assoc/default 'testpath  cmdinfo))
;;;      	     (test-name (assoc/default 'test-name cmdinfo))
;;;      	     (runscript (assoc/default 'runscript cmdinfo))
;;;      	     (db-host   (assoc/default 'db-host   cmdinfo))
;;;      	     (run-id    (assoc/default 'run-id    cmdinfo))
;;;      	     (test-id   (assoc/default 'test-id   cmdinfo))
;;;      	     (itemdat   (assoc/default 'itemdat   cmdinfo))
;;;      	     (work-area (assoc/default 'work-area cmdinfo))
;;;      	     (db        #f))
;;;      	(change-directory testpath)
;;;      	(if (not (launch:setup))
;;;      	    (begin
;;;      	      (debug:print 0 *default-log-port* "Failed to setup, exiting")
;;;      	      (exit 1)))
;;;      	(if (and state status)
;;;      	    (let ((comment (launch:load-logpro-dat run-id test-id step)))
;;;      	      ;; (rmt:test-set-log! run-id test-id (conc stepname ".html"))))
;;;      	      (rmt:teststep-set-status! run-id test-id step state status (or comment msg) logfile))
;;;      	    (begin
;;;      	      (debug:print-error 0 *default-log-port* "You must specify :state and :status with every call to -step")
;;;      	      (exit 6))))))
;;;      
;;;      (define (main)
;;;      (if (args:get-arg "-step")
;;;          (begin
;;;            (thread-sleep! 1.5)
;;;            (megatest:step 
;;;             (args:get-arg "-step")
;;;             (or (args:get-arg "-state")(args:get-arg ":state"))
;;;             (or (args:get-arg "-status")(args:get-arg ":status"))
;;;             (args:get-arg "-setlog")
;;;             (args:get-arg "-m"))
;;;            ;; (if db (sqlite3:finalize! db))
;;;            (set! *didsomething* #t)
;;;            (thread-sleep! 1.5)))
;;;          
;;;      (if (or (args:get-arg "-setlog")       ;; since setting up is so costly lets piggyback on -test-status
;;;      	;;     (not (args:get-arg "-step")))  ;; -setlog may have been processed already in the "-step" previous
;;;      	;;     NEW POLICY - -setlog sets test overall log on every call.
;;;      	(args:get-arg "-set-toplog")
;;;      	(args:get-arg "-test-status")
;;;      	(args:get-arg "-set-values")
;;;      	(args:get-arg "-load-test-data")
;;;      	(args:get-arg "-runstep")
;;;      	(args:get-arg "-summarize-items"))
;;;          (if (not (getenv "MT_CMDINFO"))
;;;      	(begin
;;;      	  (debug:print-error 0 *default-log-port* "MT_CMDINFO env var not set, commands -test-status, -runstep and -setlog must be called *inside* a megatest environment!")
;;;      	  (exit 5))
;;;      	(let* ((startingdir (current-directory))
;;;      	       (cmdinfo   (common:read-encoded-string (getenv "MT_CMDINFO")))
;;;      	       (transport (assoc/default 'transport cmdinfo))
;;;      	       (testpath  (assoc/default 'testpath  cmdinfo))
;;;      	       (test-name (assoc/default 'test-name cmdinfo))
;;;      	       (runscript (assoc/default 'runscript cmdinfo))
;;;      	       (db-host   (assoc/default 'db-host   cmdinfo))
;;;      	       (run-id    (assoc/default 'run-id    cmdinfo))
;;;      	       (test-id   (assoc/default 'test-id   cmdinfo))
;;;      	       (itemdat   (assoc/default 'itemdat   cmdinfo))
;;;      	       (work-area (assoc/default 'work-area cmdinfo))
;;;      	       (db        #f) ;; (open-db))
;;;      	       (state     (args:get-arg ":state"))
;;;      	       (status    (args:get-arg ":status"))
;;;      	       (stepname  (args:get-arg "-step")))
;;;      	  (if (not (launch:setup))
;;;      	      (begin
;;;      		(debug:print 0 *default-log-port* "Failed to setup, exiting")
;;;      		(exit 1)))
;;;      
;;;      	  (if (args:get-arg "-runstep")(debug:print-info 1 *default-log-port* "Running -runstep, first change to directory " work-area))
;;;      	  (change-directory work-area)
;;;      	  ;; can setup as client for server mode now
;;;      	  ;; (client:setup)
;;;      
;;;      	  (if (args:get-arg "-load-test-data")
;;;      	      ;; has sub commands that are rdb:
;;;      	      ;; DO NOT put this one into either rmt: or open-run-close
;;;      	      (tdb:load-test-data run-id test-id))
;;;      	  (if (args:get-arg "-setlog")
;;;      	      (let ((logfname (args:get-arg "-setlog")))
;;;      		(rmt:test-set-log! run-id test-id logfname)))
;;;      	  (if (args:get-arg "-set-toplog")
;;;      	      ;; DO NOT run remote
;;;      	      (tests:test-set-toplog! run-id test-name (args:get-arg "-set-toplog")))
;;;      	  (if (args:get-arg "-summarize-items")
;;;      	      ;; DO NOT run remote
;;;      	      (tests:summarize-items run-id test-id test-name #t)) ;; do force here
;;;      	  (if (args:get-arg "-runstep")
;;;      	      (if (null? remargs)
;;;      		  (begin
;;;      		    (debug:print-error 0 *default-log-port* "nothing specified to run!")
;;;      		    (if db (sqlite3:finalize! db))
;;;      		    (exit 6))
;;;      		  (let* ((stepname   (args:get-arg "-runstep"))
;;;      			 (logprofile (args:get-arg "-logpro"))
;;;      			 (logfile    (conc stepname ".log"))
;;;      			 (cmd        (if (null? remargs) #f (car remargs)))
;;;      			 (params     (if cmd (cdr remargs) '()))
;;;      			 (exitstat   #f)
;;;      			 (shell      (let ((sh (get-environment-variable "SHELL") ))
;;;      				       (if sh 
;;;      					   (last (string-split sh "/"))
;;;      					   "bash")))
;;;      			 (redir      (case (string->symbol shell)
;;;      				       ((tcsh csh ksh)    ">&")
;;;      				       ((zsh bash sh ash) "2>&1 >")
;;;      				       (else ">&")))
;;;      			 (fullcmd    (conc "(" (string-intersperse 
;;;      						(cons cmd params) " ")
;;;      					   ") " redir " " logfile)))
;;;      		    ;; mark the start of the test
;;;      		    (rmt:teststep-set-status! run-id test-id stepname "start" "n/a" (args:get-arg "-m") logfile)
;;;      		    ;; run the test step
;;;      		    (debug:print-info 2 *default-log-port* "Running \"" fullcmd "\" in directory \"" startingdir)
;;;      		    (change-directory startingdir)
;;;      		    (set! exitstat (system fullcmd))
;;;      		    (set! *globalexitstatus* exitstat)
;;;      		    ;; (change-directory testpath)
;;;      		    ;; run logpro if applicable ;; (process-run "ls" (list "/foo" "2>&1" "blah.log"))
;;;      		    (if logprofile
;;;      			(let* ((htmllogfile (conc stepname ".html"))
;;;      			       (oldexitstat exitstat)
;;;      			       (cmd         (string-intersperse (list "logpro" logprofile htmllogfile "<" logfile ">" (conc stepname "_logpro.log")) " ")))
;;;      			  (debug:print-info 2 *default-log-port* "running \"" cmd "\"")
;;;      			  (change-directory startingdir)
;;;      			  (set! exitstat (system cmd))
;;;      			  (set! *globalexitstatus* exitstat) ;; no necessary
;;;      			  (change-directory testpath)
;;;      			  (rmt:test-set-log! run-id test-id htmllogfile)))
;;;      		    (let ((msg (args:get-arg "-m")))
;;;      		      (rmt:teststep-set-status! run-id test-id stepname "end" exitstat msg logfile))
;;;      		    )))
;;;      	  (if (or (args:get-arg "-test-status")
;;;      		  (args:get-arg "-set-values"))
;;;      	      (let ((newstatus (cond
;;;      				((number? status)       (if (equal? status 0) "PASS" "FAIL"))
;;;      				((and (string? status)
;;;      				      (string->number status))(if (equal? (string->number status) 0) "PASS" "FAIL"))
;;;      				(else status)))
;;;      		    ;; transfer relevant keys into a hash to be passed to test-set-status!
;;;      		    ;; could use an assoc list I guess. 
;;;      		    (otherdata (let ((res (make-hash-table)))
;;;      				 (for-each (lambda (key)
;;;      					     (if (args:get-arg key)
;;;      						 (hash-table-set! res key (args:get-arg key))))
;;;      					   (list ":value" ":tol" ":expected" ":first_err" ":first_warn" ":units" ":category" ":variable"))
;;;      				 res)))
;;;      		(if (and (args:get-arg "-test-status")
;;;      			 (or (not state)
;;;      			     (not status)))
;;;      		    (begin
;;;      		      (debug:print-error 0 *default-log-port* "You must specify :state and :status with every call to -test-status\n" help)
;;;      		      (if (sqlite3:database? db)(sqlite3:finalize! db))
;;;      		      (exit 6)))
;;;      		(let* ((msg    (args:get-arg "-m"))
;;;      		       (numoth (length (hash-table-keys otherdata))))
;;;      		  ;; Convert to rpc inside the tests:test-set-status! call, not here
;;;      		  (tests:test-set-status! run-id test-id state newstatus msg otherdata work-area: work-area))))
;;;      	  (if (sqlite3:database? db)(sqlite3:finalize! db))
;;;      	  (set! *didsomething* #t))))
;;;      
;;;      ;;======================================================================
;;;      ;; Various helper commands can go below here
;;;      ;;======================================================================
;;;      
;;;      (if (or (args:get-arg "-showkeys")
;;;              (args:get-arg "-show-keys"))
;;;          (let ((db #f)
;;;      	  (keys #f))
;;;            (if (not (launch:setup))
;;;      	  (begin
;;;      	    (debug:print 0 *default-log-port* "Failed to setup, exiting")
;;;      	    (exit 1)))
;;;            (set! keys (rmt:get-keys)) ;;  db))
;;;            (debug:print 1 *default-log-port* "Keys: " (string-intersperse keys ", "))
;;;            (if (sqlite3:database? db)(sqlite3:finalize! db))
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-gui")
;;;          (begin
;;;            (debug:print 0 *default-log-port* "Look at the dashboard for now")
;;;            ;; (megatest-gui)
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-create-megatest-area")
;;;          (begin
;;;            (genexample:mk-megatest.config)
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-create-test")
;;;          (let ((testname (args:get-arg "-create-test")))
;;;            (genexample:mk-megatest-test testname)
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;;======================================================================
;;;      ;; Update the database schema, clean up the db
;;;      ;;======================================================================
;;;      
;;;      (if (args:get-arg "-rebuild-db")
;;;          (begin
;;;            (if (not (launch:setup))
;;;      	  (begin
;;;      	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
;;;      	    (exit 1)))
;;;            ;; keep this one local
;;;            ;; (open-run-close patch-db #f)
;;;            (let ((dbstruct (db:setup #f areapath: *toppath*)))
;;;              (common:cleanup-db dbstruct full: #t))
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-cleanup-db")
;;;          (begin
;;;            (if (not (launch:setup))
;;;      	  (begin
;;;      	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
;;;      	    (exit 1)))
;;;            (let ((dbstruct (db:setup #f areapath: *toppath*)))
;;;              (common:cleanup-db dbstruct))
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-mark-incompletes")
;;;          (begin
;;;            (if (not (launch:setup))
;;;      	  (begin
;;;      	    (debug:print 0 *default-log-port* "Failed to setup, exiting")
;;;      	    (exit 1)))
;;;            (rmt:find-and-mark-incomplete #f)
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;;======================================================================
;;;      ;; Update the tests meta data from the testconfig files
;;;      ;;======================================================================
;;;      
;;;      (if (args:get-arg "-update-meta")
;;;          (begin
;;;            (if (not (launch:setup))
;;;      	  (begin
;;;      	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
;;;      	    (exit 1)))
;;;            (runs:update-all-test_meta #f)
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;;======================================================================
;;;      ;; Start a repl
;;;      ;;======================================================================
;;;      
;;;      ;; fakeout readline
;;;      ;; (include "readline-fix.scm")
;;;      
;;;      
;;;      (when (args:get-arg "-diff-rep")
;;;        (when (and
;;;               (not (args:get-arg "-diff-html"))
;;;               (not (args:get-arg "-diff-email")))
;;;          (debug:print 0 *default-log-port* "Must specify -diff-html or -diff-email with -diff-rep")
;;;          (set! *didsomething* 1)
;;;          (exit 1))
;;;        
;;;        (let* ((toppath (launch:setup)))
;;;          (do-diff-report
;;;           (args:get-arg "-src-target")
;;;           (args:get-arg "-src-runname")
;;;           (args:get-arg "-target")
;;;           (args:get-arg "-runname")
;;;           (args:get-arg "-diff-html")
;;;           (args:get-arg "-diff-email"))
;;;          (set! *didsomething* #t)
;;;          (exit 0)))
;;;      
;;;      (if (or (getenv "MT_RUNSCRIPT")
;;;      	(args:get-arg "-repl")
;;;      	(args:get-arg "-load"))
;;;          (let* ((toppath (launch:setup))
;;;      	   (dbstruct (if (and toppath
;;;                                    (common:on-homehost?))
;;;                               (db:setup #t)
;;;                               #f))) ;; make-dbr:dbstruct path: toppath local: (args:get-arg "-local")) #f)))
;;;            (if *toppath*
;;;      	  (cond
;;;      	   ((getenv "MT_RUNSCRIPT")
;;;      	    ;; How to run megatest scripts
;;;      	    ;;
;;;      	    ;; #!/bin/bash
;;;      	    ;;
;;;      	    ;; export MT_RUNSCRIPT=yes
;;;      	    ;; megatest << EOF
;;;      	    ;; (print "Hello world")
;;;      	    ;; (exit)
;;;      	    ;; EOF
;;;      
;;;      	    (repl))
;;;      	   (else
;;;      	    (begin
;;;      	      (set! *db* dbstruct)
;;;      	      ;; (import extras) ;; might not be needed
;;;      	      ;; (import csi)
;;;      	      ;; (import readline)
;;;      	      (import apropos)
;;;      	      ;; (import (prefix sqlite3 sqlite3:)) ;; doesn't work ...
;;;      
;;;      	;; (if *use-new-readline*
;;;      	;; 	  (begin
;;;      	;; 	    (install-history-file (get-environment-variable "HOME") ".megatest_history") ;;  [homedir] [filename] [nlines])
;;;      	;; 	    (current-input-port (make-readline-port "megatest> ")))
;;;      	;; 	  (begin
;;;      	;; 	    (gnu-history-install-file-manager
;;;      	;; 	     (string-append
;;;      	;; 	      (or (get-environment-variable "HOME") ".") "/.megatest_history"))
;;;      	;; 	    (current-input-port (make-gnu-readline-port "megatest> "))))
;;;      	      (if (args:get-arg "-repl")
;;;      		  (repl)
;;;      		  (load (args:get-arg "-load")))
;;;      	      ;; (db:close-all dbstruct) <= taken care of by on-exit call
;;;      	      )







;;;      	    (exit)))
;;;      	  (set! *didsomething* #t))))
;;;      
;;;      ;;======================================================================
;;;      ;; Wait on a run to complete
;;;      ;;======================================================================
;;;      
;;;      (if (and (args:get-arg "-run-wait")
;;;      	 (not (or (args:get-arg "-run")
;;;      		  (args:get-arg "-runtests")))) ;; run-wait is built into runtests now
;;;          (begin
;;;            (if (not (launch:setup))
;;;      	  (begin
;;;      	    (debug:print 0 *default-log-port* "Failed to setup, exiting") 
;;;      	    (exit 1)))
;;;            (operate-on 'run-wait)
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;; ;; ;; redo me ;; Not converted to use dbstruct yet
;;;      ;; ;; ;; redo me ;;
;;;      ;; ;; ;; redo me (if (args:get-arg "-convert-to-norm")
;;;      ;; ;; ;; redo me     (let* ((toppath (setup-for-run))
;;;      ;; ;; ;; redo me 	   (dbstruct (if toppath (make-dbr:dbstruct path: toppath local: #t))))
;;;      ;; ;; ;; redo me       (for-each 
;;;      ;; ;; ;; redo me        (lambda (field)
;;;      ;; ;; ;; redo me 	 (let ((dat '()))
;;;      ;; ;; ;; redo me 	   (debug:print-info 0 *default-log-port* "Getting data for field " field)
;;;      ;; ;; ;; redo me 	   (sqlite3:for-each-row
;;;      ;; ;; ;; redo me 	    (lambda (id val)
;;;      ;; ;; ;; redo me 	      (set! dat (cons (list id val) dat)))
;;;      ;; ;; ;; redo me 	    (db:get-db db run-id)
;;;      ;; ;; ;; redo me 	    (conc "SELECT id," field " FROM tests;"))
;;;      ;; ;; ;; redo me 	   (debug:print-info 0 *default-log-port* "found " (length dat) " items for field " field)
;;;      ;; ;; ;; redo me 	   (let ((qry (sqlite3:prepare db (conc "UPDATE tests SET " field "=? WHERE id=?;"))))
;;;      ;; ;; ;; redo me 	     (for-each
;;;      ;; ;; ;; redo me 	      (lambda (item)
;;;      ;; ;; ;; redo me 		(let ((newval ;; (sdb:qry 'getid 
;;;      ;; ;; ;; redo me 		       (cadr item))) ;; )
;;;      ;; ;; ;; redo me 		  (if (not (equal? newval (cadr item)))
;;;      ;; ;; ;; redo me 		      (debug:print-info 0 *default-log-port* "Converting " (cadr item) " to " newval " for test #" (car item)))
;;;      ;; ;; ;; redo me 		  (sqlite3:execute qry newval (car item))))
;;;      ;; ;; ;; redo me 	      dat)
;;;      ;; ;; ;; redo me 	     (sqlite3:finalize! qry))))
;;;      ;; ;; ;; redo me        (db:close-all dbstruct)
;;;      ;; ;; ;; redo me        (list "uname" "rundir" "final_logf" "comment"))
;;;      ;; ;; ;; redo me       (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-import-megatest.db")
;;;          (begin
;;;            (db:multi-db-sync 
;;;             (db:setup #f)
;;;             'killservers
;;;             'dejunk
;;;             'adj-testids
;;;             'old2new
;;;             ;; 'new2old

;;;             )
;;;            (set! *didsomething* #t)))
;;;      
;;;      (when (args:get-arg "-sync-brute-force")
;;;        ((server:get-bruteforce-syncer (db:setup #t) persist-until-sync: #t))
;;;        (set! *didsomething* #t))
;;;      
;;;      (if (args:get-arg "-sync-to-megatest.db")
;;;          (let* ((dbstruct (db:setup #f))
;;;      	   (tmpdbpth (cdr (dbr:dbstruct-tmpdb dbstruct)))
;;;      	   (lockfile (conc tmpdbpth ".lock"))
;;;      	   (locked   (common:simple-file-lock lockfile)) 
;;;      	   (res      (if locked
;;;      			 (db:multi-db-sync 
;;;      			  dbstruct
;;;      			  'new2old)
;;;      			 #f)))
;;;            (if res
;;;      	  (begin
;;;      	    (common:simple-file-release-lock lockfile)
;;;      	    (print "Synced " res " records to megatest.db"))
;;;      	  (print "Skipping sync, there is a sync in progress."))
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-sync-to")
;;;          (let ((toppath (launch:setup)))
;;;            (tasks:sync-to-postgres *configdat* (args:get-arg "-sync-to"))
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-list-test-time")
;;;           (let* ((toppath (launch:setup))) 
;;;           (task:get-test-times)  
;;;           (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-list-run-time")
;;;           (let* ((toppath (launch:setup))) 
;;;           (task:get-run-times)  
;;;           (set! *didsomething* #t)))
;;;           
;;;      (if (args:get-arg "-generate-html")
;;;          (let* ((toppath (launch:setup)))
;;;            (if (tests:create-html-tree #f)
;;;                (debug:print-info 0 *default-log-port* "HTML output created in " toppath "/lt/page0.html")
;;;                (debug:print 0 *default-log-port* "Failed to create HTML output in " toppath "/lt/runs-index.html"))
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-generate-html-structure")
;;;          (let* ((toppath (launch:setup)))
;;;            ;(if (tests:create-html-tree #f)
;;;       				(if (tests:create-html-summary #f)
;;;                (debug:print-info 0 *default-log-port* "HTML output created in " toppath "/lt/targets.html")
;;;                (debug:print 0 *default-log-port* "Failed to create HTML output in " toppath "/lt/runs-index.html"))
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-syscheck")
;;;          (begin
;;;            (mutils:syscheck common:raw-get-remote-host-load
;;;      		       server:get-best-guess-address
;;;      		       read-config)
;;;            (set! *didsomething* #t)))
;;;      
;;;      (if (args:get-arg "-extract-skeleton")
;;;          (let* ((toppath (launch:setup)))
;;;            (genexample:extract-skeleton-area (args:get-arg "-extract-skeleton"))
;;;            (set! *didsomething* #t)))
;;;      
;;;      ;;======================================================================
;;;      ;; Exit and clean up
;;;      ;;======================================================================
;;;      
;;;      (if (not *didsomething*)
;;;          (debug:print 0 *default-log-port* help)
;;;          (set! *time-to-exit* #t)

;;;          )
;;;      ;;(debug:print-info 13 *default-log-port* "thread-join! watchdog")
;;;      
;;;      ;; join the watchdog thread if it has been thread-start!ed  (it may not have been started in the case of a server that never enters running state)
;;;      ;;   (symbols returned by thread-state: created ready running blocked suspended sleeping terminated dead)
;;;      ;; TODO: for multiple areas, we will have multiple watchdogs; and multiple threads to manage
;;;      (if (thread? *watchdog*)
;;;          (case (thread-state *watchdog*)
;;;            ((ready running blocked sleeping terminated dead)
;;;             (thread-join! *watchdog*))))
;;;      
;;;      (set! *time-to-exit* #t)
;;;      
;;;      (if (not (eq? *globalexitstatus* 0))
;;;          (if (or (args:get-arg "-run")(args:get-arg "-runtests")(args:get-arg "-runall"))
;;;              (begin
;;;                 (debug:print 0 *default-log-port* "NOTE: Subprocesses with non-zero exit code detected: " *globalexitstatus*)
;;;                 (exit 0))
;;;              (case *globalexitstatus*
;;;               ((0)(exit 0))
;;;               ((1)(exit 1))
;;;               ((2)(exit 2))
;;;               (else (exit 3)))))
;;;      )

)

;; (main)
(print "Got here")

Modified runs.scm from [b5b3c41539] to [ec21108c67].

3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
			 (tc-name	(conc test-name (if (and test-itempath (not (equal? test-itempath ""))) (conc "." (string-translate test-itempath "/" "." )) "")))
			 (test-state	(vector-ref test 3))
			 (comment	(vector-ref test 14))   
			 (test-status	(vector-ref test 4))
			 (exc-msg	(conc "No bucket for State " test-state " Status " test-status))
			 (new-doc	(cond 
					 ((member test-state (list "RUNNING" ))
					  ((modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (inProgress)))) doc))
					 ((member test-state (list "LAUNCHED" "REMOTEHOSTSTART"  "NOT_STARTED"))
					  ((modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (inQueue)))) doc))
					 ((member test-status (list "PASS" "WARN" "WAIVED"))
					  ((modify `("testsuite" insert-into (testcase (@ (name ,tc-name))))) doc))
					 ((member test-status (list "FAIL" "CHECK"))
					  ((modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (failure (@ (message ,comment) (type "failure")))))) doc)) 
					 ((member test-status (list "DEAD" "KILLED" "ABORT" "PREQ_FAIL" "PREQ_DISCARDED"))
					  ((modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (failure (@ (message ,comment) (type "error")))))) doc))
					 ((member test-status (list "SKIP"))
					  ((modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (skipped (@ (type "skipped")))))) doc))
					 (else 
					  (debug:print 0 *default-log-port* (conc "What do I do with State " test-state " Status " test-status))
					  ((modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (failure (@ (message ,exc-msg) (type "error")))))) doc))))
			 (new-error-cnt	(if (member test-status (list "DEAD" "KILLED" "ABORT" "PREQ_FAIL" "PREQ_DISCARDED"))
					    (+ error-cnt 1) 
					    error-cnt))
			 (new-fail-cnt	(if (member test-status (list "FAIL" "CHECK"))
					    (+ fail-cnt 1)
					    fail-cnt)))
 	      (if (null? tail)
		    (let* ((final-doc ((modify `("testsuite" insert-into (@ (name ,xml-ts-name) (tests ,tests-count) (errors ,error-cnt) (failures ,fail-cnt)))) new-doc)))
		    (debug:print 0 *default-log-port* "modify attrib error=" error-cnt " fail= " fail-cnt)
		    (handle-exceptions
		     exn
		     (let*	((msg	((condition-property-accessor 'exn 'message) exn)))
		       (debug:print 0 *default-log-port* (conc "WARNING: Failed to update file" xml-path". Message:" msg ", exn=" exn)))
		     		   
		     (if (not (file-exists? xml-dir)) 







|

|

|

|

|

|


|







|







3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
			 (tc-name	(conc test-name (if (and test-itempath (not (equal? test-itempath ""))) (conc "." (string-translate test-itempath "/" "." )) "")))
			 (test-state	(vector-ref test 3))
			 (comment	(vector-ref test 14))   
			 (test-status	(vector-ref test 4))
			 (exc-msg	(conc "No bucket for State " test-state " Status " test-status))
			 (new-doc	(cond 
					 ((member test-state (list "RUNNING" ))
					  ((sxml-modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (inProgress)))) doc))
					 ((member test-state (list "LAUNCHED" "REMOTEHOSTSTART"  "NOT_STARTED"))
					  ((sxml-modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (inQueue)))) doc))
					 ((member test-status (list "PASS" "WARN" "WAIVED"))
					  ((sxml-modify `("testsuite" insert-into (testcase (@ (name ,tc-name))))) doc))
					 ((member test-status (list "FAIL" "CHECK"))
					  ((sxml-modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (failure (@ (message ,comment) (type "failure")))))) doc)) 
					 ((member test-status (list "DEAD" "KILLED" "ABORT" "PREQ_FAIL" "PREQ_DISCARDED"))
					  ((sxml-modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (failure (@ (message ,comment) (type "error")))))) doc))
					 ((member test-status (list "SKIP"))
					  ((sxml-modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (skipped (@ (type "skipped")))))) doc))
					 (else 
					  (debug:print 0 *default-log-port* (conc "What do I do with State " test-state " Status " test-status))
					  ((sxml-modify `("testsuite" insert-into (testcase (@ (name ,tc-name)) (failure (@ (message ,exc-msg) (type "error")))))) doc))))
			 (new-error-cnt	(if (member test-status (list "DEAD" "KILLED" "ABORT" "PREQ_FAIL" "PREQ_DISCARDED"))
					    (+ error-cnt 1) 
					    error-cnt))
			 (new-fail-cnt	(if (member test-status (list "FAIL" "CHECK"))
					    (+ fail-cnt 1)
					    fail-cnt)))
 	      (if (null? tail)
		    (let* ((final-doc ((sxml-modify `("testsuite" insert-into (@ (name ,xml-ts-name) (tests ,tests-count) (errors ,error-cnt) (failures ,fail-cnt)))) new-doc)))
		    (debug:print 0 *default-log-port* "modify attrib error=" error-cnt " fail= " fail-cnt)
		    (handle-exceptions
		     exn
		     (let*	((msg	((condition-property-accessor 'exn 'message) exn)))
		       (debug:print 0 *default-log-port* (conc "WARNING: Failed to update file" xml-path". Message:" msg ", exn=" exn)))
		     		   
		     (if (not (file-exists? xml-dir))