import 'package:analyzer/file_system/overlay_file_system.dart'; import 'package:analyzer/file_system/physical_file_system.dart'; import 'package:analyzer/src/dart/analysis/analysis_context_collection.dart'; import 'package:analyzer/src/dart/analysis/byte_store.dart'; import 'package:analyzer/src/dart/analysis/file_content_cache.dart'; import 'package:analyzer/src/util/performance/operation_performance.dart'; import 'package:linter/src/rules.dart'; void main() async { var resourceProvider = OverlayResourceProvider( PhysicalResourceProvider.INSTANCE, ); // withFineDependencies = true; registerLintRules(); var byteStore = MemoryByteStore(); // var byteStore = MemoryCachingByteStore( // FileByteStore('/Users/scheglov/tmp/2025/2025-02-21/cache'), // 1024 * 1024 * 128, // ); var packageRootPath = '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analyzer'; var libPath = '$packageRootPath/lib'; var targetPath = '$libPath/src/dart/ast/ast.dart'; var targetCode = resourceProvider.getFile(targetPath).readAsStringSync(); var collection = AnalysisContextCollectionImpl( resourceProvider: resourceProvider, sdkPath: '/Users/scheglov/Applications/dart-sdk', includedPaths: [ // '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analyzer/lib/src/dart/ast', // '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analyzer/lib/src/summary2', '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analyzer', // '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analysis_server', // '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/linter', // '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analysis_server_plugin', // '/Users/scheglov/Source/Dart/sdk.git/sdk/pkg/analyzer_cli', ], byteStore: byteStore, fileContentCache: FileContentCache(resourceProvider), // performanceLog: PerformanceLog(io.stdout), withFineDependencies: true, ); for (var analysisContext in collection.contexts) { for (var path in analysisContext.contextRoot.analyzedFiles()) { if (path.endsWith('.dart')) { analysisContext.driver.addFile(path); } } } await collection.scheduler.waitForIdle(); await pumpEventQueue(); print('\n' * 2); print('[S] Now idle'); print('-' * 64); { print('\n' * 2); var buffer = StringBuffer(); collection.scheduler.accumulatedPerformance.write(buffer: buffer); print(buffer); collection.scheduler.accumulatedPerformance = OperationPerformanceImpl( '', ); } // await Future.delayed(const Duration(seconds: 15), () => 0,); resourceProvider.setOverlay( targetPath, content: targetCode.replaceAll( 'final class RepresentationDeclarationImpl', 'final class RepresentationDeclarationImpl2', ), modificationStamp: 1, ); for (var analysisContext in collection.contexts) { analysisContext.changeFile(targetPath); } print('[S] CHANGED'); print('\n' * 2); // for (var analysisContext in collection.contexts) { // await analysisContext.applyPendingFileChanges(); // } // await collection.contexts.expand( // (analysisContext) => analysisContext.contextRoot // .analyzedFiles() // .where((path) => path.endsWith('.dart')) // .map((path) => collection.contextFor(path).currentSession.getErrors(path)), // ).toList().wait; // for (var analysisContext in collection.contexts) { // for (var path in analysisContext.contextRoot.analyzedFiles()) { // if (path.endsWith('.dart')) { // await analysisContext.currentSession.getErrors(path); // } // } // } await collection.scheduler.waitForIdle(); await pumpEventQueue(); print('\n' * 2); print('[S] Now idle'); print('-' * 64); { print('\n' * 2); var buffer = StringBuffer(); collection.scheduler.accumulatedPerformance.write(buffer: buffer); print(buffer); collection.scheduler.accumulatedPerformance = OperationPerformanceImpl( '', ); } print('[S] Disposing...'); await collection.dispose(); } final Stopwatch timer = Stopwatch()..start(); Future pumpEventQueue([int times = 5000]) { if (times == 0) return Future.value(); return Future.delayed(Duration.zero, () => pumpEventQueue(times - 1)); }