@dedot/codegen 0.0.1-next.f1aed4d8.4 → 0.0.1-next.fecbe32d.13
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.
- package/cjs/generator/ConstsGen.js +3 -4
- package/cjs/generator/ErrorsGen.js +3 -4
- package/cjs/generator/EventsGen.js +3 -4
- package/cjs/generator/IndexGen.js +5 -6
- package/cjs/generator/JsonRpcGen.js +59 -0
- package/cjs/generator/QueryGen.js +18 -10
- package/cjs/generator/RuntimeApisGen.js +93 -19
- package/cjs/generator/TxGen.js +6 -6
- package/cjs/generator/TypeImports.js +8 -0
- package/cjs/generator/TypesGen.js +8 -15
- package/cjs/generator/index.js +1 -1
- package/cjs/generator/known-codecs.js +1 -1
- package/cjs/generator/utils.js +30 -1
- package/cjs/index.js +24 -24
- package/cjs/templates/index.hbs +2 -2
- package/cjs/templates/json-rpc.hbs +5 -0
- package/generator/ApiGen.d.ts +3 -3
- package/generator/ConstsGen.d.ts +1 -1
- package/generator/ConstsGen.js +3 -4
- package/generator/ErrorsGen.js +1 -2
- package/generator/EventsGen.js +1 -2
- package/generator/IndexGen.d.ts +2 -3
- package/generator/IndexGen.js +5 -6
- package/generator/{RpcGen.d.ts → JsonRpcGen.d.ts} +1 -4
- package/generator/JsonRpcGen.js +55 -0
- package/generator/QueryGen.d.ts +1 -1
- package/generator/QueryGen.js +18 -10
- package/generator/RuntimeApisGen.d.ts +4 -4
- package/generator/RuntimeApisGen.js +89 -15
- package/generator/TxGen.js +1 -1
- package/generator/TypeImports.d.ts +2 -0
- package/generator/TypeImports.js +8 -0
- package/generator/TypesGen.d.ts +1 -1
- package/generator/TypesGen.js +3 -10
- package/generator/index.d.ts +1 -1
- package/generator/index.js +1 -1
- package/generator/known-codecs.js +1 -1
- package/generator/utils.d.ts +5 -0
- package/generator/utils.js +28 -0
- package/index.d.ts +2 -3
- package/index.js +23 -23
- package/package.json +7 -8
- package/templates/index.hbs +2 -2
- package/templates/json-rpc.hbs +5 -0
- package/cjs/genSupportedChainTypes.js +0 -83
- package/cjs/generator/RpcGen.js +0 -176
- package/cjs/generator/known-types.js +0 -33
- package/cjs/packageInfo.js +0 -5
- package/cjs/templates/rpc.hbs +0 -7
- package/cjs/types.js +0 -2
- package/genSupportedChainTypes.d.ts +0 -1
- package/genSupportedChainTypes.js +0 -78
- package/generator/RpcGen.js +0 -172
- package/generator/known-types.d.ts +0 -6
- package/generator/known-types.js +0 -30
- package/packageInfo.d.ts +0 -4
- package/packageInfo.js +0 -2
- package/templates/rpc.hbs +0 -7
- package/types.d.ts +0 -6
- package/types.js +0 -1
package/generator/RpcGen.js
DELETED
|
@@ -1,172 +0,0 @@
|
|
|
1
|
-
import { findAliasRpcSpec, findRpcSpec, isUnsubscribeMethod } from '@dedot/specs';
|
|
2
|
-
import { isNativeType } from '@dedot/utils';
|
|
3
|
-
import { ApiGen } from '../generator/index.js';
|
|
4
|
-
import { beautifySourceCode, commentBlock, compileTemplate, TUPLE_TYPE_REGEX, WRAPPER_TYPE_REGEX } from './utils.js';
|
|
5
|
-
import { findKnownCodecType } from './known-codecs.js';
|
|
6
|
-
const HIDDEN_RPCS = [
|
|
7
|
-
// Ref: https://github.com/paritytech/polkadot-sdk/blob/43415ef58c143b985e09015cd000dbd65f6d3997/substrate/client/rpc-servers/src/lib.rs#L152C9-L158
|
|
8
|
-
'rpc_methods',
|
|
9
|
-
];
|
|
10
|
-
export class RpcGen extends ApiGen {
|
|
11
|
-
typesGen;
|
|
12
|
-
rpcMethods;
|
|
13
|
-
constructor(typesGen, rpcMethods) {
|
|
14
|
-
super(typesGen);
|
|
15
|
-
this.typesGen = typesGen;
|
|
16
|
-
this.rpcMethods = rpcMethods;
|
|
17
|
-
HIDDEN_RPCS.filter((one) => !rpcMethods.includes(one)).forEach((one) => rpcMethods.push(one));
|
|
18
|
-
rpcMethods.sort();
|
|
19
|
-
}
|
|
20
|
-
generate() {
|
|
21
|
-
this.typesGen.clearCache();
|
|
22
|
-
this.typesGen.typeImports.addKnownType('GenericRpcCalls', 'Unsub', 'Callback', 'GenericRpcCall');
|
|
23
|
-
const specsByModule = this.rpcMethods
|
|
24
|
-
.filter((one) => !findAliasRpcSpec(one)) // we'll ignore alias rpc for now if defined in the specs! TODO should we generate alias rpc as well?
|
|
25
|
-
.filter((one) => !isUnsubscribeMethod(one)) // we'll ignore unsubscribe method as well
|
|
26
|
-
.map((one) => {
|
|
27
|
-
const spec = findRpcSpec(one);
|
|
28
|
-
if (spec) {
|
|
29
|
-
return spec;
|
|
30
|
-
}
|
|
31
|
-
const [module, ...methodParts] = one.split('_');
|
|
32
|
-
const method = methodParts.join('_');
|
|
33
|
-
return {
|
|
34
|
-
params: [],
|
|
35
|
-
type: 'GenericRpcCall',
|
|
36
|
-
module,
|
|
37
|
-
method,
|
|
38
|
-
};
|
|
39
|
-
})
|
|
40
|
-
.reduce((o, spec) => {
|
|
41
|
-
const { module, method } = spec;
|
|
42
|
-
// ignore if rpc name does not confront with the general convention
|
|
43
|
-
if (!module || !method) {
|
|
44
|
-
return o;
|
|
45
|
-
}
|
|
46
|
-
return {
|
|
47
|
-
...o,
|
|
48
|
-
[module]: o[module] ? [...o[module], spec] : [spec],
|
|
49
|
-
};
|
|
50
|
-
}, {});
|
|
51
|
-
let rpcCallsOut = '';
|
|
52
|
-
Object.keys(specsByModule).forEach((module) => {
|
|
53
|
-
const specs = specsByModule[module];
|
|
54
|
-
// TODO add alias info to docs block!
|
|
55
|
-
rpcCallsOut += `${module}: {
|
|
56
|
-
${specs.map((spec) => this.#generateMethodDef(spec)).join(',\n')},
|
|
57
|
-
|
|
58
|
-
[method: string]: GenericRpcCall,
|
|
59
|
-
},`;
|
|
60
|
-
});
|
|
61
|
-
// TODO include & define external types
|
|
62
|
-
const importTypes = this.typesGen.typeImports.toImports();
|
|
63
|
-
const template = compileTemplate('rpc.hbs');
|
|
64
|
-
return beautifySourceCode(template({ importTypes, rpcCallsOut }));
|
|
65
|
-
}
|
|
66
|
-
#generateMethodDef(spec) {
|
|
67
|
-
const { name, type, module, method, docs = [], params, pubsub, deprecated } = spec;
|
|
68
|
-
const rpcName = name || `${module}_${method}`;
|
|
69
|
-
let defaultDocs = [`@rpcname: ${rpcName}`];
|
|
70
|
-
if (deprecated) {
|
|
71
|
-
defaultDocs.push(`@deprecated: ${deprecated}`);
|
|
72
|
-
}
|
|
73
|
-
if (type === 'GenericRpcCall' && params.length === 0) {
|
|
74
|
-
return `${commentBlock(defaultDocs)}${method}: GenericRpcCall`;
|
|
75
|
-
}
|
|
76
|
-
this.addTypeImport(type, false);
|
|
77
|
-
params.forEach(({ type, isScale }) => {
|
|
78
|
-
this.addTypeImport(type, !!isScale);
|
|
79
|
-
});
|
|
80
|
-
const typedParams = params.map((param) => ({
|
|
81
|
-
...param,
|
|
82
|
-
plainType: this.getGeneratedTypeName(param.type, !!param.isScale),
|
|
83
|
-
}));
|
|
84
|
-
const isSubscription = !!pubsub;
|
|
85
|
-
const paramsOut = typedParams.map(({ name, type, isOptional, isScale, plainType }) => `${name}${isOptional ? '?' : ''}: ${plainType}`);
|
|
86
|
-
const paramsDoc = typedParams.map(({ name, plainType }) => `@param {${plainType}} ${name}`);
|
|
87
|
-
const typeOut = this.getGeneratedTypeName(type, false);
|
|
88
|
-
if (isSubscription) {
|
|
89
|
-
defaultDocs.shift();
|
|
90
|
-
defaultDocs.unshift(`@pubsub: ${pubsub?.join(', ')}`);
|
|
91
|
-
paramsOut.push(`callback: Callback<${typeOut}>`);
|
|
92
|
-
return `${commentBlock(docs, '\n', defaultDocs, paramsDoc)}${method}: GenericRpcCall<(${paramsOut.join(', ')}) => Promise<Unsub>>`;
|
|
93
|
-
}
|
|
94
|
-
else {
|
|
95
|
-
return `${commentBlock(docs, '\n', defaultDocs, paramsDoc)}${method}: GenericRpcCall<(${paramsOut.join(', ')}) => Promise<${typeOut}>>`;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
// TODO check typeIn, typeOut if param type, or rpc type isScale
|
|
99
|
-
addTypeImport(type, toTypeIn = true) {
|
|
100
|
-
if (Array.isArray(type)) {
|
|
101
|
-
type.forEach((one) => this.addTypeImport(one, toTypeIn));
|
|
102
|
-
return;
|
|
103
|
-
}
|
|
104
|
-
type = type.trim();
|
|
105
|
-
if (isNativeType(type)) {
|
|
106
|
-
return;
|
|
107
|
-
}
|
|
108
|
-
// Handle generic wrapper types
|
|
109
|
-
const matchArray = type.match(WRAPPER_TYPE_REGEX);
|
|
110
|
-
if (matchArray) {
|
|
111
|
-
const [_, $1, $2] = matchArray;
|
|
112
|
-
this.addTypeImport($1, toTypeIn);
|
|
113
|
-
if ($2.match(WRAPPER_TYPE_REGEX) || $2.match(TUPLE_TYPE_REGEX)) {
|
|
114
|
-
this.addTypeImport($2, toTypeIn);
|
|
115
|
-
}
|
|
116
|
-
else {
|
|
117
|
-
this.addTypeImport($2.split(','), toTypeIn);
|
|
118
|
-
}
|
|
119
|
-
return;
|
|
120
|
-
}
|
|
121
|
-
// Check tuple type
|
|
122
|
-
if (type.match(TUPLE_TYPE_REGEX)) {
|
|
123
|
-
this.addTypeImport(type.slice(1, -1).split(','), toTypeIn);
|
|
124
|
-
return;
|
|
125
|
-
}
|
|
126
|
-
if (type.includes(' | ')) {
|
|
127
|
-
this.addTypeImport(type.split(' | ').map((one) => one.trim()), toTypeIn);
|
|
128
|
-
return;
|
|
129
|
-
}
|
|
130
|
-
try {
|
|
131
|
-
const codecType = this.#getCodecType(type, toTypeIn);
|
|
132
|
-
if (isNativeType(codecType))
|
|
133
|
-
return;
|
|
134
|
-
this.typesGen.typeImports.addCodecType(codecType);
|
|
135
|
-
return;
|
|
136
|
-
}
|
|
137
|
-
catch (e) { }
|
|
138
|
-
this.typesGen.addTypeImport(type);
|
|
139
|
-
}
|
|
140
|
-
getGeneratedTypeName(type, toTypeIn = true) {
|
|
141
|
-
try {
|
|
142
|
-
const matchArray = type.match(WRAPPER_TYPE_REGEX);
|
|
143
|
-
if (matchArray) {
|
|
144
|
-
const [_, $1, $2] = matchArray;
|
|
145
|
-
const wrapperTypeName = this.#getCodecType($1, toTypeIn);
|
|
146
|
-
if ($2.match(WRAPPER_TYPE_REGEX) || $2.match(TUPLE_TYPE_REGEX)) {
|
|
147
|
-
return `${wrapperTypeName}<${this.getGeneratedTypeName($2, toTypeIn)}>`;
|
|
148
|
-
}
|
|
149
|
-
const innerTypeNames = $2
|
|
150
|
-
.split(',')
|
|
151
|
-
.map((one) => this.getGeneratedTypeName(one.trim(), toTypeIn))
|
|
152
|
-
.join(', ');
|
|
153
|
-
return `${wrapperTypeName}<${innerTypeNames}>`;
|
|
154
|
-
}
|
|
155
|
-
else if (type.match(TUPLE_TYPE_REGEX)) {
|
|
156
|
-
const innerTypeNames = type
|
|
157
|
-
.slice(1, -1)
|
|
158
|
-
.split(',')
|
|
159
|
-
.map((one) => this.getGeneratedTypeName(one.trim(), toTypeIn))
|
|
160
|
-
.join(', ');
|
|
161
|
-
return `[${innerTypeNames}]`;
|
|
162
|
-
}
|
|
163
|
-
return this.#getCodecType(type, toTypeIn);
|
|
164
|
-
}
|
|
165
|
-
catch (e) { }
|
|
166
|
-
return type;
|
|
167
|
-
}
|
|
168
|
-
#getCodecType(type, toTypeIn = true) {
|
|
169
|
-
const { typeIn, typeOut } = findKnownCodecType(type);
|
|
170
|
-
return toTypeIn ? typeIn : typeOut;
|
|
171
|
-
}
|
|
172
|
-
}
|
package/generator/known-types.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Known type names registered in @dedot/types
|
|
3
|
-
* Since TS interfaces are trim-off when compiling,
|
|
4
|
-
* So we need to register them explicitly here for RPC codegen process
|
|
5
|
-
*/
|
|
6
|
-
export const knownTypes = [
|
|
7
|
-
'ExtrinsicOrHash',
|
|
8
|
-
'EpochAuthorship',
|
|
9
|
-
'BlockStats',
|
|
10
|
-
'Prevotes',
|
|
11
|
-
'Precommits',
|
|
12
|
-
'RoundState',
|
|
13
|
-
'ReportedRoundStates',
|
|
14
|
-
'JustificationNotification',
|
|
15
|
-
'EncodedFinalityProofs',
|
|
16
|
-
'LeavesProof',
|
|
17
|
-
'StorageKind',
|
|
18
|
-
'RpcMethods',
|
|
19
|
-
'ReadProof',
|
|
20
|
-
'StorageChangeSet',
|
|
21
|
-
'TraceBlockResponse',
|
|
22
|
-
'MigrationStatusResult',
|
|
23
|
-
'ChainType',
|
|
24
|
-
'ChainProperties',
|
|
25
|
-
'Health',
|
|
26
|
-
'SyncState',
|
|
27
|
-
'PeerInfo',
|
|
28
|
-
'NodeRole',
|
|
29
|
-
'NetworkState',
|
|
30
|
-
];
|
package/packageInfo.d.ts
DELETED
package/packageInfo.js
DELETED
package/templates/rpc.hbs
DELETED
package/types.d.ts
DELETED
package/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|