forked from laishulu/macism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
macism.swift
226 lines (194 loc) · 6.64 KB
/
macism.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
import Carbon
import Cocoa
import Foundation
class InputSource: Equatable {
static func == (lhs: InputSource, rhs: InputSource) -> Bool {
return lhs.id == rhs.id
}
let tisInputSource: TISInputSource
var id: String {
return tisInputSource.id
}
var name: String {
return tisInputSource.name
}
var isCJKV: Bool {
if let lang = tisInputSource.sourceLanguages.first {
return lang == "ko" || lang == "ja" || lang == "vi"
|| lang.hasPrefix("zh")
}
return false
}
init(tisInputSource: TISInputSource) {
self.tisInputSource = tisInputSource
}
func select() {
let currentSource = InputSourceManager.getCurrentSource()
if currentSource.id == self.id {
return
}
TISSelectInputSource(tisInputSource)
usleep(InputSourceManager.uSeconds)
if self.isCJKV {
if let nonCJKV = InputSourceManager.nonCJKVSource() {
TISSelectInputSource(nonCJKV.tisInputSource)
usleep(InputSourceManager.uSeconds)
let newCurrentSource = InputSourceManager.getCurrentSource()
if newCurrentSource.id == nonCJKV.id {
InputSourceManager.selectPrevious()
} else {
TISSelectInputSource(tisInputSource)
}
}
}
}
}
class InputSourceManager {
static var inputSources: [InputSource] = []
static var uSeconds: UInt32 = 12000
static var keyboardOnly: Bool = true
static func initialize() {
let inputSourceNSArray = TISCreateInputSourceList(nil, false)
.takeRetainedValue() as NSArray
var inputSourceList = inputSourceNSArray as! [TISInputSource]
if self.keyboardOnly {
inputSourceList = inputSourceList.filter(
{
$0.category == TISInputSource.Category.keyboardInputSource
})
}
inputSources = inputSourceList.filter(
{
$0.isSelectable
}).map { InputSource(tisInputSource: $0) }
}
static func nonCJKVSource() -> InputSource? {
return inputSources.first(where: { !$0.isCJKV })
}
static func getCurrentSource()->InputSource{
return InputSource(
tisInputSource:
TISCopyCurrentKeyboardInputSource().takeRetainedValue()
)
}
static func getInputSource(name: String)->InputSource?{
let inputSources = InputSourceManager.inputSources
return inputSources.filter({$0.id == name}).first
}
static func selectPrevious(){
let shortcut = getSelectPreviousShortcut()
if (shortcut == nil){
print("""
Shortcut to select previous input source does not exit,
please read README of macism
""")
exit(1)
}
let src = CGEventSource(stateID: .hidSystemState)
let key = CGKeyCode(shortcut!.0)
let flag = CGEventFlags(rawValue: shortcut!.1)
let down = CGEvent(keyboardEventSource: src,
virtualKey: key, keyDown: true)!
down.flags = flag;
down.post(tap: .cghidEventTap)
let up = CGEvent(keyboardEventSource: src,
virtualKey: key, keyDown: false)!
// if with flag, a pop up will show up
// up.flags = flag;
up.post(tap: .cghidEventTap)
usleep(InputSourceManager.uSeconds)
}
// from read-symbolichotkeys script of Karabiner
// github.com/tekezo/Karabiner/blob/master/src/util/read-symbolichotkeys/read-symbolichotkeys/main.m
static func getSelectPreviousShortcut() -> (Int, UInt64)? {
guard let dict = UserDefaults.standard.persistentDomain(
forName: "com.apple.symbolichotkeys"
)
else {
return nil
}
guard let symbolichotkeys = dict["AppleSymbolicHotKeys"]
as! NSDictionary?
else {
return nil
}
guard let symbolichotkey = symbolichotkeys["60"] as! NSDictionary?
else {
return nil
}
if (symbolichotkey["enabled"] as! NSNumber).intValue != 1 {
return nil
}
guard let value = symbolichotkey["value"] as! NSDictionary? else {
return nil
}
guard let parameters = value["parameters"] as! NSArray? else {
return nil
}
return (
(parameters[1] as! NSNumber).intValue,
(parameters[2] as! NSNumber).uint64Value
)
}
}
extension TISInputSource {
enum Category {
static var keyboardInputSource: String {
return kTISCategoryKeyboardInputSource as String
}
}
private func getProperty(_ key: CFString) -> AnyObject? {
let cfType = TISGetInputSourceProperty(self, key)
if (cfType != nil) {
return Unmanaged<AnyObject>.fromOpaque(cfType!)
.takeUnretainedValue()
} else {
return nil
}
}
var id: String {
return getProperty(kTISPropertyInputSourceID) as! String
}
var name: String {
return getProperty(kTISPropertyLocalizedName) as! String
}
var category: String {
return getProperty(kTISPropertyInputSourceCategory) as! String
}
var isSelectable: Bool {
return getProperty(kTISPropertyInputSourceIsSelectCapable) as! Bool
}
var sourceLanguages: [String] {
return getProperty(kTISPropertyInputSourceLanguages) as! [String]
}
}
InputSourceManager.initialize()
if CommandLine.arguments.count == 1 {
let currentSource = InputSourceManager.getCurrentSource()
print(currentSource.id)
} else {
let checkOptPrompt = kAXTrustedCheckOptionPrompt.takeUnretainedValue(
) as NSString
let options = [checkOptPrompt: true]
let isAppTrusted = AXIsProcessTrustedWithOptions(options as CFDictionary?)
if(isAppTrusted == true) {
let filteredArgs = CommandLine.arguments.filter(
{
$0.lowercased() != "--noKeyboardOnly".lowercased()
})
InputSourceManager.keyboardOnly =
CommandLine.arguments.count == filteredArgs.count
let dstSource = InputSourceManager.getInputSource(
name: filteredArgs[1]
)
if (dstSource == nil){
print("Input source \(filteredArgs[1]) does not exist!")
}
if filteredArgs.count == 3 {
InputSourceManager.uSeconds = UInt32(filteredArgs[2])!
}
dstSource?.select()
} else {
usleep(5000000)
}
}