-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathViewController.swift
410 lines (354 loc) · 11.9 KB
/
ViewController.swift
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
//
// ViewController.swift
// MacTerminal
//
// Created by Miguel de Icaza on 3/11/20.
// Copyright © 2020 Miguel de Icaza. All rights reserved.
//
import Cocoa
import SwiftTerm
class ViewController: NSViewController, LocalProcessTerminalViewDelegate, NSUserInterfaceValidations {
@IBOutlet var loggingMenuItem: NSMenuItem?
var changingSize = false
var logging: Bool = false
var zoomGesture: NSMagnificationGestureRecognizer?
var postedTitle: String = ""
var postedDirectory: String? = nil
func sizeChanged(source: LocalProcessTerminalView, newCols: Int, newRows: Int) {
if changingSize {
return
}
changingSize = true
//var border = view.window!.frame - view.frame
var newFrame = terminal.getOptimalFrameSize ()
let windowFrame = view.window!.frame
newFrame = CGRect (x: windowFrame.minX, y: windowFrame.minY, width: newFrame.width, height: windowFrame.height - view.frame.height + newFrame.height)
view.window?.setFrame(newFrame, display: true, animate: true)
changingSize = false
}
func updateWindowTitle ()
{
var newTitle: String
if let dir = postedDirectory {
if let uri = URL(string: dir) {
if postedTitle == "" {
newTitle = uri.path
} else {
newTitle = "\(postedTitle) - \(uri.path)"
}
} else {
newTitle = postedTitle
}
} else {
newTitle = postedTitle
}
view.window?.title = newTitle
}
func setTerminalTitle(source: LocalProcessTerminalView, title: String) {
postedTitle = title
updateWindowTitle ()
}
func hostCurrentDirectoryUpdate (source: TerminalView, directory: String?) {
self.postedDirectory = directory
updateWindowTitle()
}
func processTerminated(source: TerminalView, exitCode: Int32?) {
view.window?.close()
if let e = exitCode {
print ("Process terminated with code: \(e)")
} else {
print ("Process vanished")
}
}
var terminal: LocalProcessTerminalView!
static weak var lastTerminal: LocalProcessTerminalView!
func getBufferAsData () -> Data
{
return terminal.getTerminal().getBufferAsData ()
}
func updateLogging ()
{
// let path = logging ? "/Users/miguel/Downloads/Logs" : nil
// terminal.setHostLogging (directory: path)
NSUserDefaultsController.shared.defaults.set (logging, forKey: "LogHostOutput")
}
// Returns the shell associated with the current account
func getShell () -> String
{
let bufsize = sysconf(_SC_GETPW_R_SIZE_MAX)
guard bufsize != -1 else {
return "/bin/bash"
}
let buffer = UnsafeMutablePointer<Int8>.allocate(capacity: bufsize)
defer {
buffer.deallocate()
}
var pwd = passwd()
var result: UnsafeMutablePointer<passwd>? = UnsafeMutablePointer<passwd>.allocate(capacity: 1)
if getpwuid_r(getuid(), &pwd, buffer, bufsize, &result) != 0 {
return "/bin/bash"
}
return String (cString: pwd.pw_shell)
}
class TD: TerminalDelegate {
func send(source: Terminal, data: ArraySlice<UInt8>) {
}
}
func test () {
let a = Terminal (delegate: TD ())
print (a)
}
override func viewDidLoad() {
super.viewDidLoad()
test ()
terminal = LocalProcessTerminalView(frame: view.frame)
zoomGesture = NSMagnificationGestureRecognizer(target: self, action: #selector(zoomGestureHandler))
terminal.addGestureRecognizer(zoomGesture!)
terminal.getTerminal().backgroundColor = SwiftTerm.Color(red: 0, green: 0x8000, blue: 0)
ViewController.lastTerminal = terminal
terminal.processDelegate = self
terminal.feed(text: "Welcome to SwiftTerm")
let shell = getShell()
let shellIdiom = "-" + NSString(string: shell).lastPathComponent
FileManager.default.changeCurrentDirectoryPath (FileManager.default.homeDirectoryForCurrentUser.path)
terminal.startProcess (executable: shell, execName: shellIdiom)
view.addSubview(terminal)
logging = NSUserDefaultsController.shared.defaults.bool(forKey: "LogHostOutput")
updateLogging ()
#if DEBUG_MOUSE_FOCUS
var t = NSTextField(frame: NSRect (x: 0, y: 100, width: 200, height: 30))
t.backgroundColor = NSColor.white
t.stringValue = "Hello - here to test focus switching"
view.addSubview(t)
#endif
}
override func viewWillDisappear() {
//terminal = nil
}
@objc
func zoomGestureHandler (_ sender: NSMagnificationGestureRecognizer) {
if sender.magnification > 0 {
biggerFont (sender)
} else {
smallerFont(sender)
}
}
override func viewDidLayout() {
super.viewDidLayout()
changingSize = true
terminal.frame = view.frame
changingSize = false
terminal.needsLayout = true
}
@objc @IBAction
func set80x25 (_ source: AnyObject)
{
terminal.resize(cols: 80, rows: 25)
}
var lowerCol = 80
var lowerRow = 25
var higherCol = 160
var higherRow = 60
func queueNextSize ()
{
// If they requested a stop
if resizificating == 0 {
return
}
var next = terminal.getTerminal().getDims ()
if resizificating > 0 {
if next.cols < higherCol {
next.cols += 1
}
if next.rows < higherRow {
next.rows += 1
}
} else {
if next.cols > lowerCol {
next.cols -= 1
}
if next.rows > lowerRow {
next.rows -= 1
}
}
terminal.resize (cols: next.cols, rows: next.rows)
var direction = resizificating
if next.rows == higherRow && next.cols == higherCol {
direction = -1
}
if next.rows == lowerRow && next.cols == lowerCol {
direction = 1
}
DispatchQueue.main.asyncAfter(deadline: .now() + 0.03) {
self.resizificating = direction
self.queueNextSize()
}
}
var resizificating = 0
@objc @IBAction
func resizificator (_ source: AnyObject)
{
if resizificating != 1 {
resizificating = 1
queueNextSize ()
} else {
resizificating = 0
}
}
@objc @IBAction
func resizificatorDown (_ source: AnyObject)
{
if resizificating != -1 {
resizificating = -1
queueNextSize ()
} else {
resizificating = 0
}
}
@objc @IBAction
func allowMouseReporting (_ source: AnyObject)
{
terminal.allowMouseReporting.toggle ()
}
@objc @IBAction
func exportBuffer (_ source: AnyObject)
{
saveData { self.terminal.getTerminal().getBufferAsData () }
}
@objc @IBAction
func exportSelection (_ source: AnyObject)
{
saveData {
if let str = self.terminal.getSelection () {
return str.data (using: .utf8) ?? Data ()
}
return Data ()
}
}
func saveData (_ getData: @escaping () -> Data)
{
let savePanel = NSSavePanel ()
savePanel.canCreateDirectories = true
savePanel.allowedFileTypes = ["txt"]
savePanel.title = "Export Buffer Contents As Text"
savePanel.nameFieldStringValue = "TerminalCapture"
savePanel.begin { (result) in
if result.rawValue == NSApplication.ModalResponse.OK.rawValue {
let data = getData ()
if let url = savePanel.url {
do {
try data.write(to: url)
} catch let error as NSError {
let alert = NSAlert (error: error)
alert.runModal()
}
}
}
}
}
@objc @IBAction
func softReset (_ source: AnyObject)
{
terminal.getTerminal().softReset ()
terminal.setNeedsDisplay(terminal.frame)
}
@objc @IBAction
func hardReset (_ source: AnyObject)
{
terminal.getTerminal().resetToInitialState ()
terminal.setNeedsDisplay(terminal.frame)
}
@objc @IBAction
func toggleOptionAsMetaKey (_ source: AnyObject)
{
terminal.optionAsMetaKey.toggle ()
}
@objc @IBAction
func biggerFont (_ source: AnyObject)
{
let size = terminal.font.pointSize
guard size < 72 else {
return
}
terminal.font = NSFont.monospacedSystemFont(ofSize: size+1, weight: .regular)
}
@objc @IBAction
func smallerFont (_ source: AnyObject)
{
let size = terminal.font.pointSize
guard size > 5 else {
return
}
terminal.font = NSFont.monospacedSystemFont(ofSize: size-1, weight: .regular)
}
@objc @IBAction
func defaultFontSize (_ source: AnyObject)
{
terminal.font = NSFont.monospacedSystemFont(ofSize: NSFont.systemFontSize, weight: .regular)
}
@objc @IBAction
func addTab (_ source: AnyObject)
{
// if let win = view.window {
// win.tabbingMode = .preferred
// if let wc = win.windowController {
// if let d = wc.document as? Document {
// do {
// let x = Document()
// x.makeWindowControllers()
//
// try NSDocumentController.shared.newDocument(self)
// } catch {}
// print ("\(d.debugDescription)")
// }
// }
// }
// win.tabbingMode = .preferred
// win.addTabbedWindow(win, ordered: .above)
//
// if let wc = win.windowController {
// wc.newWindowForTab(self()
// wc.showWindow(source)
// }
// }
}
func validateUserInterfaceItem(_ item: NSValidatedUserInterfaceItem) -> Bool
{
if item.action == #selector(debugToggleHostLogging(_:)) {
if let m = item as? NSMenuItem {
m.state = logging ? NSControl.StateValue.on : NSControl.StateValue.off
}
}
if item.action == #selector(resizificator(_:)) {
if let m = item as? NSMenuItem {
m.state = resizificating == 1 ? NSControl.StateValue.on : NSControl.StateValue.off
}
}
if item.action == #selector(resizificatorDown(_:)) {
if let m = item as? NSMenuItem {
m.state = resizificating == -1 ? NSControl.StateValue.on : NSControl.StateValue.off
}
}
if item.action == #selector(allowMouseReporting(_:)) {
if let m = item as? NSMenuItem {
m.state = terminal.allowMouseReporting ? NSControl.StateValue.on : NSControl.StateValue.off
}
}
if item.action == #selector(toggleOptionAsMetaKey(_:)) {
if let m = item as? NSMenuItem {
m.state = terminal.optionAsMetaKey ? NSControl.StateValue.on : NSControl.StateValue.off
}
}
// Only enable "Export selection" if we have a selection
if item.action == #selector(exportSelection(_:)) {
return terminal.selectionActive
}
return true
}
@objc @IBAction
func debugToggleHostLogging (_ source: AnyObject)
{
logging = !logging
updateLogging()
}
}