forked from wbond/package_control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.py
159 lines (122 loc) · 6.42 KB
/
bootstrap.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
import sys
import threading
import os
from textwrap import dedent
import sublime
if sys.version_info < (3,):
from package_control import reloader
from package_control.bootstrap import bootstrap_dependency
from package_control.package_manager import PackageManager
from package_control import loader
from package_control.settings import pc_settings_filename, load_list_setting, save_list_setting
else:
from .package_control import reloader
from .package_control.bootstrap import bootstrap_dependency
from .package_control.package_manager import PackageManager
from .package_control import loader
from .package_control.settings import pc_settings_filename, load_list_setting, save_list_setting
def plugin_loaded():
manager = PackageManager()
settings = manager.settings.copy()
if not os.path.exists(loader.loader_package_path):
base_loader_code = """
import sys
import os
from os.path import dirname
# This file adds the package_control subdirectory of Package Control
# to first in the sys.path so that all other packages may rely on
# PC for utility functions, such as event helpers, adding things to
# sys.path, downloading files from the internet, etc
if sys.version_info >= (3,):
def decode(path):
return path
def encode(path):
return path
loader_dir = dirname(__file__)
else:
def decode(path):
if not isinstance(path, unicode):
path = path.decode(sys.getfilesystemencoding())
return path
def encode(path):
if isinstance(path, unicode):
path = path.encode(sys.getfilesystemencoding())
return path
loader_dir = decode(os.getcwd())
st_dir = dirname(dirname(loader_dir))
found = False
if sys.version_info >= (3,):
installed_packages_dir = os.path.join(st_dir, u'Installed Packages')
pc_package_path = os.path.join(installed_packages_dir, u'Package Control.sublime-package')
if os.path.exists(encode(pc_package_path)):
found = True
if not found:
packages_dir = os.path.join(st_dir, u'Packages')
pc_package_path = os.path.join(packages_dir, u'Package Control')
if os.path.exists(encode(pc_package_path)):
found = True
if found:
if os.name == 'nt':
from ctypes import windll, create_unicode_buffer
buf = create_unicode_buffer(512)
if windll.kernel32.GetShortPathNameW(pc_package_path, buf, len(buf)):
pc_package_path = buf.value
sys.path.insert(0, encode(pc_package_path))
import package_control
# We remove the import path right away so as not to screw up
# Sublime Text and its import machinery
sys.path.remove(encode(pc_package_path))
else:
print(u'Package Control: Error finding main directory from loader')
"""
base_loader_code = dedent(base_loader_code)
loader.add('00', 'package_control', base_loader_code)
pc_settings = sublime.load_settings(pc_settings_filename())
# Make sure we are track Package Control itself
installed_packages = load_list_setting(pc_settings, 'installed_packages')
if 'Package Control' not in installed_packages:
installed_packages.append('Package Control')
save_list_setting(pc_settings, pc_settings_filename(), 'installed_packages', installed_packages)
orig_installed_dependencies = load_list_setting(pc_settings, 'installed_dependencies')
installed_dependencies = list(orig_installed_dependencies)
# Record that the loader itself is installed
if loader.loader_package_name not in installed_dependencies:
installed_dependencies.append(loader.loader_package_name)
# Queue up installation of bz2
if 'bz2' not in installed_dependencies:
installed_dependencies.append('bz2')
# Queue up installation of select module for ST2/Windows
if sublime.platform() == 'windows' and sys.version_info < (3,) and 'select-windows' not in installed_dependencies:
installed_dependencies.append('select-windows')
save_list_setting(pc_settings, pc_settings_filename(), 'installed_dependencies', installed_dependencies, orig_installed_dependencies)
# SSL support fo Linux
if sublime.platform() == 'linux':
linux_ssl_url = u'http://packagecontrol.io/ssl-linux.sublime-package'
linux_ssl_hash = u'66ee695385657ae5cbed7fdda0b7d6c32379ca3e8e26ec268a51bf2f29f9e90b'
linux_ssl_priority = u'01'
def linux_ssl_show_restart():
sublime.message_dialog(u'Package Control\n\n'
u'Package Control just installed the missing Python _ssl ' + \
u'module for Linux since Sublime Text does not include it.\n\n' + \
u'Please restart Sublime Text to make SSL available to all ' + \
u'packages.')
linux_ssl_args = (settings, linux_ssl_url,
linux_ssl_hash, linux_ssl_priority, linux_ssl_show_restart)
threading.Thread(target=bootstrap_dependency, args=linux_ssl_args).start()
# SSL support for SHA-2 certificates with ST2 on Windows
if sublime.platform() == 'windows' and sys.version_info < (3,):
win_ssl_url = u'http://packagecontrol.io/ssl-windows.sublime-package'
win_ssl_hash = u'3c28982eb400039cfffe53d38510556adead39ba7321f2d15a6770d3ebc75030'
win_ssl_priority = u'01'
def win_ssl_show_restart():
sublime.message_dialog(u'Package Control\n\n'
u'Package Control just upgraded the Python _ssl module for ' + \
u'ST2 on Windows because the bundled one does not include ' + \
u'support for modern SSL certificates.\n\n' + \
u'Please restart Sublime Text to complete the upgrade.')
win_ssl_args = (settings, win_ssl_url, win_ssl_hash,
win_ssl_priority, win_ssl_show_restart)
threading.Thread(target=bootstrap_dependency, args=win_ssl_args).start()
# ST2 compat
if sys.version_info < (3,):
plugin_loaded()