|
| 1 | +import sublime |
| 2 | +import sublime_plugin |
| 3 | + |
| 4 | +import os |
| 5 | + |
| 6 | +from .. import text, loader |
| 7 | +from ..show_quick_panel import show_quick_panel |
| 8 | +from ..package_manager import PackageManager |
| 9 | + |
| 10 | + |
| 11 | +class InstallLocalDependencyCommand(sublime_plugin.WindowCommand): |
| 12 | + |
| 13 | + """ |
| 14 | + A command that finds allows package developers to install a dependency that |
| 15 | + exists in the Packages/ folder, but is not currently being loaded. |
| 16 | + """ |
| 17 | + |
| 18 | + def run(self): |
| 19 | + self.manager = PackageManager() |
| 20 | + dependencies = self.manager.list_unloaded_dependencies() |
| 21 | + self.dependency_list = sorted(dependencies, key=lambda s: s.lower()) |
| 22 | + if not self.dependency_list: |
| 23 | + sublime.message_dialog(text.format( |
| 24 | + u''' |
| 25 | + Package Control |
| 26 | +
|
| 27 | + All local dependencies are currently loaded |
| 28 | + ''' |
| 29 | + )) |
| 30 | + return |
| 31 | + show_quick_panel(self.window, self.dependency_list, self.on_done) |
| 32 | + |
| 33 | + def on_done(self, picked): |
| 34 | + """ |
| 35 | + Quick panel user selection handler - addds a loader for the selected |
| 36 | + dependency |
| 37 | +
|
| 38 | + :param picked: |
| 39 | + An integer of the 0-based package name index from the presented |
| 40 | + list. -1 means the user cancelled. |
| 41 | + """ |
| 42 | + |
| 43 | + if picked == -1: |
| 44 | + return |
| 45 | + dependency = self.dependency_list[picked] |
| 46 | + |
| 47 | + dependency_path = self.manager.get_package_dir(dependency) |
| 48 | + hidden_file_path = os.path.join(dependency_path, '.sublime-dependency') |
| 49 | + loader_py_path = os.path.join(dependency_path, 'loader.py') |
| 50 | + loader_code_path = os.path.join(dependency_path, 'loader.code') |
| 51 | + |
| 52 | + priority = None |
| 53 | + |
| 54 | + # Look in the .sublime-dependency file to see where in the dependency |
| 55 | + # load order this dependency should be installed |
| 56 | + if os.path.exists(hidden_file_path): |
| 57 | + with open(hidden_file_path, 'rb') as f: |
| 58 | + data = f.read().decode('utf-8').strip() |
| 59 | + if data.isdigit(): |
| 60 | + priority = int(data) |
| 61 | + |
| 62 | + if priority is None: |
| 63 | + priority = 50 |
| 64 | + |
| 65 | + code = None |
| 66 | + is_py_loader = os.path.exists(loader_py_path) |
| 67 | + is_code_loader = os.path.exists(loader_code_path) |
| 68 | + if is_py_loader or is_code_loader: |
| 69 | + loader_path = loader_code_path if is_code_loader else loader_py_path |
| 70 | + with open(loader_path, 'rb') as f: |
| 71 | + code = f.read() |
| 72 | + |
| 73 | + loader.add(priority, dependency, code) |
| 74 | + |
| 75 | + sublime.status_message(('Dependency %s successfully added to ' + |
| 76 | + 'dependency loader - restarting Sublime Text may be required') % |
| 77 | + dependency) |
0 commit comments