/com.hangum.tadpole.mongodb.erd.core/src/com/hangum/tadpole/mongodb/erd/core/command/TableDeleteCommand.java

https://repo.or.cz/Tadpole.git · Java · 96 lines · 60 code · 13 blank · 23 comment · 2 complexity · 9a0fed15143351289ae109ea201b6e3b MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright (c) 2013 hangum.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the GNU Lesser Public License v2.1
  5. * which accompanies this distribution, and is available at
  6. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  7. *
  8. * Contributors:
  9. * hangum - initial API and implementation
  10. ******************************************************************************/
  11. package com.hangum.tadpole.mongodb.erd.core.command;
  12. import java.util.ArrayList;
  13. import java.util.HashMap;
  14. import java.util.List;
  15. import java.util.Map;
  16. import org.eclipse.gef.commands.Command;
  17. import com.hangum.tadpole.mongodb.model.DB;
  18. import com.hangum.tadpole.mongodb.model.Relation;
  19. import com.hangum.tadpole.mongodb.model.RelationKind;
  20. import com.hangum.tadpole.mongodb.model.Table;
  21. /**
  22. * Table model delete command
  23. *
  24. * @author hangum
  25. *
  26. */
  27. public class TableDeleteCommand extends Command {
  28. private DB db;
  29. private Table table;
  30. // relation delete
  31. private List<Relation> relations;
  32. private Map<Relation, Table> relationSource;
  33. private Map<Relation, RelationKind> relationKindSource;
  34. private Map<Relation, Table> relationTarget;
  35. private Map<Relation, RelationKind> relationKindTarget;
  36. @Override
  37. public void execute() {
  38. detachRelatin();
  39. table.setDb(null);
  40. }
  41. /**
  42. * relation detach
  43. */
  44. private void detachRelatin() {
  45. relations = new ArrayList<Relation>();
  46. relationSource = new HashMap<Relation, Table>();
  47. relationKindSource = new HashMap<Relation, RelationKind>();
  48. relationTarget = new HashMap<Relation, Table>();
  49. relationKindTarget = new HashMap<Relation, RelationKind>();
  50. relations.addAll(table.getIncomingLinks());
  51. relations.addAll(table.getOutgoingLinks());
  52. for (Relation relation : relations) {
  53. relationSource.put(relation, relation.getSource());
  54. relationKindSource.put(relation, relation.getSource_kind());
  55. relationTarget.put(relation, relation.getTarget());
  56. relationKindTarget.put(relation, relation.getTarget_kind());
  57. relation.setSource(null);
  58. relation.setSource_kind(null);
  59. relation.setTarget(null);
  60. relation.setTarget_kind(null);
  61. }
  62. }
  63. @Override
  64. public void undo() {
  65. reattachRelation();
  66. table.setDb(db);
  67. }
  68. /**
  69. * relation reattach
  70. */
  71. private void reattachRelation() {
  72. for (Relation relation : relations) {
  73. relation.setSource(relationSource.get(relation));
  74. relation.setSource_kind(relationKindSource.get(relation));
  75. relation.setTarget(relationTarget.get(relation));
  76. relation.setTarget_kind(relationKindTarget.get(relation));
  77. }
  78. }
  79. public void setTable(Table table) {
  80. this.table = table;
  81. this.db = table.getDb();
  82. }
  83. }