/v3.0/NBusiness/VisualStudio/ESharpScope.cs

# · C# · 223 lines · 190 code · 33 blank · 0 comment · 38 complexity · 1b3436a9cbbaf3db2bbee0e84563eda4 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Microsoft.VisualStudio.Package;
  6. using Microsoft.VisualStudio.TextManager.Interop;
  7. using NBusiness.ESharp;
  8. using NBusiness.CodeDom.Compiler;
  9. using NBusiness.CodeDom;
  10. using System.Reflection;
  11. using EnvDTE;
  12. using NBusiness.Utilities;
  13. using NBusiness.ESharp.Compiler;
  14. using NBusiness.CodeDom.Services;
  15. namespace NBusiness.VisualStudio
  16. {
  17. class ESharpScope : AuthoringScope
  18. {
  19. ParseRequest _request;
  20. ProjectParseInfo _parseInfo;
  21. public ESharpScope(ProjectParseInfo parseInfo, ParseRequest request)
  22. {
  23. _request = request;
  24. _parseInfo = parseInfo;
  25. }
  26. public override string GetDataTipText(int line, int col, out TextSpan span)
  27. {
  28. span = new TextSpan();
  29. return null;
  30. }
  31. public override Declarations GetDeclarations(IVsTextView view, int line, int col, TokenInfo info, ParseReason reason)
  32. {
  33. List<ESharpDeclaration> declarations = new List<ESharpDeclaration>();
  34. if(reason == ParseReason.DisplayMemberList)
  35. {
  36. EntityRoot root = null;
  37. EntityElement[] elements = null;
  38. lock (_parseInfo)
  39. {
  40. root = _parseInfo.Root;
  41. elements = _parseInfo.Elements;
  42. }
  43. if (root != null)
  44. {
  45. EntityElement element = (root as ICompileUnit).GetElementByLocation(_request.FileName, line, col);
  46. if (element != null)
  47. {
  48. ICompileUnit unit = (root as ICompileUnit).GetUnitByElement(element);
  49. info.StartIndex = element.Column;
  50. info.EndIndex = element.Column + element.Value.Length - 1;
  51. EntityElement previous = null;
  52. foreach (EntityElement e in elements)
  53. {
  54. if (e == element)
  55. break;
  56. if(e.Type.IsSignificant)
  57. previous = e;
  58. }
  59. if (previous != null)
  60. {
  61. if (previous.Type == ESharpEntityElementTypes.FieldDeclaration)
  62. {
  63. GetFieldTypeDeclarations(declarations, element);
  64. }
  65. else if (previous.Type == ESharpEntityElementTypes.AccessDeclaration)
  66. {
  67. GetAllowDenyDeclarations(declarations, element);
  68. }
  69. else if (previous.Type == ESharpEntityElementTypes.EntityAs)
  70. {
  71. GetAvailableTemplates(declarations, element, unit);
  72. }
  73. }
  74. }
  75. }
  76. }
  77. return new ESharpDeclarations(declarations.ToArray());
  78. }
  79. #region Declaration builders
  80. #region Allow deny declarations
  81. private void GetAllowDenyDeclarations(List<ESharpDeclaration> declarations, EntityElement element)
  82. {
  83. declarations.Add(new ESharpDeclaration { Title = "allow", Type = element.Type });
  84. declarations.Add(new ESharpDeclaration { Title = "deny", Type = element.Type });
  85. }
  86. #endregion
  87. #region Field declarations
  88. private void GetFieldDeclarations(List<ESharpDeclaration> declarations, EntityElement element, EntityCompileUnit unit)
  89. {
  90. foreach (EntityField field in ((unit as EntityField).Parent as Entity).Fields)
  91. {
  92. if (field != unit)
  93. declarations.Add(new ESharpDeclaration { Title = field.Name, Type = element.Type });
  94. }
  95. }
  96. #endregion
  97. #region Access type declarations
  98. private void GetAccessTypeDeclarations(List<ESharpDeclaration> declarations, EntityElement element)
  99. {
  100. declarations.Add(new ESharpDeclaration { Title = "get", Type = element.Type });
  101. declarations.Add(new ESharpDeclaration { Title = "set", Type = element.Type });
  102. }
  103. #endregion
  104. #region Authorize type declarations
  105. private void GetAuthorizeTypeDeclarations(List<ESharpDeclaration> declarations, EntityElement element)
  106. {
  107. declarations.Add(new ESharpDeclaration { Title = "delete", Type = element.Type });
  108. declarations.Add(new ESharpDeclaration { Title = "fetch", Type = element.Type });
  109. declarations.Add(new ESharpDeclaration { Title = "insert", Type = element.Type });
  110. declarations.Add(new ESharpDeclaration { Title = "update", Type = element.Type });
  111. }
  112. #endregion
  113. #region Field type declarations
  114. private void GetFieldTypeDeclarations(List<ESharpDeclaration> declarations, EntityElement element)
  115. {
  116. foreach (string name in ESharpField.GetFieldTypeNames())
  117. {
  118. declarations.Add(new ESharpDeclaration { Title = name.ToLower(), Type = element.Type });
  119. }
  120. }
  121. #endregion
  122. #region Validate property declarations
  123. private void GetValidatePropertyDeclarations(List<ESharpDeclaration> declarations, EntityElement element, EntityCompileUnit unit)
  124. {
  125. if (unit != null && unit is IHasParent)
  126. {
  127. foreach (EntityField f in ((unit as IHasParent).Parent as Entity).Fields)
  128. declarations.Add(new ESharpDeclaration { Title = f.Name, Type = element.Type });
  129. foreach (EntityRelationship r in ((unit as IHasParent).Parent as Entity).Relationships)
  130. {
  131. if (r.From == ((unit as IHasParent).Parent as Entity))
  132. declarations.Add(new ESharpDeclaration { Title = r.Name, Type = element.Type });
  133. }
  134. }
  135. }
  136. #endregion
  137. #region Template declarations
  138. private void GetAvailableTemplates(List<ESharpDeclaration> declarations, EntityElement element, ICompileUnit unit)
  139. {
  140. IFrameworkService frameworkService = null;
  141. lock (_parseInfo)
  142. frameworkService = _parseInfo.Provider.GetService(typeof(IFrameworkService)) as IFrameworkService;
  143. EntityTemplate[] templates = frameworkService.GetTemplates();
  144. Entity entity = unit as Entity;
  145. if (entity == null)
  146. {
  147. IHasParent hasParent = unit as IHasParent;
  148. if (hasParent != null)
  149. entity = hasParent.Parent as Entity;
  150. }
  151. if (entity != null)
  152. {
  153. foreach (EntityTemplate template in templates)
  154. {
  155. string fullname = template.Name;
  156. string name = fullname.Substring(fullname.LastIndexOf('.') + 1);
  157. string partialName = (name.ToLower().EndsWith("template") ?
  158. name.Remove(name.ToLower().IndexOf("template")) :
  159. name);
  160. string @namespace = fullname.Remove(fullname.LastIndexOf('.'));
  161. var found = from t in entity.As
  162. where
  163. t.Name == fullname ||
  164. t.Name == name ||
  165. t.Name == partialName
  166. select t;
  167. if (found.Count() == 0)
  168. {
  169. string[] namespaces = (from @using in entity.Using select @using.Namespace).ToArray();
  170. if (namespaces.Contains(@namespace))
  171. declarations.Add(new ESharpDeclaration { Title = partialName, Type = element.Type });
  172. else
  173. declarations.Add(new ESharpDeclaration { Title = @namespace + "." + partialName, Type = element.Type });
  174. }
  175. }
  176. }
  177. }
  178. #endregion
  179. #endregion
  180. public override Methods GetMethods(int line, int col, string name)
  181. {
  182. return null;
  183. }
  184. public override string Goto(Microsoft.VisualStudio.VSConstants.VSStd97CmdID cmd, Microsoft.VisualStudio.TextManager.Interop.IVsTextView textView, int line, int col, out Microsoft.VisualStudio.TextManager.Interop.TextSpan span)
  185. {
  186. span = new TextSpan();
  187. return null;
  188. }
  189. }
  190. }