-
Notifications
You must be signed in to change notification settings - Fork 311
/
run_existing_command.py
67 lines (59 loc) · 2.24 KB
/
run_existing_command.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
from __future__ import absolute_import, unicode_literals, print_function, division
import os
import os.path
import sys
import json
import sublime
import sublime_plugin
SUBLIMEREPL_DIR = None
SUBLIMEREPL_USER_DIR = None
def plugin_loaded():
global SUBLIMEREPL_DIR
global SUBLIMEREPL_USER_DIR
SUBLIMEREPL_DIR = "Packages/SublimeREPL"
SUBLIMEREPL_USER_DIR = os.path.join(sublime.packages_path(), "User", "SublimeREPL")
PY2 = False
if sys.version_info[0] == 2:
SUBLIMEREPL_DIR = os.getcwdu()
SUBLIMEREPL_USER_DIR = os.path.join(sublime.packages_path(), "User", "SublimeREPL")
PY2 = True
# yes, CommandCommmand :)
class RunExistingWindowCommandCommand(sublime_plugin.WindowCommand):
def run(self, id, file):
"""Find and run existing command with id in specified file.
SUBLIMEREPL_USER_DIR is consulted first, and then SUBLIMEREPL_DIR"""
for prefix in (SUBLIMEREPL_USER_DIR, SUBLIMEREPL_DIR):
path = os.path.join(prefix, file)
json_cmd = self._find_cmd(id, path)
if json_cmd:
break
if not json_cmd:
return
args = json_cmd["args"] if "args" in json_cmd else None
self.window.run_command(json_cmd["command"], args)
def _find_cmd(self, id, file):
return self._find_cmd_in_file(id, file)
def _find_cmd_in_file(self, id, file):
try:
if PY2 or os.path.isfile(file):
with open(file) as f:
bytes = f.read()
else:
bytes = sublime.load_resource(file)
except (IOError, ValueError):
return None
else:
data = json.loads(bytes)
return self._find_cmd_in_json(id, data)
def _find_cmd_in_json(self, id, json_object):
if isinstance(json_object, list):
for elem in json_object:
cmd = self._find_cmd_in_json(id, elem)
if cmd:
return cmd
elif isinstance(json_object, dict):
if "id" in json_object and json_object["id"] == id:
return json_object
elif "children" in json_object:
return self._find_cmd_in_json(id, json_object["children"])
return None