-
Notifications
You must be signed in to change notification settings - Fork 15
/
Titanium.py
383 lines (328 loc) · 15.7 KB
/
Titanium.py
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
import sublime
import sublime_plugin
import json
import subprocess
from os.path import expanduser
class TitaniumCommand(sublime_plugin.WindowCommand):
def run(self, *args, **kwargs):
settings = sublime.load_settings('Titanium.sublime-settings')
self.cli = settings.get("titaniumCLI", "/usr/bin/titanium")
self.android = settings.get("androidSDK", "/opt/android-sdk") + "/tools/android"
self.loggingLevel = settings.get("loggingLevel", "info")
self.simulatorType = settings.get("simulatorType", False)
self.simulatorRetina = settings.get("simulatorRetina", False)
self.simulatorTall = settings.get("simulatorTall", False)
self.iosVersion = settings.get("iosVersion", False)
self.iosSimVersion = settings.get("iosSimVersion", False)
self.tiInspectorHost = settings.get("tiInspectorHost", False)
self.genymotionCLI = str(settings.get("genymotionCLI", "/Applications/Genymotion Shell.app/Contents/MacOS/genyshell"))
folders = self.window.folders()
if len(folders) <= 0:
self.show_quick_panel(["ERROR: Must have a project open"], None)
else:
if len(folders) == 1:
self.multipleFolders = False
self.project_folder = folders[0]
self.project_sdk = self.get_project_sdk_version()
self.pick_platform()
else:
self.multipleFolders = True
self.pick_project_folder(folders)
def pick_project_folder(self, folders):
folderNames = []
for folder in folders:
index = folder.rfind('/') + 1
if index > 0:
folderNames.append(folder[index:])
else:
folderNames.append(folder)
# only show most recent when there is a command stored
if 'titaniumMostRecent' in globals():
folderNames.insert(0, 'most recent configuration')
self.show_quick_panel(folderNames, self.select_project)
def select_project(self, select):
folders = self.window.folders()
if select < 0:
return
# if most recent was an option, we need subtract 1
# from the selected index to match the folders array
# since the "most recent" option was inserted at the beginning
if 'titaniumMostRecent' in globals():
select = select - 1
if select == -1:
self.window.run_command("exec", titaniumMostRecent)
else:
self.project_folder = folders[select]
self.project_sdk = self.get_project_sdk_version()
self.pick_platform()
def pick_platform(self):
self.platforms = ["android", "ios", "mobileweb", "clean"]
# only show most recent when there are NOT multiple top level folders
# and there is a command stored
if self.multipleFolders == False and 'titaniumMostRecent' in globals():
self.platforms.insert(0, 'most recent configuration')
self.show_quick_panel(self.platforms, self.select_platform)
def select_platform(self, select):
if select < 0:
return
self.platform = self.platforms[select]
if self.platform == "most recent configuration":
self.window.run_command("exec", titaniumMostRecent)
elif self.platform == "ios":
self.targets = ["simulator", "device", "dist-appstore", "dist-adhoc"]
self.show_quick_panel(self.targets, self.select_ios_target)
elif self.platform == "android":
self.targets = ["GenyMotion", "emulator", "device", "dist-playstore"]
self.show_quick_panel(self.targets, self.select_android_target)
elif self.platform == "mobileweb":
self.targets = ["development", "production"]
self.show_quick_panel(self.targets, self.select_mobileweb_target)
else: # clean project
self.window.run_command("exec", {"cmd": [self.cli, "clean", "--no-colors", "--project-dir", self.project_folder]})
# Sublime Text 3 requires a short timeout between quick panels
def show_quick_panel(self, options, done):
sublime.set_timeout(lambda: self.window.show_quick_panel(options, done), 10)
# get the current project's SDK from tiapp.xml
def get_project_sdk_version(self):
process = subprocess.Popen([self.cli, "project", "sdk-version", "--project-dir", self.project_folder, "--output=text"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
result, error = process.communicate()
return result.decode('utf-8').rstrip('\n')
def run_titanium(self, options=[]):
cmd = [self.cli, "build", "--sdk", self.project_sdk, "--project-dir", self.project_folder, "--no-colors", "--platform", self.platform, "--log-level", self.loggingLevel]
cmd.extend(options)
execCMD = {"cmd": ' '.join(cmd), "shell": True}
# save most recent command
global titaniumMostRecent
titaniumMostRecent = execCMD
self.window.run_command("exec", execCMD)
def run_genymotion(self, options=[]):
cmd = [self.cli, "build", "--sdk", self.project_sdk, "--project-dir", self.project_folder, "--no-colors", "--platform", self.platform, "--log-level", self.loggingLevel]
cmd.extend(options)
execCMD = {"cmd": cmd}
# save most recent command
global titaniumMostRecent
titaniumMostRecent = execCMD
self.window.run_command("exec", execCMD)
#--------------------------------------------------------------
# MOBILE WEB
#--------------------------------------------------------------
def select_mobileweb_target(self, select):
if select < 0:
return
self.run_titanium(["--deploy-type", self.targets[select]])
#--------------------------------------------------------------
# ANDROID
#--------------------------------------------------------------
def load_android_avds(self):
process = subprocess.Popen([self.android, "list", "avd", "-c"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
result, error = process.communicate()
self.avds = result.split()
def load_genymotion_vms(self):
cmd = '"' + self.genymotionCLI + '" -c "devices list" | grep ^[[:space:]] | grep [0-9] | grep "On" | awk -F\'|\' \'{ip=gsub(/^[ \\t]+|[ \\t]+$/, "", $5); name=gsub(/^[ \\t]+|[ \\t]+$/, "", $6); print $5","$6}\''
process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
result, error = process.communicate()
if result != '' and result != None:
l = []
result = str(result, encoding = 'utf8')
for a in result.splitlines():
ip = a.split(',')[0]
name = a.split(',')[1]
l.append([name, ip])
self.genymotionvms = l
else:
sublime.error_message("No running GenyMotion devices found")
def select_android_target(self, select):
if select < 0:
return
target = self.targets[select]
if (target == "emulator"):
self.load_android_avds()
self.show_quick_panel(self.avds, self.select_android_avd)
elif (target == "GenyMotion"):
self.load_genymotion_vms();
self.show_quick_panel(self.genymotionvms, self.select_genymotion_vm)
else:
self.run_titanium(["--target", target])
def select_android_avd(self, select):
if select < 0:
return
self.run_titanium(["--avd-id", self.avds[select]])
def select_genymotion_vm(self, select):
if select < 0:
return
self.genymotionname, self.genymotionip = self.genymotionvms[select]
self.run_genymotion(["--device-id", self.genymotionname])
#--------------------------------------------------------------
# IOS
#--------------------------------------------------------------
def select_ios_target(self, select):
if select < 0:
return
self.target = self.targets[select]
self.load_ios_sdk_info()
if self.target == "simulator":
self.prompt_ios_simtype()
else:
self.families = ["iphone", "ipad", "universal"]
self.show_quick_panel(self.families, self.select_ios_family)
def prompt_ios_simtype(self):
if not self.simulatorType:
self.simtype = ["iphone", "iphone-retina", "iphone-retina-tall", "ipad", "ipad-retina", "ipad-retina-tall"]
self.show_quick_panel(self.simtype, self.select_ios_simtype)
else:
self.prompt_ios_sdkversion()
def select_ios_simtype(self, select):
if select < 0:
return
if (self.simtype[select] == 'iphone'):
# iphone 4
self.simulatorType = 'iphone'
self.simulatorRetina = False
self.simulatorTall = False
elif (self.simtype[select] == "iphone-retina"):
self.simulatorType = 'iphone'
self.simulatorRetina = True
self.simulatorTall = False
elif (self.simtype[select] == "iphone-retina-tall"):
self.simulatorType = 'iphone'
self.simulatorRetina = True
self.simulatorTall = True
elif (self.simtype[select] == "ipad"):
self.simulatorType = 'ipad'
self.simulatorRetina = False
self.simulatorTall = False
elif (self.simtype[select] == "ipad-retina"):
self.simulatorType = 'ipad'
self.simulatorRetina = True
self.simulatorTall = False
elif (self.simtype[select] == "ipad-retina-tall"):
self.simulatorType = 'ipad'
self.simulatorRetina = True
self.simulatorTall = True
self.prompt_ios_sdkversion()
def prompt_ios_sdkversion(self):
if not self.iosVersion:
if len(self.sdkvers) == 1:
self.select_ios_sdkversion(0)
else:
sdk_version_list = []
for sdk_version in self.sdkvers:
sdk_version_list.append("iOS SDK: " + sdk_version)
self.show_quick_panel(sdk_version_list, self.select_ios_sdkversion)
else:
self.prompt_ios_simversion()
def select_ios_sdkversion(self, select):
if select < 0:
return
self.iosVersion = self.sdkvers[select]
self.prompt_ios_simversion()
def prompt_ios_simversion(self):
if not self.iosSimVersion:
if len(self.simvers) == 1:
self.select_ios_simversion(0)
else:
sim_version_list = []
for sim_version in self.simvers:
sim_version_list.append("iOS Simulator: " + sim_version)
self.show_quick_panel(sim_version_list, self.select_ios_simversion)
else:
self.run_ios_simulator()
def select_ios_simversion(self, select):
if select < 0:
return
self.iosSimVersion = self.simvers[select]
self.run_ios_simulator()
def run_ios_simulator(self):
project_sdk = self.project_sdk.split('.')
simulatorDisplay = ''
simulatorHeight = ''
tiInspector = ''
iosVersion = ''
iosSimVersion = ''
if self.simulatorRetina:
simulatorDisplay = '--retina'
if self.simulatorTall:
simulatorHeight = '--tall'
if self.tiInspectorHost:
tiInspector = '--debug-host %s' % self.tiInspectorHost
if self.iosVersion:
if int(project_sdk[0]) < 3 or int(project_sdk[1]) < 2:
iosVersionSplit = self.iosVersion.split('.')
iosVersion = "--ios-version " + iosVersionSplit[0] + "." + iosVersionSplit[1]
else:
iosVersion = "--ios-version " + self.iosVersion
if self.iosSimVersion:
if int(project_sdk[0]) < 3 or int(project_sdk[1]) < 2:
iosSimVersionSplit = self.iosSimVersion.split('.')
iosSimVersion = "--sim-version " + iosSimVersionSplit[0] + "." + iosSimVersionSplit[1]
else:
iosSimVersion = "--sim-version " + self.iosSimVersion
self.run_titanium(["--sim-type", self.simulatorType, simulatorDisplay, simulatorHeight, tiInspector, iosVersion, iosSimVersion])
def select_ios_family(self, select):
if select < 0:
return
self.family = self.families[select]
self.load_ios_info()
self.show_quick_panel(self.certs, self.select_ios_cert)
def select_ios_cert(self, select):
if select < 0:
return
self.cert = self.certs[select]
self.show_quick_panel(self.devices, self.select_ios_device)
def select_ios_device(self, select):
if select < 0:
return
self.devicename, self.deviceudid = self.devices[select]
self.show_quick_panel(self.profiles, self.select_ios_profile)
def select_ios_profile(self, select):
if select < 0:
return
name, profile = self.profiles[select]
options = ["--target", self.target, "--pp-uuid", profile, "--device-family", self.family]
if self.target == "device":
options.extend(["--developer-name", "\"" + self.cert[0] + "\""])
options.extend(["--device-id", self.deviceudid])
else:
options.extend(["--distribution-name", "\"" + self.cert + "\""])
if self.target == "dist-adhoc":
options.extend(["--output-dir", self.project_folder + "/dist"])
self.run_titanium(options)
def load_ios_sdk_info(self):
process = subprocess.Popen([self.cli, "info", "--types", "ios", "--output", "json"], stdout = subprocess.PIPE, stderr = subprocess.PIPE)
result, error = process.communicate()
info = json.loads(result.decode('utf-8'))
if 'ios' in info:
xcode = info['ios']['xcode']
else:
xcode = info['xcode']
for name, obj in list(xcode.items()):
self.sdkvers = sorted(obj["sdks"], reverse = True)
self.simvers = sorted(obj["sims"], reverse = True)
def load_ios_info(self):
process = subprocess.Popen([self.cli, "info", "--types", "ios", "--output", "json"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
result, error = process.communicate()
info = json.loads(result.decode('utf-8'))
for name, obj in list(info["ios"].items()):
if name == "certs":
for target, c in list(obj["keychains"][expanduser("~") + "/Library/Keychains/login.keychain"].items()):
if target == "wwdr" or (target == "developer" and self.target != "device") or (target == "distribution" and self.target == "device"):
continue
l = []
for cert in c:
if cert['expired'] is False:
l.append([cert['name']])
self.certs = l
elif name == "provisioning":
for target, p in list(obj.items()):
# TODO: figure out what to do with enterprise profiles
if (target == "development" and self.target == "device") or (target == "distribution" and self.target == "dist-appstore") or (target == "adhoc" and self.target == "dist-adhoc"):
l = []
for profile in p:
if profile['expired'] is False:
l.append([profile['name'], profile['uuid']])
self.profiles = l
elif name == "devices":
l = []
for a in obj:
l.append([a['name'], a['udid']])
self.devices = l