Skip to content

Commit da1abc5

Browse files
committed
Added the "Install Local Dependency" command for package developers
1 parent 6db52c7 commit da1abc5

File tree

5 files changed

+100
-0
lines changed

5 files changed

+100
-0
lines changed

Default.sublime-commands

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
"caption": "Package Control: Grab CA Certs",
3232
"command": "grab_certs"
3333
},
34+
{
35+
"caption": "Package Control: Install Local Dependency",
36+
"command": "install_local_dependency"
37+
},
3438
{
3539
"caption": "Package Control: Install Package",
3640
"command": "install_package"

package_control/commands/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from .disable_package_command import DisablePackageCommand
88
from .discover_packages_command import DiscoverPackagesCommand
99
from .enable_package_command import EnablePackageCommand
10+
from .install_local_dependency_command import InstallLocalDependencyCommand
1011
from .install_package_command import InstallPackageCommand
1112
from .list_packages_command import ListPackagesCommand
1213
from .list_unmanaged_packages_command import ListUnmanagedPackagesCommand
@@ -28,6 +29,7 @@
2829
'DisablePackageCommand',
2930
'DiscoverPackagesCommand',
3031
'EnablePackageCommand',
32+
'InstallLocalDependencyCommand',
3133
'InstallPackageCommand',
3234
'ListPackagesCommand',
3335
'ListUnmanagedPackagesCommand',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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)

package_control/package_manager.py

+16
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,22 @@ def list_dependencies(self):
582582

583583
return sorted(output, key=lambda s: s.lower())
584584

585+
def list_unloaded_dependencies(self):
586+
"""
587+
:return:
588+
A list of the names of dependencies in the Packages/ folder that
589+
are not currently being loaded
590+
"""
591+
592+
output = []
593+
for name in self._list_visible_dirs(self.settings['packages_path']):
594+
hidden_file_path = os.path.join(self.settings['packages_path'], name, '.sublime-dependency')
595+
if not os.path.exists(hidden_file_path):
596+
continue
597+
if not loader.exists(name):
598+
output.append(name)
599+
return output
600+
585601
def list_all_packages(self, exclude_dependencies=True):
586602
"""
587603
Lists all packages on the machine

package_control/reloader.py

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
'.commands.discover_packages_command',
124124
'.commands.enable_package_command',
125125
'.commands.existing_packages_command',
126+
'.commands.install_local_dependency_command',
126127
'.commands.install_package_command',
127128
'.commands.list_packages_command',
128129
'.commands.list_unmanaged_packages_command',

0 commit comments

Comments
 (0)