blob: b649f333b75e86fcf5044bcecb4ed31c080647e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
(.module:
[lux (#- Source)
[abstract
["." monad (#+ do)]]
[control
["." try (#+ Try)]
[concurrency
["." promise (#+ Promise)]]
[security
["!" capability]]]
[data
["." text
["%" format (#+ format)]]
[collection
["." dictionary]
["." row]]
[format
["." binary]
["." tar]]]
[time
["." instant]]
[tool
[compiler
[meta
["." io #_
["#" context (#+ Extension)]]]]]
[world
["." file]]]
[//
[cli (#+ Source Export)]])
(def: file
"library.tar")
(def: no-ownership
tar.Ownership
(let [commons (: tar.Owner
{#tar.name tar.anonymous
#tar.id tar.no-id})]
{#tar.user commons
#tar.group commons}))
(def: #export (library system sources)
(-> (file.System Promise) (List Source) (Promise (Try tar.Tar)))
(do (try.with promise.monad)
[files (io.enumerate system sources)]
(|> (dictionary.entries files)
(monad.map try.monad
(function (_ [path source-code])
(do try.monad
[path (|> path
(text.replace-all (\ system separator) .module-separator)
tar.path)
source-code (tar.content source-code)]
(wrap (#tar.Normal [path
(instant.from-millis +0)
($_ tar.and
tar.read-by-owner tar.write-by-owner
tar.read-by-group tar.write-by-group
tar.read-by-other)
..no-ownership
source-code])))))
(\ try.monad map row.from-list)
(\ promise.monad wrap))))
(def: #export (export system [sources target])
(-> (file.System Promise) Export (Promise (Try Any)))
(do (try.with promise.monad)
[tar (..library system sources)
package (: (Promise (Try (file.File Promise)))
(file.get-file promise.monad system
(format target (\ system separator) ..file)))]
(|> tar
(binary.run tar.writer)
(!.use (\ package over-write)))))
|