/src/main/resources/assets/app/scripts/collections/job_graph.js

https://gitlab.com/jack/chronos · JavaScript · 321 lines · 257 code · 59 blank · 5 comment · 32 complexity · 2205f46021b4b37059d3b657d7b152c7 MD5 · raw file

  1. /**
  2. * Job Graph Collection
  3. *
  4. */
  5. define([
  6. 'jquery',
  7. 'backbone',
  8. 'underscore',
  9. 'components/pollable_collection'
  10. ], function($,
  11. Backbone,
  12. _,
  13. Pollable) {
  14. var Sync = Backbone.sync,
  15. CSVModel,
  16. JobNodeModel,
  17. JobPathModel,
  18. JobGraph,
  19. csvKeys,
  20. Sync;
  21. csvKeys = {
  22. node: ['type', 'name', 'lastRunStatus'],
  23. link: ['type', 'source', 'target']
  24. };
  25. CSVModel = Backbone.Model.extend({
  26. });
  27. JobNodeModel = CSVModel.extend({
  28. idAttribute: 'name',
  29. lastRunWasFailure: function() {
  30. return (this.get('lastRunStatus') === 'failure');
  31. },
  32. getLastRunDate: function() {
  33. return this.get((this.lastRunWasFailure() ? 'lastError' : 'lastSuccess'));
  34. },
  35. getChildren: function() {
  36. if (this.sources && this.targets) {
  37. return this.sources.concat(this.targets);
  38. } else {
  39. return [];
  40. }
  41. },
  42. getRelatedAsTree: function(seen) {
  43. var n = this.toJSON(),
  44. children = this.getChildren(),
  45. unseenChildren;
  46. seen || (seen = [this]);
  47. unseenChildren = _.filter(children, function(child) {
  48. return !_.any(seen, function(seenChild) {
  49. return seenChild.get('name') === child.get('name');
  50. });
  51. });
  52. n.children = _.map(unseenChildren, function(child) {
  53. return child.getRelatedAsTree(children.concat(seen));
  54. });
  55. return n;
  56. },
  57. getRelated: function(seen) {
  58. seen || (seen = []);
  59. var children = this.getChildren(),
  60. unseenChildren, nextGen;
  61. unseenChildren = _.filter(children, function(child) {
  62. return !_.any(seen, function(seenChild) {
  63. return seenChild.get('name') === child.get('name');
  64. });
  65. });
  66. nextGen = _.map(unseenChildren, function(c) {
  67. return c.getRelated(children.concat(seen));
  68. });
  69. return _.flatten(children.concat(nextGen));
  70. }
  71. });
  72. JobPathModel = CSVModel.extend({});
  73. JobGraph = Backbone.Collection.extend(_.extend({}, Pollable, {
  74. url: '/scheduler/graph/csv',
  75. //url: '/stubs/graph.csv',
  76. parse: function(response, options) {
  77. var rows = _.compact(response.split('\n'));
  78. return _.map(rows, function(_row) {
  79. var row = _row.split(',');
  80. return _.object(csvKeys[row[0]], row);
  81. });
  82. },
  83. sync: function(method, model, options) {
  84. return Sync.call(this, method, model, _.extend({}, options, {
  85. dataType: 'text'
  86. }));
  87. },
  88. model: function(attributes, options) {
  89. var model = (attributes.type === 'link') ? JobPathModel : JobNodeModel;
  90. return new model(attributes, options);
  91. },
  92. initialize: function(attrs, options) {
  93. this.listenTo(this, {
  94. add: this.buildGraph,
  95. remove: this.buildGraph,
  96. reset: this.buildGraph
  97. });
  98. },
  99. buildGraph: function() {
  100. var paths = this.where({type: 'link'}),
  101. nodes = this.where({type: 'node'}),
  102. nodeName,
  103. sources,
  104. targets;
  105. _.each(nodes, function(node) {
  106. nodeName = node.get('name');
  107. sources = [];
  108. targets = [];
  109. _.each(paths, function(path) {
  110. if (path.get('target') === nodeName) {
  111. sources.push(this.get(path.get('source')));
  112. } else if (path.get('source') === nodeName) {
  113. targets.push(this.get(path.get('target')));
  114. }
  115. }, this);
  116. _.extend(node, {
  117. sources: sources,
  118. targets: targets
  119. });
  120. }, this);
  121. },
  122. getPaths: function(scope) {
  123. var target, source;
  124. scope || (scope = {});
  125. return _.chain(this.where({type: 'link'})).filter(function(path) {
  126. if (scope.parents) {
  127. target = path.get('target');
  128. source = path.get('source');
  129. return (scope.parents[target] || scope.parents[source]);
  130. } else {
  131. return _.isEmpty(scope);
  132. }
  133. }).value();
  134. },
  135. getNodes: function(scope) {
  136. var name;
  137. scope || (scope = {});
  138. return _.chain(this.where({type: 'node'})).filter(function(node) {
  139. if (!_.isEmpty(scope)) {
  140. return scope[node.get('name')];
  141. } else {
  142. return true;
  143. }
  144. }).value();
  145. },
  146. getWithRelatedNodes: function(name) {
  147. var node = this.get(name),
  148. related2 = node.getRelated(),
  149. relations;
  150. relations = _.reduce(related2, function(memo, relNode) {
  151. memo[relNode.get('name')] = true;
  152. return memo;
  153. }, {});
  154. relations[name] = true;
  155. return relations;
  156. },
  157. getPlainNodes: function(options) {
  158. var scope;
  159. options || (options = {});
  160. scope = options.scope;
  161. return _.chain(this.getNodes()).filter(function(n) {
  162. return !!scope ? scope[n.get('name')] : true;
  163. }).map(function(n, i) {
  164. return {
  165. name: n.get('name'),
  166. fail: n.lastRunWasFailure(),
  167. date: n.getLastRunDate(),
  168. id: i
  169. };
  170. }).value();
  171. },
  172. getPlainPaths: function(options) {
  173. var scope, paths, matchedPaths;
  174. options || (options = {});
  175. scope = options.scope;
  176. paths = this.getPaths();
  177. if (!!scope) {
  178. matchedPaths = _.reduce(scope, function(memo, v, k) {
  179. var source, target, isUnlockedAsTarget,
  180. isLocked, isLockedToTarget, isLockedFromSource;
  181. _.each(paths, function(path) {
  182. source = path.get('source');
  183. target = path.get('target');
  184. isLocked = !v.locked;
  185. isUnlockedAsTarget = !isLocked && (target === v.id);
  186. isLockedToTarget = isLocked && (source === v.id) && scope[target];
  187. isLockedFromSource = isLocked && (target === v.id) && scope[source];
  188. if (isUnlockedAsTarget || isLockedToTarget || isLockedFromSource) {
  189. memo.push(path);
  190. }
  191. });
  192. return memo;
  193. }, []);
  194. } else {
  195. matchedPaths = paths;
  196. }
  197. return _.map(matchedPaths, function(p) {
  198. return {
  199. sourceName: p.get('source'),
  200. targetName: p.get('target'),
  201. inScope: true,
  202. weight: 1
  203. };
  204. });
  205. },
  206. getLastStatus: function(m) {
  207. var mId = _.has(m, 'id') ? m.id : m,
  208. match;
  209. match = _.first(this.getNodes({id: mId}) || []);
  210. return !!match ? match.get('lastRunStatus') : null;
  211. },
  212. watchAccessoryLastSuccess: function(accessoryModel, value, options) {
  213. var m = this.get(accessoryModel.id);
  214. if (!!m) { m.set('lastSuccess', value); }
  215. },
  216. watchAccessoryLastError: function(accessoryModel, value, options) {
  217. var m = this.get(accessoryModel.id);
  218. if (!!m) { m.set('lastError', value); }
  219. },
  220. registerAccessoryCollection: function(c) {
  221. var _this = this,
  222. updateInAccessoryCollection;
  223. updateInAccessoryCollection = function(model, value) {
  224. var cModel = c.get(model.id);
  225. if (!!cModel) {
  226. cModel.set('lastRunStatus', value);
  227. model.set({
  228. lastError: cModel.get('lastError'),
  229. lastSuccess: cModel.get('lastSuccess')
  230. });
  231. }
  232. };
  233. this.listenTo(c, {
  234. 'change:lastSuccess': this.watchAccessoryLastSuccess,
  235. 'change:lastError': this.watchAccessoryLastError,
  236. sync: function(coll) {
  237. _this.each(function(model) {
  238. if (!(JobGraph.isNode(model))) { return; }
  239. updateInAccessoryCollection(model, model.get('lastRunStatus'));
  240. });
  241. }
  242. });
  243. c.listenTo(this, {
  244. 'change:lastRunStatus': updateInAccessoryCollection,
  245. reset: function(collection, options) {
  246. collection.each(function(model) {
  247. updateInAccessoryCollection(model, model.get('lastRunStatus'));
  248. });
  249. }
  250. });
  251. return this;
  252. }
  253. }), {
  254. isNode: function(model) {
  255. return model.get('type') === 'node';
  256. },
  257. isPath: function(model) {
  258. return model.get('type') === 'link';
  259. }
  260. });
  261. return JobGraph;
  262. });