gx
chenyc
2025-06-12 7b72ac13a83764a662159d4a49b7fffb90476ecb
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
'use strict';
 
module.exports = function stringifyFunctionOperators(pipeline) {
  if (!Array.isArray(pipeline)) {
    return;
  }
 
  for (const stage of pipeline) {
    if (stage == null) {
      continue;
    }
 
    const canHaveAccumulator = stage.$group || stage.$bucket || stage.$bucketAuto;
    if (canHaveAccumulator != null) {
      for (const key of Object.keys(canHaveAccumulator)) {
        handleAccumulator(canHaveAccumulator[key]);
      }
    }
 
    const stageType = Object.keys(stage)[0];
    if (stageType && typeof stage[stageType] === 'object') {
      const stageOptions = stage[stageType];
      for (const key of Object.keys(stageOptions)) {
        if (stageOptions[key] != null &&
            stageOptions[key].$function != null &&
            typeof stageOptions[key].$function.body === 'function') {
          stageOptions[key].$function.body = stageOptions[key].$function.body.toString();
        }
      }
    }
 
    if (stage.$facet != null) {
      for (const key of Object.keys(stage.$facet)) {
        stringifyFunctionOperators(stage.$facet[key]);
      }
    }
  }
};
 
function handleAccumulator(operator) {
  if (operator == null || operator.$accumulator == null) {
    return;
  }
 
  for (const key of ['init', 'accumulate', 'merge', 'finalize']) {
    if (typeof operator.$accumulator[key] === 'function') {
      operator.$accumulator[key] = String(operator.$accumulator[key]);
    }
  }
}