-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgls.c
254 lines (235 loc) · 5.16 KB
/
gls.c
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
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <thread.h>
#include <mouse.h>
#include <keyboard.h>
#include "fns.h"
#include "dat.h"
/*
DESCRIPTION
gls - graphical file browser
NOTES
TODO
everything
*/
void
mousethread(void *v)
{
Mousectl *mctl = v;
Mouse mouse;
threadsetname("mouse thread");
Loop:
recv(mctl->c, &mouse);
m = &mouse;
if(m == nil)
sysfatal("mthread mouse");
if(mctl == nil)
sysfatal("mthread mctl");
if(m->buttons == 1)
select();
goto Loop;
}
void
newdata(void)
{
if(dir != nil)
free(dir);
if(fd > 0)
close(fd);
dir = nil;
fd = -1;
// print("opening %s\n", workdir);
fd = open(workdir, OREAD);
if(fd < 0)
sysfatal("open: %r");
nfile = dirreadall(fd, &dir);
if(nfile < 0)
sysfatal("dirreadall: %r");
qsort(dir, nfile, sizeof *dir, (Cmp*)dirstrlencmp);
maxwid = stringwidth(font, dir[0].name) + stringwidth(font, " ");
if(dir[0].mode & DMDIR)
maxwid += stringwidth(font, "/");
ncol = Dx(screen->r)/maxwid;
nline = 0;
strpt = screen->r.min;
qsort(dir, nfile, sizeof *dir, (Cmp*)dirnamecmp);
for(i = nfile; i > ncol; i -= ncol)
nline++;
if(i > 0)
nline++;
redraw();
}
void
resizethread(void *v)
{
Mousectl *mctl = v;
threadsetname("resizethread");
Loop:
recvul(mctl->resizec);
if(getwindow(display, Refnone) < 0)
threadexitsall("getwindow: %r");
sendul(drawchan, 2);
goto Loop;
}
void
kbdthread(void *v)
{
Keyboardctl *kbd = v;
Rune r, rr;
int nval;
threadsetname("kbdthread");
Loop:
recv(kctl->c, &r);
switch(r){
case Kdel: case Kesc: case 'q':
threadexitsall("quit");
break;
}
goto Loop;
}
void
drawthread(void *v)
{
Image *i;
ulong ul;
flushimage(display, 1);
Loop:
ul = recvul(drawchan);
switch(ul){
case 2:
redraw();
}
flushimage(display, 1);
ul = 0;
goto Loop;
}
void
redraw(void)
{
draw(screen, screen->r, display->white, nil, ZP);
strpt = screen->r.min;
for(i = 1; i < nfile+1; ++i){
drawp = strpt;
drawp.x += maxwid;
drawp.y += font->height;
if(dir[i-1].mode & DMDIR){
draw(screen, Rpt(strpt,drawp), yellow, nil, ZP);
drawp = string(screen, strpt, display->black, strpt, font, dir[i-1].name);
string(screen, drawp, display->black, ZP, font, "/");
}
else if(dir[i-1].mode & 0100){
draw(screen, Rpt(strpt,drawp), green, nil, ZP);
string(screen, strpt, display->black, strpt, font, dir[i-1].name);
}
else{
string(screen, strpt, display->black, strpt, font, dir[i-1].name);
}
strpt.y += font->height;
if(i % nline == 0){
strpt.y = screen->r.min.y;
strpt.x += maxwid;
}
}
}
int
dirstrlencmp(Dir *a, Dir *b)
{
return -(strlen(a->name)-strlen(b->name));
}
int
dirnamecmp(Dir *a, Dir *b)
{
return strcmp(a->name, b->name);
}
void
drawbottom(char *s)
{
Point bottom;
if(s == nil){
drawbottom("nil");
return;
}
bottom.x = screen->r.min.x;
bottom.y = screen->r.max.y-font->height;
draw(screen, Rpt(bottom, screen->r.max), display->white, nil, ZP);
string(screen, bottom, display->black, bottom, font, s);
}
void
select(void)
{
int i, x, y, p;
Point min, max;
Rectangle sel;
for(y = screen->r.min.y; y + font->height < m->xy.y; y += font->height)
;
for(x = screen->r.min.x; x + maxwid < m->xy.x; x += maxwid)
;
min = Pt(x,y);
max = Pt(x+maxwid, y+font->height);
x = (x-screen->r.min.x)/maxwid;
y = (y-screen->r.min.y)/font->height;
p = nline*x+y;
sel = Rpt(min,max);
if(p >= nfile || y >= nline || x >= ncol){
drawbottom(smprint("out of boundaries sel=%R gridmax=%P", sel, gridmax));
goto Sendul;
}
draw(screen, sel, grey, nil, ZP);
string(screen, sel.min, display->black, sel.min, font, dir[p].name);
drawbottom(smprint("x=%d y=%d xy=%d dir[%d] sel=%R name=%s", x, y, x*y, p, sel, dir[p].name));
if(dir[p].mode & DMDIR){
snprint(workdir, sizeof workdir, "%s/%s", workdir, dir[p].name);
if(chdir(workdir) < 0)
sysfatal("chdir: %r");
newdata();
}
Sendul:
sendul(drawchan, 1);
}
void
threadmain(int argc, char *argv[])
{
getwd(workdir, sizeof workdir);
fd = open(workdir, OREAD);
if(fd < 0)
sysfatal("open: %r");
nfile = dirreadall(fd, &dir);
if(nfile < 0)
sysfatal("dirreadall: %r");
qsort(dir, nfile, sizeof *dir, (Cmp*)dirstrlencmp);
if(initdraw(0,0,"gls") < 0)
sysfatal("initdraw: %r");
maxwid = stringwidth(font, dir[0].name) + stringwidth(font, " ");
if(dir[0].mode & DMDIR)
maxwid += stringwidth(font, "/");
ncol = Dx(screen->r)/maxwid;
strpt = screen->r.min;
yellow = allocimagemix(display, DYellow, DWhite);
grey = allocimagemix(display, DBlack, DWhite);
red = allocimagemix(display, DRed, DWhite);
green = allocimagemix(display, DGreen, DWhite);
gridmax.x = screen->r.min.x + ncol * maxwid;
gridmax.y = screen->r.min.y + nline * font->height;
qsort(dir, nfile, sizeof *dir, (Cmp*)dirnamecmp);
mctl = initmouse("/dev/mouse", nil);
if(mctl == nil)
sysfatal("initmouse: %r");
kctl = initkeyboard("/dev/cons");
if(kctl == nil)
sysfatal("initmouse: %r");
for(i = nfile; i > ncol; i -= ncol)
nline++;
if(i > 0)
nline++;
if(yellow == nil)
sysfatal("yellow: nil");
drawchan = chancreate(sizeof(ulong), 0);
threadcreate(mousethread, mctl, 8192);
threadcreate(kbdthread, kctl, 8192);
threadcreate(resizethread, mctl, 8192);
threadcreate(drawthread, nil, 8192);
redraw();
threadexits("main");
sleep(100000);
}