SaveController.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. package ui.controller;
  2. import java.awt.Color;
  3. import java.awt.Point;
  4. import java.io.BufferedInputStream;
  5. import java.io.File;
  6. import java.io.FileInputStream;
  7. import java.io.FileOutputStream;
  8. import java.io.FileWriter;
  9. import java.io.IOException;
  10. import java.io.OutputStream;
  11. import java.util.ArrayDeque;
  12. import java.util.ArrayList;
  13. import java.util.Arrays;
  14. import java.util.LinkedList;
  15. import org.apache.commons.compress.archivers.ArchiveException;
  16. import org.apache.commons.compress.archivers.ArchiveOutputStream;
  17. import org.apache.commons.compress.archivers.ArchiveStreamFactory;
  18. import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
  19. import org.apache.commons.compress.utils.IOUtils;
  20. import com.google.gson.Gson;
  21. import com.google.gson.GsonBuilder;
  22. import com.google.gson.JsonObject;
  23. import com.google.gson.JsonPrimitive;
  24. import TypeAdapter.AbstractCpsObjectAdapter;
  25. import TypeAdapter.ColorAdapter;
  26. import TypeAdapter.PositionAdapter;
  27. import classes.AbstractCpsObject;
  28. import classes.Category;
  29. import classes.CpsEdge;
  30. import classes.CpsUpperNode;
  31. import classes.HolonElement;
  32. import classes.HolonObject;
  33. import classes.HolonSwitch;
  34. import classes.IdCounter;
  35. import classes.IdCounterElem;
  36. import classes.Position;
  37. import ui.model.Model;
  38. /**
  39. * Controller for Storage.
  40. *
  41. * @author Gruppe14
  42. */
  43. public class SaveController {
  44. public enum MODE {
  45. COMPLETE, PARTIAL, CATEGORY
  46. }
  47. public enum TYPE {
  48. CATEGORY, CANVAS
  49. }
  50. public enum EDGETYPE {
  51. CANVAS, CONNECTION, NODE, OLD, LAYER
  52. }
  53. public enum NUMTYPE {
  54. CATEGORY, OBJECT, ELEMENT, EDGE, CONNECTION, NODEEDGE, OLDEDGE, UNITGRAPH, STATSGRAPH
  55. }
  56. public enum GRAPHTYPE {
  57. SWITCH, ELEMENT
  58. }
  59. private Model model;
  60. private Gson gson;
  61. private int nCat, nObj, nEle, nEdge, nConn, nNodeEdge, nOldEdge, nUnitGraph, nStatsGraph;
  62. /**
  63. * Constructor.
  64. *
  65. * @param model
  66. * the Model
  67. */
  68. public SaveController(Model model) {
  69. this.model = model;
  70. initGson();
  71. }
  72. /**
  73. * Writes the current State of the Modelling into a JSON File which can be
  74. * loaded.
  75. *
  76. * @param path
  77. * the Path
  78. *
  79. * @throws IOException
  80. * exception
  81. */
  82. public void writeSave(String path) throws IOException, ArchiveException {
  83. File dst = new File(path);
  84. File holonFile = File.createTempFile("tmp", ".json");
  85. holonFile.deleteOnExit();
  86. dst.delete();
  87. OutputStream output = new FileOutputStream(dst);
  88. ArchiveOutputStream stream = new ArchiveStreamFactory().createArchiveOutputStream(ArchiveStreamFactory.ZIP,
  89. output);
  90. initNumeration();
  91. JsonObject file = new JsonObject();
  92. initialize(MODE.COMPLETE, file);
  93. storeCategory(file);
  94. storeCanvas(file);
  95. storeStatistics(file);
  96. storeData(stream);
  97. FileWriter writer = new FileWriter(holonFile);
  98. writer.write(gson.toJson(file));
  99. writer.flush();
  100. writer.close();
  101. addFileToSave(holonFile, stream, false);
  102. stream.finish();
  103. output.close();
  104. }
  105. /**
  106. * Writes the Autosave File.
  107. *
  108. * @param path
  109. * the Path
  110. * @throws IOException
  111. * Exception
  112. */
  113. public void writeAutosave(String path) throws IOException {
  114. initNumeration();
  115. JsonObject file = new JsonObject();
  116. initialize(MODE.PARTIAL, file);
  117. storeCanvas(file);
  118. FileWriter writer = new FileWriter(path);
  119. writer.write(gson.toJson(file));
  120. writer.flush();
  121. writer.close();
  122. }
  123. /**
  124. * Writes the Category File in Case of Changes
  125. *
  126. * @param path
  127. * @throws IOException
  128. */
  129. public void writeCategory(String path) throws IOException {
  130. initNumeration();
  131. JsonObject file = new JsonObject();
  132. initialize(MODE.CATEGORY, file);
  133. storeCategory(file);
  134. FileWriter writer = new FileWriter(path);
  135. writer.write(gson.toJson(file));
  136. writer.flush();
  137. writer.close();
  138. }
  139. /**
  140. * Write needed default parameter into the JsonObject. Can be extended later
  141. * on
  142. *
  143. * @param mode
  144. * @param file
  145. */
  146. private void initialize(MODE mode, JsonObject file) {
  147. // TODO Auto-generated method stub
  148. switch (mode) {
  149. case COMPLETE:
  150. file.add("MODE", new JsonPrimitive(mode.name()));
  151. file.add("IDCOUNTER", new JsonPrimitive(IdCounter.getCounter()));
  152. file.add("IDCOUNTERELEMENT", new JsonPrimitive(IdCounterElem.getCounter()));
  153. file.add("CANVAS_SIZE_X", new JsonPrimitive(model.getCanvasX()));
  154. file.add("CANVAS_SIZE_Y", new JsonPrimitive(model.getCanvasY()));
  155. break;
  156. case PARTIAL:
  157. file.add("MODE", new JsonPrimitive(mode.name()));
  158. file.add("IDCOUNTER", new JsonPrimitive(IdCounter.getCounter()));
  159. file.add("IDCOUNTERELEMENT", new JsonPrimitive(IdCounterElem.getCounter()));
  160. file.add("CANVAS_SIZE_X", new JsonPrimitive(model.getCanvasX()));
  161. file.add("CANVAS_SIZE_Y", new JsonPrimitive(model.getCanvasY()));
  162. break;
  163. case CATEGORY:
  164. file.add("MODE", new JsonPrimitive(mode.name()));
  165. default:
  166. break;
  167. }
  168. }
  169. /**
  170. * Store all Categories and Object into a Json File via Serialization
  171. *
  172. * @param file
  173. */
  174. private void storeCategory(JsonObject file) {
  175. // TODO Auto-generated method stub
  176. // forall categories store them into the jsontree
  177. for (Category cat : model.getCategories()) {
  178. String key = "CATEGORY" + getNumerator(NUMTYPE.CATEGORY);
  179. file.add(key, new JsonPrimitive(cat.getName()));
  180. // forall object in the category store them into the jsontree
  181. for (AbstractCpsObject obj : cat.getObjects()) {
  182. file.add("CGOBJECT" + getNumerator(NUMTYPE.OBJECT), gson.toJsonTree(obj, AbstractCpsObject.class));
  183. // if its a holonobject add elements too
  184. if (obj instanceof HolonObject)
  185. elementsToJson(TYPE.CATEGORY, file, obj);
  186. }
  187. }
  188. }
  189. /**
  190. * Travers through all Objects via BFS and Stores everything relevant
  191. *
  192. * @param file
  193. */
  194. private void storeCanvas(JsonObject file) {
  195. // TODO Auto-generated method stub
  196. ArrayDeque<AbstractCpsObject> queue = new ArrayDeque<>();
  197. AbstractCpsObject u = null;
  198. // put all objects into queue since there is not starting object
  199. for (AbstractCpsObject cps : model.getObjectsOnCanvas()) {
  200. queue.add(cps);
  201. }
  202. // while quene not empty
  203. while (!queue.isEmpty()) {
  204. // u = current node
  205. u = queue.pop();
  206. // add currentnode into jsontree
  207. String key = "CVSOBJECT" + getNumerator(NUMTYPE.OBJECT);
  208. file.add(key, gson.toJsonTree(u, AbstractCpsObject.class));
  209. // and its connections too
  210. edgeToJson(EDGETYPE.CONNECTION, file, u.getId(), u.getConnections());
  211. // if holonobject elements too
  212. if (u instanceof HolonObject)
  213. elementsToJson(TYPE.CANVAS, file, u);
  214. // if switch graphpoints too
  215. if (u instanceof HolonSwitch)
  216. if (((HolonSwitch) u).getGraphPoints().size() != 0)
  217. unitgraphToJson(GRAPHTYPE.SWITCH, file, u.getId(), ((HolonSwitch) u).getGraphPoints());
  218. // if uppernode put all nodes inside the uppernode into queue
  219. if (u instanceof CpsUpperNode) {
  220. for (AbstractCpsObject adjacent : ((CpsUpperNode) u).getNodes()) {
  221. queue.add(adjacent);
  222. }
  223. // dont forget to add the nodeedges and oldedges
  224. edgeToJson(EDGETYPE.NODE, file, u.getId(), ((CpsUpperNode) u).getNodeEdges());
  225. edgeToJson(EDGETYPE.OLD, file, u.getId(), ((CpsUpperNode) u).getOldEdges());
  226. }
  227. }
  228. // lastly add canvasedges into json
  229. edgeToJson(EDGETYPE.CANVAS, file, 0, model.getEdgesOnCanvas());
  230. }
  231. private void storeStatistics(JsonObject file) {
  232. trackedToJson(file);
  233. statisticgraphToJson(file);
  234. }
  235. /**
  236. * Save wanted Data
  237. *
  238. * @param stream
  239. * @throws IOException
  240. */
  241. private void storeData(ArchiveOutputStream stream) throws IOException {
  242. // TODO Auto-generated method stub
  243. File images = new File(System.getProperty("user.home") + "/HolonGUI/Images");
  244. File background = new File(System.getProperty("user.home") + "/HolonGUI/BackgroundImages");
  245. addFilesToSave(images, stream);
  246. addFilesToSave(background, stream);
  247. }
  248. /**
  249. * Stores Category or Canvas Elements into Json
  250. *
  251. * @param type
  252. * @param gson
  253. * @param file
  254. * @param obj
  255. */
  256. public void elementsToJson(TYPE type, JsonObject file, AbstractCpsObject obj) {
  257. // TODO Auto-generated method stub
  258. JsonObject temp = new JsonObject();
  259. String key = null;
  260. // forall elements store them into json and include the id of the object
  261. for (HolonElement ele : ((HolonObject) obj).getElements()) {
  262. temp.add("properties", gson.toJsonTree(ele));
  263. temp.add("ID", new JsonPrimitive(obj.getId()));
  264. // switch for deciding the key
  265. switch (type) {
  266. case CANVAS:
  267. key = "CVSELEMENT" + getNumerator(NUMTYPE.ELEMENT);
  268. break;
  269. case CATEGORY:
  270. key = "CGELEMENT" + getNumerator(NUMTYPE.ELEMENT);
  271. break;
  272. default:
  273. break;
  274. }
  275. file.add(key, gson.toJsonTree(temp));
  276. // if there are gps add them into
  277. if (ele.getGraphPoints().size() != 0)
  278. unitgraphToJson(GRAPHTYPE.ELEMENT, file, ele.getId(), ele.getGraphPoints());
  279. temp = new JsonObject();
  280. }
  281. }
  282. /**
  283. * Put the UnitGraphs of Switches or Elements into Json
  284. *
  285. * @param ele
  286. */
  287. public void unitgraphToJson(GRAPHTYPE type, JsonObject file, int id, LinkedList<Point> graph) {
  288. JsonObject temp = new JsonObject();
  289. String key = null;
  290. // forall points add them
  291. for (int i = 0; i < graph.size(); i++) {
  292. temp.add("" + i, new JsonPrimitive(graph.get(i).x + ":" + graph.get(i).y));
  293. }
  294. // decide key
  295. switch (type) {
  296. case SWITCH:
  297. key = "SWUNITGRAPH" + getNumerator(NUMTYPE.UNITGRAPH);
  298. break;
  299. case ELEMENT:
  300. key = "ELEUNITGRAPH" + getNumerator(NUMTYPE.UNITGRAPH);
  301. break;
  302. default:
  303. break;
  304. }
  305. // add id of element so it can be found again
  306. temp.add("ID", new JsonPrimitive(id));
  307. file.add(key, gson.toJsonTree(temp));
  308. }
  309. /**
  310. * Canvas-Edge, Connections, Node-Edge and Old-Edges to json
  311. *
  312. * @param type
  313. * @param file
  314. * @param id
  315. * @param arr
  316. */
  317. public void edgeToJson(EDGETYPE type, JsonObject file, int id, ArrayList<CpsEdge> arr) {
  318. // TODO Auto-generated method stub
  319. String k = null;
  320. boolean b = false;
  321. JsonObject temp = new JsonObject();
  322. for (CpsEdge edge : arr) {
  323. // add properties and only the ids from a and b
  324. temp.add("properties", gson.toJsonTree(edge));
  325. temp.add("A", new JsonPrimitive(edge.getA().getId()));
  326. temp.add("B", new JsonPrimitive(edge.getB().getId()));
  327. // Key and occasionally the id of Uppernode
  328. switch (type) {
  329. case CANVAS:
  330. k = "CVSEDGE" + getNumerator(NUMTYPE.EDGE);
  331. break;
  332. case CONNECTION:
  333. k = "CONNEDGE" + getNumerator(NUMTYPE.CONNECTION);
  334. break;
  335. case NODE:
  336. temp.add("ID", new JsonPrimitive(id));
  337. k = "NODEEDGE" + getNumerator(NUMTYPE.NODEEDGE);
  338. break;
  339. case OLD:
  340. temp.add("ID", new JsonPrimitive(id));
  341. k = "OLDEDGE" + getNumerator(NUMTYPE.OLDEDGE);
  342. break;
  343. default:
  344. break;
  345. }
  346. // lookup if the CVS, NODE or OLDEDGE are also connections
  347. if (edge.getA().getConnections().contains(edge) && edge.getA().getConnections().contains(edge)
  348. && !type.equals(EDGETYPE.CONNECTION))
  349. b = true;
  350. temp.add("connection", new JsonPrimitive(b));
  351. file.add(k, gson.toJsonTree(temp));
  352. temp = new JsonObject();
  353. }
  354. }
  355. private void trackedToJson(JsonObject file) {
  356. // TODO Auto-generated method stub
  357. JsonObject temp = new JsonObject();
  358. String key = "TRACKED";
  359. // forall points add them
  360. for (int i = 0; i < model.getTrackingObj().size(); i++) {
  361. temp.add("" + i, new JsonPrimitive(model.getTrackingObj().get(i).getId()));
  362. }
  363. file.add(key, gson.toJsonTree(temp));
  364. }
  365. private void statisticgraphToJson(JsonObject file) {
  366. // TODO Auto-generated method stub
  367. JsonObject temp = new JsonObject();
  368. String key = null;
  369. }
  370. /**
  371. * Differs Between Single file or whole Directory to Store
  372. *
  373. * @param src
  374. * @param stream
  375. * @throws IOException
  376. */
  377. private void addFilesToSave(File src, ArchiveOutputStream stream) throws IOException {
  378. if (!src.exists())
  379. return;
  380. ArrayList<File> files = new ArrayList<>();
  381. files.addAll(Arrays.asList(src.listFiles()));
  382. for (File file : files) {
  383. if (file.isDirectory())
  384. addFilesToSave(file, stream);
  385. else
  386. addFileToSave(file, stream, true);
  387. }
  388. }
  389. /**
  390. * Add a File into the Archive
  391. *
  392. * @param src
  393. * @param stream
  394. * @param dir
  395. * @throws IOException
  396. */
  397. private void addFileToSave(File src, ArchiveOutputStream stream, boolean dir) throws IOException {
  398. String entryName = (dir == true ? src.getCanonicalPath() : src.getName());
  399. entryName = checkOS(entryName);
  400. ZipArchiveEntry entry = new ZipArchiveEntry(entryName);
  401. stream.putArchiveEntry(entry);
  402. BufferedInputStream input = new BufferedInputStream(new FileInputStream(src));
  403. IOUtils.copy(input, stream);
  404. input.close();
  405. stream.closeArchiveEntry();
  406. }
  407. private String checkOS(String entryName) {
  408. // TODO Auto-generated method stub
  409. String os = System.getProperty("os.name").toLowerCase();
  410. String ret = entryName;
  411. String partition = null;
  412. if (os.contains("windows")) {
  413. partition = ret.substring(0, ret.indexOf(":") + 1);
  414. ret = ret.replace(System.getProperty("user.home") + "\\HolonGUI\\", "");
  415. ret = ret.replace(partition, "");
  416. }
  417. if (os.contains("mac")) {
  418. // dosmth
  419. ret = ret.replace(System.getProperty("user.home") + "/HolonGUI/", "");
  420. }
  421. if (os.contains("linux")) {
  422. // dosmth
  423. ret = ret.replace(System.getProperty("user.home") + "/HolonGUI/", "");
  424. }
  425. if (os.contains("solaris")) {
  426. // dosmth
  427. }
  428. return ret;
  429. }
  430. /**
  431. * Initialize the Gson with wanted parameters
  432. */
  433. private void initGson() {
  434. // TODO Auto-generated method stub
  435. GsonBuilder builder = new GsonBuilder();
  436. builder.excludeFieldsWithoutExposeAnnotation().serializeNulls().setPrettyPrinting();
  437. builder.registerTypeAdapter(AbstractCpsObject.class, new AbstractCpsObjectAdapter());
  438. builder.registerTypeAdapter(Position.class, new PositionAdapter());
  439. builder.registerTypeAdapter(Color.class, new ColorAdapter());
  440. // use the builder and make a instance of the Gson
  441. this.gson = builder.create();
  442. }
  443. /**
  444. * Just initialize the Numerators for the Json Keys. Maybe bad Style..
  445. */
  446. public void initNumeration() {
  447. this.nCat = this.nObj = this.nEle = this.nEdge = this.nConn = this.nNodeEdge = this.nOldEdge = this.nStatsGraph = 0;
  448. }
  449. /**
  450. * Get the wanted numerator and increment it
  451. *
  452. * @param type
  453. * @return
  454. */
  455. public int getNumerator(NUMTYPE type) {
  456. switch (type) {
  457. case CATEGORY:
  458. return nCat++;
  459. case OBJECT:
  460. return nObj++;
  461. case ELEMENT:
  462. return nEle++;
  463. case EDGE:
  464. return nEdge++;
  465. case CONNECTION:
  466. return nConn++;
  467. case NODEEDGE:
  468. return nNodeEdge++;
  469. case OLDEDGE:
  470. return nOldEdge++;
  471. case UNITGRAPH:
  472. return nUnitGraph++;
  473. case STATSGRAPH:
  474. return nStatsGraph++;
  475. default:
  476. break;
  477. }
  478. return -1;
  479. }
  480. }