« get me outta code hell

cacheable-object.js « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/cacheable-object.js
blob: 4b354ef7e4af7df8f1fd32857f231033109070b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
import {inspect as nodeInspect} from 'node:util';

import {colors, ENABLE_COLOR} from '#cli';

function inspect(value) {
  return nodeInspect(value, {colors: ENABLE_COLOR});
}

export default class CacheableObject {
  static propertyDescriptors = Symbol.for('CacheableObject.propertyDescriptors');
  static constructorFinalized = Symbol.for('CacheableObject.constructorFinalized');
  static propertyDependants = Symbol.for('CacheableObject.propertyDependants');

  static cacheValid = Symbol.for('CacheableObject.cacheValid');
  static updateValue = Symbol.for('CacheableObject.updateValues');

  constructor() {
    this[CacheableObject.updateValue] = Object.create(null);
    this[CacheableObject.cachedValue] = Object.create(null);
    this[CacheableObject.cacheValid] = Object.create(null);

    const propertyDescriptors = this.constructor[CacheableObject.propertyDescriptors];
    for (const property of Reflect.ownKeys(propertyDescriptors)) {
      const {flags, update} = propertyDescriptors[property];
      if (!flags.update) continue;

      if (
        typeof update === 'object' &&
        update !== null &&
        'default' in update
      ) {
        this[property] = update?.default;
      } else {
        this[property] = null;
      }
    }
  }

  static finalizeCacheableObjectPrototype() {
    if (this[CacheableObject.constructorFinalized]) {
      throw new Error(`Constructor ${this.name} already finalized`);
    }

    if (!this[CacheableObject.propertyDescriptors]) {
      throw new Error(`Expected constructor ${this.name} to provide CacheableObject.propertyDescriptors`);
    }

    this[CacheableObject.propertyDependants] = Object.create(null);

    const propertyDescriptors = this[CacheableObject.propertyDescriptors];
    for (const property of Reflect.ownKeys(propertyDescriptors)) {
      const {flags, update, expose} = propertyDescriptors[property];

      const definition = {
        configurable: false,
        enumerable: flags.expose,
      };

      if (flags.update) setSetter: {
        definition.set = function(newValue) {
          if (newValue === undefined) {
            throw new TypeError(`Properties cannot be set to undefined`);
          }

          const oldValue = this[CacheableObject.updateValue][property];

          if (newValue === oldValue) {
            return;
          }

          if (newValue !== null && update?.validate) {
            try {
              const result = update.validate(newValue);
              if (result === undefined) {
                throw new TypeError(`Validate function returned undefined`);
              } else if (result !== true) {
                throw new TypeError(`Validation failed for value ${newValue}`);
              }
            } catch (caughtError) {
              throw new CacheableObjectPropertyValueError(
                property, oldValue, newValue, {cause: caughtError});
            }
          }

          this[CacheableObject.updateValue][property] = newValue;

          const dependants = this.constructor[CacheableObject.propertyDependants][property];
          if (dependants) {
            for (const dependant of dependants) {
              this[CacheableObject.cacheValid][dependant] = false;
            }
          }
        };
      }

      if (flags.expose) setGetter: {
        if (flags.update && !expose?.transform) {
          definition.get = function() {
            return this[CacheableObject.updateValue][property];
          };

          break setGetter;
        }

        if (flags.update && expose?.compute) {
          throw new Error(`Updating property ${property} has compute function, should be formatted as transform`);
        }

        if (!flags.update && !expose?.compute) {
          throw new Error(`Exposed property ${property} does not update and is missing compute function`);
        }

        definition.get = function() {
          if (this[CacheableObject.cacheValid][property]) {
            return this[CacheableObject.cachedValue][property];
          }

          const dependencies = Object.create(null);
          for (const key of expose.dependencies ?? []) {
            switch (key) {
              case 'this':
                dependencies.this = this;
                break;

              case 'thisProperty':
                dependencies.thisProperty = property;
                break;

              default:
                dependencies[key] = this[CacheableObject.updateValue][key];
                break;
            }
          }

          const value =
            (flags.update
              ? expose.transform(this[CacheableObject.updateValue][property], dependencies)
              : expose.compute(dependencies));

          this[CacheableObject.cachedValue][property] = value;
          this[CacheableObject.cacheValid][property] = true;

          return value;
        };
      }

      if (flags.expose) recordAsDependant: {
        const dependantsMap = this[CacheableObject.propertyDependants];

        if (flags.update && expose?.transform) {
          if (dependantsMap[property]) {
            dependantsMap[property].push(property);
          } else {
            dependantsMap[property] = [property];
          }
        }

        for (const dependency of expose?.dependencies ?? []) {
          switch (dependency) {
            case 'this':
            case 'thisProperty':
              continue;

            default: {
              if (dependantsMap[dependency]) {
                dependantsMap[dependency].push(property);
              } else {
                dependantsMap[dependency] = [property];
              }
            }
          }
        }
      }

      Object.defineProperty(this.prototype, property, definition);
    }

    this[CacheableObject.constructorFinalized] = true;
  }

  static getPropertyDescriptor(property) {
    return this[CacheableObject.propertyDescriptors][property];
  }

  static hasPropertyDescriptor(property) {
    return Object.hasOwn(this[CacheableObject.propertyDescriptors], property);
  }

  static cacheAllExposedProperties(obj) {
    if (!(obj instanceof CacheableObject)) {
      console.warn('Not a CacheableObject:', obj);
      return;
    }

    const {[CacheableObject.propertyDescriptors]: propertyDescriptors} =
      obj.constructor;

    if (!propertyDescriptors) {
      console.warn('Missing property descriptors:', obj);
      return;
    }

    for (const property of Reflect.ownKeys(propertyDescriptors)) {
      const {flags} = propertyDescriptors[property];
      if (!flags.expose) {
        continue;
      }

      obj[property];
    }
  }

  static getUpdateValue(object, key) {
    if (!object.constructor.hasPropertyDescriptor(key)) {
      return undefined;
    }

    return object[CacheableObject.updateValue][key] ?? null;
  }

  static clone(object) {
    const newObject = Reflect.construct(object.constructor, []);

    this.copyUpdateValuesOnto(object, newObject);

    return newObject;
  }

  static copyUpdateValuesOnto(source, target) {
    Object.assign(target, source[CacheableObject.updateValue]);
  }
}

export class CacheableObjectPropertyValueError extends Error {
  [Symbol.for('hsmusic.aggregate.translucent')] = true;

  constructor(property, oldValue, newValue, options) {
    let inspectOldValue, inspectNewValue;

    try {
      inspectOldValue = inspect(oldValue);
    } catch (error) {
      inspectOldValue = colors.red(`(couldn't inspect)`);
    }

    try {
      inspectNewValue = inspect(newValue);
    } catch (error) {
      inspectNewValue = colors.red(`(couldn't inspect)`);
    }

    super(
      `Error setting ${colors.green(property)} (${inspectOldValue} -> ${inspectNewValue})`,
      options);

    this.property = property;
  }
}