store.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import { Modes } from './../modes';
  2. export class Store {
  3. constructor() {
  4. this.store = {};
  5. this.nextStore = null;
  6. this.mode = Modes.RUN;
  7. }
  8. extendStore (nextStore) {
  9. this.nextStore = nextStore;
  10. }
  11. applyStore (id) {
  12. if(!this.store[id]) {
  13. if (this.nextStore !== null) {
  14. return this.nextStore.applyStore(id);
  15. } else {
  16. // TODO: better error message
  17. throw new Error(`Variable ${id} not found.`);
  18. }
  19. }
  20. const val = this.store[id];
  21. if (val.isRef) {
  22. return val.getRefObj();
  23. }
  24. return this.store[id];
  25. }
  26. updateStore (id, stoObj) {
  27. if(!this.store[id]) {
  28. if(this.nextStore !== null) {
  29. this.nextStore.updateStore(id, stoObj);
  30. return this;
  31. } else {
  32. // TODO: better error message
  33. throw new Error(`Variable ${id} not found.`);
  34. }
  35. } else {
  36. const oldObj = this.store[id];
  37. if(oldObj.readOnly) {
  38. // TODO: better error message
  39. throw new Error("Cannot change value of a read only variable: " + id);
  40. }
  41. if(oldObj.isCompatible(stoObj)) {
  42. if(oldObj.isRef) {
  43. oldObj.updateRef(stoObj);
  44. return this;
  45. }
  46. stoObj.setID(id);
  47. this.store[id] = Object.freeze(stoObj);
  48. return this;
  49. } else {
  50. // TODO: better error message
  51. throw new Error(`${oldObj.type} is not compatible with the value given`);
  52. }
  53. }
  54. }
  55. insertStore (id, stoObj) {
  56. if (this.store[id]) {
  57. // TODO: better error message
  58. throw new Error(`${id} is already defined`);
  59. }
  60. stoObj.setID(id);
  61. this.store[id] = Object.freeze(stoObj);
  62. return this;
  63. }
  64. }