@qqbrowser/qbot-claw-launcher 0.9.35 → 0.9.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/dist/quarantine.js +1 -1
  2. package/node_modules/@parcel/watcher/build/Release/watcher.node +0 -0
  3. package/node_modules/@parcel/watcher/index.js +3 -30
  4. package/node_modules/@parcel/watcher/package.json +3 -3
  5. package/node_modules/fs-xattr/build/Release/xattr.node +0 -0
  6. package/node_modules/fs-xattr/package.json +1 -1
  7. package/node_modules/node-addon-api/LICENSE.md +9 -0
  8. package/node_modules/node-addon-api/README.md +95 -0
  9. package/node_modules/node-addon-api/common.gypi +21 -0
  10. package/node_modules/node-addon-api/except.gypi +25 -0
  11. package/node_modules/node-addon-api/index.js +14 -0
  12. package/node_modules/node-addon-api/napi-inl.deprecated.h +186 -0
  13. package/node_modules/node-addon-api/napi-inl.h +7108 -0
  14. package/node_modules/node-addon-api/napi.h +3327 -0
  15. package/node_modules/node-addon-api/node_addon_api.gyp +42 -0
  16. package/node_modules/node-addon-api/node_api.gyp +9 -0
  17. package/node_modules/node-addon-api/noexcept.gypi +26 -0
  18. package/node_modules/node-addon-api/nothing.c +0 -0
  19. package/node_modules/node-addon-api/package-support.json +21 -0
  20. package/node_modules/node-addon-api/package.json +480 -0
  21. package/node_modules/node-addon-api/tools/README.md +73 -0
  22. package/node_modules/node-addon-api/tools/check-napi.js +99 -0
  23. package/node_modules/node-addon-api/tools/clang-format.js +71 -0
  24. package/node_modules/node-addon-api/tools/conversion.js +301 -0
  25. package/package.json +6 -11
  26. package/dist/config.d.ts +0 -12
  27. package/dist/index.d.ts +0 -2
  28. package/dist/installer.d.ts +0 -12
  29. package/dist/quarantine.d.ts +0 -3
  30. package/dist/reportLog.d.ts +0 -4
  31. package/dist/server.d.ts +0 -3
  32. package/dist/service.d.ts +0 -2
  33. package/dist/state.d.ts +0 -14
  34. package/dist/utils.d.ts +0 -6
  35. package/node_modules/@parcel/watcher-darwin-arm64/LICENSE +0 -21
  36. package/node_modules/@parcel/watcher-darwin-arm64/README.md +0 -1
  37. package/node_modules/@parcel/watcher-darwin-arm64/package.json +0 -30
  38. package/node_modules/@parcel/watcher-darwin-arm64/watcher.node +0 -0
  39. package/node_modules/fs-xattr/build/Makefile +0 -347
  40. package/node_modules/fs-xattr/build/Release/.deps/Release/obj.target/xattr/src/async.o.d +0 -15
  41. package/node_modules/fs-xattr/build/Release/.deps/Release/obj.target/xattr/src/error.o.d +0 -12
  42. package/node_modules/fs-xattr/build/Release/.deps/Release/obj.target/xattr/src/sync.o.d +0 -15
  43. package/node_modules/fs-xattr/build/Release/.deps/Release/obj.target/xattr/src/util.o.d +0 -12
  44. package/node_modules/fs-xattr/build/Release/.deps/Release/obj.target/xattr/src/xattr.o.d +0 -14
  45. package/node_modules/fs-xattr/build/Release/.deps/Release/xattr.node.d +0 -1
  46. package/node_modules/fs-xattr/build/Release/obj.target/xattr/src/async.o +0 -0
  47. package/node_modules/fs-xattr/build/Release/obj.target/xattr/src/error.o +0 -0
  48. package/node_modules/fs-xattr/build/Release/obj.target/xattr/src/sync.o +0 -0
  49. package/node_modules/fs-xattr/build/Release/obj.target/xattr/src/util.o +0 -0
  50. package/node_modules/fs-xattr/build/Release/obj.target/xattr/src/xattr.o +0 -0
  51. package/node_modules/fs-xattr/build/binding.Makefile +0 -6
  52. package/node_modules/fs-xattr/build/config.gypi +0 -531
  53. package/node_modules/fs-xattr/build/gyp-mac-tool +0 -772
  54. package/node_modules/fs-xattr/build/xattr.target.mk +0 -185
@@ -0,0 +1,99 @@
1
+ 'use strict';
2
+ // Descend into a directory structure and, for each file matching *.node, output
3
+ // based on the imports found in the file whether it's an N-API module or not.
4
+
5
+ const fs = require('fs');
6
+ const path = require('path');
7
+
8
+ // Read the output of the command, break it into lines, and use the reducer to
9
+ // decide whether the file is an N-API module or not.
10
+ function checkFile (file, command, argv, reducer) {
11
+ const child = require('child_process').spawn(command, argv, {
12
+ stdio: ['inherit', 'pipe', 'inherit']
13
+ });
14
+ let leftover = '';
15
+ let isNapi;
16
+ child.stdout.on('data', (chunk) => {
17
+ if (isNapi === undefined) {
18
+ chunk = (leftover + chunk.toString()).split(/[\r\n]+/);
19
+ leftover = chunk.pop();
20
+ isNapi = chunk.reduce(reducer, isNapi);
21
+ if (isNapi !== undefined) {
22
+ child.kill();
23
+ }
24
+ }
25
+ });
26
+ child.on('close', (code, signal) => {
27
+ if ((code === null && signal !== null) || (code !== 0)) {
28
+ console.log(
29
+ command + ' exited with code: ' + code + ' and signal: ' + signal);
30
+ } else {
31
+ // Green if it's a N-API module, red otherwise.
32
+ console.log(
33
+ '\x1b[' + (isNapi ? '42' : '41') + 'm' +
34
+ (isNapi ? ' N-API' : 'Not N-API') +
35
+ '\x1b[0m: ' + file);
36
+ }
37
+ });
38
+ }
39
+
40
+ // Use nm -a to list symbols.
41
+ function checkFileUNIX (file) {
42
+ checkFile(file, 'nm', ['-a', file], (soFar, line) => {
43
+ if (soFar === undefined) {
44
+ line = line.match(/([0-9a-f]*)? ([a-zA-Z]) (.*$)/);
45
+ if (line[2] === 'U') {
46
+ if (/^napi/.test(line[3])) {
47
+ soFar = true;
48
+ }
49
+ }
50
+ }
51
+ return soFar;
52
+ });
53
+ }
54
+
55
+ // Use dumpbin /imports to list symbols.
56
+ function checkFileWin32 (file) {
57
+ checkFile(file, 'dumpbin', ['/imports', file], (soFar, line) => {
58
+ if (soFar === undefined) {
59
+ line = line.match(/([0-9a-f]*)? +([a-zA-Z0-9]) (.*$)/);
60
+ if (line && /^napi/.test(line[line.length - 1])) {
61
+ soFar = true;
62
+ }
63
+ }
64
+ return soFar;
65
+ });
66
+ }
67
+
68
+ // Descend into a directory structure and pass each file ending in '.node' to
69
+ // one of the above checks, depending on the OS.
70
+ function recurse (top) {
71
+ fs.readdir(top, (error, items) => {
72
+ if (error) {
73
+ throw new Error('error reading directory ' + top + ': ' + error);
74
+ }
75
+ items.forEach((item) => {
76
+ item = path.join(top, item);
77
+ fs.stat(item, ((item) => (error, stats) => {
78
+ if (error) {
79
+ throw new Error('error about ' + item + ': ' + error);
80
+ }
81
+ if (stats.isDirectory()) {
82
+ recurse(item);
83
+ } else if (/[.]node$/.test(item) &&
84
+ // Explicitly ignore files called 'nothing.node' because they are
85
+ // artefacts of node-addon-api having identified a version of
86
+ // Node.js that ships with a correct implementation of N-API.
87
+ path.basename(item) !== 'nothing.node') {
88
+ process.platform === 'win32'
89
+ ? checkFileWin32(item)
90
+ : checkFileUNIX(item);
91
+ }
92
+ })(item));
93
+ });
94
+ });
95
+ }
96
+
97
+ // Start with the directory given on the command line or the current directory
98
+ // if nothing was given.
99
+ recurse(process.argv.length > 3 ? process.argv[2] : '.');
@@ -0,0 +1,71 @@
1
+ #!/usr/bin/env node
2
+
3
+ const spawn = require('child_process').spawnSync;
4
+ const path = require('path');
5
+
6
+ const filesToCheck = ['*.h', '*.cc'];
7
+ const FORMAT_START = process.env.FORMAT_START || 'main';
8
+
9
+ function main (args) {
10
+ let fix = false;
11
+ while (args.length > 0) {
12
+ switch (args[0]) {
13
+ case '-f':
14
+ case '--fix':
15
+ fix = true;
16
+ break;
17
+ default:
18
+ }
19
+ args.shift();
20
+ }
21
+
22
+ const clangFormatPath = path.dirname(require.resolve('clang-format'));
23
+ const binary = process.platform === 'win32'
24
+ ? 'node_modules\\.bin\\clang-format.cmd'
25
+ : 'node_modules/.bin/clang-format';
26
+ const options = ['--binary=' + binary, '--style=file'];
27
+ if (fix) {
28
+ options.push(FORMAT_START);
29
+ } else {
30
+ options.push('--diff', FORMAT_START);
31
+ }
32
+
33
+ const gitClangFormatPath = path.join(clangFormatPath, 'bin/git-clang-format');
34
+ const result = spawn(
35
+ 'python',
36
+ [gitClangFormatPath, ...options, '--', ...filesToCheck],
37
+ { encoding: 'utf-8' }
38
+ );
39
+
40
+ if (result.stderr) {
41
+ console.error('Error running git-clang-format:', result.stderr);
42
+ return 2;
43
+ }
44
+
45
+ const clangFormatOutput = result.stdout.trim();
46
+ // Bail fast if in fix mode.
47
+ if (fix) {
48
+ console.log(clangFormatOutput);
49
+ return 0;
50
+ }
51
+ // Detect if there is any complains from clang-format
52
+ if (
53
+ clangFormatOutput !== '' &&
54
+ clangFormatOutput !== 'no modified files to format' &&
55
+ clangFormatOutput !== 'clang-format did not modify any files'
56
+ ) {
57
+ console.error(clangFormatOutput);
58
+ const fixCmd = 'npm run lint:fix';
59
+ console.error(`
60
+ ERROR: please run "${fixCmd}" to format changes in your commit
61
+ Note that when running the command locally, please keep your local
62
+ main branch and working branch up to date with nodejs/node-addon-api
63
+ to exclude un-related complains.
64
+ Or you can run "env FORMAT_START=upstream/main ${fixCmd}".`);
65
+ return 1;
66
+ }
67
+ }
68
+
69
+ if (require.main === module) {
70
+ process.exitCode = main(process.argv.slice(2));
71
+ }
@@ -0,0 +1,301 @@
1
+ #! /usr/bin/env node
2
+
3
+ 'use strict';
4
+
5
+ const fs = require('fs');
6
+ const path = require('path');
7
+
8
+ const args = process.argv.slice(2);
9
+ const dir = args[0];
10
+ if (!dir) {
11
+ console.log('Usage: node ' + path.basename(__filename) + ' <target-dir>');
12
+ process.exit(1);
13
+ }
14
+
15
+ const NodeApiVersion = require('../').version;
16
+
17
+ const disable = args[1];
18
+ let ConfigFileOperations;
19
+ if (disable !== '--disable' && dir !== '--disable') {
20
+ ConfigFileOperations = {
21
+ 'package.json': [
22
+ [/([ ]*)"dependencies": {/g, '$1"dependencies": {\n$1 "node-addon-api": "' + NodeApiVersion + '",'],
23
+ [/[ ]*"nan": *"[^"]+"(,|)[\n\r]/g, '']
24
+ ],
25
+ 'binding.gyp': [
26
+ [/([ ]*)'include_dirs': \[/g, '$1\'include_dirs\': [\n$1 \'<!(node -p "require(\\\'node-addon-api\\\').include_dir")\','],
27
+ [/([ ]*)"include_dirs": \[/g, '$1"include_dirs": [\n$1 "<!(node -p \\"require(\'node-addon-api\').include_dir\\")",'],
28
+ [/[ ]*("|')<!\(node -e ("|'|\\"|\\')require\(("|'|\\"|\\')nan("|'|\\"|\\')\)("|'|\\"|\\')\)("|')(,|)[\r\n]/g, ''],
29
+ [/([ ]*)("|')target_name("|'): ("|')(.+?)("|'),/g, '$1$2target_name$2: $4$5$6,\n $2cflags!$2: [ $2-fno-exceptions$2 ],\n $2cflags_cc!$2: [ $2-fno-exceptions$2 ],\n $2xcode_settings$2: { $2GCC_ENABLE_CPP_EXCEPTIONS$2: $2YES$2,\n $2CLANG_CXX_LIBRARY$2: $2libc++$2,\n $2MACOSX_DEPLOYMENT_TARGET$2: $210.7$2,\n },\n $2msvs_settings$2: {\n $2VCCLCompilerTool$2: { $2ExceptionHandling$2: 1 },\n },']
30
+ ]
31
+ };
32
+ } else {
33
+ ConfigFileOperations = {
34
+ 'package.json': [
35
+ [/([ ]*)"dependencies": {/g, '$1"dependencies": {\n$1 "node-addon-api": "' + NodeApiVersion + '",'],
36
+ [/[ ]*"nan": *"[^"]+"(,|)[\n\r]/g, '']
37
+ ],
38
+ 'binding.gyp': [
39
+ [/([ ]*)'include_dirs': \[/g, '$1\'include_dirs\': [\n$1 \'<!(node -p "require(\\\'node-addon-api\\\').include_dir")\','],
40
+ [/([ ]*)"include_dirs": \[/g, '$1"include_dirs": [\n$1 "<!(node -p \'require(\\"node-addon-api\\").include_dir\')",'],
41
+ [/[ ]*("|')<!\(node -e ("|'|\\"|\\')require\(("|'|\\"|\\')nan("|'|\\"|\\')\)("|'|\\"|\\')\)("|')(,|)[\r\n]/g, ''],
42
+ [/([ ]*)("|')target_name("|'): ("|')(.+?)("|'),/g, '$1$2target_name$2: $4$5$6,\n $2cflags!$2: [ $2-fno-exceptions$2 ],\n $2cflags_cc!$2: [ $2-fno-exceptions$2 ],\n $2defines$2: [ $2NAPI_DISABLE_CPP_EXCEPTIONS$2 ],\n $2conditions$2: [\n [\'OS=="win"\', { $2defines$2: [ $2_HAS_EXCEPTIONS=1$2 ] }]\n ]']
43
+ ]
44
+ };
45
+ }
46
+
47
+ const SourceFileOperations = [
48
+ [/Nan::SetMethod\(target,[\s]*"(.*)"[\s]*,[\s]*([^)]+)\)/g, 'exports.Set(Napi::String::New(env, "$1"), Napi::Function::New(env, $2))'],
49
+
50
+ [/v8::Local<v8::FunctionTemplate>\s+(\w+)\s*=\s*Nan::New<FunctionTemplate>\([\w\d:]+\);(?:\w+->Reset\(\1\))?\s+\1->SetClassName\(Nan::String::New\("(\w+)"\)\);/g, 'Napi::Function $1 = DefineClass(env, "$2", {'],
51
+ [/Local<FunctionTemplate>\s+(\w+)\s*=\s*Nan::New<FunctionTemplate>\([\w\d:]+\);\s+(\w+)\.Reset\((\1)\);\s+\1->SetClassName\((Nan::String::New|Nan::New<(v8::)*String>)\("(.+?)"\)\);/g, 'Napi::Function $1 = DefineClass(env, "$6", {'],
52
+ [/Local<FunctionTemplate>\s+(\w+)\s*=\s*Nan::New<FunctionTemplate>\([\w\d:]+\);(?:\w+->Reset\(\1\))?\s+\1->SetClassName\(Nan::String::New\("(\w+)"\)\);/g, 'Napi::Function $1 = DefineClass(env, "$2", {'],
53
+ [/Nan::New<v8::FunctionTemplate>\(([\w\d:]+)\)->GetFunction\(\)/g, 'Napi::Function::New(env, $1)'],
54
+ [/Nan::New<FunctionTemplate>\(([\w\d:]+)\)->GetFunction()/g, 'Napi::Function::New(env, $1);'],
55
+ [/Nan::New<v8::FunctionTemplate>\(([\w\d:]+)\)/g, 'Napi::Function::New(env, $1)'],
56
+ [/Nan::New<FunctionTemplate>\(([\w\d:]+)\)/g, 'Napi::Function::New(env, $1)'],
57
+
58
+ // FunctionTemplate to FunctionReference
59
+ [/Nan::Persistent<(v8::)*FunctionTemplate>/g, 'Napi::FunctionReference'],
60
+ [/Nan::Persistent<(v8::)*Function>/g, 'Napi::FunctionReference'],
61
+ [/v8::Local<v8::FunctionTemplate>/g, 'Napi::FunctionReference'],
62
+ [/Local<FunctionTemplate>/g, 'Napi::FunctionReference'],
63
+ [/v8::FunctionTemplate/g, 'Napi::FunctionReference'],
64
+ [/FunctionTemplate/g, 'Napi::FunctionReference'],
65
+
66
+ [/([ ]*)Nan::SetPrototypeMethod\(\w+, "(\w+)", (\w+)\);/g, '$1InstanceMethod("$2", &$3),'],
67
+ [/([ ]*)(?:\w+\.Reset\(\w+\);\s+)?\(target\)\.Set\("(\w+)",\s*Nan::GetFunction\((\w+)\)\);/gm,
68
+ '});\n\n' +
69
+ '$1constructor = Napi::Persistent($3);\n' +
70
+ '$1constructor.SuppressDestruct();\n' +
71
+ '$1target.Set("$2", $3);'],
72
+
73
+ // TODO: Other attribute combinations
74
+ [/static_cast<PropertyAttribute>\(ReadOnly\s*\|\s*DontDelete\)/gm,
75
+ 'static_cast<napi_property_attributes>(napi_enumerable | napi_configurable)'],
76
+
77
+ [/([\w\d:<>]+?)::Cast\((.+?)\)/g, '$2.As<$1>()'],
78
+
79
+ [/\*Nan::Utf8String\(([^)]+)\)/g, '$1->As<Napi::String>().Utf8Value().c_str()'],
80
+ [/Nan::Utf8String +(\w+)\(([^)]+)\)/g, 'std::string $1 = $2.As<Napi::String>()'],
81
+ [/Nan::Utf8String/g, 'std::string'],
82
+
83
+ [/v8::String::Utf8Value (.+?)\((.+?)\)/g, 'Napi::String $1(env, $2)'],
84
+ [/String::Utf8Value (.+?)\((.+?)\)/g, 'Napi::String $1(env, $2)'],
85
+ [/\.length\(\)/g, '.Length()'],
86
+
87
+ [/Nan::MakeCallback\(([^,]+),[\s\\]+([^,]+),/gm, '$2.MakeCallback($1,'],
88
+
89
+ [/class\s+(\w+)\s*:\s*public\s+Nan::ObjectWrap/g, 'class $1 : public Napi::ObjectWrap<$1>'],
90
+ [/(\w+)\(([^)]*)\)\s*:\s*Nan::ObjectWrap\(\)\s*(,)?/gm, '$1($2) : Napi::ObjectWrap<$1>()$3'],
91
+
92
+ // HandleOKCallback to OnOK
93
+ [/HandleOKCallback/g, 'OnOK'],
94
+ // HandleErrorCallback to OnError
95
+ [/HandleErrorCallback/g, 'OnError'],
96
+
97
+ // ex. .As<Function>() to .As<Napi::Object>()
98
+ [/\.As<v8::(Value|Boolean|String|Number|Object|Array|Symbol|External|Function)>\(\)/g, '.As<Napi::$1>()'],
99
+ [/\.As<(Value|Boolean|String|Number|Object|Array|Symbol|External|Function)>\(\)/g, '.As<Napi::$1>()'],
100
+
101
+ // ex. Nan::New<Number>(info[0]) to Napi::Number::New(info[0])
102
+ [/Nan::New<(v8::)*Integer>\((.+?)\)/g, 'Napi::Number::New(env, $2)'],
103
+ [/Nan::New\(([0-9.]+)\)/g, 'Napi::Number::New(env, $1)'],
104
+ [/Nan::New<(v8::)*String>\("(.+?)"\)/g, 'Napi::String::New(env, "$2")'],
105
+ [/Nan::New\("(.+?)"\)/g, 'Napi::String::New(env, "$1")'],
106
+ [/Nan::New<(v8::)*(.+?)>\(\)/g, 'Napi::$2::New(env)'],
107
+ [/Nan::New<(.+?)>\(\)/g, 'Napi::$1::New(env)'],
108
+ [/Nan::New<(v8::)*(.+?)>\(/g, 'Napi::$2::New(env, '],
109
+ [/Nan::New<(.+?)>\(/g, 'Napi::$1::New(env, '],
110
+ [/Nan::NewBuffer\(/g, 'Napi::Buffer<char>::New(env, '],
111
+ // TODO: Properly handle this
112
+ [/Nan::New\(/g, 'Napi::New(env, '],
113
+
114
+ [/\.IsInt32\(\)/g, '.IsNumber()'],
115
+ [/->IsInt32\(\)/g, '.IsNumber()'],
116
+
117
+ [/(.+?)->BooleanValue\(\)/g, '$1.As<Napi::Boolean>().Value()'],
118
+ [/(.+?)->Int32Value\(\)/g, '$1.As<Napi::Number>().Int32Value()'],
119
+ [/(.+?)->Uint32Value\(\)/g, '$1.As<Napi::Number>().Uint32Value()'],
120
+ [/(.+?)->IntegerValue\(\)/g, '$1.As<Napi::Number>().Int64Value()'],
121
+ [/(.+?)->NumberValue\(\)/g, '$1.As<Napi::Number>().DoubleValue()'],
122
+
123
+ // ex. Nan::To<bool>(info[0]) to info[0].Value()
124
+ [/Nan::To<v8::(Boolean|String|Number|Object|Array|Symbol|Function)>\((.+?)\)/g, '$2.To<Napi::$1>()'],
125
+ [/Nan::To<(Boolean|String|Number|Object|Array|Symbol|Function)>\((.+?)\)/g, '$2.To<Napi::$1>()'],
126
+ // ex. Nan::To<bool>(info[0]) to info[0].As<Napi::Boolean>().Value()
127
+ [/Nan::To<bool>\((.+?)\)/g, '$1.As<Napi::Boolean>().Value()'],
128
+ // ex. Nan::To<int>(info[0]) to info[0].As<Napi::Number>().Int32Value()
129
+ [/Nan::To<int>\((.+?)\)/g, '$1.As<Napi::Number>().Int32Value()'],
130
+ // ex. Nan::To<int32_t>(info[0]) to info[0].As<Napi::Number>().Int32Value()
131
+ [/Nan::To<int32_t>\((.+?)\)/g, '$1.As<Napi::Number>().Int32Value()'],
132
+ // ex. Nan::To<uint32_t>(info[0]) to info[0].As<Napi::Number>().Uint32Value()
133
+ [/Nan::To<uint32_t>\((.+?)\)/g, '$1.As<Napi::Number>().Uint32Value()'],
134
+ // ex. Nan::To<int64_t>(info[0]) to info[0].As<Napi::Number>().Int64Value()
135
+ [/Nan::To<int64_t>\((.+?)\)/g, '$1.As<Napi::Number>().Int64Value()'],
136
+ // ex. Nan::To<float>(info[0]) to info[0].As<Napi::Number>().FloatValue()
137
+ [/Nan::To<float>\((.+?)\)/g, '$1.As<Napi::Number>().FloatValue()'],
138
+ // ex. Nan::To<double>(info[0]) to info[0].As<Napi::Number>().DoubleValue()
139
+ [/Nan::To<double>\((.+?)\)/g, '$1.As<Napi::Number>().DoubleValue()'],
140
+
141
+ [/Nan::New\((\w+)\)->HasInstance\((\w+)\)/g, '$2.InstanceOf($1.Value())'],
142
+
143
+ [/Nan::Has\(([^,]+),\s*/gm, '($1).Has('],
144
+ [/\.Has\([\s|\\]*Nan::New<(v8::)*String>\(([^)]+)\)\)/gm, '.Has($1)'],
145
+ [/\.Has\([\s|\\]*Nan::New\(([^)]+)\)\)/gm, '.Has($1)'],
146
+
147
+ [/Nan::Get\(([^,]+),\s*/gm, '($1).Get('],
148
+ [/\.Get\([\s|\\]*Nan::New<(v8::)*String>\(([^)]+)\)\)/gm, '.Get($1)'],
149
+ [/\.Get\([\s|\\]*Nan::New\(([^)]+)\)\)/gm, '.Get($1)'],
150
+
151
+ [/Nan::Set\(([^,]+),\s*/gm, '($1).Set('],
152
+ [/\.Set\([\s|\\]*Nan::New<(v8::)*String>\(([^)]+)\)\s*,/gm, '.Set($1,'],
153
+ [/\.Set\([\s|\\]*Nan::New\(([^)]+)\)\s*,/gm, '.Set($1,'],
154
+
155
+ // ex. node::Buffer::HasInstance(info[0]) to info[0].IsBuffer()
156
+ [/node::Buffer::HasInstance\((.+?)\)/g, '$1.IsBuffer()'],
157
+ // ex. node::Buffer::Length(info[0]) to info[0].Length()
158
+ [/node::Buffer::Length\((.+?)\)/g, '$1.As<Napi::Buffer<char>>().Length()'],
159
+ // ex. node::Buffer::Data(info[0]) to info[0].Data()
160
+ [/node::Buffer::Data\((.+?)\)/g, '$1.As<Napi::Buffer<char>>().Data()'],
161
+ [/Nan::CopyBuffer\(/g, 'Napi::Buffer::Copy(env, '],
162
+
163
+ // Nan::AsyncQueueWorker(worker)
164
+ [/Nan::AsyncQueueWorker\((.+)\);/g, '$1.Queue();'],
165
+ [/Nan::(Undefined|Null|True|False)\(\)/g, 'env.$1()'],
166
+
167
+ // Nan::ThrowError(error) to Napi::Error::New(env, error).ThrowAsJavaScriptException()
168
+ [/([ ]*)return Nan::Throw(\w*?)Error\((.+?)\);/g, '$1Napi::$2Error::New(env, $3).ThrowAsJavaScriptException();\n$1return env.Null();'],
169
+ [/Nan::Throw(\w*?)Error\((.+?)\);\n(\s*)return;/g, 'Napi::$1Error::New(env, $2).ThrowAsJavaScriptException();\n$3return env.Null();'],
170
+ [/Nan::Throw(\w*?)Error\((.+?)\);/g, 'Napi::$1Error::New(env, $2).ThrowAsJavaScriptException();\n'],
171
+ // Nan::RangeError(error) to Napi::RangeError::New(env, error)
172
+ [/Nan::(\w*?)Error\((.+)\)/g, 'Napi::$1Error::New(env, $2)'],
173
+
174
+ [/Nan::Set\((.+?),\n* *(.+?),\n* *(.+?),\n* *(.+?)\)/g, '$1.Set($2, $3, $4)'],
175
+
176
+ [/Nan::(Escapable)?HandleScope\s+(\w+)\s*;/g, 'Napi::$1HandleScope $2(env);'],
177
+ [/Nan::(Escapable)?HandleScope/g, 'Napi::$1HandleScope'],
178
+ [/Nan::ForceSet\(([^,]+), ?/g, '$1->DefineProperty('],
179
+ [/\.ForceSet\(Napi::String::New\(env, "(\w+)"\),\s*?/g, '.DefineProperty("$1", '],
180
+ // [ /Nan::GetPropertyNames\(([^,]+)\)/, '$1->GetPropertyNames()' ],
181
+ [/Nan::Equals\(([^,]+),/g, '$1.StrictEquals('],
182
+
183
+ [/(.+)->Set\(/g, '$1.Set('],
184
+
185
+ [/Nan::Callback/g, 'Napi::FunctionReference'],
186
+
187
+ [/Nan::Persistent<Object>/g, 'Napi::ObjectReference'],
188
+ [/Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE target/g, 'Napi::Env& env, Napi::Object& target'],
189
+
190
+ [/(\w+)\*\s+(\w+)\s*=\s*Nan::ObjectWrap::Unwrap<\w+>\(info\.This\(\)\);/g, '$1* $2 = this;'],
191
+ [/Nan::ObjectWrap::Unwrap<(\w+)>\((.*)\);/g, '$2.Unwrap<$1>();'],
192
+
193
+ [/Nan::NAN_METHOD_RETURN_TYPE/g, 'void'],
194
+ [/NAN_INLINE/g, 'inline'],
195
+
196
+ [/Nan::NAN_METHOD_ARGS_TYPE/g, 'const Napi::CallbackInfo&'],
197
+ [/NAN_METHOD\(([\w\d:]+?)\)/g, 'Napi::Value $1(const Napi::CallbackInfo& info)'],
198
+ [/static\s*NAN_GETTER\(([\w\d:]+?)\)/g, 'Napi::Value $1(const Napi::CallbackInfo& info)'],
199
+ [/NAN_GETTER\(([\w\d:]+?)\)/g, 'Napi::Value $1(const Napi::CallbackInfo& info)'],
200
+ [/static\s*NAN_SETTER\(([\w\d:]+?)\)/g, 'void $1(const Napi::CallbackInfo& info, const Napi::Value& value)'],
201
+ [/NAN_SETTER\(([\w\d:]+?)\)/g, 'void $1(const Napi::CallbackInfo& info, const Napi::Value& value)'],
202
+ [/void Init\((v8::)*Local<(v8::)*Object> exports\)/g, 'Napi::Object Init(Napi::Env env, Napi::Object exports)'],
203
+ [/NAN_MODULE_INIT\(([\w\d:]+?)\);/g, 'Napi::Object $1(Napi::Env env, Napi::Object exports);'],
204
+ [/NAN_MODULE_INIT\(([\w\d:]+?)\)/g, 'Napi::Object $1(Napi::Env env, Napi::Object exports)'],
205
+
206
+ [/::(Init(?:ialize)?)\(target\)/g, '::$1(env, target, module)'],
207
+ [/constructor_template/g, 'constructor'],
208
+
209
+ [/Nan::FunctionCallbackInfo<(v8::)?Value>[ ]*& [ ]*info\)[ ]*{\n*([ ]*)/gm, 'Napi::CallbackInfo& info) {\n$2Napi::Env env = info.Env();\n$2'],
210
+ [/Nan::FunctionCallbackInfo<(v8::)*Value>\s*&\s*info\);/g, 'Napi::CallbackInfo& info);'],
211
+ [/Nan::FunctionCallbackInfo<(v8::)*Value>\s*&/g, 'Napi::CallbackInfo&'],
212
+
213
+ [/Buffer::HasInstance\(([^)]+)\)/g, '$1.IsBuffer()'],
214
+
215
+ [/info\[(\d+)\]->/g, 'info[$1].'],
216
+ [/info\[([\w\d]+)\]->/g, 'info[$1].'],
217
+ [/info\.This\(\)->/g, 'info.This().'],
218
+ [/->Is(Object|String|Int32|Number)\(\)/g, '.Is$1()'],
219
+ [/info.GetReturnValue\(\).SetUndefined\(\)/g, 'return env.Undefined()'],
220
+ [/info\.GetReturnValue\(\)\.Set\(((\n|.)+?)\);/g, 'return $1;'],
221
+
222
+ // ex. Local<Value> to Napi::Value
223
+ [/v8::Local<v8::(Value|Boolean|String|Number|Object|Array|Symbol|External|Function)>/g, 'Napi::$1'],
224
+ [/Local<(Value|Boolean|String|Number|Object|Array|Symbol|External|Function)>/g, 'Napi::$1'],
225
+
226
+ // Declare an env in helper functions that take a Napi::Value
227
+ [/(\w+)\(Napi::Value (\w+)(,\s*[^()]+)?\)\s*{\n*([ ]*)/gm, '$1(Napi::Value $2$3) {\n$4Napi::Env env = $2.Env();\n$4'],
228
+
229
+ // delete #include <node.h> and/or <v8.h>
230
+ [/#include +(<|")(?:node|nan).h("|>)/g, '#include $1napi.h$2\n#include $1uv.h$2'],
231
+ // NODE_MODULE to NODE_API_MODULE
232
+ [/NODE_MODULE/g, 'NODE_API_MODULE'],
233
+ [/Nan::/g, 'Napi::'],
234
+ [/nan.h/g, 'napi.h'],
235
+
236
+ // delete .FromJust()
237
+ [/\.FromJust\(\)/g, ''],
238
+ // delete .ToLocalCheck()
239
+ [/\.ToLocalChecked\(\)/g, ''],
240
+ [/^.*->SetInternalFieldCount\(.*$/gm, ''],
241
+
242
+ // replace using node; and/or using v8; to using Napi;
243
+ [/using (node|v8);/g, 'using Napi;'],
244
+ [/using namespace (node|Nan|v8);/g, 'using namespace Napi;'],
245
+ // delete using v8::Local;
246
+ [/using v8::Local;\n/g, ''],
247
+ // replace using v8::XXX; with using Napi::XXX
248
+ [/using v8::([A-Za-z]+);/g, 'using Napi::$1;']
249
+
250
+ ];
251
+
252
+ const paths = listFiles(dir);
253
+ paths.forEach(function (dirEntry) {
254
+ const filename = dirEntry.split('\\').pop().split('/').pop();
255
+
256
+ // Check whether the file is a source file or a config file
257
+ // then execute function accordingly
258
+ const sourcePattern = /.+\.h|.+\.cc|.+\.cpp/;
259
+ if (sourcePattern.test(filename)) {
260
+ convertFile(dirEntry, SourceFileOperations);
261
+ } else if (ConfigFileOperations[filename] != null) {
262
+ convertFile(dirEntry, ConfigFileOperations[filename]);
263
+ }
264
+ });
265
+
266
+ function listFiles (dir, filelist) {
267
+ const files = fs.readdirSync(dir);
268
+ filelist = filelist || [];
269
+ files.forEach(function (file) {
270
+ if (file === 'node_modules') {
271
+ return;
272
+ }
273
+
274
+ if (fs.statSync(path.join(dir, file)).isDirectory()) {
275
+ filelist = listFiles(path.join(dir, file), filelist);
276
+ } else {
277
+ filelist.push(path.join(dir, file));
278
+ }
279
+ });
280
+ return filelist;
281
+ }
282
+
283
+ function convert (content, operations) {
284
+ for (let i = 0; i < operations.length; i++) {
285
+ const operation = operations[i];
286
+ content = content.replace(operation[0], operation[1]);
287
+ }
288
+ return content;
289
+ }
290
+
291
+ function convertFile (fileName, operations) {
292
+ fs.readFile(fileName, 'utf-8', function (err, file) {
293
+ if (err) throw err;
294
+
295
+ file = convert(file, operations);
296
+
297
+ fs.writeFile(fileName, file, function (err) {
298
+ if (err) throw err;
299
+ });
300
+ });
301
+ }
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@qqbrowser/qbot-claw-launcher",
3
- "version": "0.9.35",
3
+ "version": "0.9.37",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
7
  "qb-claw-launcher": "dist/index.js"
8
8
  },
9
- "types": "dist/index.d.ts",
10
9
  "files": [
11
10
  "dist",
12
11
  "node_modules"
@@ -17,7 +16,7 @@
17
16
  ],
18
17
  "scripts": {
19
18
  "build": "tsc && node scripts/obfuscate.js && chmod +x dist/index.js",
20
- "prepack": "rm -rf node_modules/fs-xattr && cp -r fs-xattr node_modules/fs-xattr && rm -rf node_modules/@parcel/watcher && mkdir -p node_modules/@parcel && cp -r parcel-watcher node_modules/@parcel/watcher",
19
+ "prepack": "bash scripts/build-fs-xattr.sh && bash scripts/build-parcel-watcher.sh && rm -rf node_modules/fs-xattr && cp -r fs-xattr node_modules/fs-xattr && rm -rf node_modules/@parcel/watcher && mkdir -p node_modules/@parcel && cp -r parcel-watcher node_modules/@parcel/watcher",
21
20
  "start": "node dist/index.js",
22
21
  "dev": "ts-node src/index.ts",
23
22
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -30,16 +29,12 @@
30
29
  "license": "ISC",
31
30
  "devDependencies": {
32
31
  "@types/node": "^20.0.0",
33
- "esbuild": "^0.20.2",
34
- "ts-node": "^10.9.0",
35
- "typescript": "^5.0.0"
32
+ "esbuild": "0.25.10",
33
+ "ts-node": "10.9.2",
34
+ "typescript": "5.9.3"
36
35
  },
37
36
  "dependencies": {
38
37
  "@parcel/watcher": "file:./parcel-watcher",
39
38
  "fs-xattr": "file:./fs-xattr"
40
- },
41
- "bundleDependencies": [
42
- "fs-xattr",
43
- "@parcel/watcher"
44
- ]
39
+ }
45
40
  }
package/dist/config.d.ts DELETED
@@ -1,12 +0,0 @@
1
- export declare const QBOT_CLAW_DIR: string;
2
- export declare const NODE_BIN: string;
3
- export declare const PYTHON_BIN: string;
4
- export declare const NPM_BIN: string;
5
- export declare const NPM_RC: string;
6
- export declare const NODE_BIN_DIR: string;
7
- export declare const QBOT_CLAW_CONFIG_PATH: string;
8
- export declare const NPM_PACKAGE_NAME = "@qqbrowser/openclaw-qbot";
9
- export declare const NPM_GLOBAL_MODULES: string;
10
- export declare const QBOTCLAW_BIN: string;
11
- export declare const MCPORTER_BIN: string;
12
- export declare const STATE_FILE: string;
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- export {};
@@ -1,12 +0,0 @@
1
- import http from 'http';
2
- export interface InstallState {
3
- status: 'idle' | 'downloading' | 'success' | 'failed';
4
- message: string;
5
- startTime?: string;
6
- endTime?: string;
7
- }
8
- export declare let installState: InstallState;
9
- export declare const PYTHON_DIR: string;
10
- export declare function runQBotClaw(args: string[], res?: http.ServerResponse): Promise<void>;
11
- export declare function configAndRunQBotClaw(): Promise<void>;
12
- export declare function runInstall(res: http.ServerResponse, version: string): void;
@@ -1,3 +0,0 @@
1
- export declare function fullScanClearQuarantine(reason: string): Promise<void>;
2
- export declare function stopWatchWorkspaceQuarantine(): Promise<void>;
3
- export declare function watchWorkspaceQuarantine(): Promise<void>;
@@ -1,4 +0,0 @@
1
- export declare function flushLogs(): Promise<void>;
2
- export declare function log(body: string): void;
3
- export declare function refreshClawVersion(version: string): void;
4
- export declare function initLog(): void;
package/dist/server.d.ts DELETED
@@ -1,3 +0,0 @@
1
- import http from 'http';
2
- export declare const server: http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>;
3
- export declare function watchParentProcess(ppid?: number): void;
package/dist/service.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export declare function startService(ppid?: number, clawVersion?: string): Promise<void>;
2
- export declare function stopService(): void;
package/dist/state.d.ts DELETED
@@ -1,14 +0,0 @@
1
- export interface LauncherState {
2
- pid?: number;
3
- port?: number;
4
- ppid?: number;
5
- gatewayPid?: number;
6
- gatewayPort?: number;
7
- mcpHttpPort?: number;
8
- mcpWsPort?: number;
9
- }
10
- export declare function readState(): LauncherState;
11
- export declare function writeState(state: LauncherState): void;
12
- export declare function clearState(): void;
13
- export declare function isPortAvailable(port: number): Promise<boolean>;
14
- export declare function findAvailablePort(): Promise<number>;
package/dist/utils.d.ts DELETED
@@ -1,6 +0,0 @@
1
- import http from 'http';
2
- export declare function execCommand(cmd: string): Promise<string>;
3
- export declare function sendJSON(res: http.ServerResponse, statusCode: number, data: object): void;
4
- export declare function getQBotClawVersion(): Promise<string | null>;
5
- export declare function compareVersion(a: string, b: string): number;
6
- export declare function findAvailablePort(): Promise<number>;
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2017-present Devon Govett
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1 +0,0 @@
1
- This is the darwin-arm64 build of @parcel/watcher. See https://github.com/parcel-bundler/watcher for details.
@@ -1,30 +0,0 @@
1
- {
2
- "name": "@parcel/watcher-darwin-arm64",
3
- "version": "2.5.6",
4
- "main": "watcher.node",
5
- "repository": {
6
- "type": "git",
7
- "url": "https://github.com/parcel-bundler/watcher.git"
8
- },
9
- "description": "A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.",
10
- "license": "MIT",
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "funding": {
15
- "type": "opencollective",
16
- "url": "https://opencollective.com/parcel"
17
- },
18
- "files": [
19
- "watcher.node"
20
- ],
21
- "engines": {
22
- "node": ">= 10.0.0"
23
- },
24
- "os": [
25
- "darwin"
26
- ],
27
- "cpu": [
28
- "arm64"
29
- ]
30
- }