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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 | /* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Apache License, Version 2.0. A * copy of the license can be found in the License.html file at the root of this distribution. If * you cannot locate the Apache License, Version 2.0, please send an email to * vspython@microsoft.com. By using this source code in any fashion, you are agreeing to be bound * by the terms of the Apache License, Version 2.0. * * You must not remove this notice, or any other, from this software. * * ***************************************************************************/ using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Globalization; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using Microsoft.PythonTools.Commands; using Microsoft.PythonTools.Debugger.DebugEngine; using Microsoft.PythonTools.Editor; using Microsoft.PythonTools.Intellisense; using Microsoft.PythonTools.Interpreter; using Microsoft.PythonTools.Interpreter.Default; using Microsoft.PythonTools.Navigation; using Microsoft.PythonTools.Options; using Microsoft.PythonTools.Project; using Microsoft.VisualStudio; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.OLE.Interop; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Shell.Interop; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Adornments; using Microsoft.VisualStudio.TextManager.Interop; using Microsoft.VisualStudio.Utilities; using Microsoft.Win32; namespace Microsoft.PythonTools { /// <summary> /// This is the class that implements the package exposed by this assembly. /// /// The minimum requirement for a class to be considered a valid package for Visual Studio /// is to implement the IVsPackage interface and register itself with the shell. /// This package uses the helper classes defined inside the Managed Package Framework (MPF) /// to do it: it derives from the Package class that provides the implementation of the /// IVsPackage interface and uses the registration attributes defined in the framework to /// register itself and its components with the shell. /// </summary> [PackageRegistration(UseManagedResourcesOnly = true)] // This attribute tells the PkgDef creation utility (CreatePkgDef.exe) that this class is a package. [InstalledProductRegistration("#110", "#112", "1.0", // This attribute is used to register the informations needed to show the this package in the Help/About dialog of Visual Studio. IconResourceID = 400)] [ProvideMenuResource(1000, 1)] // This attribute is needed to let the shell know that this package exposes some menus. [ProvideAutoLoad(CommonConstants.UIContextNoSolution)] [ProvideAutoLoad(CommonConstants.UIContextSolutionExists)] [Description("Python Tools Package")] [ProvideAutomationObject("VsPython")] [ProvideLanguageEditorOptionPage(typeof(PythonAdvancedEditorOptionsPage), PythonConstants.LanguageName, "", "Advanced", "114")] [ProvideOptionPage(typeof(PythonInterpreterOptionsPage), "Python Tools", "Interpreters", 115, 116, true)] [ProvideOptionPage(typeof(PythonInteractiveOptionsPage), "Python Tools", "Interactive Windows", 115, 117, true)] [ProvideOptionPage(typeof(PythonAdvancedOptionsPage), "Python Tools", "Advanced", 115, 118, true)] [Guid(GuidList.guidPythonToolsPkgString)] // our packages GUID [ProvideLanguageService(typeof(PythonLanguageInfo), PythonConstants.LanguageName, 106, RequestStockColors = true, ShowSmartIndent = true, ShowCompletion = true, DefaultToInsertSpaces = true, HideAdvancedMembersByDefault = false, EnableAdvancedMembersOption = true, ShowDropDownOptions = true)] [ProvideLanguageExtension(typeof(PythonLanguageInfo), PythonConstants.FileExtension)] [ProvideLanguageExtension(typeof(PythonLanguageInfo), PythonConstants.WindowsFileExtension)] [ProvideDebugEngine("Python Debugging", typeof(AD7ProgramProvider), typeof(AD7Engine), AD7Engine.DebugEngineId)] [ProvideDebugLanguage("Python", "{DA3C7D59-F9E4-4697-BEE7-3A0703AF6BFF}", AD7Engine.DebugEngineId)] [ProvidePythonExecutionModeAttribute(ExecutionMode.StandardModeId, "Standard", "Standard")] [ProvidePythonExecutionModeAttribute("{91BB0245-B2A9-47BF-8D76-DD428C6D8974}", "IPython", "visualstudio_ipython_repl.IPythonBackend", false)] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.ArithmeticError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.AssertionError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.AttributeError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.BaseException")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.BufferError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.BytesWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.DeprecationWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.EOFError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.EnvironmentError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.Exception")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.FloatingPointError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.FutureWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.GeneratorExit")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.IOError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.ImportError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.ImportWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.IndentationError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.IndexError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.KeyError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.KeyboardInterrupt")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.LookupError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.MemoryError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.NameError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.NotImplementedError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.OSError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.OverflowError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.PendingDeprecationWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.ReferenceError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.RuntimeError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.RuntimeWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.StandardError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.StopIteration")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.SyntaxError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.SyntaxWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.SystemError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.SystemExit")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.TabError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.TypeError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.UnboundLocalError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.UnicodeDecodeError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.UnicodeEncodeError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.UnicodeError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.UnicodeTranslateError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.UnicodeWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.UserWarning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.ValueError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.Warning")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.WindowsError")] [ProvideDebugException(AD7Engine.DebugEngineId, "Python Exceptions", "exceptions", "exceptions.ZeroDivisionError")] public sealed class PythonToolsPackage : CommonPackage { private LanguagePreferences _langPrefs; public static PythonToolsPackage Instance; private ProjectAnalyzer _analyzer; private static Dictionary<Command, MenuCommand> _commands = new Dictionary<Command,MenuCommand>(); private PythonAutomation _autoObject = new PythonAutomation(); private IContentType _contentType; /// <summary> /// Default constructor of the package. /// Inside this method you can place any initialization code that does not require /// any Visual Studio service because at this point the package object is created but /// not sited yet inside Visual Studio environment. The place to do all the other /// initialization is the Initialize method. /// </summary> public PythonToolsPackage() { Trace.WriteLine(string.Format(CultureInfo.CurrentCulture, "Entering constructor for: {0}", this.ToString())); Instance = this; } internal static void NavigateTo(string filename, Guid docViewGuidType, int line, int col) { IVsTextView viewAdapter; IVsWindowFrame pWindowFrame; OpenDocument(filename, out viewAdapter, out pWindowFrame); ErrorHandler.ThrowOnFailure(pWindowFrame.Show()); // Set the cursor at the beginning of the declaration. ErrorHandler.ThrowOnFailure(viewAdapter.SetCaretPos(line, col)); // Make sure that the text is visible. viewAdapter.CenterLines(line, 1); } internal static ITextBuffer GetBufferForDocument(string filename) { IVsTextView viewAdapter; IVsWindowFrame frame; OpenDocument(filename, out viewAdapter, out frame); IVsTextLines lines; ErrorHandler.ThrowOnFailure(viewAdapter.GetBuffer(out lines)); var model = Instance.GetService(typeof(SComponentModel)) as IComponentModel; var adapter = model.GetService<IVsEditorAdaptersFactoryService>(); return adapter.GetDocumentBuffer(lines); } private static void OpenDocument(string filename, out IVsTextView viewAdapter, out IVsWindowFrame pWindowFrame) { IVsTextManager textMgr = (IVsTextManager)Instance.GetService(typeof(SVsTextManager)); IVsUIShellOpenDocument uiShellOpenDocument = Instance.GetService(typeof(SVsUIShellOpenDocument)) as IVsUIShellOpenDocument; IVsUIHierarchy hierarchy; uint itemid; VsShellUtilities.OpenDocument( Instance, filename, Guid.Empty, out hierarchy, out itemid, out pWindowFrame, out viewAdapter); } protected override object GetAutomationObject(string name) { if (name == "VsPython") { return _autoObject; } return base.GetAutomationObject(name); } public override bool IsRecognizedFile(string filename) { return PythonProjectNode.IsPythonFile(filename); } public override Type GetLibraryManagerType() { return typeof(IPythonLibraryManager); } public string InteractiveOptions { get { // FIXME return ""; } } public PythonAdvancedOptionsPage OptionsPage { get { return (PythonAdvancedOptionsPage)GetDialogPage(typeof(PythonAdvancedOptionsPage)); } } internal PythonAdvancedEditorOptionsPage AdvancedEditorOptionsPage { get { return (PythonAdvancedEditorOptionsPage)GetDialogPage(typeof(PythonAdvancedEditorOptionsPage)); } } internal PythonInterpreterOptionsPage InterpreterOptionsPage { get { return (PythonInterpreterOptionsPage)GetDialogPage(typeof(PythonInterpreterOptionsPage)); } } internal PythonInteractiveOptionsPage InteractiveOptionsPage { get { return (PythonInteractiveOptionsPage)GetDialogPage(typeof(PythonInteractiveOptionsPage)); } } /// <summary> /// The analyzer which is used for loose files. /// </summary> internal ProjectAnalyzer DefaultAnalyzer { get { if (_analyzer == null) { _analyzer = CreateAnalyzer(); } return _analyzer; } } internal void RecreateAnalyzer() { _analyzer = CreateAnalyzer(); } private ProjectAnalyzer CreateAnalyzer() { var model = GetService(typeof(SComponentModel)) as IComponentModel; var defaultFactory = GetDefaultInterpreter(model.GetAllPythonInterpreterFactories()); EnsureCompletionDb(defaultFactory); return new ProjectAnalyzer(defaultFactory.CreateInterpreter(), defaultFactory, model.GetService<IErrorProviderFactory>()); } /// <summary> /// Asks the interpreter to auto-generate it's completion database if it doesn't already exist and the user /// hasn't disabled this option. /// </summary> internal static void EnsureCompletionDb(IPythonInterpreterFactory fact) { if (PythonToolsPackage.Instance.OptionsPage.AutoAnalyzeStandardLibrary) { IInterpreterWithCompletionDatabase interpWithDb = fact as IInterpreterWithCompletionDatabase; if (interpWithDb != null) { interpWithDb.AutoGenerateCompletionDatabase(); } } } private static Guid _noInterpretersFactoryGuid = new Guid("{15CEBB59-1008-4305-97A9-CF5E2CB04711}"); private static IPythonInterpreterFactory _noInterpretersFactory; internal IPythonInterpreterFactory GetDefaultInterpreter(IPythonInterpreterFactory[] factories) { IPythonInterpreterFactory lastInterpreter = null, defaultInterpreter = null; foreach (var interpreter in factories) { lastInterpreter = interpreter; if (interpreter.Id == InterpreterOptionsPage.DefaultInterpreter && interpreter.Configuration.Version == InterpreterOptionsPage.DefaultInterpreterVersion) { defaultInterpreter = interpreter; break; } } if (defaultInterpreter == null && lastInterpreter != null) { // default interpreter not configured, just select the last one and make it the default. defaultInterpreter = lastInterpreter; InterpreterOptionsPage.DefaultInterpreter = defaultInterpreter.Id; InterpreterOptionsPage.DefaultInterpreterVersion = defaultInterpreter.Configuration.Version; InterpreterOptionsPage.SaveSettingsToStorage(); } if (defaultInterpreter == null) { // no interpreters installed, create a default interpreter for analysis if (_noInterpretersFactory == null) { _noInterpretersFactory = ComponentModel.GetService<IDefaultInterpreterFactoryCreator>().CreateInterpreterFactory( new Dictionary<InterpreterFactoryOptions, object>() { { InterpreterFactoryOptions.Description, "Python 2.7 - No Interpreters Installed" }, { InterpreterFactoryOptions.Guid, _noInterpretersFactoryGuid } } ); } defaultInterpreter = _noInterpretersFactory; } return defaultInterpreter; } private void UpdateDefaultAnalyzer(object sender, EventArgs args) { // no need to update if analyzer isn't created yet. if (_analyzer != null) { var analyzer = CreateAnalyzer(); if (_analyzer != null) { analyzer.SwitchAnalyzers(_analyzer); } } } internal override LibraryManager CreateLibraryManager(CommonPackage package) { return new PythonLibraryManager((PythonToolsPackage)package); } public IVsSolution Solution { get { return GetService(typeof(SVsSolution)) as IVsSolution; } } internal static new RegistryKey UserRegistryRoot { get { if (Instance != null) { return ((CommonPackage)Instance).UserRegistryRoot; } return Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\VisualStudio\\10.0"); } } internal static new RegistryKey ApplicationRegistryRoot { get { if (Instance != null) { return ((CommonPackage)Instance).ApplicationRegistryRoot; } return Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\VisualStudio\\10.0"); } } ///////////////////////////////////////////////////////////////////////////// // Overriden Package Implementation /// <summary> /// Initialization of the package; this method is called right after the package is sited, so this is the place /// where you can put all the initilaization code that rely on services provided by VisualStudio. /// </summary> protected override void Initialize() { Trace.WriteLine(string.Format(CultureInfo.CurrentCulture, "Entering Initialize() of: {0}", this.ToString())); base.Initialize(); // register our language service so that we can support features like the navigation bar var langService = new PythonLanguageInfo(this); ((IServiceContainer)this).AddService(langService.GetType(), langService, true); var solution = (IVsSolution)Package.GetGlobalService(typeof(SVsSolution)); //ErrorHandler.ThrowOnFailure(solution.AdviseSolutionEvents(new SolutionAdvisor(), out cookie)); IVsTextManager textMgr = (IVsTextManager)Instance.GetService(typeof(SVsTextManager)); var langPrefs = new LANGPREFERENCES[1]; langPrefs[0].guidLang = typeof(PythonLanguageInfo).GUID; ErrorHandler.ThrowOnFailure(textMgr.GetUserPreferences(null, null, langPrefs, null)); _langPrefs = new LanguagePreferences(langPrefs[0]); Guid guid = typeof(IVsTextManagerEvents2).GUID; IConnectionPoint connectionPoint; ((IConnectionPointContainer)textMgr).FindConnectionPoint(ref guid, out connectionPoint); uint cookie; connectionPoint.Advise(_langPrefs, out cookie); var model = GetService(typeof(SComponentModel)) as IComponentModel; // Add our command handlers for menu (commands must exist in the .vsct file) RegisterCommands(new Command[] { new ExecuteInReplCommand(), new SendToReplCommand(), new FillParagraphCommand(), new SendToDefiningModuleCommand() }); RegisterCommands(GetReplCommands()); InterpreterOptionsPage.InterpretersChanged += InterpretersChanged; InterpreterOptionsPage.DefaultInterpreterChanged += UpdateDefaultAnalyzer; } private void InterpretersChanged(object sender, EventArgs e) { RefreshReplCommands(); } private void RegisterCommands(IEnumerable<Command> commands) { OleMenuCommandService mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService; if (null != mcs) { foreach (var command in commands) { var beforeQueryStatus = command.BeforeQueryStatus; CommandID toolwndCommandID = new CommandID(GuidList.guidPythonToolsCmdSet, command.CommandId); if (beforeQueryStatus == null) { MenuCommand menuToolWin = new MenuCommand(command.DoCommand, toolwndCommandID); mcs.AddCommand(menuToolWin); _commands[command] = menuToolWin; } else { OleMenuCommand menuToolWin = new OleMenuCommand(command.DoCommand, toolwndCommandID); menuToolWin.BeforeQueryStatus += beforeQueryStatus; mcs.AddCommand(menuToolWin); _commands[command] = menuToolWin; } } } } internal void RefreshReplCommands() { OleMenuCommandService mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService; List<OpenReplCommand> replCommands = new List<OpenReplCommand>(); foreach (var keyValue in _commands) { var command = keyValue.Key; OpenReplCommand openRepl = command as OpenReplCommand; if (openRepl != null) { replCommands.Add(openRepl); mcs.RemoveCommand(keyValue.Value); } } foreach (var command in replCommands) { _commands.Remove(command); } RegisterCommands(GetReplCommands()); } private List<OpenReplCommand> GetReplCommands() { var factories = ComponentModel.GetAllPythonInterpreterFactories(); var defaultFactory = GetDefaultInterpreter(factories); // sort so default always comes first, and otherwise in sorted order Array.Sort(factories, (x, y) => { if (x == y) { return 0; } else if (x == defaultFactory) { return -1; } else if (y == defaultFactory) { return 1; } else { return String.Compare(x.GetInterpreterDisplay(), y.GetInterpreterDisplay()); } }); var replCommands = new List<OpenReplCommand>(); for (int i = 0; i < (PkgCmdIDList.cmdidReplWindowF - PkgCmdIDList.cmdidReplWindow) && i < factories.Length; i++) { var factory = factories[i]; var cmd = new OpenReplCommand((int)PkgCmdIDList.cmdidReplWindow + i, factory); replCommands.Add(cmd); } return replCommands; } internal static bool TryGetStartupFileAndDirectory(out string filename, out string dir, out ProjectAnalyzer analyzer) { var startupProject = GetStartupProject(); if (startupProject != null) { filename = startupProject.GetStartupFile(); dir = startupProject.GetWorkingDirectory(); analyzer = ((PythonProjectNode)startupProject).GetAnalyzer(); } else { var textView = CommonPackage.GetActiveTextView(); if (textView == null) { filename = null; dir = null; analyzer = null; return false; } filename = textView.GetFilePath(); analyzer = textView.GetAnalyzer(); dir = Path.GetDirectoryName(filename); } return true; } internal LanguagePreferences LangPrefs { get { return _langPrefs; } } public EnvDTE.DTE DTE { get { return (EnvDTE.DTE)GetService(typeof(EnvDTE.DTE)); } } public IContentType ContentType { get { if (_contentType == null) { _contentType = ComponentModel.GetService<IContentTypeRegistryService>().GetContentType(PythonCoreConstants.ContentType); } return _contentType; } } internal static Dictionary<Command, MenuCommand> Commands { get { return _commands; } } // This is duplicated throughout different assemblies in PythonTools, so search for it if you update it. internal static string GetPythonToolsInstallPath() { string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); if (File.Exists(Path.Combine(path, "PyDebugAttach.dll"))) { return path; } // running from the GAC in remote attach scenario. Look to the VS install dir. using (var configKey = OpenVisualStudioKey()) { var installDir = configKey.GetValue("InstallDir") as string; if (installDir != null) { var toolsPath = Path.Combine(installDir, "Extensions\\Microsoft\\Python Tools for Visual Studio\\1.0"); if (File.Exists(Path.Combine(toolsPath, "PyDebugAttach.dll"))) { return toolsPath; } } } return null; } private static Win32.RegistryKey OpenVisualStudioKey() { if (Environment.Is64BitOperatingSystem) { return RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32).OpenSubKey("Software\\Microsoft\\VisualStudio\\10.0"); } else { return Microsoft.Win32.Registry.LocalMachine.OpenSubKey("Software\\Microsoft\\VisualStudio\\10.0"); } } } } |