/wbeminfo/Default.aspx.cs

http://seautils.googlecode.com/ · C# · 224 lines · 219 code · 4 blank · 1 comment · 2 complexity · 8bb693404ea31be1ec98dc7fb4c415bf MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8. using CIMDICT;
  9. namespace WBEMINFO
  10. {
  11. public partial class _Default : System.Web.UI.Page
  12. {
  13. private const char SEPERATOR = '.';
  14. private const string LIST_FILE = "hello.lst";
  15. private static CIMRepo CIM_Repo = null;
  16. private const string BASELINK = "http://linuxqa.chn.hp.com:7997/wbeminfo";
  17. protected Collection<CIMClass> obj_result_classes = null;
  18. protected CIMClass obj_selected_class = null;
  19. protected CIMClass obj_selected_class_of_prop = null;
  20. protected CIMProp obj_selected_prop = null;
  21. private string ipt_search_text = null;
  22. private string ipt_selected_class = null;
  23. private string ipt_selected_prop = null;
  24. private string ipt_selected_class_of_prop = null;
  25. private static void addListItem(ListBox list, string name, string value)
  26. {
  27. ListItem li = new ListItem();
  28. li.Text = name;
  29. li.Value = value;
  30. if (list.Items.IndexOf(li) < 0)
  31. {
  32. list.Items.Add(li);
  33. }
  34. }
  35. protected void Page_Load(object sender, EventArgs e)
  36. {
  37. //Check if a new list needs to rebuild
  38. string lf = Server.MapPath(LIST_FILE);
  39. if (!System.IO.File.Exists(lf))
  40. {
  41. CIM_Repo = null;
  42. System.Diagnostics.Process cmd = System.Diagnostics.Process.Start("cimtoolcmd.exe", @"" + LIST_FILE);
  43. cmd.WaitForExit();
  44. }
  45. if (CIM_Repo == null)
  46. {
  47. CIM_Repo = new CIMRepo(lf);
  48. }
  49. }
  50. private bool containRequestString(string reqStr)
  51. {
  52. foreach (string key in this.Request.Params.AllKeys)
  53. {
  54. if (key.Equals(reqStr)) return true;
  55. }
  56. return false;
  57. }
  58. private void addHiddenElement( string name, string value )
  59. {
  60. Response.Write("<input type=\"hidden\" name=\"" + name + "\" value=\"" + value + "\" />");
  61. }
  62. private bool isResetAllValue()
  63. {
  64. return this.containRequestString("SearchButton");
  65. }
  66. protected void parseSessionValue( string name, string[] alertNames, out string value)
  67. {
  68. value = null;
  69. if (string.IsNullOrEmpty(name) || alertNames.Length < 1) return;
  70. //Check if the request name exists
  71. if (this.containRequestString(name)) value = this.Request.Params[name];
  72. //If this is a new search, reset all value
  73. if (this.isResetAllValue()) return;
  74. //If not exist, check the alterNames
  75. foreach (string alterName in alertNames)
  76. {
  77. if (!string.IsNullOrEmpty(value)) break;
  78. if (string.IsNullOrEmpty(alterName) || !this.containRequestString(alterName)) continue;
  79. value = this.Request.Params[alterName];
  80. }
  81. if (string.IsNullOrEmpty(value)) return;
  82. //Write the alterName, value to webpage for further use
  83. Response.Write("<input type=\"hidden\" name=\"" + alertNames.Last() + "\" value=\"" + value + "\" />");
  84. }
  85. public void Handle_Query()
  86. {
  87. this.parseSessionValue("ClassNameInput", new string[]{"LastSearchInput"}, out this.ipt_search_text);
  88. this.parseSessionValue("ClassListBox", new string[] { "ClassInheritanceBox", "LastClassSelect" }, out this.ipt_selected_class);
  89. string value = null;
  90. this.parseSessionValue("ClassPropListBox", new string[] { "LastPropSelect" }, out value);
  91. if (!string.IsNullOrEmpty(value))
  92. {
  93. string[] parts = value.Split(SEPERATOR);
  94. if (parts.Length == 2)
  95. {
  96. this.ipt_selected_class_of_prop = parts[0];
  97. this.ipt_selected_prop = parts[1];
  98. }
  99. else
  100. {
  101. this.ipt_selected_class_of_prop = value;
  102. this.ipt_selected_prop = null;
  103. }
  104. }
  105. this.obj_selected_class = null;
  106. if (!string.IsNullOrEmpty(this.ipt_selected_class))
  107. {
  108. this.obj_selected_class = CIM_Repo.getClass(this.ipt_selected_class);
  109. }
  110. this.obj_selected_class_of_prop = null;
  111. if (!string.IsNullOrEmpty(this.ipt_selected_class_of_prop))
  112. {
  113. this.obj_selected_class_of_prop = CIM_Repo.getClass(this.ipt_selected_class_of_prop);
  114. }
  115. if (this.obj_selected_class_of_prop != null && this.ipt_selected_prop != null)
  116. {
  117. this.obj_selected_prop = this.obj_selected_class_of_prop.getProp(this.ipt_selected_prop.ToLower());
  118. }
  119. return;
  120. }
  121. public void Fill_Class_List()
  122. {
  123. if (string.IsNullOrEmpty(this.ipt_search_text)) return;
  124. this.obj_result_classes = CIM_Repo.query(this.ipt_search_text);
  125. if (this.obj_result_classes != null)
  126. {
  127. foreach (CIMClass cim in this.obj_result_classes)
  128. {
  129. addListItem(ClassListBox, cim.name, cim.name);
  130. }
  131. }
  132. }
  133. public void Fill_Class_Prop_List()
  134. {
  135. if (!string.IsNullOrEmpty(this.ipt_selected_class) && this.obj_selected_class != null)
  136. {
  137. CIMClass cim = this.obj_selected_class;
  138. while (cim != null)
  139. {
  140. addListItem(ClassPropListBox, cim.name, cim.name);
  141. foreach (CIMProp prop in cim.props)
  142. {
  143. addListItem(ClassPropListBox, "----"+prop.name, cim.name + SEPERATOR + prop.name);
  144. }
  145. cim = cim.baseClass;
  146. }
  147. }
  148. }
  149. public void Fill_Class_Inheritance()
  150. {
  151. if (!string.IsNullOrEmpty(this.ipt_selected_class) && this.obj_selected_class != null)
  152. {
  153. CIMClass cim = this.obj_selected_class;
  154. List<string> names = new List<string>();
  155. while (cim != null)
  156. {
  157. names.Add(cim.name);
  158. cim = cim.baseClass;
  159. }
  160. names.Reverse();
  161. string preffix = "";
  162. foreach (string name in names)
  163. {
  164. addListItem(ClassInheritanceBox, preffix + name, name);
  165. preffix += "--";
  166. }
  167. }
  168. }
  169. public void Print_File_Link()
  170. {
  171. if (this.obj_selected_class != null)
  172. {
  173. string[] parts = this.obj_selected_class.fileName.Split('\\');
  174. string name = parts[parts.Length - 1];
  175. string link_name = "";
  176. const string SEP = "\\mofs";
  177. int pos = obj_selected_class.fileName.IndexOf(SEP);
  178. if ( pos >= 0 )
  179. {
  180. string subname = this.obj_selected_class.fileName.Substring( pos);
  181. subname = subname.Replace('\\', '/');
  182. link_name = BASELINK + subname;
  183. }
  184. Response.Write("<a href=\""+link_name+"\" target=\"_blank\">"+name+"</a>");
  185. }
  186. }
  187. public void Print_Class_Define()
  188. {
  189. //Response.Write("Test");
  190. }
  191. public void Print_Class_Prop_Define()
  192. {
  193. //Response.Write("Test");
  194. }
  195. }
  196. }