@powerlines/plugin-alloy 0.18.118 → 0.18.119

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 (110) hide show
  1. package/dist/core/components/index.cjs +6 -6
  2. package/dist/core/components/output.d.cts +5 -5
  3. package/dist/core/components/output.d.mts +4 -4
  4. package/dist/core/components/output.mjs +4 -4
  5. package/dist/core/components/single-line-comment.d.cts +2 -2
  6. package/dist/core/components/source-file.d.cts +5 -5
  7. package/dist/core/components/source-file.d.mts +4 -4
  8. package/dist/core/index.cjs +6 -6
  9. package/dist/helpers/capnp.cjs +276 -0
  10. package/dist/helpers/capnp.d.cts +87 -0
  11. package/dist/helpers/capnp.d.mts +87 -0
  12. package/dist/helpers/capnp.mjs +259 -0
  13. package/dist/helpers/create-builtin.cjs +19 -0
  14. package/dist/helpers/create-builtin.d.cts +15 -0
  15. package/dist/helpers/create-builtin.d.mts +15 -0
  16. package/dist/helpers/create-builtin.mjs +18 -0
  17. package/dist/helpers/index.cjs +24 -0
  18. package/dist/helpers/index.d.cts +5 -0
  19. package/dist/helpers/index.d.mts +5 -0
  20. package/dist/helpers/index.mjs +6 -0
  21. package/dist/helpers/refkey.cjs +16 -0
  22. package/dist/helpers/refkey.d.cts +13 -0
  23. package/dist/helpers/refkey.d.mts +13 -0
  24. package/dist/helpers/refkey.mjs +15 -0
  25. package/dist/helpers/typescript.cjs +46 -0
  26. package/dist/helpers/typescript.d.cts +25 -0
  27. package/dist/helpers/typescript.d.mts +25 -0
  28. package/dist/helpers/typescript.mjs +45 -0
  29. package/dist/index.cjs +2 -2
  30. package/dist/markdown/components/index.cjs +8 -0
  31. package/dist/markdown/components/index.d.cts +3 -0
  32. package/dist/markdown/components/index.d.mts +3 -0
  33. package/dist/markdown/components/index.mjs +4 -0
  34. package/dist/markdown/components/markdown-file.cjs +116 -0
  35. package/dist/markdown/components/markdown-file.d.cts +23 -0
  36. package/dist/markdown/components/markdown-file.d.mts +23 -0
  37. package/dist/markdown/components/markdown-file.mjs +114 -0
  38. package/dist/markdown/components/markdown-table.cjs +101 -0
  39. package/dist/markdown/components/markdown-table.d.cts +27 -0
  40. package/dist/markdown/components/markdown-table.d.mts +27 -0
  41. package/dist/markdown/components/markdown-table.mjs +98 -0
  42. package/dist/markdown/contexts/index.cjs +6 -0
  43. package/dist/markdown/contexts/index.d.cts +2 -0
  44. package/dist/markdown/contexts/index.d.mts +2 -0
  45. package/dist/markdown/contexts/index.mjs +3 -0
  46. package/dist/markdown/contexts/markdown-table.cjs +37 -0
  47. package/dist/markdown/contexts/markdown-table.d.cts +37 -0
  48. package/dist/markdown/contexts/markdown-table.d.mts +37 -0
  49. package/dist/markdown/contexts/markdown-table.mjs +33 -0
  50. package/dist/markdown/index.cjs +15 -0
  51. package/dist/markdown/index.d.cts +6 -0
  52. package/dist/markdown/index.d.mts +6 -0
  53. package/dist/markdown/index.mjs +7 -0
  54. package/dist/types/components.cjs +0 -0
  55. package/dist/types/components.d.cts +126 -5
  56. package/dist/types/components.d.mts +126 -5
  57. package/dist/types/components.mjs +1 -0
  58. package/dist/types/index.cjs +0 -0
  59. package/dist/types/index.d.cts +3 -0
  60. package/dist/types/index.d.mts +3 -0
  61. package/dist/types/index.mjs +1 -0
  62. package/dist/types/plugin.cjs +0 -0
  63. package/dist/types/plugin.d.cts +9 -2
  64. package/dist/types/plugin.d.mts +9 -2
  65. package/dist/types/plugin.mjs +1 -0
  66. package/dist/typescript/components/builtin-file.cjs +62 -0
  67. package/dist/typescript/components/builtin-file.d.cts +34 -0
  68. package/dist/typescript/components/builtin-file.d.mts +34 -0
  69. package/dist/typescript/components/builtin-file.mjs +61 -0
  70. package/dist/typescript/components/dynamic-import-statement.cjs +25 -0
  71. package/dist/typescript/components/dynamic-import-statement.d.cts +32 -0
  72. package/dist/typescript/components/dynamic-import-statement.d.mts +32 -0
  73. package/dist/typescript/components/dynamic-import-statement.mjs +24 -0
  74. package/dist/typescript/components/entry-file.cjs +42 -0
  75. package/dist/typescript/components/entry-file.d.cts +27 -0
  76. package/dist/typescript/components/entry-file.d.mts +27 -0
  77. package/dist/typescript/components/entry-file.mjs +40 -0
  78. package/dist/typescript/components/index.cjs +44 -0
  79. package/dist/typescript/components/index.d.cts +10 -0
  80. package/dist/typescript/components/index.d.mts +10 -0
  81. package/dist/typescript/components/index.mjs +11 -0
  82. package/dist/typescript/components/record-expression.cjs +12 -0
  83. package/dist/typescript/components/record-expression.d.cts +12 -0
  84. package/dist/typescript/components/record-expression.d.mts +12 -0
  85. package/dist/typescript/components/record-expression.mjs +11 -0
  86. package/dist/typescript/components/tsdoc-reflection.cjs +178 -0
  87. package/dist/typescript/components/tsdoc-reflection.d.cts +18 -0
  88. package/dist/typescript/components/tsdoc-reflection.d.mts +18 -0
  89. package/dist/typescript/components/tsdoc-reflection.mjs +175 -0
  90. package/dist/typescript/components/tsdoc.cjs +485 -0
  91. package/dist/typescript/components/tsdoc.d.cts +163 -0
  92. package/dist/typescript/components/tsdoc.d.mts +163 -0
  93. package/dist/typescript/components/tsdoc.mjs +465 -0
  94. package/dist/typescript/components/typescript-file.cjs +216 -0
  95. package/dist/typescript/components/typescript-file.d.cts +49 -0
  96. package/dist/typescript/components/typescript-file.d.mts +49 -0
  97. package/dist/typescript/components/typescript-file.mjs +213 -0
  98. package/dist/typescript/components/typescript-interface.cjs +73 -0
  99. package/dist/typescript/components/typescript-interface.d.cts +25 -0
  100. package/dist/typescript/components/typescript-interface.d.mts +25 -0
  101. package/dist/typescript/components/typescript-interface.mjs +71 -0
  102. package/dist/typescript/components/typescript-object.cjs +125 -0
  103. package/dist/typescript/components/typescript-object.d.cts +29 -0
  104. package/dist/typescript/components/typescript-object.d.mts +29 -0
  105. package/dist/typescript/components/typescript-object.mjs +123 -0
  106. package/dist/typescript/index.cjs +45 -0
  107. package/dist/typescript/index.d.cts +11 -0
  108. package/dist/typescript/index.d.mts +11 -0
  109. package/dist/typescript/index.mjs +12 -0
  110. package/package.json +6 -6
@@ -1,7 +1,7 @@
1
- const require_output = require('./output.cjs');
2
- const require_single_line_comment = require('./single-line-comment.cjs');
3
- const require_source_file = require('./source-file.cjs');
1
+ const require_core_components_output = require('./output.cjs');
2
+ const require_core_components_single_line_comment = require('./single-line-comment.cjs');
3
+ const require_core_components_source_file = require('./source-file.cjs');
4
4
 
5
- exports.Output = require_output.Output;
6
- exports.SingleLineComment = require_single_line_comment.SingleLineComment;
7
- exports.SourceFile = require_source_file.SourceFile;
5
+ exports.Output = require_core_components_output.Output;
6
+ exports.SingleLineComment = require_core_components_single_line_comment.SingleLineComment;
7
+ exports.SourceFile = require_core_components_source_file.SourceFile;
@@ -1,10 +1,10 @@
1
1
  import { MetaItem } from "../contexts/context.cjs";
2
- import * as _alloy_js_core0 from "@alloy-js/core";
3
- import { OutputProps } from "@alloy-js/core";
2
+ import * as _alloy_js_core7 from "@alloy-js/core";
3
+ import { OutputProps as OutputProps$1 } from "@alloy-js/core";
4
4
  import { PluginContext } from "powerlines/types/context";
5
5
 
6
6
  //#region src/core/components/output.d.ts
7
- interface OutputProps$1<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>> extends OutputProps {
7
+ interface OutputProps<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>> extends OutputProps$1 {
8
8
  /**
9
9
  * The current Powerlines process context.
10
10
  */
@@ -17,7 +17,7 @@ interface OutputProps$1<TContext extends PluginContext = PluginContext, TMeta ex
17
17
  /**
18
18
  * Output component for rendering the Powerlines plugin's output files via templates.
19
19
  */
20
- declare function Output<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>>(props: OutputProps$1<TContext, TMeta>): _alloy_js_core0.Children;
20
+ declare function Output<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>>(props: OutputProps<TContext, TMeta>): _alloy_js_core7.Children;
21
21
  declare type __ΩOutputProps = any[];
22
22
  //#endregion
23
- export { Output, OutputProps$1 as OutputProps, __ΩOutputProps };
23
+ export { Output, OutputProps, __ΩOutputProps };
@@ -1,10 +1,10 @@
1
1
  import { MetaItem } from "../contexts/context.mjs";
2
2
  import * as _alloy_js_core1 from "@alloy-js/core";
3
- import { OutputProps } from "@alloy-js/core";
3
+ import { OutputProps as OutputProps$1 } from "@alloy-js/core";
4
4
  import { PluginContext } from "powerlines/types/context";
5
5
 
6
6
  //#region src/core/components/output.d.ts
7
- interface OutputProps$1<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>> extends OutputProps {
7
+ interface OutputProps<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>> extends OutputProps$1 {
8
8
  /**
9
9
  * The current Powerlines process context.
10
10
  */
@@ -17,7 +17,7 @@ interface OutputProps$1<TContext extends PluginContext = PluginContext, TMeta ex
17
17
  /**
18
18
  * Output component for rendering the Powerlines plugin's output files via templates.
19
19
  */
20
- declare function Output$1<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>>(props: OutputProps$1<TContext, TMeta>): _alloy_js_core1.Children;
20
+ declare function Output<TContext extends PluginContext = PluginContext, TMeta extends Record<string, MetaItem> = Record<string, MetaItem>>(props: OutputProps<TContext, TMeta>): _alloy_js_core1.Children;
21
21
  declare type __ΩOutputProps = any[];
22
22
  //#endregion
23
- export { Output$1 as Output, OutputProps$1 as OutputProps, __ΩOutputProps };
23
+ export { Output, OutputProps, __ΩOutputProps };
@@ -1,19 +1,19 @@
1
1
  import { createComponent, mergeProps } from "@alloy-js/core/jsx-runtime";
2
- import { Output, Show, computed, splitProps } from "@alloy-js/core";
2
+ import { Output as Output$1, Show, computed, splitProps } from "@alloy-js/core";
3
3
  import { replacePath } from "@stryke/path/replace";
4
4
 
5
5
  //#region src/core/components/output.tsx
6
6
  /**
7
7
  * Output component for rendering the Powerlines plugin's output files via templates.
8
8
  */
9
- function Output$1(props) {
9
+ function Output(props) {
10
10
  const [{ children, context, basePath }, rest] = splitProps(props, [
11
11
  "children",
12
12
  "context",
13
13
  "basePath"
14
14
  ]);
15
15
  const basePathRef = computed(() => basePath ? replacePath(basePath, context.workspaceConfig.workspaceRoot) : context.workspaceConfig.workspaceRoot);
16
- return createComponent(Output, mergeProps(rest, {
16
+ return createComponent(Output$1, mergeProps(rest, {
17
17
  get basePath() {
18
18
  return basePathRef.value;
19
19
  },
@@ -29,4 +29,4 @@ function Output$1(props) {
29
29
  }
30
30
 
31
31
  //#endregion
32
- export { Output$1 as Output };
32
+ export { Output };
@@ -1,5 +1,5 @@
1
1
  import { ComponentProps } from "../../types/components.cjs";
2
- import * as _alloy_js_core1 from "@alloy-js/core";
2
+ import * as _alloy_js_core8 from "@alloy-js/core";
3
3
 
4
4
  //#region src/core/components/single-line-comment.d.ts
5
5
  type SingleLineCommentVariant = "double-slash" | "triple-slash" | "slash-star" | "slash-star-star" | "markdown";
@@ -15,7 +15,7 @@ interface SingleLineCommentProps extends ComponentProps {
15
15
  * A single line comment block. The children are rendered as a prose element, which means that they
16
16
  * are broken into multiple lines
17
17
  */
18
- declare function SingleLineComment(props: SingleLineCommentProps): _alloy_js_core1.Children;
18
+ declare function SingleLineComment(props: SingleLineCommentProps): _alloy_js_core8.Children;
19
19
  declare type __ΩSingleLineCommentVariant = any[];
20
20
  declare type __ΩSingleLineCommentProps = any[];
21
21
  //#endregion
@@ -1,10 +1,10 @@
1
1
  import { ComponentProps } from "../../types/components.cjs";
2
- import * as _alloy_js_core0 from "@alloy-js/core";
3
- import { SourceFileProps } from "@alloy-js/core";
2
+ import * as _alloy_js_core4 from "@alloy-js/core";
3
+ import { SourceFileProps as SourceFileProps$1 } from "@alloy-js/core";
4
4
  import { StoragePreset } from "powerlines/types/fs";
5
5
 
6
6
  //#region src/core/components/source-file.d.ts
7
- type SourceFileProps$1 = SourceFileProps & ComponentProps & {
7
+ type SourceFileProps = SourceFileProps$1 & ComponentProps & {
8
8
  /**
9
9
  * The storage preset for the output files.
10
10
  *
@@ -26,7 +26,7 @@ type SourceFileProps$1 = SourceFileProps & ComponentProps & {
26
26
  * @param props - The properties for the source file.
27
27
  * @returns The rendered source file component.
28
28
  */
29
- declare function SourceFile(props: SourceFileProps$1): _alloy_js_core0.Children;
29
+ declare function SourceFile(props: SourceFileProps): _alloy_js_core4.Children;
30
30
  declare type __ΩSourceFileProps = any[];
31
31
  //#endregion
32
- export { SourceFile, SourceFileProps$1 as SourceFileProps, __ΩSourceFileProps };
32
+ export { SourceFile, SourceFileProps, __ΩSourceFileProps };
@@ -1,10 +1,10 @@
1
1
  import { ComponentProps } from "../../types/components.mjs";
2
2
  import * as _alloy_js_core0 from "@alloy-js/core";
3
- import { SourceFileProps } from "@alloy-js/core";
3
+ import { SourceFileProps as SourceFileProps$1 } from "@alloy-js/core";
4
4
  import { StoragePreset } from "powerlines/types/fs";
5
5
 
6
6
  //#region src/core/components/source-file.d.ts
7
- type SourceFileProps$1 = SourceFileProps & ComponentProps & {
7
+ type SourceFileProps = SourceFileProps$1 & ComponentProps & {
8
8
  /**
9
9
  * The storage preset for the output files.
10
10
  *
@@ -26,7 +26,7 @@ type SourceFileProps$1 = SourceFileProps & ComponentProps & {
26
26
  * @param props - The properties for the source file.
27
27
  * @returns The rendered source file component.
28
28
  */
29
- declare function SourceFile(props: SourceFileProps$1): _alloy_js_core0.Children;
29
+ declare function SourceFile(props: SourceFileProps): _alloy_js_core0.Children;
30
30
  declare type __ΩSourceFileProps = any[];
31
31
  //#endregion
32
- export { SourceFile, SourceFileProps$1 as SourceFileProps, __ΩSourceFileProps };
32
+ export { SourceFile, SourceFileProps, __ΩSourceFileProps };
@@ -1,18 +1,18 @@
1
- const require_output = require('./components/output.cjs');
2
- const require_single_line_comment = require('./components/single-line-comment.cjs');
1
+ const require_core_components_output = require('./components/output.cjs');
2
+ const require_core_components_single_line_comment = require('./components/single-line-comment.cjs');
3
3
  const require_core_contexts_context = require('./contexts/context.cjs');
4
4
  const require_core_contexts_reflection = require('./contexts/reflection.cjs');
5
5
  require('./contexts/index.cjs');
6
- const require_source_file = require('./components/source-file.cjs');
6
+ const require_core_components_source_file = require('./components/source-file.cjs');
7
7
  require('./components/index.cjs');
8
8
 
9
- exports.Output = require_output.Output;
9
+ exports.Output = require_core_components_output.Output;
10
10
  exports.ReflectionClassContext = require_core_contexts_reflection.ReflectionClassContext;
11
11
  exports.ReflectionMethodContext = require_core_contexts_reflection.ReflectionMethodContext;
12
12
  exports.ReflectionParameterContext = require_core_contexts_reflection.ReflectionParameterContext;
13
13
  exports.ReflectionPropertyContext = require_core_contexts_reflection.ReflectionPropertyContext;
14
- exports.SingleLineComment = require_single_line_comment.SingleLineComment;
15
- exports.SourceFile = require_source_file.SourceFile;
14
+ exports.SingleLineComment = require_core_components_single_line_comment.SingleLineComment;
15
+ exports.SourceFile = require_core_components_source_file.SourceFile;
16
16
  exports.useMeta = require_core_contexts_context.useMeta;
17
17
  exports.useMetaSafe = require_core_contexts_context.useMetaSafe;
18
18
  exports.usePowerlines = require_core_contexts_context.usePowerlines;
@@ -0,0 +1,276 @@
1
+ const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
2
+ let defu = require("defu");
3
+ defu = require_rolldown_runtime.__toESM(defu);
4
+ let __powerlines_deepkit_utilities = require("@powerlines/deepkit/utilities");
5
+ let __stryke_string_format_camel_case = require("@stryke/string-format/camel-case");
6
+ let __stryke_string_format_title_case = require("@stryke/string-format/title-case");
7
+ let __stryke_type_checks_is_undefined = require("@stryke/type-checks/is-undefined");
8
+ let __powerlines_deepkit_vendor_core = require("@powerlines/deepkit/vendor/core");
9
+ let __powerlines_deepkit_vendor_type = require("@powerlines/deepkit/vendor/type");
10
+ let __stryke_capnp_compile = require("@stryke/capnp/compile");
11
+ let __stryke_capnp_helpers = require("@stryke/capnp/helpers");
12
+ let __stryke_convert_to_array = require("@stryke/convert/to-array");
13
+ let __stryke_helpers_get_unique = require("@stryke/helpers/get-unique");
14
+ let __stryke_json = require("@stryke/json");
15
+ let __stryke_path_join = require("@stryke/path/join");
16
+ let __stryke_string_format_get_words = require("@stryke/string-format/get-words");
17
+ let __stryke_string_format_pascal_case = require("@stryke/string-format/pascal-case");
18
+ let __stryke_type_checks_is_bigint = require("@stryke/type-checks/is-bigint");
19
+ let __stryke_type_checks_is_null = require("@stryke/type-checks/is-null");
20
+ let __stryke_type_checks_is_number = require("@stryke/type-checks/is-number");
21
+ let __stryke_type_checks_is_string = require("@stryke/type-checks/is-string");
22
+ let node_buffer = require("node:buffer");
23
+ let node_child_process = require("node:child_process");
24
+ let node_util = require("node:util");
25
+ let powerlines_lib_utilities_file_header = require("powerlines/lib/utilities/file-header");
26
+
27
+ //#region src/helpers/capnp.ts
28
+ /**
29
+ * Compiles a Cap'n Proto schema into TypeScript definitions.
30
+ *
31
+ * @param context - The context containing the project and workspace information.
32
+ * @param options - The options for compiling the schema.
33
+ * @returns A promise that resolves to the compiled schema.
34
+ */
35
+ async function compile(context, options = {}) {
36
+ const opts = (0, defu.default)(options, {
37
+ ts: true,
38
+ js: false,
39
+ dts: false,
40
+ schemas: (0, __stryke_path_join.joinPaths)(context.artifactsPath, "schemas"),
41
+ tsconfig: context.tsconfig,
42
+ projectRoot: context.config.projectRoot,
43
+ workspaceRoot: context.workspaceConfig.workspaceRoot,
44
+ tty: true
45
+ });
46
+ const resolvedOptions = await (0, __stryke_capnp_helpers.resolveOptions)(opts);
47
+ if (!resolvedOptions) throw new Error(`✖ No Cap'n Proto schema files found in the specified source paths: ${(0, __stryke_convert_to_array.toArray)(opts.schemas).join(", ")}.`);
48
+ return (0, __stryke_capnp_compile.capnpc)(resolvedOptions);
49
+ }
50
+ /**
51
+ * Converts any {@link ReflectionProperty} or {@link ReflectionParameter}'s value to string representation.
52
+ *
53
+ * @param property - The {@link ReflectionProperty} or {@link ReflectionParameter} containing the value to stringify.
54
+ * @param value - The value to stringify.
55
+ * @returns A string representation of the value.
56
+ */
57
+ function stringifyCapnpDefaultValue(property, value) {
58
+ return stringifyCapnpValue(property.type, value ?? property.getDefaultValue());
59
+ }
60
+ /**
61
+ * Converts any {@link Type}'s actual value to string representation.
62
+ *
63
+ * @param type - The {@link Type} of the value to stringify.
64
+ * @param value - The value to stringify.
65
+ * @returns A string representation of the value.
66
+ */
67
+ function stringifyCapnpValue(type, value) {
68
+ return type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.string || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.literal && (0, __stryke_type_checks_is_string.isString)(type.literal) ? `"${String(value)}"` : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.enum ? `${(0, __stryke_string_format_camel_case.camelCase)(String(value))}` : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.array ? __stryke_json.StormJSON.stringify(value) : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.object || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.objectLiteral ? __stryke_json.StormJSON.stringify(value).replaceAll("{", "(").replaceAll("}", ")") : String(value);
69
+ }
70
+ /**
71
+ * Converts a ReflectionProperty's default value to a Cap'n Proto schema string representation.
72
+ *
73
+ * @param type - The TypeEnum to evaluate.
74
+ * @returns A string representation of the property.
75
+ */
76
+ function getCapnpEnumTypes(type) {
77
+ if (type.kind !== __powerlines_deepkit_vendor_type.ReflectionKind.enum) return null;
78
+ const unique = (0, __stryke_helpers_get_unique.getUniqueBy)(type.values.filter((value) => !(0, __stryke_type_checks_is_undefined.isUndefined)(value) && !(0, __stryke_type_checks_is_null.isNull)(value)), (enumMember) => (0, __stryke_type_checks_is_string.isString)(enumMember) ? "Text" : "Float32");
79
+ if (unique.length === 0) return null;
80
+ return unique[0] && (0, __stryke_type_checks_is_string.isString)(unique[0]) ? "Text" : "Float32";
81
+ }
82
+ /**
83
+ * Determines if a Type is a `Void` type in a Cap'n Proto schema.
84
+ *
85
+ * @param type - The Type to check.
86
+ * @returns True if the Type is a `Void` type, false otherwise.
87
+ */
88
+ function isVoidType(type) {
89
+ return type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.void || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.never || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.null || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.undefined || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.symbol;
90
+ }
91
+ /**
92
+ * Converts a {@link TypeUnion} to an array of its underlying Cap'n Proto primitive type representation.
93
+ *
94
+ * @param type - The {@link TypeUnion} to convert.
95
+ * @returns A string representation of the Cap'n Proto primitive type.
96
+ */
97
+ function getCapnpUnionTypes(type) {
98
+ return (0, __powerlines_deepkit_utilities.getUnionTypes)(type);
99
+ }
100
+ /**
101
+ * Converts a {@link TypeUnion} to an array of its underlying Cap'n Proto primitive type representation.
102
+ *
103
+ * @param type - The {@link TypeUnion} to convert.
104
+ * @returns An array of Cap'n Proto primitive types.
105
+ */
106
+ function isCapnpStringUnion(type) {
107
+ return getCapnpUnionTypes(type).some((member) => member.kind === __powerlines_deepkit_vendor_type.ReflectionKind.string);
108
+ }
109
+ const LARGE_BUFFER = 1024 * 1e6;
110
+ const execAsync = (0, node_util.promisify)(node_child_process.exec);
111
+ async function generateCapnpId() {
112
+ const { stdout } = await execAsync("capnp id", {
113
+ windowsHide: true,
114
+ maxBuffer: LARGE_BUFFER,
115
+ killSignal: "SIGTERM"
116
+ });
117
+ return stdout;
118
+ }
119
+ async function generateCapnp(context, reflection, options) {
120
+ return `${(await generateCapnpId()).trim()};
121
+ ${(0, powerlines_lib_utilities_file_header.getBaseFileHeader)(context).replace(/^\r*\n*/g, "").replaceAll("//", "#")}
122
+ ${reflection.getMethods().length === 0 ? generateCapnpStruct(reflection, options) : generateCapnpInterface(reflection, options)}
123
+ `.trim();
124
+ }
125
+ function generateCapnpStruct(reflection, options = {}) {
126
+ const structName = options?.name || reflection.getTitle() || reflection.getClassName() || reflection.getName();
127
+ return `${generateCapnpEnums(reflection)}struct ${(0, __stryke_string_format_pascal_case.pascalCase)(structName)} {
128
+ # Struct definition for ${(0, __stryke_string_format_title_case.titleCase)(structName)}.
129
+
130
+ ${generateCapnpSchema(reflection, options)}
131
+ }
132
+ `;
133
+ }
134
+ function generateCapnpInterface(reflection, options = {}) {
135
+ const interfaceName = options?.name || reflection.getTitle() || reflection.getClassName() || reflection.getName();
136
+ return `${generateCapnpEnums(reflection)}interface ${(0, __stryke_string_format_pascal_case.pascalCase)(interfaceName)} {
137
+ # Interface definition for ${(0, __stryke_string_format_title_case.titleCase)(interfaceName)}.
138
+
139
+ ${generateCapnpSchema(reflection, options)}
140
+ }
141
+ `;
142
+ }
143
+ function formatEnumName(name) {
144
+ return (0, __stryke_string_format_pascal_case.pascalCase)(`${name}_Type`);
145
+ }
146
+ function generateCapnpEnums(reflection) {
147
+ const enums = reflection.getProperties().filter((prop) => !prop.isIgnored() && (prop.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.enum || prop.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.union && getCapnpUnionTypes(prop.type).filter((type) => type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.literal && ((0, __stryke_type_checks_is_string.isString)(type.literal) || (0, __stryke_type_checks_is_number.isNumber)(type.literal))).length === 1)).sort((a, b) => a.isReadonly() && b.isReadonly() || !a.isReadonly() && !b.isReadonly() ? b.getNameAsString().localeCompare(a.getNameAsString()) : a.isReadonly() ? 1 : -1);
148
+ if (enums.length === 0) return "";
149
+ return `${enums.map((enumeration) => generateCapnpEnumSchema(enumeration.type, formatEnumName(enumeration.getNameAsString()))).join("\n\n")}
150
+
151
+ `;
152
+ }
153
+ function generateCapnpSchema(reflection, options = {}) {
154
+ let index = 0;
155
+ const indexCounter = options?.indexCounter ?? (() => index++);
156
+ return `${reflection.getProperties().filter((prop) => !prop.isIgnored()).sort((a, b) => a.isReadonly() && b.isReadonly() || !a.isReadonly() && !b.isReadonly() ? b.getNameAsString().localeCompare(a.getNameAsString()) : a.isReadonly() ? 1 : -1).map((prop) => generateCapnpPropertySchema(prop, indexCounter)).join(" \n\n ")}${reflection.getMethods().filter((methods) => !methods.isIgnored()).sort((a, b) => a.isReadonly() && b.isReadonly() || !a.isReadonly() && !b.isReadonly() ? String(b.getName()).localeCompare(String(a.getName())) : a.isReadonly() ? 1 : -1).map((methods) => generateCapnpMethodSchema(methods, indexCounter)).join(" \n\n ")}${reflection.getProperties().some((prop) => prop.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.class && prop.type.classType === Map) ? `
157
+ struct Map(Key, Value) {
158
+ entries @0 :List(Entry);
159
+
160
+ struct Entry {
161
+ key @0 :Key;
162
+ value @1 :Value;
163
+ }
164
+ }` : ""}${reflection.getProperties().some((prop) => prop.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.class && prop.type.classType === Date) ? `
165
+ struct Date {
166
+ # A standard Gregorian calendar date.
167
+
168
+ year @0 :Int16;
169
+ # The year - Must include the century.
170
+ # Negative value indicates BC.
171
+
172
+ month @1 :UInt8; # The month, 1-12
173
+
174
+ day @2 :UInt8; # The day of the month, 1-30
175
+
176
+ hour @3 :UInt8; # The hour of the day, 0-23
177
+
178
+ minute @4 :UInt8; # The minute of the hour, 0-59
179
+
180
+ second @5 :UInt8; # The second of the minute, 0-59
181
+
182
+ millisecond @6 :UInt16; # Milliseconds of the second, 0-999
183
+ }` : ""}`;
184
+ }
185
+ function generateCapnpMethodSchema(reflection, indexCounter) {
186
+ const methodName = reflection.getTitle() || typeof reflection.getName() === "string" ? String(reflection.getName()) : "";
187
+ if (!methodName) throw new Error(`Cannot generate Cap'n Proto schema for method without a name - Parent interface: ${reflection.reflectionClass.getName()}`);
188
+ return `${(0, __stryke_string_format_camel_case.camelCase)(methodName)} @${indexCounter()} (${reflection.getParameters().map((param) => {
189
+ return `${(0, __stryke_string_format_camel_case.camelCase)(param.getName())} :${generateCapnpPrimitive(param.getType())}${param.hasDefault() ? ` = ${stringifyCapnpDefaultValue(param)}` : ""}`;
190
+ }).join(", ")})${isVoidType(reflection.getReturnType()) ? "" : ` -> (${(0, __powerlines_deepkit_utilities.kindToName)(reflection.getReturnType().kind)}: ${generateCapnpPrimitive(reflection.getReturnType())})`}; # ${(reflection.getDescription() || `The ${(0, __stryke_string_format_title_case.titleCase)(reflection.reflectionClass.getTitle() || reflection.reflectionClass.getName())} interface ${(0, __stryke_string_format_title_case.titleCase)(methodName)} method.`).replaceAll("\n", ". ")}`;
191
+ }
192
+ function generateCapnpPropertyComment(reflection) {
193
+ const result = (0, __stryke_string_format_get_words.getWords)(reflection.getDescription() || `A schema property for ${(0, __stryke_string_format_title_case.titleCase)(reflection.getTitle() || reflection.getNameAsString())} field.`, { relaxed: true }).reduce((ret, word) => {
194
+ let length = ret.length;
195
+ if (ret.includes("\n")) length = ret.substring(ret.lastIndexOf("\n") + 1).length;
196
+ const current = word.trim();
197
+ if (length + current.length > 60) ret += `\n\t# ${current}`;
198
+ else ret += ` ${current}`;
199
+ return ret;
200
+ }, "").trim();
201
+ if (result.length > 0) return `\t# ${result}`;
202
+ return "";
203
+ }
204
+ function generateCapnpPropertySchema(reflection, indexCounter) {
205
+ if (reflection.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.union) if (getCapnpUnionTypes(reflection.type).length === 0) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :Void;
206
+ ${generateCapnpPropertyComment(reflection)}`;
207
+ else if (getCapnpUnionTypes(reflection.type).filter((type) => type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.literal && ((0, __stryke_type_checks_is_string.isString)(type.literal) || (0, __stryke_type_checks_is_number.isNumber)(type.literal))).length === 1) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :${formatEnumName(reflection.getNameAsString())}${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
208
+ ${generateCapnpPropertyComment(reflection)}`;
209
+ else return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} :union {
210
+ ${getCapnpUnionTypes(reflection.type).map((type) => ` ${(0, __powerlines_deepkit_utilities.kindToName)(type.kind)} @${indexCounter()} :${generateCapnpPrimitive(type)};`).join("\n")}
211
+ }
212
+ ${generateCapnpPropertyComment(reflection)}`;
213
+ else if (reflection.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.array) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :List(${generateCapnpPrimitive(reflection.getSubType())})${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
214
+ ${generateCapnpPropertyComment(reflection)}`;
215
+ else if (reflection.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.class) if (reflection.type.classType === Map) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :Map(${!reflection.type.typeArguments || reflection.type.typeArguments.length === 0 || !reflection.type.typeArguments[0] ? "Data" : generateCapnpPrimitive(reflection.type.typeArguments[0])}, ${!reflection.type.typeArguments || reflection.type.typeArguments.length < 2 || !reflection.type.typeArguments[1] ? "Data" : generateCapnpPrimitive(reflection.type.typeArguments[1])})${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
216
+ ${generateCapnpPropertyComment(reflection)}`;
217
+ else if (reflection.type.classType === Date) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :Data${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
218
+ ${generateCapnpPropertyComment(reflection)}`;
219
+ else if (reflection.type.classType === node_buffer.Buffer) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :Data${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
220
+ ${generateCapnpPropertyComment(reflection)}`;
221
+ else if (reflection.type.classType === ArrayBuffer) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :Data${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
222
+ ${generateCapnpPropertyComment(reflection)}`;
223
+ else return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :${(0, __stryke_string_format_pascal_case.pascalCase)(reflection.type.typeName || (0, __powerlines_deepkit_vendor_core.getClassName)(reflection.type.classType))}${generateCapnpStruct(reflection.reflectionClass, { name: (0, __stryke_string_format_pascal_case.pascalCase)(reflection.type.typeName || (0, __powerlines_deepkit_vendor_core.getClassName)(reflection.type.classType)) })}${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
224
+ ${generateCapnpPropertyComment(reflection)}`;
225
+ else if (reflection.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.objectLiteral) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :${(0, __stryke_string_format_pascal_case.pascalCase)(reflection.type.typeName || (0, __powerlines_deepkit_vendor_type.memberNameToString)(reflection.getNameAsString()))}${generateCapnpStruct(reflection.reflectionClass, { name: (0, __stryke_string_format_pascal_case.pascalCase)(reflection.type.typeName || (0, __powerlines_deepkit_vendor_type.memberNameToString)(reflection.getNameAsString())) })}${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
226
+ ${generateCapnpPropertyComment(reflection)}`;
227
+ else if (reflection.type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.enum) return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :${(0, __stryke_string_format_pascal_case.pascalCase)(reflection.getNameAsString())}${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
228
+ ${generateCapnpPropertyComment(reflection)}`;
229
+ return `${(0, __stryke_string_format_camel_case.camelCase)(reflection.getNameAsString())} @${indexCounter()} :${generateCapnpPrimitive(reflection.getType())}${reflection.hasDefault() ? ` = ${stringifyCapnpDefaultValue(reflection)}` : ""};
230
+ ${generateCapnpPropertyComment(reflection)}`;
231
+ }
232
+ function generateCapnpEnumSchema(type, name) {
233
+ if (type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.union) return generateCapnpEnumSchema({
234
+ kind: __powerlines_deepkit_vendor_type.ReflectionKind.enum,
235
+ indexType: type,
236
+ enum: type.types.reduce((ret, type$1) => {
237
+ if ((0, __stryke_type_checks_is_string.isString)(type$1.literal) || (0, __stryke_type_checks_is_number.isNumber)(type$1.literal)) ret[(0, __stryke_string_format_camel_case.camelCase)(String(type$1.literal))] = type$1.literal;
238
+ return ret;
239
+ }, {}),
240
+ values: getCapnpUnionTypes(type).filter((type$1) => type$1.kind === __powerlines_deepkit_vendor_type.ReflectionKind.literal && ((0, __stryke_type_checks_is_string.isString)(type$1.literal) || (0, __stryke_type_checks_is_number.isNumber)(type$1.literal))).map((type$1) => type$1.literal)
241
+ }, name);
242
+ let index = 0;
243
+ const indexCounter = () => index++;
244
+ const enumType = getCapnpEnumTypes(type);
245
+ if (!enumType) return "";
246
+ return `enum ${(0, __stryke_string_format_pascal_case.pascalCase)(name)} {
247
+ ${type.enum && Object.entries(type.enum).length > 0 ? Object.entries(type.enum).filter(([, value]) => value !== null && value !== void 0).map(([key]) => ` ${(0, __stryke_string_format_camel_case.camelCase)(key)} @${indexCounter()};`).join("\n") : type.values.filter((value) => value !== null && value !== void 0).map((value) => `${enumType === "Text" && value ? (0, __stryke_string_format_camel_case.camelCase)(String(value)) : `${type.typeName ? `${(0, __stryke_string_format_camel_case.camelCase)(type.typeName)}_` : ""}${value || ""}`} @${indexCounter()};`).join("\n")}
248
+ }`;
249
+ }
250
+ /**
251
+ * Generates a string representation of Cap'n Proto primitive types from a Deepkit Type.
252
+ *
253
+ * @param type - The Deepkit Type to convert.
254
+ * @returns A string representation of the Cap'n Proto primitive type.
255
+ */
256
+ function generateCapnpPrimitive(type) {
257
+ return type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.never || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.void || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.null || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.undefined || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.symbol ? "Void" : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.class && type.classType === Date ? "Date" : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.class && type.classType === Set ? `List(${type.typeArguments && type.typeArguments[0] ? generateCapnpPrimitive(type.typeArguments[0]) : "Data"})` : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.bigint ? "UInt64" : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.number ? "Float64" : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.string || type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.regexp ? "Text" : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.boolean ? "Bool" : type.kind === __powerlines_deepkit_vendor_type.ReflectionKind.literal ? (0, __stryke_type_checks_is_number.isNumber)(type.literal) ? "Float64" : (0, __stryke_type_checks_is_bigint.isBigInt)(type.literal) ? "UInt64" : (0, __stryke_type_checks_is_string.isString)(type.literal) ? "Text" : typeof type.literal === "boolean" ? "Bool" : "Data" : "Data";
258
+ }
259
+
260
+ //#endregion
261
+ exports.LARGE_BUFFER = LARGE_BUFFER;
262
+ exports.compile = compile;
263
+ exports.generateCapnp = generateCapnp;
264
+ exports.generateCapnpEnumSchema = generateCapnpEnumSchema;
265
+ exports.generateCapnpId = generateCapnpId;
266
+ exports.generateCapnpInterface = generateCapnpInterface;
267
+ exports.generateCapnpMethodSchema = generateCapnpMethodSchema;
268
+ exports.generateCapnpPrimitive = generateCapnpPrimitive;
269
+ exports.generateCapnpSchema = generateCapnpSchema;
270
+ exports.generateCapnpStruct = generateCapnpStruct;
271
+ exports.getCapnpEnumTypes = getCapnpEnumTypes;
272
+ exports.getCapnpUnionTypes = getCapnpUnionTypes;
273
+ exports.isCapnpStringUnion = isCapnpStringUnion;
274
+ exports.isVoidType = isVoidType;
275
+ exports.stringifyCapnpDefaultValue = stringifyCapnpDefaultValue;
276
+ exports.stringifyCapnpValue = stringifyCapnpValue;
@@ -0,0 +1,87 @@
1
+ import { Context, PluginContext } from "powerlines/types/context";
2
+ import { ReflectionClass, ReflectionMethod, ReflectionParameter, ReflectionProperty, Type, TypeEnum, TypeUnion } from "@powerlines/deepkit/vendor/type";
3
+ import { CapnpcOptions, CapnpcResult } from "@stryke/capnp/types";
4
+
5
+ //#region src/helpers/capnp.d.ts
6
+
7
+ /**
8
+ * Compiles a Cap'n Proto schema into TypeScript definitions.
9
+ *
10
+ * @param context - The context containing the project and workspace information.
11
+ * @param options - The options for compiling the schema.
12
+ * @returns A promise that resolves to the compiled schema.
13
+ */
14
+ declare function compile(context: Context, options?: Partial<CapnpcOptions>): Promise<CapnpcResult>;
15
+ /**
16
+ * Converts any {@link ReflectionProperty} or {@link ReflectionParameter}'s value to string representation.
17
+ *
18
+ * @param property - The {@link ReflectionProperty} or {@link ReflectionParameter} containing the value to stringify.
19
+ * @param value - The value to stringify.
20
+ * @returns A string representation of the value.
21
+ */
22
+ declare function stringifyCapnpDefaultValue(property: ReflectionProperty | ReflectionParameter, value?: any): string;
23
+ /**
24
+ * Converts any {@link Type}'s actual value to string representation.
25
+ *
26
+ * @param type - The {@link Type} of the value to stringify.
27
+ * @param value - The value to stringify.
28
+ * @returns A string representation of the value.
29
+ */
30
+ declare function stringifyCapnpValue(type: Type, value: any): string;
31
+ /**
32
+ * Converts a ReflectionProperty's default value to a Cap'n Proto schema string representation.
33
+ *
34
+ * @param type - The TypeEnum to evaluate.
35
+ * @returns A string representation of the property.
36
+ */
37
+ declare function getCapnpEnumTypes(type: Type): "Text" | "Float32" | null;
38
+ /**
39
+ * Determines if a Type is a `Void` type in a Cap'n Proto schema.
40
+ *
41
+ * @param type - The Type to check.
42
+ * @returns True if the Type is a `Void` type, false otherwise.
43
+ */
44
+ declare function isVoidType(type: Type): boolean;
45
+ /**
46
+ * Converts a {@link TypeUnion} to an array of its underlying Cap'n Proto primitive type representation.
47
+ *
48
+ * @param type - The {@link TypeUnion} to convert.
49
+ * @returns A string representation of the Cap'n Proto primitive type.
50
+ */
51
+ declare function getCapnpUnionTypes(type: Type): Type[];
52
+ /**
53
+ * Converts a {@link TypeUnion} to an array of its underlying Cap'n Proto primitive type representation.
54
+ *
55
+ * @param type - The {@link TypeUnion} to convert.
56
+ * @returns An array of Cap'n Proto primitive types.
57
+ */
58
+ declare function isCapnpStringUnion(type: Type): boolean;
59
+ declare const LARGE_BUFFER: number;
60
+ type IOType = "overlapped" | "pipe" | "ignore" | "inherit";
61
+ type StdioOptions = IOType | Array<IOType | "ipc" | number | null | undefined>;
62
+ declare function generateCapnpId(): Promise<string>;
63
+ interface GenerateCapnpOptions {
64
+ name?: string;
65
+ }
66
+ declare function generateCapnp(context: PluginContext, reflection: ReflectionClass<any>, options: GenerateCapnpOptions): Promise<string>;
67
+ interface GenerateCapnpStructOptions extends GenerateCapnpOptions {
68
+ indexCounter?: () => number;
69
+ }
70
+ declare function generateCapnpStruct(reflection: ReflectionClass<any>, options?: GenerateCapnpStructOptions): string;
71
+ declare function generateCapnpInterface(reflection: ReflectionClass<any>, options?: GenerateCapnpStructOptions): string;
72
+ declare function generateCapnpSchema(reflection: ReflectionClass<any>, options?: GenerateCapnpStructOptions): string;
73
+ declare function generateCapnpMethodSchema(reflection: ReflectionMethod, indexCounter: () => number): string;
74
+ declare function generateCapnpEnumSchema(type: TypeEnum | TypeUnion, name: string): string;
75
+ /**
76
+ * Generates a string representation of Cap'n Proto primitive types from a Deepkit Type.
77
+ *
78
+ * @param type - The Deepkit Type to convert.
79
+ * @returns A string representation of the Cap'n Proto primitive type.
80
+ */
81
+ declare function generateCapnpPrimitive(type: Type): string;
82
+ declare type __ΩIOType = any[];
83
+ declare type __ΩStdioOptions = any[];
84
+ declare type __ΩGenerateCapnpOptions = any[];
85
+ declare type __ΩGenerateCapnpStructOptions = any[];
86
+ //#endregion
87
+ export { GenerateCapnpOptions, GenerateCapnpStructOptions, IOType, LARGE_BUFFER, StdioOptions, __ΩGenerateCapnpOptions, __ΩGenerateCapnpStructOptions, __ΩIOType, __ΩStdioOptions, compile, generateCapnp, generateCapnpEnumSchema, generateCapnpId, generateCapnpInterface, generateCapnpMethodSchema, generateCapnpPrimitive, generateCapnpSchema, generateCapnpStruct, getCapnpEnumTypes, getCapnpUnionTypes, isCapnpStringUnion, isVoidType, stringifyCapnpDefaultValue, stringifyCapnpValue };
@@ -0,0 +1,87 @@
1
+ import { ReflectionClass, ReflectionMethod, ReflectionParameter, ReflectionProperty, Type, TypeEnum, TypeUnion } from "@powerlines/deepkit/vendor/type";
2
+ import { Context, PluginContext } from "powerlines/types/context";
3
+ import { CapnpcOptions, CapnpcResult } from "@stryke/capnp/types";
4
+
5
+ //#region src/helpers/capnp.d.ts
6
+
7
+ /**
8
+ * Compiles a Cap'n Proto schema into TypeScript definitions.
9
+ *
10
+ * @param context - The context containing the project and workspace information.
11
+ * @param options - The options for compiling the schema.
12
+ * @returns A promise that resolves to the compiled schema.
13
+ */
14
+ declare function compile(context: Context, options?: Partial<CapnpcOptions>): Promise<CapnpcResult>;
15
+ /**
16
+ * Converts any {@link ReflectionProperty} or {@link ReflectionParameter}'s value to string representation.
17
+ *
18
+ * @param property - The {@link ReflectionProperty} or {@link ReflectionParameter} containing the value to stringify.
19
+ * @param value - The value to stringify.
20
+ * @returns A string representation of the value.
21
+ */
22
+ declare function stringifyCapnpDefaultValue(property: ReflectionProperty | ReflectionParameter, value?: any): string;
23
+ /**
24
+ * Converts any {@link Type}'s actual value to string representation.
25
+ *
26
+ * @param type - The {@link Type} of the value to stringify.
27
+ * @param value - The value to stringify.
28
+ * @returns A string representation of the value.
29
+ */
30
+ declare function stringifyCapnpValue(type: Type, value: any): string;
31
+ /**
32
+ * Converts a ReflectionProperty's default value to a Cap'n Proto schema string representation.
33
+ *
34
+ * @param type - The TypeEnum to evaluate.
35
+ * @returns A string representation of the property.
36
+ */
37
+ declare function getCapnpEnumTypes(type: Type): "Text" | "Float32" | null;
38
+ /**
39
+ * Determines if a Type is a `Void` type in a Cap'n Proto schema.
40
+ *
41
+ * @param type - The Type to check.
42
+ * @returns True if the Type is a `Void` type, false otherwise.
43
+ */
44
+ declare function isVoidType(type: Type): boolean;
45
+ /**
46
+ * Converts a {@link TypeUnion} to an array of its underlying Cap'n Proto primitive type representation.
47
+ *
48
+ * @param type - The {@link TypeUnion} to convert.
49
+ * @returns A string representation of the Cap'n Proto primitive type.
50
+ */
51
+ declare function getCapnpUnionTypes(type: Type): Type[];
52
+ /**
53
+ * Converts a {@link TypeUnion} to an array of its underlying Cap'n Proto primitive type representation.
54
+ *
55
+ * @param type - The {@link TypeUnion} to convert.
56
+ * @returns An array of Cap'n Proto primitive types.
57
+ */
58
+ declare function isCapnpStringUnion(type: Type): boolean;
59
+ declare const LARGE_BUFFER: number;
60
+ type IOType = "overlapped" | "pipe" | "ignore" | "inherit";
61
+ type StdioOptions = IOType | Array<IOType | "ipc" | number | null | undefined>;
62
+ declare function generateCapnpId(): Promise<string>;
63
+ interface GenerateCapnpOptions {
64
+ name?: string;
65
+ }
66
+ declare function generateCapnp(context: PluginContext, reflection: ReflectionClass<any>, options: GenerateCapnpOptions): Promise<string>;
67
+ interface GenerateCapnpStructOptions extends GenerateCapnpOptions {
68
+ indexCounter?: () => number;
69
+ }
70
+ declare function generateCapnpStruct(reflection: ReflectionClass<any>, options?: GenerateCapnpStructOptions): string;
71
+ declare function generateCapnpInterface(reflection: ReflectionClass<any>, options?: GenerateCapnpStructOptions): string;
72
+ declare function generateCapnpSchema(reflection: ReflectionClass<any>, options?: GenerateCapnpStructOptions): string;
73
+ declare function generateCapnpMethodSchema(reflection: ReflectionMethod, indexCounter: () => number): string;
74
+ declare function generateCapnpEnumSchema(type: TypeEnum | TypeUnion, name: string): string;
75
+ /**
76
+ * Generates a string representation of Cap'n Proto primitive types from a Deepkit Type.
77
+ *
78
+ * @param type - The Deepkit Type to convert.
79
+ * @returns A string representation of the Cap'n Proto primitive type.
80
+ */
81
+ declare function generateCapnpPrimitive(type: Type): string;
82
+ declare type __ΩIOType = any[];
83
+ declare type __ΩStdioOptions = any[];
84
+ declare type __ΩGenerateCapnpOptions = any[];
85
+ declare type __ΩGenerateCapnpStructOptions = any[];
86
+ //#endregion
87
+ export { GenerateCapnpOptions, GenerateCapnpStructOptions, IOType, LARGE_BUFFER, StdioOptions, __ΩGenerateCapnpOptions, __ΩGenerateCapnpStructOptions, __ΩIOType, __ΩStdioOptions, compile, generateCapnp, generateCapnpEnumSchema, generateCapnpId, generateCapnpInterface, generateCapnpMethodSchema, generateCapnpPrimitive, generateCapnpSchema, generateCapnpStruct, getCapnpEnumTypes, getCapnpUnionTypes, isCapnpStringUnion, isVoidType, stringifyCapnpDefaultValue, stringifyCapnpValue };