-
Notifications
You must be signed in to change notification settings - Fork 385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linter for drift #3281
base: develop
Are you sure you want to change the base?
Linter for drift #3281
Changes from 16 commits
9ccc51f
c439a9e
e3bc59b
54e204c
178e0fc
569b6cd
0ebc163
3a97943
343cb10
228c45a
3cc6cc6
45b7499
32d476b
536d139
11a1c3f
1db8609
030677b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,6 @@ docs/docs/*.wasm | |
docs/docs/*.css | ||
docs/docs/examples/** | ||
docs/web/robots.txt | ||
|
||
# Linting | ||
custom_lint.log |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import 'package:custom_lint_builder/custom_lint_builder.dart'; | ||
import 'package:drift_dev/src/lints/custom_lint_plugin.dart'; | ||
|
||
/// This function is automaticly recognized by custom_lint to include this drift_dev package as a linter | ||
PluginBase createPlugin() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not a huge fan of this, is there a way to tell But if that's not possible so be it, I can file an issue on |
||
return DriftLinter(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import 'package:custom_lint_builder/custom_lint_builder.dart'; | ||
import 'package:drift_dev/src/lints/drift_backend_error_lint.dart'; | ||
import 'package:drift_dev/src/lints/non_null_insert_with_ignore_lint.dart'; | ||
import 'package:drift_dev/src/lints/offset_without_limit_lint.dart'; | ||
import 'package:drift_dev/src/lints/unawaited_futures_in_transaction_lint.dart'; | ||
import 'package:meta/meta.dart'; | ||
|
||
@internal | ||
class DriftLinter extends PluginBase { | ||
@override | ||
List<LintRule> getLintRules(CustomLintConfigs configs) => [ | ||
unawaitedFuturesInMigration, | ||
unawaitedFuturesInTransaction, | ||
OffsetWithoutLimit(), | ||
DriftBuildErrors(), | ||
NonNullInsertWithIgnore() | ||
]; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import 'dart:io'; | ||
|
||
import 'package:analyzer/dart/analysis/results.dart'; | ||
import 'package:analyzer/dart/analysis/session.dart'; | ||
import 'package:analyzer/dart/ast/ast.dart'; | ||
import 'package:analyzer/dart/element/element.dart'; | ||
import 'package:analyzer/error/error.dart' hide LintCode; | ||
import 'package:analyzer/error/listener.dart'; | ||
import 'package:custom_lint_builder/custom_lint_builder.dart'; | ||
import 'package:drift_dev/src/analysis/backend.dart'; | ||
import 'package:drift_dev/src/analysis/driver/error.dart'; | ||
import 'package:drift_dev/src/analysis/options.dart'; | ||
import 'package:logging/logging.dart'; | ||
|
||
import '../analysis/driver/driver.dart'; | ||
|
||
final columnBuilderChecker = | ||
TypeChecker.fromName('DriftDatabase', packageName: 'drift'); | ||
|
||
class DriftBuildErrors extends DartLintRule { | ||
DriftBuildErrors() : super(code: _errorCode); | ||
|
||
static const _errorCode = LintCode( | ||
name: 'drift_build_errors', | ||
problemMessage: '{0}', | ||
errorSeverity: ErrorSeverity.ERROR, | ||
); | ||
LintCode get _warningCode => LintCode( | ||
name: _errorCode.name, | ||
problemMessage: _errorCode.problemMessage, | ||
errorSeverity: ErrorSeverity.WARNING); | ||
|
||
@override | ||
void run(CustomLintResolver resolver, ErrorReporter reporter, | ||
CustomLintContext context) async { | ||
final unit = await resolver.getResolvedUnitResult(); | ||
final backend = CustomLintBackend(unit.session); | ||
final driver = DriftAnalysisDriver(backend, const DriftOptions.defaults()); | ||
|
||
final file = await driver.fullyAnalyze(unit.uri); | ||
for (final error in file.allErrors) { | ||
if (error.span case final span?) { | ||
// ignore: deprecated_member_use | ||
reporter.reportErrorForSpan( | ||
error.level == DriftAnalysisErrorLevel.warning | ||
? _warningCode | ||
: _errorCode, | ||
span, | ||
[error.message.trim()]); | ||
} | ||
} | ||
} | ||
} | ||
|
||
class CustomLintBackend extends DriftBackend { | ||
@override | ||
final Logger log = Logger('drift_dev.CustomLintBackend'); | ||
final AnalysisSession session; | ||
|
||
CustomLintBackend(this.session); | ||
|
||
@override | ||
bool get canReadDart => true; | ||
|
||
@override | ||
Future<AstNode?> loadElementDeclaration(Element element) async { | ||
final library = element.library; | ||
if (library == null) return null; | ||
|
||
final info = await library.session.getResolvedLibraryByElement(library); | ||
if (info is ResolvedLibraryResult) { | ||
return info.getElementDeclaration(element)?.node; | ||
} else { | ||
return null; | ||
} | ||
} | ||
|
||
@override | ||
Future<String> readAsString(Uri uri) async { | ||
final file = session.getFile(uri.path); | ||
|
||
if (file is FileResult) { | ||
return file.content; | ||
} | ||
|
||
throw FileSystemException('Not a file result: $file'); | ||
} | ||
|
||
@override | ||
Future<LibraryElement> readDart(Uri uri) async { | ||
final result = await session.getLibraryByUri(uri.toString()); | ||
if (result is LibraryElementResult) { | ||
return result.element; | ||
} | ||
|
||
throw NotALibraryException(uri); | ||
} | ||
|
||
@override | ||
Future<Expression> resolveExpression( | ||
Uri context, String dartExpression, Iterable<String> imports) { | ||
throw CannotReadExpressionException('Not supported at the moment'); | ||
} | ||
|
||
@override | ||
Future<Element?> resolveTopLevelElement( | ||
Uri context, String reference, Iterable<Uri> imports) { | ||
throw UnimplementedError(); | ||
} | ||
|
||
@override | ||
Uri resolveUri(Uri base, String uriString) => base.resolve(uriString); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import 'package:analyzer/dart/ast/ast.dart'; | ||
import 'package:analyzer/error/error.dart' hide LintCode; | ||
import 'package:analyzer/error/listener.dart'; | ||
import 'package:custom_lint_builder/custom_lint_builder.dart'; | ||
|
||
final managerTypeChecker = | ||
TypeChecker.fromName('BaseTableManager', packageName: 'drift'); | ||
final insertStatementChecker = | ||
TypeChecker.fromName('InsertStatement', packageName: 'drift'); | ||
final insertOrIgnoreChecker = | ||
TypeChecker.fromName('InsertMode', packageName: 'drift'); | ||
|
||
class NonNullInsertWithIgnore extends DartLintRule { | ||
NonNullInsertWithIgnore() : super(code: _code); | ||
|
||
static const _code = LintCode( | ||
name: 'non_null_insert_with_ignore', | ||
problemMessage: | ||
'`insertReturning` and `createReturning` will throw an exception if a row isn\'t actually inserted. Use `createReturningOrNull` or `insertReturningOrNull` if you want to ignore conflicts.', | ||
errorSeverity: ErrorSeverity.WARNING, | ||
); | ||
|
||
@override | ||
void run(CustomLintResolver resolver, ErrorReporter reporter, | ||
CustomLintContext context) async { | ||
context.registry.addMethodInvocation( | ||
(node) { | ||
if (node.argumentList.arguments.isEmpty) return; | ||
switch (node.function) { | ||
case SimpleIdentifier func: | ||
if (func.name == "insertReturning" || | ||
func.name == "createReturning") { | ||
switch (func.parent) { | ||
case MethodInvocation func: | ||
final targetType = func.realTarget?.staticType; | ||
if (targetType != null) { | ||
if (managerTypeChecker.isSuperTypeOf(targetType) || | ||
insertStatementChecker.isExactlyType(targetType)) { | ||
final namedArgs = func.argumentList.arguments | ||
.whereType<NamedExpression>(); | ||
for (final arg in namedArgs) { | ||
if (arg.name.label.name == "mode") { | ||
switch (arg.expression) { | ||
case PrefixedIdentifier mode: | ||
if (mode.identifier.name == "insertOrIgnore") { | ||
print("Found insertOrIgnore"); | ||
reporter.atNode(node, _code); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should have a small section somewhere mentioning this explicitly (it can also be linked at the bottom of this page).
I'm wary about mentioning the
custom_lint
dependency here. We're already suggesting users install a lot of dependencies.IMO, we should:
custom_lint
, drift will work seamlessly with that and provide its own lints.custom_lint
is a requirement) that users trycustom_lint
to get quicker feedback about potential issues related to drift.I think the best way to do that would be to mention this on /Tools and then add a bullet point at the end of this page next to the others.