aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/world/file.lux
blob: 94bea7fadde5e652f9a62e4334a176b189ce0e3e (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
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
(.`` (.`` (.require
           [library
            [lux (.except open)
             [abstract
              ["[0]" monad (.only Monad do)]]
             [control
              ["[0]" pipe]
              ["[0]" maybe (.use "[1]#[0]" functor)]
              ["[0]" try (.only Try) (.use "[1]#[0]" functor)]
              ["[0]" exception (.only Exception)]
              ["[0]" io (.only IO) (.use "[1]#[0]" functor)]
              ["[0]" function]
              [concurrency
               ["[0]" async (.only Async)]
               ["[0]" stm (.only Var STM)]]]
             [data
              ["[0]" bit (.use "[1]#[0]" equivalence)]
              ["[0]" product]
              ["[0]" binary (.only Binary)]
              ["[0]" text (.use "[1]#[0]" equivalence)
               ["%" \\format (.only format)]]
              [collection
               ["[0]" array (.only Array)]
               ["[0]" list (.use "[1]#[0]" functor)]
               ["[0]" dictionary (.only Dictionary)]]]
             ["[0]" ffi (.only)
              (.,, (.for "JavaScript" (.,, (.these ["[0]" node_js]))
                         "{old}" (.,, (.these ["node_js" //control/thread]))
                         (.,, (.these))))]
             [math
              [number
               ["i" int]
               ["f" frac]]]
             [meta
              ["@" target]
              [macro
               ["[0]" template]]]]]
           [//
            [time
             ["[0]" instant (.only Instant)]
             ["[0]" duration]]])))

(type .public Path
  Text)

(`` (type .public (System !)
      (Interface
       (is Text
           separator)

       (,, (with_template [<name> <output>]
             [(is (-> Path (! <output>))
                  <name>)]

             [file? Bit]
             [directory? Bit]
             ))

       (,, (with_template [<name> <output>]
             [(is (-> Path (! (Try <output>)))
                  <name>)]

             [make_directory  Any]
             [directory_files (List Path)]
             [sub_directories (List Path)]
             
             [file_size     Nat]
             [last_modified Instant]
             [can_execute?  Bit]
             [read          Binary]
             [delete        Any]
             ))

       (,, (with_template [<name> <input>]
             [(is (-> Path <input> (! (Try Any)))
                  <name>)]

             [modify Instant]
             [write  Binary]
             [append Binary]
             [move   Path]
             )))
      ))

(def (un_rooted fs path)
  (All (_ !)
    (-> (System !) Path
        (Maybe [Path Text])))
  (let [/ (of fs separator)]
    (when (text.last_index / path)
      {.#None}
      {.#None}
      
      {.#Some last_separator}
      (do maybe.monad
        [[parent temp] (text.split_at last_separator path)
         [_ child] (text.split_at (text.size /) temp)]
        (in [parent child])))))

(def .public (parent fs path)
  (All (_ !)
    (-> (System !) Path
        (Maybe Path)))
  (|> path
      (..un_rooted fs)
      (maybe#each product.left)))

(def .public (name fs path)
  (All (_ !)
    (-> (System !) Path
        Text))
  (|> path
      (..un_rooted fs)
      (maybe#each product.right)
      (maybe.else path)))

(def .public (async fs)
  (-> (System IO)
      (System Async))
  (`` (implementation
       (def separator
         (of fs separator))

       (,, (with_template [<name>]
             [(def <name>
                (|>> (of fs <name>)
                     async.future))]

             [file?]
             [directory?]
             
             [make_directory]
             [directory_files]
             [sub_directories]
             
             [file_size]
             [last_modified]
             [can_execute?]
             [read]
             [delete]))

       (,, (with_template [<name>]
             [(def (<name> path input)
                (async.future (of fs <name> path input)))]

             [modify]
             [write]
             [append]
             [move]))
       )))

(def .public (rooted fs parent child)
  (All (_ !)
    (-> (System !) Path Text
        Path))
  (format parent (of fs separator) child))

(with_template [<name>]
  [(exception.def .public (<name> file)
     (Exception Path)
     (exception.report
      (list ["Path" file])))]

  [cannot_make_file]
  [cannot_find_file]
  [cannot_delete]

  [cannot_make_directory]
  [cannot_find_directory]
  )

(with_expansions [<for_jvm> (these (ffi.import java/lang/String
                                     "[1]::[0]")

                                   (`` (ffi.import java/io/File
                                         "[1]::[0]"
                                         (new [java/lang/String])
                                         (,, (with_template [<name>]
                                               [(<name> [] "io" "try" boolean)]

                                               [createNewFile] [mkdir]
                                               [delete]
                                               [isFile] [isDirectory]
                                               [canRead] [canWrite] [canExecute]))

                                         (length [] "io" "try" long)
                                         (listFiles [] "io" "try" "?" [java/io/File])
                                         (getAbsolutePath [] "io" "try" java/lang/String)
                                         (renameTo [java/io/File] "io" "try" boolean)
                                         (lastModified [] "io" "try" long)
                                         (setLastModified [long] "io" "try" boolean)
                                         ("read_only" "static" separator java/lang/String)))

                                   (ffi.import java/lang/AutoCloseable
                                     "[1]::[0]"
                                     (close [] "io" "try" void))

                                   (ffi.import java/io/OutputStream
                                     "[1]::[0]"
                                     (write [[byte]] "io" "try" void)
                                     (flush [] "io" "try" void))

                                   (ffi.import java/io/FileOutputStream
                                     "[1]::[0]"
                                     (new [java/io/File boolean] "io" "try"))

                                   (ffi.import java/io/InputStream
                                     "[1]::[0]"
                                     (read [[byte]] "io" "try" int))

                                   (ffi.import java/io/FileInputStream
                                     "[1]::[0]"
                                     (new [java/io/File] "io" "try"))

                                   (`` (def .public default
                                         (System IO)
                                         (implementation
                                          (def separator
                                            (ffi.of_string (java/io/File::separator)))

                                          (,, (with_template [<name> <method>]
                                                [(def <name>
                                                   (|>> ffi.as_string
                                                        java/io/File::new
                                                        <method>
                                                        (io#each (|>> (try#each (|>> ffi.of_boolean)) (try.else false)))))]

                                                [file? java/io/File::isFile]
                                                [directory? java/io/File::isDirectory]
                                                ))

                                          (def make_directory
                                            (|>> ffi.as_string
                                                 java/io/File::new
                                                 java/io/File::mkdir))

                                          (,, (with_template [<name> <method>]
                                                [(def (<name> path)
                                                   (do [! (try.with io.monad)]
                                                     [?children (java/io/File::listFiles (java/io/File::new (ffi.as_string path)))]
                                                     (when ?children
                                                       {.#Some children}
                                                       (|> children
                                                           (array.list {.#None})
                                                           (monad.only ! (|>> <method> (of ! each (|>> ffi.of_boolean))))
                                                           (of ! each (monad.each ! (|>> java/io/File::getAbsolutePath (of ! each (|>> ffi.of_string)))))
                                                           (of ! conjoint))

                                                       {.#None}
                                                       (of io.monad in (exception.except ..cannot_find_directory [path])))))]

                                                [directory_files java/io/File::isFile]
                                                [sub_directories java/io/File::isDirectory]
                                                ))

                                          (def file_size
                                            (|>> ffi.as_string
                                                 java/io/File::new
                                                 java/io/File::length
                                                 (of (try.with io.monad) each (|>> ffi.of_long .nat))))

                                          (def last_modified
                                            (|>> ffi.as_string
                                                 java/io/File::new
                                                 (java/io/File::lastModified)
                                                 (of (try.with io.monad) each (|>> ffi.of_long duration.of_millis instant.absolute))))

                                          (def can_execute?
                                            (|>> ffi.as_string
                                                 java/io/File::new
                                                 java/io/File::canExecute
                                                 (io#each (try#each (|>> ffi.of_boolean)))))

                                          (def (read path)
                                            (do (try.with io.monad)
                                              [.let [file (java/io/File::new (ffi.as_string path))]
                                               size (java/io/File::length file)
                                               stream (java/io/FileInputStream::new file)
                                               .let [data (binary.empty (.nat (ffi.of_long size)))]
                                               bytes_read (java/io/InputStream::read data stream)
                                               _ (java/lang/AutoCloseable::close stream)]
                                              (in data)))

                                          (def (delete path)
                                            (|> path
                                                ffi.as_string
                                                java/io/File::new
                                                java/io/File::delete))

                                          (def (modify path time_stamp)
                                            (|> path
                                                ffi.as_string
                                                java/io/File::new
                                                (java/io/File::setLastModified (|> time_stamp instant.relative duration.millis ffi.as_long))))
                                          
                                          (,, (with_template [<flag> <name>]
                                                [(def (<name> path data)
                                                   (do (try.with io.monad)
                                                     [stream (java/io/FileOutputStream::new (java/io/File::new (ffi.as_string path)) (ffi.as_boolean <flag>))
                                                      _ (java/io/OutputStream::write data stream)
                                                      _ (java/io/OutputStream::flush stream)]
                                                     (java/lang/AutoCloseable::close stream)))]

                                                [#0 write]
                                                [#1 append]
                                                ))

                                          (def (move origin destination)
                                            (|> origin
                                                ffi.as_string
                                                java/io/File::new
                                                (java/io/File::renameTo (java/io/File::new (ffi.as_string destination)))))
                                          ))))]
  (for @.old (these <for_jvm>)
       @.jvm (these <for_jvm>)

       @.js
       (these (ffi.import Buffer
                "[1]::[0]"
                ("static" from [Binary] ..Buffer))
              
              (ffi.import FileDescriptor
                "[1]::[0]")

              (ffi.import Stats
                "[1]::[0]"
                (size ffi.Number)
                (mtimeMs ffi.Number)
                (isFile [] ffi.Boolean)
                (isDirectory [] ffi.Boolean))

              (ffi.import FsConstants
                "[1]::[0]"
                (F_OK ffi.Number)
                (X_OK ffi.Number))

              (ffi.import Error
                "[1]::[0]"
                (toString [] ffi.String))

              (def with_async
                (template (_ <write> <type> <body>)
                  [(template.with_locals [<read>]
                     (let [[<read> <write>] (is [(Async <type>) (async.Resolver <type>)]
                                                (async.async []))]
                       (exec
                         <body>
                         <read>)))]))
              
              (ffi.import Fs
                "[1]::[0]"
                (constants FsConstants)
                (readFile [ffi.String ffi.Function] Any)
                (appendFile [ffi.String Buffer ffi.Function] Any)
                (writeFile [ffi.String Buffer ffi.Function] Any)
                (stat [ffi.String ffi.Function] Any)
                (access [ffi.String ffi.Number ffi.Function] Any)
                (rename [ffi.String ffi.String ffi.Function] Any)
                (utimes [ffi.String ffi.Number ffi.Number ffi.Function] Any)
                (readdir [ffi.String ffi.Function] Any)
                (mkdir [ffi.String ffi.Function] Any)
                (unlink [ffi.String ffi.Function] Any)
                (rmdir [ffi.String ffi.Function] Any))

              (def (any_callback write!)
                (-> (async.Resolver (Try Any)) ffi.Function)
                (<| (ffi.function (_ [error Error]) Any)
                    io.run!
                    write!
                    (if (ffi.null? error)
                      {try.#Success []}
                      {try.#Failure (Error::toString error)})))

              (def (value_callback write!)
                (All (_ a) (-> (async.Resolver (Try a)) ffi.Function))
                (<| (ffi.function (_ [error Error datum Any]) Any)
                    io.run!
                    write!
                    (if (ffi.null? error)
                      {try.#Success (as_expected datum)}
                      {try.#Failure (Error::toString error)})))

              (ffi.import JsPath
                "[1]::[0]"
                (sep ffi.String))
              
              (def .public default
                (Maybe (System Async))
                (do maybe.monad
                  [node_fs (node_js.require "fs")
                   node_path (node_js.require "path")
                   .let [node_fs (as ..Fs node_fs)
                         js_separator (if ffi.on_node_js?
                                        (JsPath::sep (as ..JsPath node_path))
                                        "/")]]
                  (in (is (System Async)
                          (`` (implementation
                               (def separator
                                 js_separator)

                               (,, (with_template [<name> <method>]
                                     [(def (<name> path)
                                        (do async.monad
                                          [?stats (with_async write! (Try Stats)
                                                    (Fs::stat path (..value_callback write!)
                                                              node_fs))]
                                          (in (when ?stats
                                                {try.#Success stats}
                                                (<method> stats)
                                                
                                                {try.#Failure _}
                                                false))))]

                                     [file?      Stats::isFile]
                                     [directory? Stats::isDirectory]
                                     ))

                               (def (make_directory path)
                                 (do async.monad
                                   [outcome (with_async write! (Try Any)
                                              (Fs::access path
                                                          (|> node_fs Fs::constants FsConstants::F_OK)
                                                          (..any_callback write!)
                                                          node_fs))]
                                   (when outcome
                                     {try.#Success _}
                                     (in (exception.except ..cannot_make_directory [path]))
                                     
                                     {try.#Failure _}
                                     (with_async write! (Try Any)
                                       (Fs::mkdir path (..any_callback write!) node_fs)))))

                               (,, (with_template [<name> <method>]
                                     [(def (<name> path)
                                        (do [! (try.with async.monad)]
                                          [subs (with_async write! (Try (Array ffi.String))
                                                  (Fs::readdir path (..value_callback write!) node_fs))]
                                          (|> subs
                                              (array.list {.#None})
                                              (list#each (|>> (format path js_separator)))
                                              (monad.each ! (function (_ sub)
                                                              (of ! each (|>> <method> [sub])
                                                                  (with_async write! (Try Stats)
                                                                    (Fs::stat sub (..value_callback write!) node_fs)))))
                                              (of ! each (|>> (list.only product.right)
                                                              (list#each product.left))))))]

                                     [directory_files Stats::isFile]
                                     [sub_directories Stats::isDirectory]
                                     ))

                               (def (file_size path)
                                 (do (try.with async.monad)
                                   [stats (with_async write! (Try Stats)
                                            (Fs::stat path (..value_callback write!)
                                                      node_fs))]
                                   (in (|> stats
                                           Stats::size
                                           f.nat))))

                               (def (last_modified path)
                                 (do (try.with async.monad)
                                   [stats (with_async write! (Try Stats)
                                            (Fs::stat path (..value_callback write!)
                                                      node_fs))]
                                   (in (|> stats
                                           Stats::mtimeMs
                                           f.int
                                           duration.of_millis
                                           instant.absolute))))

                               (def (can_execute? path)
                                 (of async.monad each
                                     (|>> (pipe.when
                                            {try.#Success _}
                                            true

                                            {try.#Failure _}
                                            false)
                                          {try.#Success})
                                     (with_async write! (Try Any)
                                       (Fs::access path
                                                   (|> node_fs Fs::constants FsConstants::X_OK)
                                                   (..any_callback write!)
                                                   node_fs))))

                               (def (read path)
                                 (with_async write! (Try Binary)
                                   (Fs::readFile path (..value_callback write!)
                                                 node_fs)))

                               (def (delete path)
                                 (do (try.with async.monad)
                                   [stats (with_async write! (Try Stats)
                                            (Fs::stat path (..value_callback write!) node_fs))]
                                   (with_async write! (Try Any)
                                     (if (Stats::isFile stats)
                                       (Fs::unlink path (..any_callback write!) node_fs)
                                       (Fs::rmdir path (..any_callback write!) node_fs)))))

                               (def (modify path time_stamp)
                                 (with_async write! (Try Any)
                                   (let [when (|> time_stamp instant.relative duration.millis i.frac)]
                                     (Fs::utimes path when when (..any_callback write!)
                                                 node_fs))))

                               (,, (with_template [<name> <method>]
                                     [(def (<name> path data)
                                        (with_async write! (Try Any)
                                          (<method> path (Buffer::from data) (..any_callback write!)
                                                    node_fs)))]

                                     [write  Fs::writeFile]
                                     [append Fs::appendFile]
                                     ))

                               (def (move origin destination)
                                 (with_async write! (Try Any)
                                   (Fs::rename origin destination (..any_callback write!)
                                               node_fs))))))))))

       @.python
       (these (type (Tuple/2 left right)
                (Nominal "python_tuple[2]" [left right]))

              (ffi.import PyFile
                "[1]::[0]"
                (read [] "io" "try" Binary)
                (write [Binary] "io" "try" "?" Any)
                (close [] "io" "try" "?" Any))

              (ffi.import (open [ffi.String ffi.String] "io" "try" PyFile))
              (ffi.import (tuple [[ffi.Integer ffi.Integer]] (Tuple/2 ffi.Integer ffi.Integer)))

              (ffi.import os
                "[1]::[0]"
                ("static" X_OK ffi.Integer)

                ("static" mkdir [ffi.String] "io" "try" "?" Any)
                ("static" access [ffi.String ffi.Integer] "io" "try" ffi.Boolean)
                ("static" remove [ffi.String] "io" "try" "?" Any)
                ("static" rmdir [ffi.String] "io" "try" "?" Any)
                ("static" rename [ffi.String ffi.String] "io" "try" "?" Any)
                ("static" utime [ffi.String (Tuple/2 ffi.Integer ffi.Integer)] "io" "try" "?" Any)
                ("static" listdir [ffi.String] "io" "try" (Array ffi.String)))

              (ffi.import os/path
                "[1]::[0]"
                ("static" isfile [ffi.String] "io" "try" ffi.Boolean)
                ("static" isdir [ffi.String] "io" "try" ffi.Boolean)
                ("static" sep ffi.String)
                ("static" getsize [ffi.String] "io" "try" ffi.Integer)
                ("static" getmtime [ffi.String] "io" "try" ffi.Float))

              (def python_separator
                (io.run! (os/path::sep)))

              (`` (def .public default
                    (System IO)
                    (implementation
                     (def separator
                       ..python_separator)

                     (,, (with_template [<name> <method>]
                           [(def <name>
                              (|>> <method>
                                   (io#each (|>> (try.else false)))))]

                           [file?      os/path::isfile]
                           [directory? os/path::isdir]
                           ))

                     (def make_directory
                       os::mkdir)

                     (,, (with_template [<name> <method>]
                           [(def (<name> path)
                              (let [! (try.with io.monad)]
                                (|> path
                                    os::listdir
                                    (of ! each (|>> (array.list {.#None})
                                                    (list#each (|>> (format path ..python_separator)))
                                                    (monad.each ! (function (_ sub)
                                                                    (of ! each (|>> [sub]) (<method> sub))))
                                                    (of ! each (|>> (list.only product.right)
                                                                    (list#each product.left)))))
                                    (of ! conjoint))))]

                           [directory_files os/path::isfile]
                           [sub_directories os/path::isdir]
                           ))

                     (def file_size
                       (|>> os/path::getsize
                            (of (try.with io.monad) each (|>> .nat))))

                     (def last_modified
                       (|>> os/path::getmtime
                            (of (try.with io.monad) each (|>> f.int
                                                              (i.* +1,000)
                                                              duration.of_millis
                                                              instant.absolute))))

                     (def (can_execute? path)
                       (do io.monad
                         [permission (os::X_OK)]
                         (os::access path permission)))

                     (def (read path)
                       (do (try.with io.monad)
                         [file (..open path "rb")
                          data (PyFile::read file)
                          _ (PyFile::close file)]
                         (in data)))

                     (def (delete path)
                       (do (try.with io.monad)
                         [? (os/path::isfile path)]
                         (if ?
                           (os::remove path)
                           (os::rmdir path))))

                     (def (modify path time_stamp)
                       (let [when (|> time_stamp instant.relative duration.millis (i./ +1,000))]
                         (os::utime path (..tuple [when when]))))

                     (,, (with_template [<name> <mode>]
                           [(def (<name> path data)
                              (do (try.with io.monad)
                                [file (..open path <mode>)
                                 _ (PyFile::write data file)]
                                (PyFile::close file)))]
                           
                           [write  "w+b"]
                           [append "ab"]
                           ))

                     (def (move origin destination)
                       (os::rename origin destination))
                     ))))

       @.ruby
       (these (ffi.import Time
                "[1]::[0]"
                ("static" at [Frac] Time)
                (to_f [] Frac))

              (ffi.import Stat
                "[1]::[0]"
                (executable? [] Bit)
                (size Int)
                (mtime [] Time))

              (ffi.import File "as" RubyFile
                "[1]::[0]"
                ("static" SEPARATOR ffi.String)
                ("static" open [Path ffi.String] "io" "try" RubyFile)
                ("static" stat [Path] "io" "try" Stat)
                ("static" delete [Path] "io" "try" Int)
                ("static" file? [Path] "io" "try" Bit)
                ("static" directory? [Path] "io" "try" Bit)
                ("static" utime [Time Time Path] "io" "try" Int)

                (read [] "io" "try" Binary)
                (write [Binary] "io" "try" Int)
                (flush [] "io" "try" "?" Any)
                (close [] "io" "try" "?" Any))

              (ffi.import Dir
                "[1]::[0]"
                ("static" open [Path] "io" "try" Dir)
                
                (children [] "io" "try" (Array Path))
                (close [] "io" "try" "?" Any))

              (ffi.import "fileutils" FileUtils
                "[1]::[0]"
                ("static" move [Path Path] "io" "try" "?" Any)
                ("static" rmdir [Path] "io" "try" "?" Any)
                ("static" mkdir [Path] "io" "try" "?" Any))

              (def ruby_separator
                Text
                (io.run! (..RubyFile::SEPARATOR)))

              (`` (def .public default
                    (System IO)
                    (implementation
                     (def separator
                       ..ruby_separator)

                     (,, (with_template [<name> <test>]
                           [(def <name>
                              (|>> <test>
                                   (io#each (|>> (try.else false)))))]

                           [file? RubyFile::file?]
                           [directory? RubyFile::directory?]
                           ))
                     
                     (def make_directory
                       FileUtils::mkdir)

                     (,, (with_template [<name> <test>]
                           [(def (<name> path)
                              (do [! (try.with io.monad)]
                                [self (Dir::open path)
                                 children (Dir::children self)
                                 output (loop (again [input (|> children
                                                                (array.list {.#None})
                                                                (list#each (|>> (format path ..ruby_separator))))
                                                      output (is (List ..Path)
                                                                 (list))])
                                          (when input
                                            {.#End}
                                            (in output)

                                            {.#Item head tail}
                                            (do !
                                              [verdict (<test> head)]
                                              (again tail (if verdict
                                                            {.#Item head output}
                                                            output)))))
                                 _ (Dir::close self)]
                                (in output)))]

                           [directory_files RubyFile::file?]
                           [sub_directories RubyFile::directory?]
                           ))

                     (,, (with_template [<name> <pipeline>]
                           [(def <name>
                              (let [! (try.with io.monad)]
                                (|>> RubyFile::stat
                                     (of ! each (`` (|>> (,, (template.spliced <pipeline>))))))))]

                           [file_size [Stat::size .nat]]
                           [last_modified [Stat::mtime
                                           Time::to_f
                                           (f.* +1,000.0)
                                           f.int
                                           duration.of_millis
                                           instant.absolute]]
                           [can_execute? [Stat::executable?]]
                           ))

                     (def (read path)
                       (do (try.with io.monad)
                         [file (RubyFile::open path "rb")
                          data (RubyFile::read file)
                          _ (RubyFile::close file)]
                         (in data)))

                     (def (delete path)
                       (do (try.with io.monad)
                         [? (RubyFile::file? path)]
                         (if ?
                           (RubyFile::delete path)
                           (FileUtils::rmdir path))))

                     (def (modify path moment)
                       (let [moment (|> moment
                                        instant.relative
                                        duration.millis
                                        i.frac
                                        (f./ +1,000.0)
                                        Time::at)]
                         (RubyFile::utime moment moment path)))

                     (,, (with_template [<mode> <name>]
                           [(def (<name> path data)
                              (do [! (try.with io.monad)]
                                [file (RubyFile::open path <mode>)
                                 data (RubyFile::write data file)
                                 _ (RubyFile::flush file)
                                 _ (RubyFile::close file)]
                                (in [])))]
                           
                           ["wb" write]
                           ["ab" append]
                           ))

                     (def (move origin destination)
                       (do (try.with io.monad)
                         [_ (FileUtils::move origin destination)]
                         (in [])))
                     ))))

       ... @.php
       ... (these (ffi.import (FILE_APPEND Int))
       ...        ... https://www.php.net/manual/en/dir.constants.php
       ...        (ffi.import (DIRECTORY_SEPARATOR ffi.String))
       ...        ... https://www.php.net/manual/en/function.pack.php
       ...        ... https://www.php.net/manual/en/function.unpack.php
       ...        (ffi.import (unpack [ffi.String ffi.String] Binary))
       ...        ... https://www.php.net/manual/en/ref.filesystem.php
       ...        ... https://www.php.net/manual/en/function.file-get-contents.php
       ...        (ffi.import (file_get_contents [Path] "io" "try" ffi.String))
       ...        ... https://www.php.net/manual/en/function.file-put-contents.php
       ...        (ffi.import (file_put_contents [Path ffi.String Int] "io" "try" ffi.Integer))
       ...        (ffi.import (filemtime [Path] "io" "try" ffi.Integer))
       ...        (ffi.import (filesize [Path] "io" "try" ffi.Integer))
       ...        (ffi.import (is_executable [Path] "io" "try" ffi.Boolean))
       ...        (ffi.import (touch [Path ffi.Integer] "io" "try" ffi.Boolean))
       ...        (ffi.import (rename [Path Path] "io" "try" ffi.Boolean))
       ...        (ffi.import (unlink [Path] "io" "try" ffi.Boolean))

       ...        ... https://www.php.net/manual/en/function.rmdir.php
       ...        (ffi.import (rmdir [Path] "io" "try" ffi.Boolean))
       ...        ... https://www.php.net/manual/en/function.scandir.php
       ...        (ffi.import (scandir [Path] "io" "try" (Array Path)))
       ...        ... https://www.php.net/manual/en/function.is-file.php
       ...        (ffi.import (is_file [Path] "io" "try" ffi.Boolean))
       ...        ... https://www.php.net/manual/en/function.is-dir.php
       ...        (ffi.import (is_dir [Path] "io" "try" ffi.Boolean))
       ...        ... https://www.php.net/manual/en/function.mkdir.php
       ...        (ffi.import (mkdir [Path] "io" "try" ffi.Boolean))

       ...        (def byte_array_format "C*")
       ...        (def default_separator (..DIRECTORY_SEPARATOR))

       ...        (with_template [<name>]
       ...          [(exception.def .public (<name> file)
       ...             (Exception Path)
       ...             (exception.report
       ...              (list ["Path" file])))]
       
       ...          [cannot_write_to_file]
       ...          )

       ...        (`` (def (file path)
       ...              (-> Path (File IO))
       ...              (implementation
       ...               (,, (with_template [<name> <mode>]
       ...                     [(def (<name> data)
       ...                        (do [! (try.with io.monad)]
       ...                          [outcome (..file_put_contents [path ("php pack" ..byte_array_format data) <mode>])]
       ...                          (if (bit#= false (as Bit outcome))
       ...                            (of io.monad in (exception.except ..cannot_write_to_file [path]))
       ...                            (in []))))]
       
       ...                     [over_write  +0]
       ...                     [append      (..FILE_APPEND)]
       ...                     ))

       ...               (def (content _)
       ...                 (do [! (try.with io.monad)]
       ...                   [data (..file_get_contents [path])]
       ...                   (if (bit#= false (as Bit data))
       ...                     (of io.monad in (exception.except ..cannot_find_file [path]))
       ...                     (in (..unpack [..byte_array_format data])))))

       ...               (def path
       ...                 path)

       ...               (,, (with_template [<name> <ffi> <pipeline>]
       ...                     [(def (<name> _)
       ...                        (do [! (try.with io.monad)]
       ...                          [value (<ffi> [path])]
       ...                          (if (bit#= false (as Bit value))
       ...                            (of io.monad in (exception.except ..cannot_find_file [path]))
       ...                            (in (`` (|> value (,, (template.spliced <pipeline>))))))))]

       ...                     [size ..filesize [.nat]]
       ...                     [last_modified ..filemtime [(i.* +1,000) duration.of_millis instant.absolute]]
       ...                     ))

       ...               (def (can_execute? _)
       ...                 (..is_executable [path]))

       ...               (def (modify moment)
       ...                 (do [! (try.with io.monad)]
       ...                   [verdict (..touch [path (|> moment instant.relative duration.millis (i./ +1,000))])]
       ...                   (if (bit#= false (as Bit verdict))
       ...                     (of io.monad in (exception.except ..cannot_find_file [path]))
       ...                     (in []))))

       ...               (def (move destination)
       ...                 (do [! (try.with io.monad)]
       ...                   [verdict (..rename [path destination])]
       ...                   (if (bit#= false (as Bit verdict))
       ...                     (of io.monad in (exception.except ..cannot_find_file [path]))
       ...                     (in (file destination)))))

       ...               (def (delete _)
       ...                 (do (try.with io.monad)
       ...                   [verdict (..unlink [path])]
       ...                   (if (bit#= false (as Bit verdict))
       ...                     (of io.monad in (exception.except ..cannot_find_file [path]))
       ...                     (in []))))
       ...               )))

       ...        (`` (def (directory path)
       ...              (-> Path (Directory IO))
       ...              (implementation
       ...               (def scope
       ...                 path)

       ...               (,, (with_template [<name> <test> <constructor> <capability>]
       ...                     [(def (<name> _)
       ...                        (do [! (try.with io.monad)]
       ...                          [children (..scandir [path])]
       ...                          (loop (again [input (|> children
       ...                                                  (array.list {.#None})
       ...                                                  (list.only (function (_ child)
       ...                                                               (not (or (text#= "." child)
       ...                                                                        (text#= ".." child))))))
       ...                                        output (is (List (<capability> IO))
       ...                                                   (list))])
       ...                            (when input
       ...                              {.#End}
       ...                              (in output)

       ...                              {.#Item head tail}
       ...                              (do !
       ...                                [verdict (<test> head)]
       ...                                (if verdict
       ...                                  (again tail {.#Item (<constructor> head) output})
       ...                                  (again tail output)))))))]

       ...                     [files ..is_file ..file File]
       ...                     [directories ..is_dir directory Directory]
       ...                     ))

       ...               (def (discard _)
       ...                 (do (try.with io.monad)
       ...                   [verdict (..rmdir [path])]
       ...                   (if (bit#= false (as Bit verdict))
       ...                     (of io.monad in (exception.except ..cannot_find_directory [path]))
       ...                     (in []))))
       ...               )))

       ...        (`` (def .public default
       ...              (System IO)
       ...              (implementation
       ...               (,, (with_template [<name> <test> <constructor> <exception>]
       ...                     [(def (<name> path)
       ...                        (do [! (try.with io.monad)]
       ...                          [verdict (<test> path)]
       ...                          (of io.monad in
       ...                              (if verdict
       ...                                {try.#Success (<constructor> path)}
       ...                                (exception.except <exception> [path])))))]

       ...                     [file ..is_file ..file ..cannot_find_file]
       ...                     [directory ..is_dir ..directory ..cannot_find_directory]
       ...                     ))

       ...               (def (make_file path)
       ...                 (do [! (try.with io.monad)]
       ...                   [verdict (..touch [path (|> instant.now io.run! instant.relative duration.millis (i./ +1,000))])]
       ...                   (of io.monad in
       ...                       (if verdict
       ...                         {try.#Success (..file path)}
       ...                         (exception.except ..cannot_make_file [path])))))
       
       ...               (def (make_directory path)
       ...                 (do [! (try.with io.monad)]
       ...                   [verdict (..mkdir path)]
       ...                   (of io.monad in
       ...                       (if verdict
       ...                         {try.#Success (..directory path)}
       ...                         (exception.except ..cannot_make_directory [path])))))

       ...               (def separator
       ...                 ..default_separator)
       ...               )))
       ...        )
       
       (these)))

(def .public (exists? monad fs path)
  (All (_ !)
    (-> (Monad !) (System !) Path
        (! Bit)))
  (do monad
    [verdict (of fs file? path)]
    (if verdict
      (in verdict)
      (of fs directory? path))))

(type Mock_File
  (Record
   [#mock_last_modified Instant
    #mock_can_execute Bit
    #mock_content Binary]))

(type Mock
  (Rec Mock
    (Dictionary Text (Either Mock_File Mock))))

(def empty_mock
  Mock
  (dictionary.empty text.hash))

(def (retrieve_mock_file! separator path mock)
  (-> Text Path Mock
      (Try [Text Mock_File]))
  (loop (again [directory mock
                trail (text.all_split_by separator path)])
    (when trail
      {.#Item head tail}
      (when (dictionary.value head directory)
        {.#None}
        (exception.except ..cannot_find_file [path])
        
        {.#Some node}
        (when [node tail]
          [{.#Left file} {.#End}]
          {try.#Success [head file]}

          [{.#Right sub_directory} {.#Item _}]
          (again sub_directory tail)

          _
          (exception.except ..cannot_find_file [path])))

      {.#End}
      (exception.except ..cannot_find_file [path]))))

(def (update_mock_file! / path now content mock)
  (-> Text Path Instant Binary Mock
      (Try Mock))
  (loop (again [directory mock
                trail (text.all_split_by / path)])
    (when trail
      {.#Item head tail}
      (when (dictionary.value head directory)
        {.#None}
        (when tail
          {.#End}
          {try.#Success (dictionary.has head
                                        {.#Left [#mock_last_modified now
                                                 #mock_can_execute false
                                                 #mock_content content]}
                                        directory)}
          
          {.#Item _}
          (exception.except ..cannot_find_file [path]))
        
        {.#Some node}
        (when [node tail]
          [{.#Left file} {.#End}]
          {try.#Success (dictionary.has head
                                        {.#Left (|> file
                                                    (has #mock_last_modified now)
                                                    (has #mock_content content))}
                                        directory)}

          [{.#Right sub_directory} {.#Item _}]
          (do try.monad
            [sub_directory (again sub_directory tail)]
            (in (dictionary.has head {.#Right sub_directory} directory)))

          _
          (exception.except ..cannot_find_file [path])))

      {.#End}
      (exception.except ..cannot_find_file [path]))))

(def (delete_mock_node! / path mock)
  (-> Text Path Mock
      (Try Mock))
  (loop (again [directory mock
                trail (text.all_split_by / path)])
    (when trail
      {.#Item head tail}
      (when (dictionary.value head directory)
        {.#None}
        (exception.except ..cannot_delete [path])
        
        {.#Some node}
        (when tail
          {.#End}
          (when node
            {.#Left file}
            {try.#Success (dictionary.lacks head directory)}

            {.#Right sub_directory}
            (if (dictionary.empty? sub_directory)
              {try.#Success (dictionary.lacks head directory)}
              (exception.except ..cannot_delete [path])))
          
          {.#Item _}
          (when node
            {.#Left file}
            (exception.except ..cannot_delete [path])

            {.#Right sub_directory}
            (do try.monad
              [sub_directory' (again sub_directory tail)]
              (in (dictionary.has head {.#Right sub_directory'} directory))))))

      {.#End}
      (exception.except ..cannot_delete [path]))))

(def (attempt! transform var)
  (All (_ of)
    (-> (-> of (Try of)) (Var of)
        (STM (Try Any))))
  (do [! stm.monad]
    [|var| (stm.read var)]
    (when (transform |var|)
      {try.#Success |var|}
      (do !
        [_ (stm.write |var| var)]
        (in {try.#Success []}))
      
      {try.#Failure error}
      (in {try.#Failure error}))))

(def (make_mock_directory! / path mock)
  (-> Text Path Mock
      (Try Mock))
  (loop (again [directory mock
                trail (text.all_split_by / path)])
    (when trail
      {.#Item head tail}
      (when (dictionary.value head directory)
        {.#None}
        (when tail
          {.#End}
          {try.#Success (dictionary.has head {.#Right ..empty_mock} directory)}

          {.#Item _}
          (exception.except ..cannot_make_directory [path]))
        
        {.#Some node}
        (when [node tail]
          [{.#Right sub_directory} {.#Item _}]
          (do try.monad
            [sub_directory (again sub_directory tail)]
            (in (dictionary.has head {.#Right sub_directory} directory)))

          _
          (exception.except ..cannot_make_directory [path])))

      {.#End}
      (exception.except ..cannot_make_directory [path]))))

(def (retrieve_mock_directory! / path mock)
  (-> Text Path Mock
      (Try Mock))
  (loop (again [directory mock
                trail (text.all_split_by / path)])
    (when trail
      {.#End}
      {try.#Success directory}

      {.#Item head tail}
      (when (dictionary.value head directory)
        {.#None}
        (exception.except ..cannot_find_directory [path])
        
        {.#Some node}
        (when node
          {.#Left _}
          (exception.except ..cannot_find_directory [path])

          {.#Right sub_directory}
          (when tail
            {.#End}
            {try.#Success sub_directory}

            {.#Item _}
            (again sub_directory tail)))))))

(def .public (mock separator)
  (-> Text
      (System Async))
  (let [store (stm.var ..empty_mock)]
    (`` (implementation
         (def separator
           separator)

         (,, (with_template [<method> <retrieve>]
               [(def (<method> path)
                  (|> store
                      stm.read
                      (of stm.monad each
                          (|>> (<retrieve> separator path)
                               (try#each (function.constant true))
                               (try.else false)))
                      stm.commit!))]
               
               [file? ..retrieve_mock_file!]
               [directory? ..retrieve_mock_directory!]))

         (def (make_directory path)
           (stm.commit!
            (do [! stm.monad]
              [|store| (stm.read store)]
              (when (..make_mock_directory! separator path |store|)
                {try.#Success |store|}
                (do !
                  [_ (stm.write |store| store)]
                  (in {try.#Success []}))
                
                {try.#Failure error}
                (in {try.#Failure error})))))

         (,, (with_template [<method> <tag>]
               [(def (<method> path)
                  (stm.commit!
                   (do stm.monad
                     [|store| (stm.read store)]
                     (in (do try.monad
                           [directory (..retrieve_mock_directory! separator path |store|)]
                           (in (|> directory
                                   dictionary.entries
                                   (list.all (function (_ [node_name node])
                                               (when node
                                                 {<tag> _}
                                                 {.#Some (format path separator node_name)}
                                                 
                                                 _
                                                 {.#None}))))))))))]

               [directory_files .#Left]
               [sub_directories .#Right]
               ))

         (def (file_size path)
           (stm.commit!
            (do stm.monad
              [|store| (stm.read store)]
              (in (|> |store|
                      (..retrieve_mock_file! separator path)
                      (try#each (|>> product.right
                                     (the #mock_content)
                                     binary.size)))))))

         (def (last_modified path)
           (stm.commit!
            (do stm.monad
              [|store| (stm.read store)]
              (in (|> |store|
                      (..retrieve_mock_file! separator path)
                      (try#each (|>> product.right
                                     (the #mock_last_modified))))))))

         (def (can_execute? path)
           (stm.commit!
            (do stm.monad
              [|store| (stm.read store)]
              (in (|> |store|
                      (..retrieve_mock_file! separator path)
                      (try#each (|>> product.right
                                     (the #mock_can_execute))))))))

         (def (read path)
           (stm.commit!
            (do stm.monad
              [|store| (stm.read store)]
              (in (|> |store|
                      (..retrieve_mock_file! separator path)
                      (try#each (|>> product.right
                                     (the #mock_content))))))))

         (def (delete path)
           (stm.commit!
            (..attempt! (..delete_mock_node! separator path) store)))

         (def (modify path now)
           (stm.commit!
            (..attempt! (function (_ |store|)
                          (do try.monad
                            [[name file] (..retrieve_mock_file! separator path |store|)]
                            (..update_mock_file! separator path now (the #mock_content file) |store|)))
                        store)))

         (def (write path content)
           (do async.monad
             [now (async.future instant.now)]
             (stm.commit!
              (..attempt! (..update_mock_file! separator path now content) store))))

         (def (append path content)
           (do async.monad
             [now (async.future instant.now)]
             (stm.commit!
              (..attempt! (function (_ |store|)
                            (do try.monad
                              [[name file] (..retrieve_mock_file! separator path |store|)]
                              (..update_mock_file! separator path now
                                                   (of binary.monoid composite
                                                       (the #mock_content file)
                                                       content)
                                                   |store|)))
                          store))))

         (def (move origin destination)
           (stm.commit!
            (do [! stm.monad]
              [|store| (stm.read store)]
              (when (do try.monad
                      [[name file] (..retrieve_mock_file! separator origin |store|)
                       |store| (..delete_mock_node! separator origin |store|)]
                      (..update_mock_file! separator destination (the #mock_last_modified file) (the #mock_content file) |store|))
                {try.#Success |store|}
                (do !
                  [_ (stm.write |store| store)]
                  (in {try.#Success []}))
                
                {try.#Failure error}
                (in {try.#Failure error})))))
         ))))

(def (check_or_make_directory monad fs path)
  (All (_ !)
    (-> (Monad !) (System !) Path
        (! (Try Any))))
  (do monad
    [? (of fs directory? path)]
    (if ?
      (in {try.#Success []})
      (of fs make_directory path))))

(def .public (make_directories monad fs path)
  (All (_ !)
    (-> (Monad !) (System !) Path
        (! (Try Any))))
  (let [rooted? (text.starts_with? (of fs separator) path)
        segments (text.all_split_by (of fs separator) path)]
    (when (if rooted?
            (list.after 1 segments)
            segments)
      {.#End}
      (of monad in (exception.except ..cannot_make_directory [path]))

      {.#Item head tail}
      (when head
        "" (of monad in (exception.except ..cannot_make_directory [path]))
        _ (loop (again [current (if rooted?
                                  (format (of fs separator) head)
                                  head)
                        next tail])
            (do monad
              [? (..check_or_make_directory monad fs current)]
              (when ?
                {try.#Success _}
                (when next
                  {.#End}
                  (in {try.#Success []})
                  
                  {.#Item head tail}
                  (again (format current (of fs separator) head)
                         tail))
                
                {try.#Failure error}
                (in {try.#Failure error}))))))))

(def .public (make_file monad fs content path)
  (All (_ !)
    (-> (Monad !) (System !) Binary Path
        (! (Try Any))))
  (do monad
    [? (of fs file? path)]
    (if ?
      (in (exception.except ..cannot_make_file [path]))
      (of fs write path content))))

(def .public (copy monad fs from to)
  (All (_ !)
    (-> (Monad !) (System !) Path Path
        (! (Try Any))))
  (do (try.with monad)
    [data (of fs read from)]
    (of fs write to data)))