G2DTreeView.cs 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080
  1. using System;
  2. using System.Text;
  3. using System.IO;
  4. using System.Xml;
  5. using System.Collections.Generic;
  6. using System.Reflection;
  7. using System.Windows.Forms;
  8. using CommonLang;
  9. using CommonLang.Xml;
  10. using System.Collections;
  11. using CommonLang.Property;
  12. using System.Drawing;
  13. using System.Text.RegularExpressions;
  14. using CommonLang.Concurrent;
  15. using CommonLang.IO;
  16. namespace CommonFroms.G2D
  17. {
  18. public class G2DTreeView : TreeView
  19. {
  20. private TreeNode last_find_object = null;
  21. public G2DTreeView()
  22. {
  23. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.G2DTreeView_KeyDown); ;
  24. }
  25. private void G2DTreeView_KeyDown(object sender, KeyEventArgs e)
  26. {
  27. if (e.Control && e.KeyCode == Keys.F)
  28. {
  29. G2DSearchDialog find = new G2DSearchDialog();
  30. find.FindPrevClicked += (string text) =>
  31. {
  32. TreeNode finded = FormUtils.FindLastTreeNodeByText(this.Nodes, text, last_find_object);
  33. if (finded != null)
  34. {
  35. this.SelectedNode = finded;
  36. finded.Expand();
  37. last_find_object = finded;
  38. }
  39. return finded;
  40. };
  41. find.FindNextClicked += (string text) =>
  42. {
  43. TreeNode finded = FormUtils.FindTreeNodeByText(this.Nodes, text, last_find_object);
  44. if (finded != null)
  45. {
  46. this.SelectedNode = finded;
  47. finded.Expand();
  48. last_find_object = finded;
  49. }
  50. return finded;
  51. };
  52. find.FindClicked += (string text) =>
  53. {
  54. TreeNode finded = FormUtils.FindTreeNodeByText(this.Nodes, text, last_find_object, true);
  55. if (finded != null)
  56. {
  57. this.SelectedNode = finded;
  58. finded.Expand();
  59. last_find_object = finded;
  60. find.Close();
  61. }
  62. return finded;
  63. };
  64. find.Show();
  65. }
  66. }
  67. }
  68. public class G2DTreeNodeBase : TreeNode
  69. {
  70. public void RemoveFromParent()
  71. {
  72. if (Parent != null)
  73. {
  74. Parent.Nodes.Remove(this);
  75. }
  76. }
  77. public static T FindNodeByText<T>(
  78. TreeNode parent,
  79. string text,
  80. bool searchAllChildren) where T : TreeNode
  81. {
  82. foreach (TreeNode tn in parent.Nodes)
  83. {
  84. if (typeof(T).IsAssignableFrom(tn.GetType()) && tn.Text.Equals(text))
  85. {
  86. return (T)tn;
  87. }
  88. if (searchAllChildren)
  89. {
  90. T stn = FindNodeByText<T>(tn, text, true);
  91. if (stn != null)
  92. {
  93. return (T)stn;
  94. }
  95. }
  96. }
  97. return default(T);
  98. }
  99. public static bool ContainsChild(TreeNode parent, TreeNode node, bool searchAllChildren)
  100. {
  101. foreach (TreeNode tn in parent.Nodes)
  102. {
  103. if (tn == node)
  104. {
  105. return true;
  106. }
  107. if (searchAllChildren)
  108. {
  109. if (ContainsChild(tn, node, true))
  110. {
  111. return true;
  112. }
  113. }
  114. }
  115. return false;
  116. }
  117. public static List<TreeNode> GetAllNodes(TreeNode tn)
  118. {
  119. List<TreeNode> ret = new List<TreeNode>();
  120. GetAllNodes(tn, ret);
  121. return ret;
  122. }
  123. public static List<TreeNode> GetAllNodes(TreeNodeCollection tc)
  124. {
  125. List<TreeNode> ret = new List<TreeNode>();
  126. foreach (TreeNode tn in tc)
  127. {
  128. GetAllNodes(tn, ret);
  129. }
  130. return ret;
  131. }
  132. public static void GetAllNodes(TreeNode node, List<TreeNode> ret)
  133. {
  134. ret.Add(node);
  135. foreach (TreeNode tn in node.Nodes)
  136. {
  137. GetAllNodes(tn, ret);
  138. }
  139. }
  140. }
  141. public interface IDataNode
  142. {
  143. string DataID { get; }
  144. }
  145. public class G2DTreeNode<T> : G2DTreeNodeBase, IDataNode
  146. {
  147. readonly private static Encoding UTF8 = new UTF8Encoding(false);
  148. private T mData;
  149. public G2DTreeNode(T data)
  150. {
  151. this.mData = data;
  152. this.Text = data.ToString();
  153. this.Tag = mData;
  154. this.Name = this.DataID;
  155. }
  156. public string path;
  157. private static Regex r = new Regex("^[^/]*(/|$)");
  158. public G2DTreeNode(Stream input)
  159. {
  160. using (XmlReader xml = XmlReader.Create(input))
  161. {
  162. XmlDocument doc = new XmlDocument();
  163. doc.Load(xml);
  164. this.mData = (T)XmlUtil.XmlToObject(typeof(T), doc);
  165. this.Text = mData.ToString();
  166. path = doc.SelectSingleNode("*/property.EditorPath").InnerText;
  167. if (path.EndsWith("/" + Text))
  168. {
  169. path = path.Substring(0, path.Length - 1 - Text.Length);
  170. }
  171. path = r.Replace(path, "");
  172. this.Tag = mData;
  173. this.Name = this.DataID;
  174. }
  175. }
  176. public T Data { get { return mData; } }
  177. public G2DTreeNode<T> Clone(string newID)
  178. {
  179. T newData = XmlUtil.CloneObject<T>(mData);
  180. G2DTreeNode<T> ret = new G2DTreeNode<T>(newData);
  181. ret.SetDataID(newID);
  182. return ret;
  183. }
  184. public void Refresh()
  185. {
  186. this.Text = mData.ToString();
  187. }
  188. public string DataID
  189. {
  190. get
  191. {
  192. Type type = mData.GetType();
  193. TableClassAttribute tca = PropertyUtil.GetAttribute<TableClassAttribute>(type);
  194. FieldInfo fi = mData.GetType().GetField(tca.PrimaryKey);
  195. string id = Parser.ObjectToString(fi.GetValue(mData));
  196. return id;
  197. }
  198. }
  199. public void SetDataID(string id)
  200. {
  201. Type type = mData.GetType();
  202. TableClassAttribute tca = PropertyUtil.GetAttribute<TableClassAttribute>(type);
  203. FieldInfo fi = mData.GetType().GetField(tca.PrimaryKey);
  204. fi.SetValue(mData, Parser.StringToObject(id, fi.FieldType));
  205. this.Text = mData.ToString();
  206. this.Name = id;
  207. }
  208. public XmlDocument ToXML(Stream output)
  209. {
  210. Type type = mData.GetType();
  211. XmlDocument doc = XmlUtil.ObjectToXml(mData);
  212. XmlWriterSettings settings = new XmlWriterSettings();
  213. settings.Indent = true;
  214. settings.Encoding = UTF8;
  215. using (XmlWriter xml = XmlWriter.Create(output, settings))
  216. {
  217. doc.Save(xml);
  218. xml.Flush();
  219. }
  220. return doc;
  221. }
  222. public byte[] ToBin(IExternalizableFactory factory)
  223. {
  224. if (mData is IExternalizable)
  225. {
  226. using (MemoryStream ms = new MemoryStream(1024 * 1024))
  227. {
  228. OutputStream output = new OutputStream(ms, factory);
  229. output.PutExt(mData as IExternalizable);
  230. ms.Flush();
  231. byte[] bin = new byte[ms.Position];
  232. Array.Copy(ms.GetBuffer(), bin, bin.Length);
  233. return bin;
  234. }
  235. }
  236. return null;
  237. }
  238. }
  239. //------------------------------------------------------------------------------------------------------
  240. public class G2DTreeNodeGroup : G2DTreeNodeBase
  241. {
  242. public G2DTreeNodeGroup(string name)
  243. {
  244. this.Text = name;
  245. this.Name = name;
  246. }
  247. public bool ContainsNode(TreeNode node)
  248. {
  249. return GetAllNodes().Contains(node);
  250. }
  251. public List<TreeNode> GetAllNodes()
  252. {
  253. List<TreeNode> ret = new List<TreeNode>();
  254. GetAllNodes(this, ret);
  255. return ret;
  256. }
  257. public G2DTreeNodeGroup AddG2DGroup(string gname)
  258. {
  259. G2DTreeNodeGroup group = new G2DTreeNodeGroup(gname);
  260. group.ContextMenuStrip = this.ContextMenuStrip;
  261. group.SelectedImageKey = this.SelectedImageKey;
  262. group.ImageKey = this.ImageKey;
  263. this.Nodes.Add(group);
  264. return group;
  265. }
  266. public string GetTreeInfo()
  267. {
  268. var doc = new XmlDocument();
  269. var e = doc.CreateElement("node");
  270. doc.AppendChild(e);
  271. GetTreeInfo(e, this);
  272. return XmlUtil.ToString(doc);
  273. }
  274. public static void GetTreeInfo(XmlElement e, TreeNode node)
  275. {
  276. e.SetAttribute("Name", node.Name);
  277. e.SetAttribute("IsExpanded", node.IsExpanded.ToString());
  278. foreach (TreeNode sub in node.Nodes)
  279. {
  280. var ts = sub.GetType();
  281. var xs = e.OwnerDocument.CreateElement("node");
  282. e.AppendChild(xs);
  283. GetTreeInfo(xs, sub);
  284. }
  285. }
  286. public void SetTreeInfo(string xmltext)
  287. {
  288. var doc = XmlUtil.FromString(xmltext);
  289. var e = doc.DocumentElement;
  290. SetTreeInfo(e, this);
  291. }
  292. public static void SetTreeInfo(XmlElement e, TreeNode node)
  293. {
  294. if (e.GetAttribute("Name") == node.Name)
  295. {
  296. if (e.HasAttribute("IsExpanded") && bool.Parse(e.GetAttribute("IsExpanded")))
  297. {
  298. node.Expand();
  299. }
  300. foreach (var xs in e.ChildNodes)
  301. {
  302. if (xs is XmlElement)
  303. {
  304. var se = xs as XmlElement;
  305. var xname = se.GetAttribute("Name");
  306. if (xname != null)
  307. {
  308. var sub = node.Nodes[xname];
  309. if (sub != null)
  310. {
  311. SetTreeInfo(se, sub);
  312. }
  313. }
  314. }
  315. }
  316. }
  317. }
  318. public string GetSavePath(TreeNode node, bool include_self = false)
  319. {
  320. if (node == this)
  321. {
  322. return "";
  323. }
  324. if (node.Parent == this)
  325. {
  326. if (include_self)
  327. {
  328. return this.Text;
  329. }
  330. return "";
  331. }
  332. string ret = node.Parent.Text;
  333. node = node.Parent;
  334. while (node != null)
  335. {
  336. if (node.Parent == this)
  337. {
  338. break;
  339. }
  340. ret = node.Parent.Text + "/" + ret;
  341. node = node.Parent;
  342. }
  343. if (include_self)
  344. {
  345. return this.Text + "/" + ret;
  346. }
  347. return ret;
  348. }
  349. public G2DTreeNodeGroup GetOrCreateGroup(string path)
  350. {
  351. if (!String.IsNullOrEmpty(path))
  352. {
  353. string[] paths = path.Split('/');
  354. G2DTreeNodeGroup node = this;
  355. foreach (string sub in paths)
  356. {
  357. G2DTreeNodeGroup tn = FindNodeByText<G2DTreeNodeGroup>(node, sub, false);
  358. if (tn != null)
  359. {
  360. node = tn;
  361. }
  362. else
  363. {
  364. tn = node.AddG2DGroup(sub);
  365. node = tn;
  366. }
  367. }
  368. return node;
  369. }
  370. return this;
  371. }
  372. }
  373. //------------------------------------------------------------------------------------------------------
  374. public class G2DTreeNodeRoot<T> : G2DTreeNodeGroup where T : new()
  375. {
  376. readonly private static Encoding UTF8 = new UTF8Encoding(false);
  377. readonly private string dir;
  378. readonly private string setting_dir;
  379. private HashMap<string, byte[]> savedBin = new HashMap<string, byte[]>();
  380. private HashMap<string, string> savedMd5 = new HashMap<string, string>();
  381. private HashMap<string, int> savedSize = new HashMap<string, int>();
  382. public ContextMenuStrip ChildsContextMenuStrip;
  383. public string ChildsImageKey;
  384. public string Dir { get { return dir; } }
  385. public string SettingDir { get { return setting_dir; } }
  386. public G2DTreeNodeRoot(string name, string dir, string set_dir)
  387. : base(name)
  388. {
  389. this.dir = dir;
  390. this.setting_dir = set_dir;
  391. }
  392. delegate void Delegate0();
  393. public bool AddG2DNode(G2DTreeNode<T> tn, TreeNode parent)
  394. {
  395. if (ContainsNode(parent) && !ContainsNode(tn) && !ContainsG2DNodeID(tn.DataID))
  396. {
  397. tn.ImageKey = ChildsImageKey;
  398. tn.SelectedImageKey = ChildsImageKey;
  399. tn.ContextMenuStrip = ChildsContextMenuStrip;
  400. parent.Nodes.Add(tn);
  401. return true;
  402. }
  403. return false;
  404. }
  405. private void AddG2DNode(G2DTreeNode<T> tn, string path)
  406. {
  407. TreeNode parent = GetOrCreateGroup(path);
  408. tn.ImageKey = ChildsImageKey;
  409. tn.SelectedImageKey = ChildsImageKey;
  410. tn.ContextMenuStrip = ChildsContextMenuStrip;
  411. parent.Nodes.Add(tn);
  412. }
  413. public void Invoke(Action action)
  414. {
  415. if (this.TreeView != null && this.TreeView.InvokeRequired)
  416. {
  417. this.TreeView.Invoke(new Delegate0(() =>
  418. {
  419. action.Invoke();
  420. }));
  421. }
  422. else
  423. {
  424. action.Invoke();
  425. }
  426. }
  427. public bool SetG2DNodeID(G2DTreeNode<T> tn, string id)
  428. {
  429. List<G2DTreeNode<T>> ret = GetG2DList();
  430. if (ret.Contains(tn))
  431. {
  432. foreach (G2DTreeNode<T> node in ret)
  433. {
  434. if (node.DataID.Equals(id))
  435. {
  436. return false;
  437. }
  438. }
  439. tn.SetDataID(id);
  440. return true;
  441. }
  442. return false;
  443. }
  444. public bool ContainsG2DNodeID(string id)
  445. {
  446. List<G2DTreeNode<T>> ret = GetG2DList();
  447. foreach (G2DTreeNode<T> node in ret)
  448. {
  449. if (node.DataID.Equals(id))
  450. {
  451. return true;
  452. }
  453. }
  454. return false;
  455. }
  456. public List<G2DTreeNode<T>> GetG2DList()
  457. {
  458. List<G2DTreeNode<T>> ret = new List<G2DTreeNode<T>>();
  459. GetG2DList(this, ret);
  460. return ret;
  461. }
  462. private void GetG2DList(TreeNode node, List<G2DTreeNode<T>> ret)
  463. {
  464. foreach (TreeNode tn in node.Nodes)
  465. {
  466. if (tn is G2DTreeNode<T>)
  467. {
  468. ret.Add(tn as G2DTreeNode<T>);
  469. }
  470. else if (tn.Nodes.Count > 0)
  471. {
  472. GetG2DList(tn, ret);
  473. }
  474. }
  475. }
  476. public G2DTreeNode<T> FindNode(string id)
  477. {
  478. List<G2DTreeNode<T>> ret = GetG2DList();
  479. foreach (G2DTreeNode<T> node in ret)
  480. {
  481. if (node.DataID.Equals(id))
  482. {
  483. return node;
  484. }
  485. }
  486. return null;
  487. }
  488. public void Refresh()
  489. {
  490. List<G2DTreeNode<T>> ret = GetG2DList();
  491. foreach (G2DTreeNode<T> node in ret)
  492. {
  493. node.Refresh();
  494. }
  495. }
  496. protected virtual XmlDocument AtomicSave(G2DTreeNode<T> sub, IExternalizableFactory factory, bool ignore_bin_equals = false)
  497. {
  498. string xmlpath = dir + "/" + sub.DataID + ".xml";
  499. string binpath = dir + "/" + sub.DataID + ".xml.bin";
  500. byte[] bin = sub.ToBin(factory);
  501. if (bin != null)
  502. {
  503. if (ignore_bin_equals)
  504. {
  505. byte[] oldbin = savedBin.Get(sub.DataID);
  506. if (oldbin != null && CUtils.ArraysEqual(oldbin, bin))
  507. {
  508. return null;
  509. }
  510. }
  511. savedBin.Put(sub.DataID, bin);
  512. File.WriteAllBytes(binpath, bin);
  513. }
  514. using (MemoryStream output = new MemoryStream(1024 * 1024))
  515. {
  516. XmlDocument doc = sub.ToXML(output);
  517. output.Flush();
  518. byte[] xml = output.ToArray();
  519. File.WriteAllBytes(xmlpath, xml);
  520. GenMD5(sub.DataID, xml);
  521. return doc;
  522. }
  523. }
  524. protected virtual G2DTreeNode<T> AtomicLoad(string file, IExternalizableFactory factory)
  525. {
  526. byte[] xml = File.ReadAllBytes(file);
  527. using (MemoryStream input = new MemoryStream(xml))
  528. {
  529. try
  530. {
  531. G2DTreeNode<T> node = new G2DTreeNode<T>(input);
  532. if (File.Exists(file + ".bin"))
  533. {
  534. try
  535. {
  536. byte[] bin = IOUtil.ObjectToBin(factory, node.Data as IExternalizable);
  537. byte[] oldbin = File.ReadAllBytes(file + ".bin");
  538. if (oldbin != null && CUtils.ArraysEqual(oldbin, bin))
  539. {
  540. savedBin.Put(node.DataID, bin);
  541. GenMD5(node.DataID, xml);
  542. }
  543. }
  544. catch (Exception er)
  545. {
  546. er.ToString();
  547. }
  548. }
  549. return node;
  550. }
  551. catch (Exception err)
  552. {
  553. MessageBox.Show(err.Message);
  554. }
  555. }
  556. return null;
  557. }
  558. protected virtual void GenMD5(string id, byte[] xml)
  559. {
  560. string md5 = CMD5.CalculateMD5(xml);
  561. savedMd5.Put(id, md5);
  562. savedSize.Put(id, xml.Length);
  563. }
  564. public int GetTryLoadCount()
  565. {
  566. return Directory.GetFiles(dir).Length;
  567. }
  568. public void LoadState()
  569. {
  570. try
  571. {
  572. if (setting_dir != null)
  573. {
  574. if (File.Exists(setting_dir + "/.tree"))
  575. {
  576. this.SetTreeInfo(File.ReadAllText(setting_dir + "/.tree", UTF8));
  577. }
  578. }
  579. }
  580. catch (Exception) { }
  581. }
  582. public void SaveState()
  583. {
  584. if (setting_dir != null)
  585. {
  586. File.WriteAllText(setting_dir + "/.tree", this.GetTreeInfo(), UTF8);
  587. }
  588. }
  589. public void LoadAll(IExternalizableFactory factory, AtomicInteger progress)
  590. {
  591. {
  592. foreach (string sub in Directory.GetFiles(dir))
  593. {
  594. if (sub.EndsWith(".xml"))
  595. {
  596. G2DTreeNode<T> tn = AtomicLoad(sub, factory);
  597. if (tn != null)
  598. {
  599. string id = tn.DataID;
  600. this.Invoke(() =>
  601. {
  602. AddG2DNode(tn, tn.path);
  603. });
  604. }
  605. }
  606. progress.IncrementAndGet();
  607. }
  608. Invoke(() =>
  609. {
  610. LoadState();
  611. });
  612. }
  613. }
  614. public List<G2DTreeNode<T>> SaveList()
  615. {
  616. if (!Directory.Exists(dir))
  617. {
  618. Directory.CreateDirectory(dir);
  619. }
  620. List<G2DTreeNode<T>> ret = GetG2DList();
  621. StringBuilder savelist = new StringBuilder();
  622. foreach (G2DTreeNode<T> sub in ret)
  623. {
  624. savelist.AppendLine(GetSavePath(sub) + ";" + sub.DataID);
  625. }
  626. File.WriteAllText(dir + "/.list", savelist.ToString(), UTF8);
  627. Invoke(() =>
  628. {
  629. SaveState();
  630. });
  631. return ret;
  632. }
  633. public FileInfo GetListFile()
  634. {
  635. return new FileInfo(dir + "/.list");
  636. }
  637. public FileInfo GetMd5File()
  638. {
  639. return new FileInfo(dir + "/.md5");
  640. }
  641. public List<FileInfo> ListSavedFiles()
  642. {
  643. List<G2DTreeNode<T>> list = GetG2DList();
  644. List<FileInfo> ret = new List<FileInfo>(list.Count);
  645. foreach (G2DTreeNode<T> sub in list)
  646. {
  647. string path = dir + "/" + sub.DataID + ".xml";
  648. ret.Add(new FileInfo(path));
  649. }
  650. ret.Add(new FileInfo(dir + "/.list"));
  651. return ret;
  652. }
  653. public XmlDocument SaveOne(T data, IExternalizableFactory factory)
  654. {
  655. if (!Directory.Exists(dir))
  656. {
  657. Directory.CreateDirectory(dir);
  658. }
  659. List<G2DTreeNode<T>> ret = GetG2DList();
  660. foreach (G2DTreeNode<T> sub in ret)
  661. {
  662. try
  663. {
  664. if (sub.Data.Equals(data))
  665. {
  666. AtomicSave(sub, factory, false);
  667. }
  668. }
  669. catch (Exception err)
  670. {
  671. MessageBox.Show(err.Message + "\n" + err.StackTrace);
  672. }
  673. }
  674. return null;
  675. }
  676. public void SaveAll(IExternalizableFactory factory, AtomicInteger progress)
  677. {
  678. List<G2DTreeNode<T>> ret = SaveList();
  679. HashMap<string, G2DTreeNode<T>> savedfiles = new HashMap<string, G2DTreeNode<T>>();
  680. foreach (G2DTreeNode<T> sub in ret)
  681. {
  682. try
  683. {
  684. savedfiles.Add(sub.DataID + ".xml", sub);
  685. savedfiles.Add(sub.DataID + ".xml.bin", sub);
  686. AtomicSave(sub, factory, true);
  687. }
  688. catch (Exception err)
  689. {
  690. MessageBox.Show(err.Message + "\n" + err.StackTrace);
  691. }
  692. finally
  693. {
  694. progress.IncrementAndGet();
  695. }
  696. }
  697. // clean
  698. foreach (string sub in Directory.GetFiles(dir))
  699. {
  700. string filename = Path.GetFileName(sub);
  701. if (filename.EndsWith(".xml") || filename.EndsWith(".xml.bin"))
  702. {
  703. if (!savedfiles.ContainsKey(filename))
  704. {
  705. FileSystem.DeleteToRecycleBin(sub);
  706. }
  707. }
  708. }
  709. // save md5
  710. try
  711. {
  712. StringBuilder sb = new StringBuilder();
  713. foreach (G2DTreeNode<T> sub in ret)
  714. {
  715. string md5 = savedMd5.Get(sub.DataID);
  716. int size = savedSize.Get(sub.DataID);
  717. sb.AppendLine(string.Format(string.Format("{0} : {1,12} : {2}", md5, size, sub.DataID + ".xml")));
  718. }
  719. File.WriteAllText(dir + "/.md5", sb.ToString(), UTF8);
  720. }
  721. catch (Exception err)
  722. {
  723. MessageBox.Show(err.Message + "\n" + err.StackTrace);
  724. }
  725. }
  726. }
  727. //------------------------------------------------------------------------------------------------------
  728. public class G2DTreeNodeComparer : IComparer<TreeNode>, IComparer
  729. {
  730. public int Compare(TreeNode x, TreeNode y)
  731. {
  732. if (x is IDataNode && y is IDataNode)
  733. {
  734. IDataNode tx = x as IDataNode;
  735. IDataNode ty = y as IDataNode;
  736. return tx.DataID.CompareTo(ty.DataID);
  737. }
  738. return x.Text.CompareTo(y.Text);
  739. }
  740. public int Compare(object x, object y)
  741. {
  742. return Compare((TreeNode)x, (TreeNode)y);
  743. }
  744. }
  745. //------------------------------------------------------------------------------------------------------
  746. public class G2DTreeViewAdapter<T>
  747. {
  748. public delegate void TreeNodeAddedHandler(G2DTreeNode<T> node);
  749. public delegate void TreeNodeRemovedHandler(G2DTreeNode<T> node);
  750. public delegate void TreeNodeRenamedHandler(G2DTreeNode<T> node);
  751. public event TreeNodeAddedHandler OnTreeNodeAdded;
  752. public event TreeNodeRemovedHandler OnTreeNodeRemoved;
  753. public event TreeNodeRenamedHandler OnTreeNodeRenamed;
  754. private TreeView treeView;
  755. private G2DTreeNodeGroup treeRoot;
  756. public G2DTreeViewAdapter(
  757. TreeView treeView,
  758. G2DTreeNodeGroup root)
  759. {
  760. this.treeView = treeView;
  761. this.treeRoot = root;
  762. this.treeView.ItemDrag += new ItemDragEventHandler(treeView1_ItemDrag);
  763. this.treeView.DragDrop += new DragEventHandler(treeView1_DragDrop);
  764. this.treeView.DragOver += new DragEventHandler(treeView1_DragOver);
  765. this.treeView.DragEnter += new DragEventHandler(treeView1_DragEnter);
  766. }
  767. public G2DTreeNodeGroup GetSelectedGroup()
  768. {
  769. if (treeView.SelectedNode is G2DTreeNodeGroup)
  770. {
  771. return treeView.SelectedNode as G2DTreeNodeGroup;
  772. }
  773. if (treeView.SelectedNode is G2DTreeNode<T>)
  774. {
  775. return treeView.SelectedNode.Parent as G2DTreeNodeGroup;
  776. }
  777. return null;
  778. }
  779. public G2DTreeNode<T> GetSelectedObject()
  780. {
  781. if (treeView.SelectedNode is G2DTreeNode<T>)
  782. {
  783. return treeView.SelectedNode as G2DTreeNode<T>;
  784. }
  785. return null;
  786. }
  787. public void RemoveSelectedObject()
  788. {
  789. G2DTreeNode<T> node = GetSelectedObject();
  790. if (node != null)
  791. {
  792. if (MessageBox.Show("确定要删除: " + node.DataID, "确认",
  793. MessageBoxButtons.OKCancel) == DialogResult.OK)
  794. {
  795. node.Parent.Nodes.Remove(node);
  796. if (OnTreeNodeRemoved != null)
  797. {
  798. OnTreeNodeRemoved.Invoke(node);
  799. }
  800. }
  801. }
  802. }
  803. public void DuplicateSelectedObject()
  804. {
  805. G2DTreeNode<T> node = GetSelectedObject();
  806. if (node != null)
  807. {
  808. G2DTreeNodeGroup parent = node.Parent as G2DTreeNodeGroup;
  809. T copy = XmlUtil.CloneObject(node.Data);
  810. G2DTreeNode<T> copy_node = new G2DTreeNode<T>(copy);
  811. copy_node.ImageKey = node.ImageKey;
  812. copy_node.SelectedImageKey = node.SelectedImageKey;
  813. copy_node.ContextMenuStrip = node.ContextMenuStrip;
  814. string name = copy_node.DataID;
  815. while (!string.IsNullOrEmpty(name))
  816. {
  817. name = G2DTextDialog.Show(name, "复制 " + node.Name);
  818. if (name != null)
  819. {
  820. if (ContainsObject(name))
  821. {
  822. MessageBox.Show("\"" + name + "\" 已存在!");
  823. }
  824. else
  825. {
  826. copy_node.SetDataID(name);
  827. parent.Nodes.Add(copy_node);
  828. parent.Expand();
  829. treeView.SelectedNode = copy_node;
  830. if (OnTreeNodeAdded != null)
  831. {
  832. OnTreeNodeAdded.Invoke(copy_node);
  833. }
  834. return;
  835. }
  836. }
  837. else
  838. {
  839. return;
  840. }
  841. }
  842. }
  843. }
  844. public void RenameObject()
  845. {
  846. G2DTreeNode<T> node = GetSelectedObject();
  847. if (node != null)
  848. {
  849. string name = node.DataID;
  850. while (!string.IsNullOrEmpty(name))
  851. {
  852. name = G2DTextDialog.Show(name, "重命名 " + name);
  853. if (name != null)
  854. {
  855. if (ContainsObject(name))
  856. {
  857. MessageBox.Show("\"" + name + "\" 已存在!");
  858. }
  859. else
  860. {
  861. string src_name = node.DataID;
  862. node.SetDataID(name);
  863. if (OnTreeNodeRenamed != null)
  864. {
  865. OnTreeNodeRenamed.Invoke(node);
  866. }
  867. return;
  868. }
  869. }
  870. }
  871. }
  872. }
  873. public G2DTreeNodeGroup GetTreeRoot()
  874. {
  875. return treeRoot;
  876. }
  877. public bool ContainsObject(string name)
  878. {
  879. TreeNode tn = G2DTreeNodeBase.FindNodeByText<G2DTreeNode<T>>(GetTreeRoot(), name, true);
  880. return tn != null;
  881. }
  882. public void AddGroup()
  883. {
  884. G2DTreeNodeGroup parent = GetSelectedGroup();
  885. if (parent != null)
  886. {
  887. string name = G2DTextDialog.Show("分组", "添加过滤器");
  888. if (name != null)
  889. {
  890. G2DTreeNodeGroup group = parent.AddG2DGroup(name);
  891. parent.Expand();
  892. treeView.SelectedNode = group;
  893. }
  894. }
  895. }
  896. public G2DTreeNode<T> NewObject(T data)
  897. {
  898. G2DTreeNodeGroup parent = GetSelectedGroup();
  899. if (parent != null)
  900. {
  901. string name = data.GetType().Name + GetTreeRoot().GetAllNodes().Count;
  902. while (!string.IsNullOrEmpty(name))
  903. {
  904. name = G2DTextDialog.Show(name, "添加:" + name);
  905. if (name != null)
  906. {
  907. if (ContainsObject(name))
  908. {
  909. MessageBox.Show("\"" + name + "\" 已存在!");
  910. }
  911. else
  912. {
  913. G2DTreeNode<T> node = new G2DTreeNode<T>(data);
  914. node.SetDataID(name);
  915. parent.Nodes.Add(node);
  916. parent.Expand();
  917. treeView.SelectedNode = node;
  918. if (OnTreeNodeAdded != null)
  919. {
  920. OnTreeNodeAdded.Invoke(node);
  921. }
  922. return node;
  923. }
  924. }
  925. }
  926. }
  927. return null;
  928. }
  929. #region Delegate
  930. private void treeView1_ItemDrag(object sender, ItemDragEventArgs e)
  931. {
  932. treeView.DoDragDrop(e.Item, DragDropEffects.Move);
  933. }
  934. private void treeView1_DragDrop(object sender, DragEventArgs e)
  935. {
  936. Point pos = treeView.PointToClient(new Point(e.X, e.Y));
  937. TreeNode dropNode = this.treeView.GetNodeAt(pos);
  938. G2DTreeNodeBase child_node = (G2DTreeNodeBase)e.Data.GetData(typeof(G2DTreeNode<T>));
  939. G2DTreeNodeBase group_node = (G2DTreeNodeBase)e.Data.GetData(typeof(G2DTreeNodeGroup));
  940. if (dropNode is G2DTreeNodeGroup)
  941. {
  942. if (child_node == null && group_node == null)
  943. {
  944. MessageBox.Show("error");
  945. }
  946. else if (child_node != null)
  947. {
  948. child_node.RemoveFromParent();
  949. dropNode.Nodes.Add(child_node);
  950. dropNode.Expand();
  951. //treeView1.SelectedNode = child_node;
  952. }
  953. else if (group_node != dropNode)
  954. {
  955. if (!G2DTreeNodeBase.ContainsChild(group_node, dropNode, true))
  956. {
  957. group_node.RemoveFromParent();
  958. dropNode.Nodes.Add(group_node);
  959. dropNode.Expand();
  960. //treeView1.SelectedNode = group_node;
  961. }
  962. }
  963. }
  964. }
  965. private void treeView1_DragEnter(object sender, DragEventArgs e)
  966. {
  967. if (e.Data.GetDataPresent(typeof(G2DTreeNode<T>)))
  968. {
  969. e.Effect = DragDropEffects.Move;
  970. }
  971. else if (e.Data.GetDataPresent(typeof(G2DTreeNodeGroup)))
  972. {
  973. e.Effect = DragDropEffects.Move;
  974. }
  975. else
  976. {
  977. e.Effect = DragDropEffects.None;
  978. }
  979. }
  980. private void treeView1_DragOver(object sender, DragEventArgs e)
  981. {
  982. Point pos = treeView.PointToClient(new Point(e.X, e.Y));
  983. TreeNode dropNode = this.treeView.GetNodeAt(pos);
  984. if (dropNode is G2DTreeNodeBase)
  985. {
  986. e.Effect = DragDropEffects.Move;
  987. }
  988. else
  989. {
  990. e.Effect = DragDropEffects.None;
  991. }
  992. }
  993. #endregion
  994. }
  995. }