123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- // surrounding_box function
- //
- // It's really hard to see an error message without using
- // the surrounding_box function to highlight its location.
- // The implementation of this in packages/backend might not
- // work in older versions of node, so we instead re-implement
- // it here.
- const surrounding_box = (col, lines) => {
- const lengths = lines.map(line => line.length);
- const max_length = Math.max(...lengths);
- const c = str => `\x1b[${col}m${str}\x1b[0m`;
- const bar = c(Array(max_length + 4).fill('━').join(''));
- for ( let i = 0 ; i < lines.length ; i++ ) {
- while ( lines[i].length < max_length ) {
- lines[i] += ' ';
- }
- lines[i] = `${c('┃ ')} ${lines[i]} ${c(' ┃')}`;
- }
- lines.unshift(`${c('┏')}${bar}${c('┓')}`);
- lines.push(`${c('┗')}${bar}${c('┛')}`);
- };
- // node version check
- {
- // Keeping track of WHY certain versions don't work
- const ver_info = [
- { under: 14, reasons: ['optional chaining is not available'] },
- { under: 16, reasons: ['diskusage package ABI mismatch'] },
- ];
- const lowest_allowed = Math.max(...ver_info.map(r => r.under));
- // ACTUAL VERSION CHECK
- const [major, minor] = process.versions.node.split('.').map(Number);
- if ( major < lowest_allowed ) {
- const lines = [];
- lines.push(`Please use a version of Node.js ${lowest_allowed} or newer.`);
- lines.push(`Issues with node ${process.versions.node}:`);
- // We also show the user the reasons in case they want to know
- for ( const { under, reasons } of ver_info ) {
- if ( major < under ) {
- lines.push(` - ${reasons.join(', ')}`);
- }
- }
- surrounding_box('31;1', lines);
- console.error(lines.join('\n'));
- process.exit(1);
- }
- }
- const main = async () => {
- const {
- Kernel,
- CoreModule,
- DatabaseModule,
- PuterDriversModule,
- LocalDiskStorageModule,
- SelfhostedModule
- } = (await import('@heyputer/backend')).default;
- console.log('kerne', Kernel);
- const k = new Kernel();
- k.add_module(new CoreModule());
- k.add_module(new DatabaseModule());
- k.add_module(new PuterDriversModule());
- k.add_module(new LocalDiskStorageModule());
- k.add_module(new SelfhostedModule()),
- k.boot();
- };
- const early_init_errors = [
- {
- text: `Cannot find package '@heyputer/backend'`,
- notes: [
- 'this usually happens if you forget `npm install`'
- ],
- suggestions: [
- 'try running `npm install`'
- ],
- technical_notes: [
- '@heyputer/backend is in an npm workspace'
- ]
- },
- {
- text: `Cannot find package`,
- notes: [
- 'this usually happens if you forget `npm install`'
- ],
- suggestions: [
- 'try running `npm install`'
- ],
- }
- ];
- const newstuff = {
- // Nullish coalescing operator
- nco: (...a) => a.reduce((acc, val) => acc == undefined ? val : acc),
- // Optional chaining
- oc: (obj, ...keys) => keys.reduce((acc, key) => acc ? acc[key] : undefined, obj),
- oc_call: (maybe_fn, ...args) => maybe_fn ? maybe_fn(...args) : undefined,
- };1
- const _print_error_help = (error_help) => {
- const lines = [];
- lines.push(nco(error_help.title, error_help.text));
- for ( const note of (nco(error_help.notes, [])) ) {
- lines.push(`📝 ${note}`)
- }
- if ( error_help.suggestions ) {
- lines.push('Suggestions:');
- for ( const suggestion of error_help.suggestions ) {
- lines.push(`- ${suggestion}`);
- }
- }
- if ( error_help.technical_notes ) {
- lines.push('Technical Notes:');
- for ( const note of error_help.technical_notes ) {
- lines.push(`- ${note}`);
- }
- }
- surrounding_box('31;1', lines);
- console.error(lines.join('\n'));
- }
- (async () => {
- try {
- await main();
- } catch (e) {
- for ( const error_help of early_init_errors ) {
- if ( oc_call(oc(e, message, includes), error_help.text) ) {
- _print_error_help(error_help);
- break;
- }
- }
- throw e;
- }
- })();
|