-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathboot.py
224 lines (193 loc) · 9.64 KB
/
boot.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
import os
import sublime
import sublime_plugin
import weakref
# Please keep this list sorted (Edit -> Sort Lines)
from .plugin.code_actions import LspCodeActionsCommand
from .plugin.completion import LspResolveDocsCommand
from .plugin.completion import LspSelectCompletionItemCommand
from .plugin.configuration import LspDisableLanguageServerGloballyCommand
from .plugin.configuration import LspDisableLanguageServerInProjectCommand
from .plugin.configuration import LspEnableLanguageServerGloballyCommand
from .plugin.configuration import LspEnableLanguageServerInProjectCommand
from .plugin.core.collections import DottedDict
from .plugin.core.css import load as load_css
from .plugin.core.handlers import LanguageHandler
from .plugin.core.logging import exception_log
from .plugin.core.open import opening_files
from .plugin.core.panels import destroy_output_panels
from .plugin.core.panels import LspClearPanelCommand
from .plugin.core.panels import LspUpdatePanelCommand
from .plugin.core.panels import LspUpdateServerPanelCommand
from .plugin.core.panels import WindowPanelListener
from .plugin.core.protocol import Response
from .plugin.core.protocol import WorkspaceFolder
from .plugin.core.registry import LspRecheckSessionsCommand
from .plugin.core.registry import LspRestartClientCommand
from .plugin.core.registry import windows
from .plugin.core.sessions import AbstractPlugin
from .plugin.core.sessions import method2attr
from .plugin.core.sessions import register_plugin
from .plugin.core.sessions import Session
from .plugin.core.settings import client_configs
from .plugin.core.settings import load_settings
from .plugin.core.settings import unload_settings
from .plugin.core.transports import kill_all_subprocesses
from .plugin.core.types import ClientConfig
from .plugin.core.typing import Any, Optional, List, Type, Callable, Dict, Tuple
from .plugin.core.views import LspRunTextCommandHelperCommand
from .plugin.documents import DocumentSyncListener
from .plugin.documents import LspCodeLensCommand
from .plugin.documents import TextChangeListener
from .plugin.edit import LspApplyDocumentEditCommand
from .plugin.execute_command import LspExecuteCommand
from .plugin.formatting import LspFormatDocumentCommand
from .plugin.formatting import LspFormatDocumentRangeCommand
from .plugin.goto import LspSymbolDeclarationCommand
from .plugin.goto import LspSymbolDefinitionCommand
from .plugin.goto import LspSymbolImplementationCommand
from .plugin.goto import LspSymbolTypeDefinitionCommand
from .plugin.hover import LspHoverCommand
from .plugin.panels import LspShowDiagnosticsPanelCommand
from .plugin.panels import LspToggleServerPanelCommand
from .plugin.references import LspSymbolReferencesCommand
from .plugin.rename import LspSymbolRenameCommand
from .plugin.save_command import LspSaveCommand
from .plugin.selection_range import LspExpandSelectionCommand
from .plugin.symbols import LspDocumentSymbolsCommand
from .plugin.symbols import LspSelectionAddCommand
from .plugin.symbols import LspSelectionClearCommand
from .plugin.symbols import LspSelectionSetCommand
from .plugin.symbols import LspWorkspaceSymbolsCommand
from .plugin.tooling import LspCopyToClipboardFromBase64Command
from .plugin.tooling import LspDumpBufferCapabilities
from .plugin.tooling import LspDumpWindowConfigs
from .plugin.tooling import LspParseVscodePackageJson
from .plugin.tooling import LspTroubleshootServerCommand
def _get_final_subclasses(derived: List[Type], results: List[Type]) -> None:
for d in derived:
d_subclasses = d.__subclasses__()
if len(d_subclasses) > 0:
_get_final_subclasses(d_subclasses, results)
else:
results.append(d)
def _register_all_plugins() -> None:
plugin_classes = [] # type: List[Type[AbstractPlugin]]
_get_final_subclasses(AbstractPlugin.__subclasses__(), plugin_classes)
for plugin_class in plugin_classes:
register_plugin(plugin_class, notify_listener=False)
# TODO: Anything below here should be removed about a month after ST4 is released.
language_handler_classes = [] # type: List[Type[LanguageHandler]]
_get_final_subclasses(LanguageHandler.__subclasses__(), language_handler_classes)
for language_handler_class in language_handler_classes:
# Create an ephemeral plugin that stores an instance of the LanguageHandler as a class instance. Custom requests
# and notifications will work.
class LanguageHandlerTransition(AbstractPlugin):
handler = language_handler_class()
@classmethod
def name(cls) -> str:
return cls.handler.name # type: ignore
@classmethod
def configuration(cls) -> Tuple[sublime.Settings, str]:
file_base_name = cls.name()
if file_base_name.startswith("lsp-"):
file_base_name = "LSP-" + file_base_name[len("lsp-"):]
settings = sublime.load_settings("{}.sublime-settings".format(file_base_name))
cfg = cls.handler.config # type: ignore
settings.set("command", cfg.command)
settings.set("settings", cfg.settings.get(None))
if isinstance(cfg.init_options, DottedDict):
init_options = cfg.init_options.get()
elif isinstance(cfg.init_options, dict):
init_options = cfg.init_options
else:
init_options = {}
settings.set("initializationOptions", init_options)
settings.set("selector", cfg.selector)
settings.set("priority_selector", cfg.priority_selector)
return settings, "Packages/{0}/{0}.sublime-settings".format(file_base_name)
@classmethod
def can_start(cls, window: sublime.Window, initiating_view: sublime.View,
workspace_folders: List[WorkspaceFolder], configuration: ClientConfig) -> Optional[str]:
if hasattr(cls.handler, 'on_start'):
if not cls.handler.on_start(window): # type: ignore
return "{} cannot start".format(cls.name())
return None
def __init__(self, weaksession: 'weakref.ref[Session]') -> None:
super().__init__(weaksession)
if hasattr(self.handler, 'on_initialized'):
self.handler.on_initialized(self) # type: ignore
def on_notification(self, method: str, handler: Callable) -> None:
setattr(self, method2attr(method), handler)
def on_request(self, method: str, handler: Callable) -> None:
setattr(self, method2attr(method), handler)
def send_response(self, response: Response) -> None:
session = self.weaksession()
if session:
session.send_response(response)
register_plugin(LanguageHandlerTransition, notify_listener=False)
def _unregister_all_plugins() -> None:
from LSP.plugin.core.sessions import _plugins
_plugins.clear()
client_configs.external.clear()
client_configs.all.clear()
def plugin_loaded() -> None:
load_settings()
load_css()
_register_all_plugins()
client_configs.update_configs()
for window in sublime.windows():
windows.lookup(window)
def plugin_unloaded() -> None:
_unregister_all_plugins()
for window in sublime.windows():
destroy_output_panels(window) # references and diagnostics panels
try:
windows.lookup(window).plugin_unloaded()
windows.discard(window)
except Exception as ex:
exception_log("failed to unload window", ex)
unload_settings()
class Listener(sublime_plugin.EventListener):
def on_exit(self) -> None:
kill_all_subprocesses()
def on_load_project_async(self, w: sublime.Window) -> None:
windows.lookup(w).on_load_project_async()
def on_post_save_project_async(self, w: sublime.Window) -> None:
windows.lookup(w).on_post_save_project_async()
def on_new_window_async(self, w: sublime.Window) -> None:
sublime.set_timeout(lambda: windows.lookup(w))
def on_pre_close_window(self, w: sublime.Window) -> None:
windows.discard(w)
def on_post_move_async(self, view: sublime.View) -> None:
listeners = sublime_plugin.view_event_listeners.get(view.id())
if not isinstance(listeners, list):
return
for listener in listeners:
if isinstance(listener, DocumentSyncListener):
return listener.on_post_move_window_async()
def on_load(self, view: sublime.View) -> None:
file_name = view.file_name()
if not file_name:
return
for fn in opening_files.keys():
if fn == file_name or os.path.samefile(fn, file_name):
# Remove it from the pending opening files, and resolve the promise.
opening_files.pop(fn)[1](view)
break
def on_pre_close(self, view: sublime.View) -> None:
file_name = view.file_name()
if not file_name:
return
for fn in opening_files.keys():
if fn == file_name or os.path.samefile(fn, file_name):
tup = opening_files.pop(fn, None)
if tup:
# The view got closed before it finished loading. This can happen.
tup[1](None)
break
def on_post_window_command(self, window: sublime.Window, command_name: str, args: Optional[Dict[str, Any]]) -> None:
if command_name in ("next_result", "prev_result"):
view = window.active_view()
if view:
view.run_command("lsp_hover", {"only_diagnostics": True})