/WpfVkontacteClient/WpfVkontacteClient/ConfigurationManager.cs

# · C# · 407 lines · 346 code · 52 blank · 9 comment · 43 complexity · 1c94db320a2454f66869df5ee625aede MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml.Linq;
  6. using System.IO;
  7. using System.ComponentModel;
  8. using LogModule;
  9. namespace WpfVkontacteClient
  10. {
  11. public sealed class ConfigurationManager : IDisposable
  12. {
  13. private string config, setting = null;
  14. private XDocument doc = null;
  15. private XDocument setDoc = null;
  16. private bool disposed = false;
  17. public ConfigurationManager()
  18. {
  19. config = Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location),
  20. "Configuration.xml");
  21. setting = Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location),
  22. "Settings.xml");
  23. if (File.Exists(config))
  24. doc = XDocument.Load(config);
  25. else
  26. {
  27. this.CreateConfig();
  28. doc = XDocument.Load(config);
  29. }
  30. if (File.Exists(setting))
  31. this.setDoc = XDocument.Load(setting);
  32. else
  33. {
  34. this.CreateSettings();
  35. setDoc = XDocument.Load(setting);
  36. }
  37. }
  38. private bool CreateConfig()
  39. {
  40. bool result = false;
  41. try
  42. {
  43. XDocument doc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"),
  44. new XElement("Configuration"));
  45. doc.Save(config);
  46. result = true;
  47. }
  48. catch (Exception ex)
  49. {
  50. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Error, "Error in creation config file", ex.Message);
  51. }
  52. return result;
  53. }
  54. private bool CreateSettings()
  55. {
  56. bool result = false;
  57. try
  58. {
  59. XDocument doc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"),
  60. new XElement("ProgramSettings",
  61. new XElement("ClearImageCache", "false"),
  62. new XElement("ImageCacheMaxSize", 10),
  63. new XElement("DataCacheMaxSize", 50),
  64. new XElement("DetermineNewMessages", 1)
  65. ));
  66. doc.Save(setting);
  67. result = true;
  68. }
  69. catch (Exception ex)
  70. {
  71. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Error, "Error in creation settings file", ex.Message);
  72. }
  73. return result;
  74. }
  75. public List<UserData> GetAllData()
  76. {
  77. if (doc != null)
  78. return (from c in doc.Element("Configuration").Elements("User")
  79. select new UserData()
  80. {
  81. AppId = long.Parse(c.Element("AppId").Value),
  82. UserName = c.Attribute("name").Value,
  83. Password = c.Element("Password").Value,
  84. AccessKey = c.Element("AccessKey").Value,
  85. Email = c.Element("Email").Value
  86. }).ToList();
  87. return null;
  88. }
  89. public UserData GetData(string userName)
  90. {
  91. if (doc != null)
  92. {
  93. UserData data = (from c in doc.Element("Configuration").Elements("User")
  94. where c.Attribute("name").Value.ToLower() == userName.ToLower()
  95. select new UserData()
  96. {
  97. AppId = long.Parse(c.Element("AppId").Value),
  98. UserName = c.Attribute("name").Value,
  99. Password = c.Element("Password").Value,
  100. AccessKey = c.Element("AccessKey").Value,
  101. Email = c.Element("Email").Value
  102. }).FirstOrDefault();
  103. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Information, "Configuration manager loaded user", data.ToString());
  104. return data;
  105. }
  106. return null;
  107. }
  108. public bool CreateUser(UserData data)
  109. {
  110. bool result = false;
  111. if ((data == null) || (doc == null))
  112. return false;
  113. try
  114. {
  115. XElement newUser = new XElement("User",
  116. new XAttribute("name", data.UserName),
  117. new XElement("AppId", data.AppId),
  118. new XElement("AccessKey", data.AccessKey),
  119. new XElement("Email", data.Email),
  120. new XElement("Password", data.Password)
  121. );
  122. XElement main = doc.Element("Configuration");
  123. main.Add(newUser);
  124. doc.Save(config);
  125. result = true;
  126. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Information, data.ToString());
  127. }
  128. catch { }
  129. return result;
  130. }
  131. public bool RemoveData(UserData data)
  132. {
  133. bool result = false;
  134. if ((data == null) || (doc == null))
  135. return false;
  136. if (doc != null)
  137. {
  138. XElement element = (from c in doc.Element("Configuration").Elements("User")
  139. where c.Attribute("name").Value.ToLower() == data.UserName.ToLower()
  140. select c).FirstOrDefault();
  141. element.Remove();
  142. doc.Save(config);
  143. result = true;
  144. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Warning, data.ToString());
  145. }
  146. return result;
  147. }
  148. public ProgramData GetProgramSettings()
  149. {
  150. if (setDoc != null)
  151. {
  152. ProgramData data = new ProgramData();
  153. data.ImageCacheMaxSize = double.Parse(setDoc.Element("ProgramSettings").Element("ImageCacheMaxSize").Value);
  154. data.IsClearImageCache = bool.Parse(setDoc.Element("ProgramSettings").Element("ClearImageCache").Value);
  155. data.DataCacheMaxSize = double.Parse(setDoc.Element("ProgramSettings").Element("DataCacheMaxSize").Value);
  156. data.DetermineNewMessages = setDoc.Element("ProgramSettings").Element("DetermineNewMessages").Value == "1" ? true : false;
  157. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Information, "Configuration manager program settings", data.ToString());
  158. return data;
  159. }
  160. return null;
  161. }
  162. public bool SaveProgramSettings(ProgramData data)
  163. {
  164. bool result = false;
  165. try
  166. {
  167. if (setDoc != null && data != null)
  168. {
  169. XElement sets = setDoc.Element("ProgramSettings");
  170. sets.Element("ImageCacheMaxSize").Value = data.ImageCacheMaxSize.ToString();
  171. sets.Element("ClearImageCache").Value = data.IsClearImageCache.ToString();
  172. sets.Element("DataCacheMaxSize").Value = data.DataCacheMaxSize.ToString();
  173. sets.Element("DetermineNewMessages").Value = data.DetermineNewMessages == true ? "1" : "0";
  174. setDoc.Save(setting);
  175. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Information, data.ToString());
  176. result = true;
  177. }
  178. }
  179. catch (Exception ex)
  180. {
  181. LoggingModule.Instance.WriteMessage(LoggingModule.Severity.Error, ex.Message);
  182. }
  183. return result;
  184. }
  185. #region IDisposable Members
  186. public void Dispose()
  187. {
  188. if (!disposed)
  189. disposed = true;
  190. if (doc != null)
  191. doc = null;
  192. if (setDoc != null)
  193. setDoc = null;
  194. if (!config.IsNullOrEmpty())
  195. config = null;
  196. if (!string.IsNullOrEmpty(setting))
  197. setting = null;
  198. GC.SuppressFinalize(this);
  199. }
  200. #endregion
  201. ~ConfigurationManager()
  202. {
  203. this.Dispose();
  204. }
  205. }
  206. public class UserData : INotifyPropertyChanged
  207. {
  208. public UserData()
  209. {
  210. this.UserName = string.Empty;
  211. this.AppId = 0;
  212. this.Password = string.Empty;
  213. AccessKey = string.Empty;
  214. Email = string.Empty;
  215. }
  216. private string m_user;
  217. public string UserName
  218. {
  219. get { return m_user; }
  220. set
  221. {
  222. m_user = value;
  223. this.OnPropertyChanged("UserName");
  224. }
  225. }
  226. private string m_email;
  227. public string Email
  228. {
  229. get { return m_email; }
  230. set
  231. {
  232. m_email = value;
  233. OnPropertyChanged("Email");
  234. }
  235. }
  236. private long m_appid;
  237. public long AppId
  238. {
  239. get { return m_appid; }
  240. set
  241. {
  242. m_appid = value;
  243. OnPropertyChanged("AppId");
  244. }
  245. }
  246. private string m_key;
  247. public string AccessKey
  248. {
  249. get { return m_key; }
  250. set
  251. {
  252. m_key = value;
  253. OnPropertyChanged("AccessKey");
  254. }
  255. }
  256. private string m_pass;
  257. public string Password
  258. {
  259. get { return m_pass; }
  260. set
  261. {
  262. m_pass = value;
  263. OnPropertyChanged("Password");
  264. }
  265. }
  266. public override string ToString()
  267. {
  268. return string.Format("{0} \n\r {1} \r\n {2} \n\r {3} \n\r", UserName, Password, AppId, AccessKey);
  269. }
  270. public event PropertyChangedEventHandler PropertyChanged;
  271. protected void OnPropertyChanged(string msg)
  272. {
  273. if (PropertyChanged != null)
  274. {
  275. PropertyChanged(this, new PropertyChangedEventArgs(msg));
  276. }
  277. }
  278. }
  279. public class ProgramData : INotifyPropertyChanged
  280. {
  281. private bool m_IsClearImageCache;
  282. /// <summary>
  283. /// Clear image cache after program shutdown
  284. /// </summary>
  285. public bool IsClearImageCache
  286. {
  287. get { return m_IsClearImageCache; }
  288. set
  289. {
  290. if (m_IsClearImageCache != value)
  291. {
  292. m_IsClearImageCache = value;
  293. this.OnPropChanged("IsClearImageCache");
  294. }
  295. }
  296. }
  297. private double m_ImageCacheMaxSize;
  298. /// <summary>
  299. /// Max image cache size in KB
  300. /// </summary>
  301. public double ImageCacheMaxSize
  302. {
  303. get { return m_ImageCacheMaxSize; }
  304. set
  305. {
  306. if (m_ImageCacheMaxSize != value)
  307. {
  308. m_ImageCacheMaxSize = value;
  309. this.OnPropChanged("ImageCacheMaxSize");
  310. }
  311. }
  312. }
  313. private double m_DataCacheMaxSize;
  314. /// <summary>
  315. /// Max data cache size in KB
  316. /// </summary>
  317. public double DataCacheMaxSize
  318. {
  319. get { return m_DataCacheMaxSize; }
  320. set
  321. {
  322. if (m_DataCacheMaxSize != value)
  323. {
  324. m_DataCacheMaxSize = value;
  325. this.OnPropChanged("DataCacheMaxSize");
  326. }
  327. }
  328. }
  329. private bool m_newMsg;
  330. public bool DetermineNewMessages
  331. {
  332. get { return m_newMsg; }
  333. set
  334. {
  335. m_newMsg = value;
  336. OnPropChanged("DetermineNewMessages");
  337. }
  338. }
  339. #region INtotifyProperty Cahnged
  340. public event PropertyChangedEventHandler PropertyChanged;
  341. public void OnPropChanged(string propName)
  342. {
  343. PropertyChangedEventHandler handler = PropertyChanged;
  344. if (handler != null)
  345. {
  346. PropertyChanged(this, new PropertyChangedEventArgs(propName));
  347. }
  348. }
  349. #endregion
  350. public override string ToString()
  351. {
  352. return string.Format("ImageCacheSize {0} \n\r DataCaheSize {1} \n\r IsClearImage {2}", ImageCacheMaxSize, DataCacheMaxSize, IsClearImageCache.ToString());
  353. }
  354. }
  355. }