-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
292 lines (260 loc) · 6.05 KB
/
main.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
package main
import (
"fmt"
"os"
"os/exec"
"regexp"
"strconv"
"strings"
"time"
)
type Layout struct {
isRow bool
dimensions Dimensions
children []*Layout
parent *Layout
pane *Pane
}
type Pane struct {
id int
}
type Dimensions struct {
height int
width int
}
func main() {
arg := os.Args[1]
switch arg {
case "x":
kill()
case "v":
split(true)
case "s":
split(false)
}
}
func split(horizontal bool) {
pwd := mustExec(
"tmux", "display-message", "-p", "-F",
"#{pane_current_path}", fmt.Sprintf("-t %d", getActivePane()),
)
if horizontal {
mustExec("tmux", "split-window", "-h")
} else {
mustExec("tmux", "split-window", "-v")
}
activePane := getActivePane()
rootLayout := getRootLayout()
layout := getLayoutByPaneID(activePane, rootLayout)
rebalanceLayout(layout, horizontal)
// TODO
// Can't seem to get -c flag working to set dir on split
// so setting manually
time.Sleep(time.Millisecond * 100) // TODO this sucks
mustExec("tmux", "send-keys",
fmt.Sprintf("-t %d", activePane),
fmt.Sprintf("cd %s && c", pwd),
"C-m",
)
}
func kill() {
activePane := getActivePane()
rootLayout := getRootLayout()
if paneCount(rootLayout) == 1 {
mustExec("tmux", "kill-window")
return
}
mustExec("tmux", "kill-pane")
layout := getLayoutByPaneID(activePane, rootLayout)
baseSize := layout.dimensions.height
if layout.isRow {
baseSize = layout.dimensions.width
}
newSizes := getNewSizes(len(layout.children)-1, baseSize)
var offset int
for i, child := range layout.children {
if child.pane != nil && child.pane.id == activePane {
offset = 1
continue
}
if layout.isRow {
setLayoutSize(child, newSizes[i-offset], child.dimensions.height)
} else {
setLayoutSize(child, child.dimensions.width, newSizes[i-offset])
}
}
}
func rebalanceLayout(layout *Layout, horizontal bool) {
if layout.pane != nil {
return
}
baseSize := layout.dimensions.height
if horizontal {
baseSize = layout.dimensions.width
}
newSizes := getNewSizes(len(layout.children), baseSize)
for i, child := range layout.children {
if horizontal {
setLayoutSize(child, newSizes[i], child.dimensions.height)
} else {
setLayoutSize(child, child.dimensions.width, newSizes[i])
}
}
}
func setLayoutSize(layout *Layout, width, height int) {
if layout.pane != nil {
setPaneSize(layout.pane.id, width, height)
return
}
baseSize := height
if layout.isRow {
baseSize = width
}
newSizes := getNewSizes(len(layout.children), baseSize)
for i, child := range layout.children {
if layout.isRow {
setLayoutSize(child, newSizes[i], height)
} else {
setLayoutSize(child, width, newSizes[i])
}
}
}
func getLayoutByPaneID(paneID int, layout *Layout) *Layout {
if layout.pane != nil && layout.pane.id == paneID {
return layout.parent
}
for _, child := range layout.children {
if l := getLayoutByPaneID(paneID, child); l != nil {
return l
}
}
return nil
}
func getRootLayout() *Layout {
rawLayout := mustExec(
"tmux", "display", "-p", "'#{W:,#{window_layout}}'",
)
initComma := strings.Index(rawLayout, ",")
rawLayout = rawLayout[initComma+1 : len(rawLayout)-2]
layouts, _ := getLayout(rawLayout, nil, 0)
return layouts[0]
}
func getLayout(layout string, parent *Layout, paneID int) ([]*Layout, int) {
layout = strings.TrimSpace(layout)
layouts := []*Layout{}
for layout != "" {
layout = strings.TrimPrefix(layout, ",")
dimRegex, _ := regexp.Compile(`\d+x\d+`)
rawDims := dimRegex.FindString(layout)
dims := parseDimensions(rawDims)
layout = string(layout[len(rawDims):])
xyRegex, _ := regexp.Compile(`^,\d+,\d+`)
xy := xyRegex.FindString(layout)
layout = string(layout[len(xy):])
if strings.HasPrefix(layout, ",") {
layouts = append(layouts, &Layout{
parent: parent,
dimensions: dims,
pane: &Pane{id: paneID},
})
paneID++
idRegex, _ := regexp.Compile(`^,\d+(,|$)`)
id := idRegex.FindString(layout)
layout = string(layout[len(id):])
} else if strings.HasPrefix(layout, "{") {
matchingIndex := getMatchIndex(layout, '{', '}')
l := &Layout{
isRow: true,
parent: parent,
dimensions: dims,
}
l.children, paneID = getLayout(layout[1:matchingIndex], l, paneID)
layouts = append(layouts, l)
layout = string(layout[matchingIndex+1:])
} else if strings.HasPrefix(layout, "[") {
matchingIndex := getMatchIndex(layout, '[', ']')
l := &Layout{
parent: parent,
dimensions: dims,
}
l.children, paneID = getLayout(layout[1:matchingIndex], l, paneID)
layouts = append(layouts, l)
layout = string(layout[matchingIndex+1:])
}
}
return layouts, paneID
}
func parseDimensions(dims string) Dimensions {
parts := strings.Split(dims, "x")
w, _ := strconv.Atoi(parts[0])
h, _ := strconv.Atoi(parts[1])
return Dimensions{
width: w,
height: h,
}
}
func getMatchIndex(s string, opener, closer rune) int {
x := 0
for i, c := range s {
if c == opener {
x++
} else if c == closer {
x--
}
if x == 0 {
return i
}
}
return -1
}
func getNewSizes(count, total int) []int {
newBaseSize := int(total / count)
rem := total % count
newSizes := []int{}
for i := 0; i < count; i++ {
newSize := newBaseSize
if rem > 0 {
newSize += 1
rem -= 1
}
newSizes = append(newSizes, newSize)
}
return newSizes
}
func getActivePane() int {
lines := strings.Split(mustExec("tmux", "list-panes"), "\n")
for _, line := range lines {
if strings.Contains(line, "active") {
colonIndex := strings.Index(line, ":")
i, _ := strconv.Atoi(line[:colonIndex])
return i
}
}
return 0
}
func mustExec(cmd string, args ...string) string {
out, err := exec.Command(cmd, args...).Output()
if err != nil {
return "ERROR: " + string(out)
}
return string(out)
}
func setPaneSize(paneID, width, height int) {
mustExec(
"tmux",
"resize-pane",
fmt.Sprintf("-t %d", paneID),
fmt.Sprintf("-x %d", width),
fmt.Sprintf("-y %d", height),
)
}
func paneCount(layout *Layout) int {
if layout.pane != nil {
return 1
}
sum := 0
for _, child := range layout.children {
sum += paneCount(child)
}
return sum
}