ee-core 2.9.2 → 2.10.0

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 (103) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +65 -65
  3. package/addon/index.js +34 -34
  4. package/addon/window/index.js +98 -98
  5. package/bin/tools.js +8 -8
  6. package/config/cache.js +41 -38
  7. package/config/config.default.js +331 -330
  8. package/config/index.js +75 -73
  9. package/const/channel.js +17 -17
  10. package/const/index.js +8 -8
  11. package/controller/baseContextClass.js +34 -34
  12. package/controller/index.js +34 -34
  13. package/core/index.js +10 -10
  14. package/core/lib/ee.js +216 -216
  15. package/core/lib/loader/context_loader.js +106 -106
  16. package/core/lib/loader/ee_loader.js +435 -435
  17. package/core/lib/loader/file_loader.js +326 -326
  18. package/core/lib/loader/mixin/addon.js +32 -32
  19. package/core/lib/loader/mixin/config.js +130 -130
  20. package/core/lib/loader/mixin/controller.js +125 -125
  21. package/core/lib/loader/mixin/service.js +28 -28
  22. package/core/lib/utils/base_context_class.js +34 -34
  23. package/core/lib/utils/function.js +30 -30
  24. package/core/lib/utils/index.js +133 -133
  25. package/core/lib/utils/sequencify.js +59 -59
  26. package/core/lib/utils/timing.js +77 -77
  27. package/cross/index.js +183 -183
  28. package/cross/spawnProcess.js +183 -183
  29. package/ee/appLoader.js +48 -48
  30. package/ee/application.js +99 -99
  31. package/ee/baseApp.js +103 -102
  32. package/ee/eeApp.js +408 -408
  33. package/ee/index.js +57 -57
  34. package/electron/app/index.js +64 -58
  35. package/electron/index.js +19 -19
  36. package/electron/window/index.js +73 -73
  37. package/electron/window/winState.js +186 -186
  38. package/exception/index.js +112 -112
  39. package/html/boot.html +98 -98
  40. package/html/cross-failure.html +28 -28
  41. package/html/failure.html +28 -28
  42. package/html/index.js +13 -13
  43. package/httpclient/index.js +161 -161
  44. package/index.js +54 -54
  45. package/jobs/baseJobClass.js +16 -16
  46. package/jobs/child/app.js +65 -65
  47. package/jobs/child/forkProcess.js +145 -145
  48. package/jobs/child/index.js +82 -82
  49. package/jobs/child-pool/index.js +213 -213
  50. package/jobs/index.js +8 -8
  51. package/jobs/load-balancer/algorithm/index.js +11 -11
  52. package/jobs/load-balancer/algorithm/minimumConnection.js +18 -18
  53. package/jobs/load-balancer/algorithm/polling.js +11 -11
  54. package/jobs/load-balancer/algorithm/random.js +9 -9
  55. package/jobs/load-balancer/algorithm/specify.js +14 -14
  56. package/jobs/load-balancer/algorithm/weights.js +21 -21
  57. package/jobs/load-balancer/algorithm/weightsMinimumConnection.js +29 -29
  58. package/jobs/load-balancer/algorithm/weightsPolling.js +22 -22
  59. package/jobs/load-balancer/algorithm/weightsRandom.js +16 -16
  60. package/jobs/load-balancer/consts.js +9 -9
  61. package/jobs/load-balancer/index.js +201 -201
  62. package/jobs/load-balancer/scheduler.js +31 -31
  63. package/jobs/renderer/index.js +141 -141
  64. package/jobs/renderer/loadView.js +40 -40
  65. package/jobs/unification.js +63 -63
  66. package/loader/index.js +172 -172
  67. package/log/index.js +68 -68
  68. package/log/logger.js +86 -80
  69. package/main/index.js +56 -56
  70. package/message/childMessage.js +54 -54
  71. package/message/index.js +18 -18
  72. package/old-utils/index.js +91 -91
  73. package/package.json +38 -38
  74. package/ps/index.js +371 -371
  75. package/services/baseContextClass.js +34 -34
  76. package/services/index.js +40 -40
  77. package/socket/httpServer.js +147 -147
  78. package/socket/index.js +81 -81
  79. package/socket/io.js +27 -27
  80. package/socket/ipcServer.js +112 -112
  81. package/socket/socketServer.js +69 -67
  82. package/storage/index.js +38 -38
  83. package/storage/jsondb/adapters/Base.js +23 -23
  84. package/storage/jsondb/adapters/FileSync.js +64 -52
  85. package/storage/jsondb/main.js +55 -42
  86. package/storage/jsondbStorage.js +195 -195
  87. package/storage/sqliteStorage.js +123 -123
  88. package/utils/co.js +237 -237
  89. package/utils/copyto.js +160 -160
  90. package/utils/depd/index.js +538 -538
  91. package/utils/depd/lib/browser/index.js +77 -77
  92. package/utils/extend.js +73 -73
  93. package/utils/get-port/index.d.ts +64 -64
  94. package/utils/get-port/index.js +148 -148
  95. package/utils/helper.js +220 -220
  96. package/utils/index.js +160 -160
  97. package/utils/ip.js +261 -261
  98. package/utils/is.js +145 -145
  99. package/utils/json.js +72 -72
  100. package/utils/pargv.js +263 -263
  101. package/utils/time/index.js +19 -19
  102. package/utils/time/ms.js +162 -162
  103. package/utils/wrap.js +35 -35
package/config/index.js CHANGED
@@ -1,74 +1,76 @@
1
- const Storage = require('../storage');
2
-
3
- const Cfg = {
4
-
5
- /**
6
- * 获取 coredb
7
- */
8
- _getCoreDB() {
9
- const coreDB = Storage.connection('system');
10
- return coreDB;
11
- },
12
-
13
- /**
14
- * all
15
- */
16
- all() {
17
- const cdb = this._getCoreDB();
18
- const config = cdb.getItem('config');
19
-
20
- return config;
21
- },
22
-
23
- /**
24
- * setAll
25
- */
26
- setAll(value) {
27
- const cdb = this._getCoreDB();
28
- cdb.setItem('config', value);
29
-
30
- return;
31
- },
32
-
33
- /**
34
- * setValue
35
- */
36
- setValue(key, value) {
37
- const cdb = this._getCoreDB();
38
- cdb.setConfigItem(key, value);
39
-
40
- return;
41
- },
42
-
43
- /**
44
- * getValue
45
- */
46
- getValue(key) {
47
- const cdb = this._getCoreDB();
48
- let v = cdb.getConfigItem(key);
49
-
50
- return v;
51
- },
52
-
53
- /**
54
- * isFileProtocol
55
- */
56
- isFileProtocol(config) {
57
- if (config.protocol == 'file://') {
58
- return true;
59
- }
60
- return false;
61
- },
62
-
63
- /**
64
- * isWebProtocol
65
- */
66
- isWebProtocol(config) {
67
- if (['http://', 'https://'].includes(config.protocol)) {
68
- return true;
69
- }
70
- return false;
71
- },
72
- };
73
-
1
+ const Storage = require('../storage');
2
+ var SystemDb = undefined;
3
+
4
+ const Cfg = {
5
+
6
+ /**
7
+ * 获取 coredb
8
+ */
9
+ _getCoreDB() {
10
+ // [todo] 要么每次new对象,要么所有地方都用同一个实例,否则会出现数据无法刷新的情况
11
+ SystemDb = Storage.connection('system');
12
+ return SystemDb;
13
+ },
14
+
15
+ /**
16
+ * all
17
+ */
18
+ all() {
19
+ const cdb = this._getCoreDB();
20
+ const config = cdb.getItem('config');
21
+
22
+ return config;
23
+ },
24
+
25
+ /**
26
+ * setAll
27
+ */
28
+ setAll(value) {
29
+ const cdb = this._getCoreDB();
30
+ cdb.setItem('config', value);
31
+
32
+ return;
33
+ },
34
+
35
+ /**
36
+ * setValue
37
+ */
38
+ setValue(key, value) {
39
+ const cdb = this._getCoreDB();
40
+ cdb.setConfigItem(key, value);
41
+
42
+ return;
43
+ },
44
+
45
+ /**
46
+ * getValue
47
+ */
48
+ getValue(key) {
49
+ const cdb = this._getCoreDB();
50
+ let v = cdb.getConfigItem(key);
51
+
52
+ return v;
53
+ },
54
+
55
+ /**
56
+ * isFileProtocol
57
+ */
58
+ isFileProtocol(config) {
59
+ if (config.protocol == 'file://') {
60
+ return true;
61
+ }
62
+ return false;
63
+ },
64
+
65
+ /**
66
+ * isWebProtocol
67
+ */
68
+ isWebProtocol(config) {
69
+ if (['http://', 'https://'].includes(config.protocol)) {
70
+ return true;
71
+ }
72
+ return false;
73
+ },
74
+ };
75
+
74
76
  module.exports = Cfg;
package/const/channel.js CHANGED
@@ -1,18 +1,18 @@
1
- module.exports = {
2
- process: {
3
- showException: 'ee#showException',
4
- sendToMain: 'ee#sendToMain'
5
- },
6
- socketIo: {
7
- partySoftware: 'c1',
8
- },
9
- events: {
10
- childProcessExit: 'ee#childProcess#exit',
11
- childProcessError: 'ee#childProcess#error',
12
- },
13
- receiver: {
14
- childJob: 'job',
15
- forkProcess: 'task',
16
- all: 'all'
17
- }
1
+ module.exports = {
2
+ process: {
3
+ showException: 'ee#showException',
4
+ sendToMain: 'ee#sendToMain'
5
+ },
6
+ socketIo: {
7
+ partySoftware: 'c1',
8
+ },
9
+ events: {
10
+ childProcessExit: 'ee#childProcess#exit',
11
+ childProcessError: 'ee#childProcess#error',
12
+ },
13
+ receiver: {
14
+ childJob: 'job',
15
+ forkProcess: 'task',
16
+ all: 'all'
17
+ }
18
18
  };
package/const/index.js CHANGED
@@ -1,9 +1,9 @@
1
- module.exports = {
2
- storageKey: {
3
- cache: 'cache',
4
- cacheConfig: 'cache.config',
5
- },
6
- jobs: {
7
- inspectStartIndex: 5858
8
- }
1
+ module.exports = {
2
+ storageKey: {
3
+ cache: 'cache',
4
+ cacheConfig: 'cache.config',
5
+ },
6
+ jobs: {
7
+ inspectStartIndex: 5858
8
+ }
9
9
  };
@@ -1,34 +1,34 @@
1
- 'use strict';
2
-
3
- /**
4
- * BaseContextClass is a base class that can be extended,
5
- * it's instantiated in context level,
6
- * {@link Helper}, {@link Service} is extending it.
7
- */
8
- class BaseContextClass {
9
-
10
- /**
11
- * @class
12
- * @param {Context} ctx - context instance
13
- * @since 1.0.0
14
- */
15
- constructor(ctx) {
16
- /**
17
- * @member {Application} BaseContextClass#app
18
- * @since 1.0.0
19
- */
20
- this.app = ctx;
21
- /**
22
- * @member {Config} BaseContextClass#config
23
- * @since 1.0.0
24
- */
25
- this.config = ctx.config;
26
- /**
27
- * @member {Service} BaseContextClass#service
28
- * @since 1.0.0
29
- */
30
- this.service = ctx.service;
31
- }
32
- }
33
-
34
- module.exports = BaseContextClass;
1
+ 'use strict';
2
+
3
+ /**
4
+ * BaseContextClass is a base class that can be extended,
5
+ * it's instantiated in context level,
6
+ * {@link Helper}, {@link Service} is extending it.
7
+ */
8
+ class BaseContextClass {
9
+
10
+ /**
11
+ * @class
12
+ * @param {Context} ctx - context instance
13
+ * @since 1.0.0
14
+ */
15
+ constructor(ctx) {
16
+ /**
17
+ * @member {Application} BaseContextClass#app
18
+ * @since 1.0.0
19
+ */
20
+ this.app = ctx;
21
+ /**
22
+ * @member {Config} BaseContextClass#config
23
+ * @since 1.0.0
24
+ */
25
+ this.config = ctx.config;
26
+ /**
27
+ * @member {Service} BaseContextClass#service
28
+ * @since 1.0.0
29
+ */
30
+ this.service = ctx.service;
31
+ }
32
+ }
33
+
34
+ module.exports = BaseContextClass;
@@ -1,34 +1,34 @@
1
- 'use strict';
2
-
3
- /**
4
- * BaseContextClass is a base class that can be extended,
5
- * it's instantiated in context level,
6
- * {@link Helper}, {@link Service} is extending it.
7
- */
8
- class BaseContextClass {
9
-
10
- /**
11
- * @class
12
- * @param {Context} ctx - context instance
13
- * @since 1.0.0
14
- */
15
- constructor(ctx) {
16
- /**
17
- * @member {Application} BaseContextClass#app
18
- * @since 1.0.0
19
- */
20
- this.app = ctx;
21
- /**
22
- * @member {Config} BaseContextClass#config
23
- * @since 1.0.0
24
- */
25
- this.config = ctx.config;
26
- /**
27
- * @member {Service} BaseContextClass#service
28
- * @since 1.0.0
29
- */
30
- this.service = ctx.service;
31
- }
32
- }
33
-
34
- module.exports = BaseContextClass;
1
+ 'use strict';
2
+
3
+ /**
4
+ * BaseContextClass is a base class that can be extended,
5
+ * it's instantiated in context level,
6
+ * {@link Helper}, {@link Service} is extending it.
7
+ */
8
+ class BaseContextClass {
9
+
10
+ /**
11
+ * @class
12
+ * @param {Context} ctx - context instance
13
+ * @since 1.0.0
14
+ */
15
+ constructor(ctx) {
16
+ /**
17
+ * @member {Application} BaseContextClass#app
18
+ * @since 1.0.0
19
+ */
20
+ this.app = ctx;
21
+ /**
22
+ * @member {Config} BaseContextClass#config
23
+ * @since 1.0.0
24
+ */
25
+ this.config = ctx.config;
26
+ /**
27
+ * @member {Service} BaseContextClass#service
28
+ * @since 1.0.0
29
+ */
30
+ this.service = ctx.service;
31
+ }
32
+ }
33
+
34
+ module.exports = BaseContextClass;
package/core/index.js CHANGED
@@ -1,11 +1,11 @@
1
- const EeCore = require('./lib/ee');
2
- const EeLoader = require('./lib/loader/ee_loader');
3
- const BaseContextClass = require('./lib/utils/base_context_class');
4
- const utils = require('./lib/utils');
5
-
6
- module.exports = {
7
- EeCore,
8
- EeLoader,
9
- BaseContextClass,
10
- utils,
1
+ const EeCore = require('./lib/ee');
2
+ const EeLoader = require('./lib/loader/ee_loader');
3
+ const BaseContextClass = require('./lib/utils/base_context_class');
4
+ const utils = require('./lib/utils');
5
+
6
+ module.exports = {
7
+ EeCore,
8
+ EeLoader,
9
+ BaseContextClass,
10
+ utils,
11
11
  };