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
|
implement Size, Fsmodule;
include "sys.m";
sys: Sys;
include "draw.m";
include "sh.m";
include "alphabet/reports.m";
reports: Reports;
Report: import reports;
include "alphabet/fs.m";
fs: Fs;
Value: import fs;
Fschan, Fsdata, Entrychan, Entry,
Gatechan, Gatequery, Nilentry, Option,
Next, Down, Skip, Quit: import Fs;
Size: module {};
types(): string
{
return "ft";
}
badmod(p: string)
{
sys->fprint(sys->fildes(2), "fs: size: cannot load %s: %r\n", p);
raise "fail:bad module";
}
init()
{
sys = load Sys Sys->PATH;
reports = load Reports Reports->PATH;
if(reports == nil)
badmod(Reports->PATH);
fs = load Fs Fs->PATH;
if(fs == nil)
badmod(Fs->PATH);
fs->init();
}
run(nil: ref Draw->Context, report: ref Report,
nil: list of Option, args: list of ref Value): ref Value
{
f := chan of ref Sys->FD;
spawn sizeproc(f, (hd args).t().i, report.start("size"));
return ref Value.Vf(f);
}
sizeproc(f: chan of ref Sys->FD, c: Entrychan, errorc: chan of string)
{
f <-= nil;
if((fd := <-f) == nil){
c.sync <-= 0;
exit;
}
c.sync <-= 1;
size := big 0;
while(((d, nil, nil) := <-c.c).t0 != nil)
size += d.length;
sys->fprint(fd, "%bd\n", size);
sys->fprint(fd, "");
errorc <-= nil;
}
|