platform/angel_serialize_generator/lib/model.dart

255 lines
8.3 KiB
Dart
Raw Normal View History

2018-02-27 19:42:06 +00:00
part of angel_serialize_generator;
2018-02-28 00:36:53 +00:00
class JsonModelGenerator extends GeneratorForAnnotation<Serializable> {
2019-01-09 19:25:05 +00:00
const JsonModelGenerator();
2018-02-28 00:36:53 +00:00
@override
Future<String> generateForAnnotatedElement(
Element element, ConstantReader annotation, BuildStep buildStep) async {
2018-02-28 00:36:53 +00:00
if (element.kind != ElementKind.CLASS)
throw 'Only classes can be annotated with a @Serializable() annotation.';
var ctx = await buildContext(element as ClassElement, annotation, buildStep,
2019-01-09 19:25:05 +00:00
await buildStep.resolver, true);
2018-02-28 00:36:53 +00:00
2018-03-02 21:23:00 +00:00
var lib = new Library((b) {
2018-02-28 01:49:14 +00:00
generateClass(ctx, b, annotation);
2018-02-28 00:36:53 +00:00
});
var buf = lib.accept(new DartEmitter());
return buf.toString();
}
/// Generate an extended model class.
2018-02-28 01:49:14 +00:00
void generateClass(
2018-03-02 21:23:00 +00:00
BuildContext ctx, LibraryBuilder file, ConstantReader annotation) {
2018-02-28 00:36:53 +00:00
file.body.add(new Class((clazz) {
clazz
..name = ctx.modelClassNameRecase.pascalCase
..annotations.add(refer('generatedSerializable'));
2018-06-27 05:36:57 +00:00
2019-01-07 00:56:05 +00:00
for (var ann in ctx.includeAnnotations) {
clazz.annotations.add(convertObject(ann));
}
2018-06-27 05:36:57 +00:00
if (shouldBeConstant(ctx)) {
clazz.implements.add(new Reference(ctx.originalClassName));
} else {
clazz.extend = new Reference(ctx.originalClassName);
}
2018-02-28 00:36:53 +00:00
2018-05-15 19:33:57 +00:00
//if (ctx.importsPackageMeta)
// clazz.annotations.add(new CodeExpression(new Code('immutable')));
2018-02-28 00:36:53 +00:00
for (var field in ctx.fields) {
clazz.fields.add(new Field((b) {
b
..name = field.name
..modifier = FieldModifier.final$
2018-03-02 21:23:00 +00:00
..annotations.add(new CodeExpression(new Code('override')))
2018-02-28 00:36:53 +00:00
..type = convertTypeReference(field.type);
}));
}
generateConstructor(ctx, clazz, file);
generateCopyWithMethod(ctx, clazz, file);
2018-05-13 18:02:47 +00:00
generateEqualsOperator(ctx, clazz, file);
2018-11-03 07:36:59 +00:00
generateHashCode(ctx, clazz);
2018-02-28 01:49:14 +00:00
// Generate toJson() method if necessary
var serializers = annotation.peek('serializers')?.listValue ?? [];
if (serializers.any((o) => o.toIntValue() == Serializers.json)) {
clazz.methods.add(new Method((method) {
method
..name = 'toJson'
..returns = new Reference('Map<String, dynamic>')
..body = new Code('return ${clazz.name}Serializer.toMap(this);');
}));
}
2018-02-28 00:36:53 +00:00
}));
}
2018-06-27 05:36:57 +00:00
bool shouldBeConstant(BuildContext ctx) {
// Check if all fields are without a getter
return !isAssignableToModel(ctx.clazz.type) &&
2018-06-27 05:51:21 +00:00
ctx.clazz.fields.every((f) =>
f.getter?.isAbstract != false && f.setter?.isAbstract != false);
2018-06-27 05:36:57 +00:00
}
2018-02-28 00:36:53 +00:00
/// Generate a constructor with named parameters.
void generateConstructor(
2018-03-02 21:23:00 +00:00
BuildContext ctx, ClassBuilder clazz, LibraryBuilder file) {
2018-02-28 00:36:53 +00:00
clazz.constructors.add(new Constructor((constructor) {
2018-05-13 17:23:40 +00:00
// Add all `super` params
2018-06-27 05:36:57 +00:00
constructor.constant = ctx.clazz.unnamedConstructor?.isConst == true ||
shouldBeConstant(ctx);
2018-05-15 19:01:13 +00:00
for (var param in ctx.constructorParameters) {
constructor.requiredParameters.add(new Parameter((b) => b
..name = param.name
..type = convertTypeReference(param.type)));
}
for (var field in ctx.fields) {
2018-06-27 05:45:46 +00:00
if (!shouldBeConstant(ctx) && isListOrMapType(field.type)) {
2018-05-15 19:01:13 +00:00
String typeName = const TypeChecker.fromRuntime(List)
.isAssignableFromType(field.type)
? 'List'
: 'Map';
var defaultValue = typeName == 'List' ? '[]' : '{}';
2018-12-31 01:18:44 +00:00
var existingDefault = ctx.defaults[field.name];
if (existingDefault != null) {
defaultValue = dartObjectToString(existingDefault);
}
2018-05-15 19:01:13 +00:00
constructor.initializers.add(new Code('''
this.${field.name} =
new $typeName.unmodifiable(${field.name} ?? $defaultValue)'''));
2018-05-13 17:23:40 +00:00
}
2018-05-15 19:01:13 +00:00
}
2018-05-13 17:23:40 +00:00
2018-02-28 00:36:53 +00:00
for (var field in ctx.fields) {
constructor.optionalParameters.add(new Parameter((b) {
b
2018-06-27 05:45:46 +00:00
..toThis = shouldBeConstant(ctx)
2018-02-28 00:36:53 +00:00
..name = field.name
2018-05-15 19:01:13 +00:00
..named = true;
2018-12-31 01:18:44 +00:00
var existingDefault = ctx.defaults[field.name];
if (existingDefault != null) {
b.defaultTo = new Code(dartObjectToString(existingDefault));
}
2018-05-15 19:01:13 +00:00
if (!isListOrMapType(field.type))
b.toThis = true;
else {
b.type = convertTypeReference(field.type);
}
if (ctx.requiredFields.containsKey(field.name)) {
b.annotations.add(new CodeExpression(new Code('required')));
}
2018-02-28 00:36:53 +00:00
}));
}
2018-06-27 05:45:46 +00:00
if (ctx.constructorParameters.isNotEmpty) {
if (!shouldBeConstant(ctx) ||
ctx.clazz.unnamedConstructor?.isConst == true)
constructor.initializers.add(new Code(
'super(${ctx.constructorParameters.map((p) => p.name).join(',')})'));
2018-06-27 05:45:46 +00:00
}
2018-02-28 00:36:53 +00:00
}));
}
/// Generate a `copyWith` method.
void generateCopyWithMethod(
2018-03-02 21:23:00 +00:00
BuildContext ctx, ClassBuilder clazz, LibraryBuilder file) {
2018-02-28 00:36:53 +00:00
clazz.methods.add(new Method((method) {
method
..name = 'copyWith'
..returns = ctx.modelClassType;
2018-05-13 18:02:47 +00:00
2018-05-13 17:23:40 +00:00
// Add all `super` params
if (ctx.constructorParameters.isNotEmpty) {
for (var param in ctx.constructorParameters) {
method.requiredParameters.add(new Parameter((b) => b
..name = param.name
..type = convertTypeReference(param.type)));
}
}
2018-02-28 00:36:53 +00:00
var buf = new StringBuffer('return new ${ctx.modelClassName}(');
int i = 0;
2018-05-13 17:23:40 +00:00
for (var param in ctx.constructorParameters) {
if (i++ > 0) buf.write(', ');
buf.write(param.name);
}
2018-02-28 00:36:53 +00:00
// Add named parameters
for (var field in ctx.fields) {
method.optionalParameters.add(new Parameter((b) {
b
..name = field.name
..named = true
..type = convertTypeReference(field.type);
}));
if (i++ > 0) buf.write(', ');
buf.write('${field.name}: ${field.name} ?? this.${field.name}');
}
buf.write(');');
method.body = new Code(buf.toString());
}));
}
2018-05-13 18:02:47 +00:00
static String generateEquality(DartType type, [bool nullable = false]) {
if (type is InterfaceType) {
if (const TypeChecker.fromRuntime(List).isAssignableFromType(type)) {
if (type.typeParameters.length == 1) {
var eq = generateEquality(type.typeArguments[0]);
return 'const ListEquality<${type.typeArguments[0].name}>($eq)';
} else
2018-12-08 20:53:49 +00:00
return 'const ListEquality()';
} else if (const TypeChecker.fromRuntime(Map)
.isAssignableFromType(type)) {
if (type.typeParameters.length == 2) {
var keq = generateEquality(type.typeArguments[0]),
veq = generateEquality(type.typeArguments[1]);
return 'const MapEquality<${type.typeArguments[0].name}, ${type.typeArguments[1].name}>(keys: $keq, values: $veq)';
} else
2018-12-08 20:53:49 +00:00
return 'const MapEquality()';
}
2018-05-13 18:02:47 +00:00
return nullable ? null : 'const DefaultEquality<${type.name}>()';
} else {
return 'const DefaultEquality()';
}
2018-05-13 18:02:47 +00:00
}
static String Function(String, String) generateComparator(DartType type) {
if (type is! InterfaceType || type.name == 'dynamic')
return (a, b) => '$a == $b';
2018-05-13 18:02:47 +00:00
var eq = generateEquality(type, true);
if (eq == null) return (a, b) => '$a == $b';
return (a, b) => '$eq.equals($a, $b)';
}
2018-11-03 07:36:59 +00:00
void generateHashCode(BuildContext ctx, ClassBuilder clazz) {
clazz
..methods.add(new Method((method) {
method
..name = 'hashCode'
..type = MethodType.getter
..returns = refer('int')
..annotations.add(refer('override'))
..body = refer('hashObjects')
.call([literalList(ctx.fields.map((f) => refer(f.name)))])
.returned
.statement;
}));
}
2018-05-13 18:02:47 +00:00
void generateEqualsOperator(
BuildContext ctx, ClassBuilder clazz, LibraryBuilder file) {
clazz.methods.add(new Method((method) {
method
..name = 'operator =='
..returns = new Reference('bool')
..requiredParameters.add(new Parameter((b) => b.name = 'other'));
var buf = ['other is ${ctx.originalClassName}'];
buf.addAll(ctx.fields.map((f) {
return generateComparator(f.type)('other.${f.name}', f.name);
}));
method.body = new Code('return ${buf.join('&&')};');
}));
}
2018-02-28 00:36:53 +00:00
}