« get me outta code hell

repl.js « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/repl.js
blob: 08e83a5cbcac2716d60bf656122b14945b7ae6fe (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
import * as os from 'os';
import * as path from 'path';
import * as repl from 'repl';
import {fileURLToPath} from 'url';

import thingConstructors from './data/things/index.js';
import {quickLoadAllFromYAML} from './data/yaml.js';
import {logError, logWarn, parseOptions} from './util/cli.js';
import {isMain} from './util/node-utils.js';
import {bindOpts, showAggregate} from './util/sugar.js';
import {generateURLs} from './util/urls.js';

import {processLanguageFile} from './upd8.js';

import * as serialize from './util/serialize.js';
import * as sugar from './util/sugar.js';
import * as wikiDataUtils from './util/wiki-data.js';
import _find, {bindFind} from './util/find.js';

import urlSpec from './url-spec.js';

export async function getContextAssignments({
  wikiData,
}) {
  let urls;
  try {
    urls = generateURLs(urlSpec);
  } catch (error) {
    console.error(error);
    logWarn`Failed to generate URL mappings for built-in urlSpec`;
    logWarn`\`urls\` variable will be missing`;
  }

  let find;
  try {
    find = bindFind(wikiData);
  } catch (error) {
    console.error(error);
    logWarn`Failed to prepare wikiData-bound find() functions`;
    logWarn`\`find\` variable will be missing`;
  }

  let language;
  try {
    language = await processLanguageFile(
      path.join(
        path.dirname(fileURLToPath(import.meta.url)),
        'strings-default.json'));
  } catch (error) {
    console.error(error);
    logWarn`Failed to create Language object`;
    logWarn`\`language\` variable will be missing`;
    language = undefined;
  }

  return {
    wikiData,
    ...wikiData,
    WD: wikiData,

    ...thingConstructors,
    language,

    ...sugar,
    ...wikiDataUtils,

    serialize,
    S: serialize,

    urls,

    _find,
    find,
    bindFind,
  };
}

async function main() {
  const miscOptions = await parseOptions(process.argv.slice(2), {
    'data-path': {
      type: 'value',
    },

    'no-history': {
      type: 'flag',
    },
  });

  const dataPath = miscOptions['data-path'] || process.env.HSMUSIC_DATA;
  const disableHistory = miscOptions['no-history'] ?? false;

  if (!dataPath) {
    logError`Expected --data-path option or HSMUSIC_DATA to be set`;
    return;
  }

  console.log('HSMusic data REPL');

  const wikiData = await quickLoadAllFromYAML(dataPath, {
    showAggregate: bindOpts(showAggregate, {
      showTraces: false,
    }),
  });

  const replServer = repl.start();

  Object.assign(replServer.context, await getContextAssignments({
    wikiData,
  }));

  if (disableHistory) {
    console.log(`\rInput history disabled (--no-history provided)`);
    replServer.displayPrompt(true);
  } else {
    const historyFile = path.join(os.homedir(), '.hsmusic_repl_history');
    replServer.setupHistory(historyFile, (err) => {
      if (err) {
        console.error(
          `\rFailed to begin locally logging input history to ${historyFile} (provide --no-history to disable)`
        );
      } else {
        console.log(
          `\rLogging input history to ${historyFile} (provide --no-history to disable)`
        );
      }
      replServer.displayPrompt(true);
    });
  }
}

if (isMain(import.meta.url)) {
  main().catch((error) => {
    if (error instanceof AggregateError) {
      showAggregate(error);
    } else {
      console.error(error);
    }
  });
}