@cosmology/ast
Version:
Cosmos TypeScript AST generation
219 lines (202 loc) • 7.54 kB
text/typescript
import * as t from '@babel/types';
import { ProtoType, ProtoField } from '@cosmology/types';
import { getFieldOptionality, getFieldOptionalityForDefaults, getOneOfs } from '..';
import { identifier, objectMethod } from '../../../utils';
import { ProtoParseContext } from '../../context';
import { fromJSON as fromJSONNonStrict, arrayTypes } from './utils';
import { fromJSON as fromJSONStrict} from './strict-utils';
const needsImplementation = (name: string, field: ProtoField) => {
throw new Error(`need to implement fromJSON (${field.type} rules[${field.rule}] name[${name}])`);
}
export interface FromJSONMethod {
context: ProtoParseContext;
field: ProtoField;
isOneOf: boolean;
isOptional: boolean;
}
export const fromJSONMethodFields = (context: ProtoParseContext, name: string, proto: ProtoType) => {
const strictNullCheckForPrototypeMethods = context.pluginValue('prototypes.strictNullCheckForPrototypeMethods');
const fromJSON = strictNullCheckForPrototypeMethods ? fromJSONStrict : fromJSONNonStrict;
const oneOfs = getOneOfs(proto);
const fields = Object.keys(proto.fields ?? {}).map(fieldName => {
const field = {
name: fieldName,
...proto.fields[fieldName]
};
const isOneOf = oneOfs.includes(fieldName);
const isOptional = getFieldOptionalityForDefaults(context, field, isOneOf);
const args: FromJSONMethod = {
context,
field,
isOneOf,
isOptional
};
if (field.rule === 'repeated') {
switch (field.type) {
case 'string':
return fromJSON.array(args, arrayTypes.string());
case 'bytes':
return fromJSON.array(args, arrayTypes.bytes(args));
case 'bool':
return fromJSON.array(args, arrayTypes.bool());
case 'float':
return fromJSON.array(args, arrayTypes.float());
case 'double':
return fromJSON.array(args, arrayTypes.double());
case 'int32':
return fromJSON.array(args, arrayTypes.int32());
case 'sint32':
return fromJSON.array(args, arrayTypes.sint32());
case 'uint32':
return fromJSON.array(args, arrayTypes.uint32());
case 'fixed32':
return fromJSON.array(args, arrayTypes.fixed32());
case 'sfixed32':
return fromJSON.array(args, arrayTypes.sfixed32());
case 'int64':
return fromJSON.array(args, arrayTypes.int64(args));
case 'sint64':
return fromJSON.array(args, arrayTypes.sint64(args));
case 'uint64':
return fromJSON.array(args, arrayTypes.uint64(args));
case 'fixed64':
return fromJSON.array(args, arrayTypes.fixed64(args));
case 'sfixed64':
return fromJSON.array(args, arrayTypes.sfixed64(args));
default:
switch (field.parsedType.type) {
case 'Enum':
return fromJSON.array(args, arrayTypes.enum(args));
case 'Type':
return fromJSON.array(args, arrayTypes.type(args));
}
return needsImplementation(fieldName, field);
}
}
if (field.keyType) {
switch (field.keyType) {
case 'string':
case 'int64':
case 'sint64':
case 'uint64':
case 'fixed64':
case 'sfixed64':
case 'int32':
case 'sint32':
case 'uint32':
case 'fixed32':
case 'sfixed32':
return fromJSON.keyHash(args);
default:
return needsImplementation(fieldName, field);
}
}
switch (field.type) {
case 'string':
return fromJSON.string(args);
case 'bytes':
return fromJSON.bytes(args);
case 'bool':
return fromJSON.bool(args);
case 'double':
return fromJSON.double(args);
case 'float':
return fromJSON.float(args);
case 'int32':
return fromJSON.int32(args);
case 'sint32':
return fromJSON.sint32(args);
case 'uint32':
return fromJSON.uint32(args);
case 'fixed32':
return fromJSON.fixed32(args);
case 'sfixed32':
return fromJSON.sfixed32(args);
case 'int64':
return fromJSON.int64(args);
case 'sint64':
return fromJSON.sint64(args);
case 'uint64':
return fromJSON.uint64(args);
case 'fixed64':
return fromJSON.fixed64(args);
case 'sfixed64':
return fromJSON.sfixed64(args);
case 'Duration':
case 'google.protobuf.Duration':
return fromJSON.duration(args);
case 'Timestamp':
case 'google.protobuf.Timestamp':
return fromJSON.timestamp(args);
default:
switch (field.parsedType.type) {
case 'Enum':
return fromJSON.enum(args);
case 'Type':
return fromJSON.type(args);
}
return needsImplementation(fieldName, field);
}
});
return fields;
};
export const fromJSONMethod = (context: ProtoParseContext, name: string, proto: ProtoType) => {
const strictNullCheckForPrototypeMethods = context.pluginValue('prototypes.strictNullCheckForPrototypeMethods');
const fields = fromJSONMethodFields(context, name, proto);
let varName = 'object';
if (!fields.length) {
varName = '_';
}
//scaffold block statement
let statements: t.Statement[] = [
t.variableDeclaration(
'const',
[
t.variableDeclarator(
t.identifier('obj'),
t.callExpression(
t.identifier('createBase' + name),
[]
)
)
]
)
]
for (let i = 0; i < fields.length; i++) {
statements.push(fields[i] as t.Statement);
}
statements.push(
t.returnStatement(
t.identifier('obj')
));
return objectMethod(
'method',
t.identifier('fromJSON'),
[
identifier(varName,
t.tsTypeAnnotation(
t.tsAnyKeyword()
),
false
)
],
t.blockStatement(
strictNullCheckForPrototypeMethods ?
statements :
[
t.returnStatement(
t.objectExpression(fields as t.ObjectProperty[])
)
]
),
false,
false,
false,
// returnType
t.tsTypeAnnotation(
t.tsTypeReference(
t.identifier(name)
)
)
)
};