]> gitweb.factorcode.org Git - factor.git/blob - extra/mason/common/common.factor
a33e3c5831f668ef9477c7840c343784bf331332
[factor.git] / extra / mason / common / common.factor
1 ! Copyright (C) 2008 Eduardo Cavazos, Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel namespaces sequences splitting system accessors
4 math.functions make io io.files io.pathnames io.directories
5 io.directories.hierarchy io.launcher io.encodings.utf8 prettyprint
6 combinators.short-circuit parser combinators calendar
7 calendar.format arrays mason.config locals system debugger fry
8 continuations strings ;
9 IN: mason.common
10
11 SYMBOL: current-git-id
12
13 : short-running-process ( command -- )
14     #! Give network operations and shell commands at most
15     #! 15 minutes to complete, to catch hangs.
16     >process
17         15 minutes >>timeout
18         +closed+ >>stdin
19     try-output-process ;
20
21 HOOK: really-delete-tree os ( path -- )
22
23 M: windows really-delete-tree
24     #! Workaround: Cygwin GIT creates read-only files for
25     #! some reason.
26     [ { "chmod" "ug+rw" "-R" } swap (normalize-path) suffix short-running-process ]
27     [ delete-tree ]
28     bi ;
29
30 M: unix really-delete-tree delete-tree ;
31
32 : retry ( n quot -- )
33     '[ drop @ f ] attempt-all drop ; inline
34
35 :: upload-safely ( local username host remote -- )
36     [let* | temp [ remote ".incomplete" append ]
37             scp-remote [ { username "@" host ":" temp } concat ]
38             scp [ scp-command get ]
39             ssh [ ssh-command get ] |
40         5 [ { scp local scp-remote } short-running-process ] retry
41         5 [ { ssh host "-l" username "mv" temp remote } short-running-process ] retry
42     ] ;
43
44 : eval-file ( file -- obj )
45     dup utf8 file-lines parse-fresh
46     [ "Empty file: " swap append throw ] [ nip first ] if-empty ;
47
48 : cat ( file -- ) utf8 file-contents print ;
49
50 : cat-n ( file n -- ) [ utf8 file-lines ] dip short tail* [ print ] each ;
51
52 : to-file ( object file -- ) utf8 [ . ] with-file-writer ;
53
54 : datestamp ( timestamp -- string )
55     [
56         {
57             [ year>> , ]
58             [ month>> , ]
59             [ day>> , ]
60             [ hour>> , ]
61             [ minute>> , ]
62         } cleave
63     ] { } make [ pad-00 ] map "-" join ;
64
65 : milli-seconds>time ( n -- string )
66     millis>timestamp
67     [ hour>> ] [ minute>> ] [ second>> floor ] tri 3array
68     [ pad-00 ] map ":" join ;
69
70 SYMBOL: stamp
71
72 : builds/factor ( -- path ) builds-dir get "factor" append-path ;
73 : build-dir ( -- path ) builds-dir get stamp get append-path ;
74
75 : prepare-build-machine ( -- )
76     builds-dir get make-directories
77     builds-dir get
78     [ { "git" "clone" "git://factorcode.org/git/factor.git" } try-output-process ]
79     with-directory ;
80
81 : git-id ( -- id )
82     { "git" "show" } utf8 [ lines ] with-process-reader
83     first " " split second ;
84
85 : ?prepare-build-machine ( -- )
86     builds/factor exists? [ prepare-build-machine ] unless ;
87
88 CONSTANT: load-all-vocabs-file "load-everything-vocabs"
89 CONSTANT: load-all-errors-file "load-everything-errors"
90
91 CONSTANT: test-all-vocabs-file "test-all-vocabs"
92 CONSTANT: test-all-errors-file "test-all-errors"
93
94 CONSTANT: help-lint-vocabs-file "help-lint-vocabs"
95 CONSTANT: help-lint-errors-file "help-lint-errors"
96
97 CONSTANT: compiler-errors-file "compiler-errors"
98 CONSTANT: compiler-error-messages-file "compiler-error-messages"
99
100 CONSTANT: boot-time-file "boot-time"
101 CONSTANT: load-time-file "load-time"
102 CONSTANT: test-time-file "test-time"
103 CONSTANT: help-lint-time-file "help-lint-time"
104 CONSTANT: benchmark-time-file "benchmark-time"
105 CONSTANT: html-help-time-file "html-help-time"
106
107 CONSTANT: benchmarks-file "benchmarks"
108 CONSTANT: benchmark-error-messages-file "benchmark-error-messages"
109 CONSTANT: benchmark-error-vocabs-file "benchmark-error-vocabs"
110
111 SYMBOL: status-error ! didn't bootstrap, or crashed
112 SYMBOL: status-dirty ! bootstrapped but not all tests passed
113 SYMBOL: status-clean ! everything good