/Tools/IronStudio/IronRubyTools/IronRubyTools/RubyVsUtils.cs

http://github.com/IronLanguages/main · C# · 97 lines · 74 code · 10 blank · 13 comment · 5 complexity · 1dd8591ebcb4a2be12c82dd6dec187de MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Apache License, Version 2.0, please send an email to
  8. * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Apache License, Version 2.0.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. * ***************************************************************************/
  14. using System;
  15. using System.Diagnostics;
  16. using System.Threading;
  17. using Microsoft.IronRubyTools.Intellisense;
  18. using Microsoft.IronRubyTools.Project;
  19. using Microsoft.VisualStudio;
  20. using Microsoft.VisualStudio.Shell;
  21. using Microsoft.VisualStudio.Shell.Interop;
  22. using Microsoft.Win32.SafeHandles;
  23. using Microsoft.IronStudio;
  24. namespace Microsoft.IronRubyTools {
  25. internal static class RubyVsUtils {
  26. private sealed class GenericWaitHandle : WaitHandle {
  27. public GenericWaitHandle(IntPtr handle) {
  28. SafeWaitHandle = new SafeWaitHandle(handle, false);
  29. }
  30. }
  31. internal static WaitHandle/*!*/ GetWaitHandle(this Process/*!*/ process) {
  32. return new GenericWaitHandle(process.Handle);
  33. }
  34. internal static RubyProjectNode GetRubyProject(this EnvDTE.Project project) {
  35. return project.GetCommonProject() as RubyProjectNode;
  36. }
  37. internal static IVsOutputWindowPane GetOrCreateOutputPane(string/*!*/ name, Guid guid, bool clearWithSolution = false) {
  38. IVsOutputWindowPane outputPane = null;
  39. IVsOutputWindow output = (IVsOutputWindow)Package.GetGlobalService(typeof(SVsOutputWindow));
  40. if (ErrorHandler.Failed(output.GetPane(ref guid, out outputPane))) {
  41. if (!ErrorHandler.Failed(output.CreatePane(ref guid, name, Convert.ToInt32(true), Convert.ToInt32(clearWithSolution)))) {
  42. output.GetPane(ref guid, out outputPane);
  43. }
  44. }
  45. Debug.Assert(outputPane != null);
  46. return outputPane;
  47. }
  48. internal static void ShowWindow(object/*!*/ windowGuid) {
  49. var dte = (EnvDTE.DTE)Package.GetGlobalService(typeof(EnvDTE.DTE));
  50. var outputWindow = dte.Windows.Item(windowGuid);
  51. Debug.Assert(outputWindow != null, "Unknown window: " + windowGuid);
  52. outputWindow.Visible = true;
  53. }
  54. internal static void GotoSource(this LocationInfo location) {
  55. IronRubyToolsPackage.NavigateTo(
  56. location.FilePath,
  57. Guid.Empty,
  58. location.Line - 1,
  59. location.Column - 1);
  60. }
  61. #if FEATURE_INTELLISENSE
  62. internal static StandardGlyphGroup ToGlyphGroup(this ObjectType objectType) {
  63. StandardGlyphGroup group;
  64. switch (objectType) {
  65. case ObjectType.Class: group = StandardGlyphGroup.GlyphGroupClass; break;
  66. case ObjectType.Delegate: group = StandardGlyphGroup.GlyphGroupDelegate; break;
  67. case ObjectType.Enum: group = StandardGlyphGroup.GlyphGroupEnum; break;
  68. case ObjectType.Namespace: group = StandardGlyphGroup.GlyphGroupNamespace; break;
  69. case ObjectType.Multiple: group = StandardGlyphGroup.GlyphGroupOverload; break;
  70. case ObjectType.Field: group = StandardGlyphGroup.GlyphGroupField; break;
  71. case ObjectType.Module: group = StandardGlyphGroup.GlyphGroupModule; break;
  72. case ObjectType.Property: group = StandardGlyphGroup.GlyphGroupProperty; break;
  73. case ObjectType.Instance: group = StandardGlyphGroup.GlyphGroupVariable; break;
  74. case ObjectType.Constant: group = StandardGlyphGroup.GlyphGroupConstant; break;
  75. case ObjectType.EnumMember: group = StandardGlyphGroup.GlyphGroupEnumMember; break;
  76. case ObjectType.Event: group = StandardGlyphGroup.GlyphGroupEvent; break;
  77. case ObjectType.Function:
  78. case ObjectType.Method:
  79. default:
  80. group = StandardGlyphGroup.GlyphGroupMethod;
  81. break;
  82. }
  83. return group;
  84. }
  85. #endif
  86. }
  87. }