forked from rjkroege/edwood
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
315 lines (287 loc) · 6.7 KB
/
util.go
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
package main
import (
"fmt"
"image"
"path/filepath"
"strings"
"sync"
"github.com/rjkroege/edwood/internal/file"
"github.com/rjkroege/edwood/internal/runes"
"github.com/rjkroege/edwood/internal/util"
)
var (
prevmouse image.Point
mousew *Window
)
func clearmouse() {
mousew = nil
}
func savemouse(w *Window) {
prevmouse = mouse.Point
mousew = w
}
func restoremouse(w *Window) bool {
defer func() { mousew = nil }()
if mousew != nil && mousew == w {
w.display.MoveTo(prevmouse)
return true
}
return false
}
func bytetorune(s []byte) []rune {
r, _, _ := util.Cvttorunes(s, len(s))
return r
}
// TODO(flux) The "correct" answer here is return unicode.IsNumber(c) || unicode.IsLetter(c)
func isalnum(c rune) bool {
// Hard to get absolutely right. Use what we know about ASCII
// and assume anything above the Latin control characters is
// potentially an alphanumeric.
if c <= ' ' {
return false
}
if 0x7F <= c && c <= 0xA0 {
return false
}
if strings.ContainsRune("!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", c) {
return false
}
return true
}
func errorwin1Name(dir string) string {
return filepath.Join(dir, "+Errors")
}
func errorwin1(dir string, incl []string) *Window {
r := errorwin1Name(dir)
w := lookfile(r)
if w == nil {
if len(row.col) == 0 {
if row.Add(nil, -1) == nil {
util.AcmeError("can't create column to make error window", nil)
}
}
w = row.col[len(row.col)-1].Add(nil, nil, -1)
w.filemenu = false
w.SetName(r)
xfidlog(w, "new")
}
for _, in := range incl {
w.AddIncl(in)
}
w.autoindent = *globalAutoIndent
return w
}
// make new window, if necessary; return with it locked
func errorwin(md *MntDir, owner int) *Window {
var w *Window
for {
if md == nil {
w = errorwin1("", nil)
} else {
w = errorwin1(md.dir, md.incl)
}
w.Lock(owner)
if w.col != nil {
break
}
// window was deleted too fast
w.Unlock()
}
return w
}
// Incoming window should be locked.
// It will be unlocked and returned window
// will be locked in its place.
func errorwinforwin(w *Window) *Window {
var (
owner int
incl []string
t *Text
)
t = &w.body
dir := t.DirName("")
incl = append(incl, w.incl...)
owner = w.owner
w.Unlock()
for {
w = errorwin1(dir, incl)
w.Lock(owner)
if w.col != nil {
break
}
// window deleted too fast
w.Unlock()
}
return w
}
// Heuristic city.
func makenewwindow(t *Text) *Window {
var (
c *Column
w, bigw, emptyw *Window
emptyb *Text
i, y, el int
)
switch {
case activecol != nil:
c = activecol
case seltext != nil && seltext.col != nil:
c = seltext.col
case t != nil && t.col != nil:
c = t.col
default:
if len(row.col) == 0 && row.Add(nil, -1) == nil {
util.AcmeError("can't make column", nil)
}
c = row.col[len(row.col)-1]
}
activecol = c
if t == nil || t.w == nil || len(c.w) == 0 {
return c.Add(nil, nil, -1)
}
// find biggest window and biggest blank spot
emptyw = c.w[0]
bigw = emptyw
for i = 1; i < len(c.w); i++ {
w = c.w[i]
// use >= to choose one near bottom of screen
if w.body.fr.GetFrameFillStatus().Maxlines >= bigw.body.fr.GetFrameFillStatus().Maxlines {
bigw = w
}
if w.body.fr.GetFrameFillStatus().Maxlines-w.body.fr.GetFrameFillStatus().Nlines >= emptyw.body.fr.GetFrameFillStatus().Maxlines-emptyw.body.fr.GetFrameFillStatus().Nlines {
emptyw = w
}
}
emptyb = &emptyw.body
el = emptyb.fr.GetFrameFillStatus().Maxlines - emptyb.fr.GetFrameFillStatus().Nlines
// if empty space is big, use it
if el > 15 || (el > 3 && el > (bigw.body.fr.GetFrameFillStatus().Maxlines-1)/2) {
y = emptyb.fr.Rect().Min.Y + emptyb.fr.GetFrameFillStatus().Nlines*fontget(tagfont, t.display).Height()
} else {
// if this window is in column and isn't much smaller, split it
if t.col == c && t.w.r.Dy() > 2*bigw.r.Dy()/3 {
bigw = t.w
}
y = (bigw.r.Min.Y + bigw.r.Max.Y) / 2
}
w = c.Add(nil, nil, y)
if w.body.fr.GetFrameFillStatus().Maxlines < 2 {
w.col.Grow(w, 1)
}
return w
}
type Warning struct {
md *MntDir
buf file.RuneArray
}
var warnings = []*Warning{}
var warningsMu sync.Mutex
func flushwarnings() {
var (
w *Window
t *Text
owner, nr, q0, n int
)
for _, warn := range warnings {
w = errorwin(warn.md, 'E')
t = &w.body
owner = w.owner
if owner == 0 {
w.owner = 'E'
}
w.Commit(t) // marks the backing text as dirty
// Most commands don't generate much output. For instance,
// Edit ,>cat goes through /dev/cons and is already in blocks
// because of the i/o system, but a few can. Edit ,p will
// put the entire result into a single hunk. So it's worth doing
// this in blocks (and putting the text in a buffer in the first
// place), to avoid a big memory footprint.
q0 = t.Nc()
r := make([]rune, RBUFSIZE)
// TODO(rjk): Figure out why Warning doesn't use an file.ObservableEditableBuffer.
for n = 0; n < warn.buf.Nc(); n += nr {
nr = warn.buf.Nc() - n
if nr > RBUFSIZE {
nr = RBUFSIZE
}
warn.buf.Read(n, r[:nr])
_, nr = t.BsInsert(t.Nc(), r[:nr], true)
}
t.Show(q0, t.Nc(), true)
t.w.SetTag()
t.ScrDraw(t.fr.GetFrameFillStatus().Nchars)
w.owner = owner
t.file.TreatAsClean()
w.Unlock()
// warn.buf.Close()
if warn.md != nil {
mnt.DecRef(warn.md) // IncRef in addwarningtext
}
}
warnings = warnings[0:0]
}
func warning(md *MntDir, s string, args ...interface{}) {
r := []rune(fmt.Sprintf(s, args...))
addwarningtext(md, r)
}
func warnError(md *MntDir, s string, args ...interface{}) error {
err := fmt.Errorf(s, args...)
addwarningtext(md, []rune(err.Error()+"\n"))
return err
}
func addwarningtext(md *MntDir, r []rune) {
warningsMu.Lock()
defer warningsMu.Unlock()
for _, warn := range warnings {
if warn.md == md {
warn.buf.Insert(warn.buf.Nc(), r)
return
}
}
warn := Warning{}
warn.md = md
if md != nil {
mnt.IncRef(md) // DecRef in flushwarnings
}
warn.buf.Insert(0, r)
warnings = append(warnings, &warn)
select {
case cwarn <- 0:
default:
}
}
const quoteChar = '\''
func needsQuote(s string) bool {
for i := 0; i < len(s); i++ {
c := s[i]
if c == quoteChar || c <= ' ' { // quote, blanks, or control characters
return true
}
}
return false
}
// Quote adds single quotes to s in the style of rc(1) if they are needed.
// The behaviour should be identical to Plan 9's quote(3).
func quote(s string) string {
if s == "" {
return "''"
}
if !needsQuote(s) {
return s
}
var b strings.Builder
b.Grow(10 + len(s)) // Enough room for few quotes
b.WriteByte(quoteChar)
for i := 0; i < len(s); i++ {
c := s[i]
if c == quoteChar {
b.WriteByte(quoteChar)
}
b.WriteByte(c)
}
b.WriteByte(quoteChar)
return b.String()
}
func skipbl(r []rune) []rune {
return runes.TrimLeft(r, " \t\n")
}