-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathload.go
294 lines (275 loc) · 6.33 KB
/
load.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
package main
import (
"fmt"
"os"
"path/filepath"
sysre "regexp"
"runtime"
"strings"
"github.com/aarzilli/yacco/buf"
"github.com/aarzilli/yacco/config"
"github.com/aarzilli/yacco/edit"
"github.com/aarzilli/yacco/regexp"
"github.com/aarzilli/yacco/util"
)
var debugLoad = false
type LoadRule struct {
ForDir bool
BufRe *sysre.Regexp
Re *regexp.Regex
Action string
PathPattern, Pattern string
}
var LoadRules []LoadRule
func LoadInit() {
LoadRules = []LoadRule{}
for _, rule := range config.LoadRules {
if (rule.Action[0] != 'L') && (rule.Action[0] != 'X') {
panic(fmt.Errorf("Actions must start with X or L in: %s", rule.Action))
}
var bufRe *sysre.Regexp = nil
if rule.BufRe != "/" {
bufRe = sysre.MustCompile(rule.BufRe)
} else {
bufRe = nil
}
LoadRules = append(LoadRules, LoadRule{ForDir: bufRe == nil, BufRe: bufRe, Re: regexp.Compile(rule.Re, true, false), Action: rule.Action, PathPattern: rule.BufRe, Pattern: rule.Re})
}
if config.StartupWidth == 0 {
config.StartupWidth = config.MainFontSize * 40
}
if config.StartupHeight == 0 {
config.StartupHeight = config.MainFontSize * 30
}
config.ScrollWidth = int(float64(config.MainFontSize) * 0.625)
config.ComplMaxX = config.MainFontSize * 60
config.ComplMaxY = config.MainFontSize * 60
}
func printStackTrace() {
for i := 1; ; i++ {
_, file, line, ok := runtime.Caller(i)
if !ok {
break
}
fmt.Printf(" %s:%d\n", file, line)
}
}
func Load(ec ExecContext, origin int, othered bool, loadStr []rune) {
defer func() {
if ierr := recover(); ierr != nil {
fmt.Printf("Error during Load: %v\n", ierr.(error).Error())
printStackTrace()
}
}()
//println("\nin load")
if ec.buf == nil {
return
}
for i, rule := range LoadRules {
path := filepath.Join(ec.buf.Dir, ec.buf.Name)
if rule.ForDir {
if !ec.buf.IsDir() {
continue
}
} else {
if !rule.BufRe.MatchString(path) {
continue
}
}
if debugLoad {
Warn(fmt.Sprintf("considering rule %d path=[%s] pattern=[%s] action=[%s]\n", i, rule.PathPattern, rule.Pattern, rule.Action))
}
var haystack regexp.Matchable = ec.buf
start := ec.fr.Sel.S
end := ec.fr.Sel.E
if loadStr != nil {
haystack = regexp.RuneArrayMatchable(loadStr)
start = 0
end = len(loadStr)
}
for {
matches := rule.Re.Match(haystack, start, end, +1)
//println("match:", matches, ec.fr.Sels[2].S, ec.fr.Sels[2].E)
if matches == nil {
break
}
s := matches[0]
e := matches[1]
//println("match:", s, e, origin)
ok := false
if origin < 0 {
ok = (s == ec.fr.Sel.S) && (e == ec.fr.Sel.E)
} else {
ok = (s <= origin) && (origin <= e)
}
if debugLoad && !ok {
Warn(fmt.Sprintf("\tmatch range %d,%d does not straddle origin = %d\n", s, e, origin))
}
if ok {
strmatches := []string{}
for i := 0; 2*i+1 < len(matches); i++ {
s := matches[2*i]
e := matches[2*i+1]
strmatches = append(strmatches, string(haystack.SelectionRunes(util.Sel{s, e})))
}
if debugLoad {
Warn(fmt.Sprintf("\tmatch range %d,%d %q\n", s, e, strmatches[0]))
}
//println("Match:", strmatches[0])
if rule.Exec(ec, strmatches, s, e, othered, loadStr == nil) {
if debugLoad {
Warn(fmt.Sprintf("\trule succeeded\n"))
}
return
} else {
if debugLoad {
Warn(fmt.Sprintf("\trule failed, abandoning rule\n"))
}
// abandon rule after the first match straddling the origin
break
}
}
start = s + 1
if start > origin {
break
}
}
}
}
func expandMatches(str string, matches []string) string {
out := []byte{}
sub := false
tolower := false
for i := range str {
if !sub {
if str[i] == '$' {
tolower = false
sub = true
} else {
out = append(out, str[i])
}
} else {
if str[i] == 'l' {
tolower = true
} else if (str[i] >= '0') && (str[i] <= '9') {
d := int(str[i] - '0')
if d >= len(matches) {
out = append(out, '$')
out = append(out, str[i])
} else {
if tolower {
out = append(out, strings.ToLower(matches[d])...)
} else {
out = append(out, matches[d]...)
}
}
sub = false
} else {
out = append(out, '$')
out = append(out, str[i])
sub = false
}
}
}
return string(out)
}
func (rule *LoadRule) Exec(ec ExecContext, matches []string, s, e int, othered, doselect bool) bool {
defer func() {
if ierr := recover(); ierr != nil {
fmt.Printf("Error during Load (exec): %v\n", ierr.(error).Error())
printStackTrace()
}
}()
action := rule.Action[1:]
switch rule.Action[0] {
case 'X':
expaction := expandMatches(action, matches)
if doselect {
ec.fr.Sel = util.Sel{s, e}
ec.fr.SelColor = 2
}
if othered {
newed := zeroxEd(ec.ed)
ec2 := editorExecContext(newed)
if ec2 != nil {
ec = *ec2
} else {
fmt.Fprintf(os.Stderr, "could not find new editor\n")
}
}
Exec(ec, expaction)
return true
case 'L':
v := strings.SplitN(action, ":", 2)
name := expandMatches(v[0], matches)
addrExpr := ""
if len(v) > 1 {
addrExpr = expandMatches(v[1], matches)
}
var newed *Editor
if name != "" {
var err error
newed, err = EditFind(ec.dir, name, false, false)
if err != nil {
return false
}
if newed == nil {
return false
}
} else {
newed = ec.ed
}
if AutoDumpPath == "" && FirstOpenFile {
historyAdd(filepath.Join(newed.bodybuf.Dir, newed.bodybuf.Name))
}
{
eds := allZeroxEditors(newed.bodybuf)
if othered {
if len(eds) == 1 && ec.ed == eds[0] {
eds = append(eds, zeroxEd(newed))
}
for i := len(eds) - 1; i >= 0; i-- {
if eds[i] != ec.ed {
newed = eds[i]
break
}
}
} else {
if newed != ec.ed {
newed = eds[len(eds)-1]
}
}
}
if doselect {
ec.fr.Sel = util.Sel{s, e}
ec.fr.SelColor = 2
ec.br()
}
if addrExpr != "" {
func() {
defer func() {
recover()
// do nothing, doesn't matter anyway
}()
newed.sfr.Fr.SelColor = 0
newed.sfr.Fr.Sel = util.Sel{0, 0}
newed.sfr.Fr.Sel = edit.AddrEval(addrExpr, newed.bodybuf, newed.sfr.Fr.Sel)
}()
newed.BufferRefresh()
}
newed.Warp()
return true
}
return false
}
func allZeroxEditors(buf *buf.Buffer) []*Editor {
eds := []*Editor{}
for _, col := range Wnd.cols.cols {
for _, ed := range col.editors {
if ed.bodybuf == buf {
eds = append(eds, ed)
}
}
}
return eds
}