From 1196257bd0de3ed544407c03cf91d3e137c5bbcb Mon Sep 17 00:00:00 2001 From: "Maxim.Kolmakov" Date: Tue, 25 Oct 2022 12:34:19 +0200 Subject: [PATCH] AT-126 Open-source performance plugin Split performance plugin into core (and move it to community), async and YK. Move Cache Value Profiler to separate plugin. GitOrigin-RevId: 80e68080197e86d40c76be45d5438ec0eee39818 --- .idea/libraries/kodein_di_jvm.xml | 19 - .idea/libraries/qodana_sarif.xml | 14 - .idea/modules.xml | 5 +- .../intellij/build/IdeaCommunityProperties.kt | 6 +- intellij.idea.community.main.iml | 1 + .../build/CommunityRepositoryModules.kt | 1 + .../ide/startup/impl/StartupManagerImpl.kt | 1 + .../lang/lexer/IJPerfLexer.java | 703 ++++ .../lang/parser/IJPerfParser.java | 209 ++ .../lang/psi/IJPerfCommandLine.java | 16 + .../lang/psi/IJPerfCommandName.java | 17 + .../lang/psi/IJPerfDelayTypingOption.java | 10 + .../lang/psi/IJPerfElementTypes.java | 60 + .../lang/psi/IJPerfGotoOption.java | 10 + .../lang/psi/IJPerfOption.java | 19 + .../lang/psi/IJPerfOptionList.java | 13 + .../lang/psi/IJPerfSimpleOption.java | 10 + .../lang/psi/IJPerfStatement.java | 13 + .../lang/psi/IJPerfVisitor.java | 51 + .../lang/psi/impl/IJPerfCommandLineImpl.java | 42 + .../lang/psi/impl/IJPerfCommandNameImpl.java | 45 + .../psi/impl/IJPerfDelayTypingOptionImpl.java | 30 + .../lang/psi/impl/IJPerfGotoOptionImpl.java | 30 + .../lang/psi/impl/IJPerfOptionImpl.java | 48 + .../lang/psi/impl/IJPerfOptionListImpl.java | 36 + .../lang/psi/impl/IJPerfSimpleOptionImpl.java | 30 + .../lang/psi/impl/IJPerfStatementImpl.java | 36 + .../intellij.performanceTesting.iml | 51 + .../resources/META-INF/plugin.xml | 81 + .../InspectCodeExCommand.html | 13 + .../commandDescriptions/addFileCommand.html | 11 + .../commandDescriptions/altEnterCommand.html | 14 + .../buildProjectCommand.html | 14 + .../checkOnRedCodeCommand.html | 14 + .../cleanCachesCommand.html | 8 + .../compareIndicesCommand.html | 9 + .../commandDescriptions/delayTypeCommand.html | 14 + .../deleteFileCommand.html | 11 + .../doCompleteCommand.html | 5 + .../doHighlightingCommand.html | 9 + .../doLocalInspectionCommand.html | 8 + .../commandDescriptions/exitAppCommand.html | 8 + .../expandProjectMenuCommand.html | 10 + .../findUsagesCommand.html | 13 + .../gitCheckoutCommand.html | 16 + .../commandDescriptions/gotoCommand.html | 16 + .../inspectCodeCommand.html | 16 + .../memoryDumpCommand.html | 8 + .../commandDescriptions/openFileCommand.html | 10 + .../openProjectCommand.html | 22 + .../commandDescriptions/pressKeyCommand.html | 16 + .../commandDescriptions/projectCommand.html | 15 + .../commandDescriptions/reformatCommand.html | 8 + .../reloadFilesCommand.html | 11 + .../replaceTextCommand.html | 8 + .../runConfigurationCommand.html | 17 + .../runSingleInspectionCommand.html | 13 + .../searchEverywhereCommand.html | 14 + .../selectFileInProjectViewCommand.html | 9 + .../startPowerSaveCommand.html | 8 + .../startProfileCommand.html | 17 + .../stopPowerSaveCommand.html | 8 + .../stopProfileCommand.html | 17 + .../storeIndicesCommand.html | 8 + .../takeScreenshotCommand.html | 16 + .../waitForSmartCommand.html | 8 + .../PerformanceTestingBundle.properties | 79 + .../BaseCommandProvider.java | 70 + .../BaseRunCallbackHandler.java | 11 + .../performancePlugin/CommandLogger.java | 23 + .../performancePlugin/CommandProvider.java | 30 + .../performancePlugin/CommandsRunner.java | 35 + .../performancePlugin/CreateCommand.java | 9 + .../performancePlugin/OnEndListener.java | 6 + .../PerformanceTestSpan.java | 29 + .../PerformanceTestTotalTimeTimer.java | 27 + .../PerformanceTestingBundle.java | 26 + .../PerformanceTroubleInfoCollector.java | 19 + .../PlaybackRunnerExtended.java | 102 + .../ProjectIndexingComponent.java | 69 + .../performancePlugin/ProjectLoaded.java | 501 +++ .../performancePlugin/RunCallbackHandler.java | 17 + .../SpanBuilderWithSystemInfoAttributes.java | 86 + .../SpanWithOnEndListener.java | 72 + .../jetbrains/performancePlugin/Timer.java | 165 + .../actions/ExecuteScriptAction.java | 33 + .../OpenIndexingDiagnosticsAction.java | 34 + .../commands/AddFileCommand.kt | 54 + .../commands/CleanCaches.java | 39 + .../commands/CodeAnalysisCommand.kt | 108 + .../commands/CompareIndices.kt | 686 ++++ .../commands/CompareProjectFiles.kt | 225 ++ .../commands/CompletionCommand.java | 110 + .../commands/CorruptIndexesCommand.kt | 52 + ...CreateAllServicesAndExtensionsCommand.java | 36 + .../commands/DelayTypeCommand.java | 82 + .../commands/DeleteFileCommand.kt | 27 + .../commands/DoHighlighting.java | 75 + .../commands/DoLocalInspection.java | 129 + .../commands/DumpProjectFiles.kt | 78 + .../commands/EnterCommand.java | 74 + .../commands/ExitAppCommand.java | 58 + .../commands/ExitAppWithTimeoutCommand.java | 39 + .../commands/ExitMetrics.java | 17 + .../commands/ExpandEditorMenuCommand.java | 29 + .../commands/ExpandMainMenuCommand.java | 31 + .../commands/ExpandMenuCommand.java | 56 + .../commands/ExpandProjectMenuCommand.java | 29 + .../commands/FindUsagesCommand.java | 263 ++ .../commands/FlushIndexesCommand.kt | 42 + .../commands/GitCheckoutCommand.java | 80 + .../commands/GoToCommand.java | 78 + .../commands/InspectionCommand.java | 93 + .../commands/InspectionCommandEx.java | 304 ++ .../commands/MemoryCapture.kt | 30 + .../commands/MemoryDumpCommand.java | 48 + .../commands/MemoryMetrics.java | 31 + .../commands/MoveDirectoryCommand.java | 52 + .../commands/OpenFileCommand.kt | 58 + .../OpenFileWithTerminateCommand.java | 50 + .../commands/OpenProjectCommand.kt | 87 + .../commands/OpenProjectView.java | 43 + .../commands/OpenRandomFileCommand.kt | 97 + .../commands/PerformanceCommand.java | 51 + .../RecordCounterCollectorBaselinesCommand.kt | 17 + .../commands/RecordStateCollectorsCommand.kt | 50 + .../commands/RecoveryActionCommand.kt | 50 + .../commands/ReformatCommand.java | 33 + .../commands/ReloadFilesCommand.java | 24 + .../commands/ReplaceTextCommand.java | 55 + .../commands/RunClassInPlugin.java | 109 + .../commands/RunConfigurationCommand.java | 125 + .../commands/SearchEverywhereCommand.java | 86 + .../commands/SelectCommand.java | 64 + .../SelectFileInProjectViewCommand.java | 28 + .../commands/SetupProjectSdkCommand.java | 156 + .../commands/ShowAltEnter.java | 86 + .../commands/SingleInspectionCommand.java | 108 + .../commands/StartPowerSave.java | 37 + .../commands/StartProfileCommand.java | 51 + .../commands/StopPowerSave.java | 37 + .../commands/StopProfileCommand.java | 41 + .../commands/StoreIndices.kt | 126 + .../commands/TakeScreenshotCommand.java | 105 + .../TestTipsAndFeaturesIntegrationCommand.kt | 72 + .../commands/WaitForAsyncRefreshCommand.java | 26 + .../commands/WaitForSmartCommand.java | 58 + .../commands/WaitForVcsLogCommand.kt | 25 + .../performancePlugin/commands/Waiter.java | 24 + .../lang/IJPerfFileType.java | 45 + .../lang/IJPerfLanguage.java | 12 + .../lang/IJPerfParserDefinition.java | 66 + .../lang/IJPerfSyntaxHighlighter.java | 69 + .../lang/IJPerfSyntaxHighlighterFactory.java | 16 + .../lang/IJPerfTokenSets.java | 11 + .../IJPerfCompletionContributor.java | 41 + .../lang/doc/IJPerfDocumentationProvider.java | 86 + .../IJPerfStartStopProfileInspection.java | 112 + .../performancePlugin/lang/lexer/IJPerf.flex | 64 + .../lang/lexer/IJPerfLexerAdapter.java | 10 + .../performancePlugin/lang/psi/IJPerf.bnf | 26 + .../lang/psi/IJPerfElementFactory.java | 17 + .../lang/psi/IJPerfElementType.java | 13 + .../lang/psi/IJPerfFile.java | 26 + .../lang/psi/IJPerfPsiImplUtil.java | 23 + .../lang/psi/IJPerfTokenType.java | 18 + .../performancePlugin/profilers/Profiler.java | 61 + .../profilers/ProfilerHandlerUtils.java | 40 + .../profilers/ProfilersController.java | 47 + .../profilers/SnapshotOpener.java | 22 + .../ui/ExecuteScriptDialog.form | 51 + .../ui/ExecuteScriptDialog.java | 144 + .../ui/FinishScriptDialog.form | 35 + .../ui/FinishScriptDialog.java | 84 + .../utils/AbstractCallbackBasedCommand.java | 38 + .../utils/ActionCallbackProfilerStopper.java | 39 + .../performancePlugin/utils/EditorUtils.java | 23 + .../utils/HardwareCollector.java | 287 ++ .../utils/JvmRuntimeUtils.kt | 19 + .../utils/ResultsToFileProcessor.java | 64 + .../performancePlugin/utils/ScriptRunner.java | 77 + .../utils/StatisticCollector.java | 98 + .../utils/errors/ErrorCollector.kt | 9 + .../ToDirectoryWritingErrorCollector.kt | 47 + .../indexes/CurrentIndexedFileResolver.kt | 43 + .../testData/completion/afterCommand.ijperf | 1 + .../completion/betweenStatements.ijperf | 3 + .../testData/completion/doublePrefix.ijperf | 1 + .../testData/completion/emptyFile.ijperf | 1 + .../testData/completion/endOfStatement.ijperf | 1 + .../testData/completion/inOptionList.ijperf | 1 + .../testData/completion/onCommand.ijperf | 1 + .../testData/completion/singlePrefix.ijperf | 1 + .../testData/completion/withoutPrefix.ijperf | 1 + .../lexer/commandWithoutParams.ijperf | 1 + .../testData/lexer/commandWithoutParams.txt | 1 + .../testData/lexer/comment.ijperf | 1 + .../testData/lexer/comment.txt | 1 + .../testData/lexer/doublePrefixCommand.ijperf | 2 + .../testData/lexer/doublePrefixCommand.txt | 7 + .../lexer/filePathInParameters.ijperf | 15 + .../testData/lexer/filePathInParameters.txt | 59 + .../testData/lexer/numberOptions.ijperf | 1 + .../testData/lexer/numberOptions.txt | 5 + .../testData/lexer/optionWithValue.ijperf | 1 + .../testData/lexer/optionWithValue.txt | 5 + .../testData/lexer/pipeSeparatedOption.ijperf | 1 + .../testData/lexer/pipeSeparatedOption.txt | 5 + .../lexer/scriptWithEmptyLines.ijperf | 23 + .../testData/lexer/scriptWithEmptyLines.txt | 65 + .../testData/lexer/singlePrefixCommand.ijperf | 1 + .../testData/lexer/singlePrefixCommand.txt | 3 + .../lexer/spaceSeparatedParameters.ijperf | 1 + .../lexer/spaceSeparatedParameters.txt | 5 + .../spaceSeparatedParametersValue.ijperf | 1 + .../lexer/spaceSeparatedParametersValue.txt | 7 + .../lexer/textOptionWithSymbols.ijperf | 1 + .../testData/lexer/textOptionWithSymbols.txt | 5 + .../CommandWithFilePathInParameters.ijperf | 14 + .../CommandWithFilePathInParameters.txt | 126 + .../parser/CommandWithNumberOptions.ijperf | 1 + .../parser/CommandWithNumberOptions.txt | 12 + .../CommandWithPipeOptionSeparator.ijperf | 3 + .../parser/CommandWithPipeOptionSeparator.txt | 36 + .../parser/CommandWithSeveralOptions.ijperf | 1 + .../parser/CommandWithSeveralOptions.txt | 13 + .../CommandWithSeveralOptionsSeparated.ijperf | 3 + .../CommandWithSeveralOptionsSeparated.txt | 48 + .../CommandWithSeveralOptionsWithValue.ijperf | 1 + .../CommandWithSeveralOptionsWithValue.txt | 16 + .../parser/CommandWithSimpleOption.ijperf | 1 + .../parser/CommandWithSimpleOption.txt | 10 + .../CommandWithSimpleOptionWithValue.ijperf | 1 + .../CommandWithSimpleOptionWithValue.txt | 12 + .../parser/CommandWithoutOptions.ijperf | 2 + .../testData/parser/CommandWithoutOptions.txt | 10 + .../testData/parser/SimpleExample.ijperf | 12 + .../testData/parser/SimpleExample.txt | 140 + .../GenerifyExceptionMessageTest.kt | 82 + .../RunClassInPluginCommandTest.java | 48 + .../SetupProjectSdkCommandTest.java | 43 + .../jetbrains/performancePlugin/TestUtil.java | 14 + .../lang/completion/IJPerfCompletionTest.java | 101 + .../lang/lexer/IJPerfLexerTest.java | 71 + .../lang/parser/IJPerfParserTest.java | 61 + .../.gitignore | 4 - .../README.md | 17 - .../build.gradle | 66 - .../gradle/wrapper/gradle-wrapper.jar | Bin 59536 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 - .../gradlew | 234 -- .../gradlew.bat | 89 - .../intellij.tools.ide.metricsCollector.iml | 33 - .../collector/PerformanceMetrics.kt | 37 - .../collector/PerformanceMetricsDto.kt | 40 - .../collector/SystemMetrics.kt | 9 - .../metrics/indexingMetrics.kt | 165 - .../metricsCollector/metrics/openTelemetry.kt | 153 - .../publishing/ApplicationMetricDto.kt | 27 - .../metricsCollector/publishing/utils.kt | 28 - .../.gitignore | 4 - .../README.md | 2 - .../build.gradle | 82 - .../gradle/wrapper/gradle-wrapper.jar | Bin 59536 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 - .../intellij.tools.ide.starter.junit4/gradlew | 234 -- .../gradlew.bat | 89 - .../intellij.tools.ide.starter.junit4.iml | 34 - .../ide/starter/junit4/JUnit4StarterRule.kt | 78 - .../ide/starter/junit4/JUnit4TestWatcher.kt | 22 - .../ide/starter/junit4/testNameExtensions.kt | 19 - .../.gitignore | 4 - .../README.md | 2 - .../build.gradle | 86 - .../gradle/wrapper/gradle-wrapper.jar | Bin 59536 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 - .../intellij.tools.ide.starter.junit5/gradlew | 234 -- .../gradlew.bat | 89 - .../intellij.tools.ide.starter.junit5.iml | 36 - .../starter/junit5/JUnit5StarterAssistant.kt | 140 - .../ide/starter/junit5/JUnit5TestWatcher.kt | 23 - .../ide/starter/junit5/testInfoExtension.kt | 19 - .../.gitignore | 4 - .../README.md | 3 - .../build.gradle | 130 - .../gradle/wrapper/gradle-wrapper.jar | Bin 59536 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 - .../intellij.tools.ide.starter.tests/gradlew | 234 -- .../gradlew.bat | 89 - .../intellij.tools.ide.starter.tests.iml | 47 - .../org.mockito.plugins.MockMaker | 1 - .../opentelemetry/opentelemetry.json | 1 - .../opentelemetry/opentelemetry2.json | 3084 ----------------- .../opentelemetry_with_main_timer.json | 1 - .../tests/examples/data/GoLandCases.kt | 18 - .../tests/examples/data/IdeaCommunityCases.kt | 30 - .../starter/tests/examples/data/TestCases.kt | 20 - .../examples/junit4/IdeaJUnit4ExampleTests.kt | 48 - .../examples/junit5/IdeaJUnit5ExampleTest.kt | 72 - .../ide/starter/tests/unit/EventBusTest.kt | 60 - .../ide/starter/tests/unit/HttpClientTests.kt | 34 - .../starter/tests/unit/IdeDownloaderTest.kt | 95 - .../tests/unit/IdeProductProviderTest.kt | 12 - .../starter/tests/unit/OpenTelemetryTest.kt | 79 - .../tests/unit/PluginsInjectionTest.kt | 48 - .../tests/unit/ProfilerInjectionTest.kt | 65 - .../starter/tests/unit/ReportPublisherTest.kt | 69 - .../ide/starter/tests/unit/ReportingTest.kt | 100 - .../starter/tests/unit/RunIdeEventsTest.kt | 94 - .../tests/unit/TestRunnerInitEventsTest.kt | 83 - .../intellij.tools.ide.starter/.gitignore | 4 - .../intellij.tools.ide.starter/README.md | 159 - .../intellij.tools.ide.starter/build.gradle | 88 - .../gradle/wrapper/gradle-wrapper.jar | Bin 59536 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 - .../intellij.tools.ide.starter/gradlew | 234 -- .../intellij.tools.ide.starter/gradlew.bat | 89 - .../intellij.tools.ide.starter.iml | 66 - .../intellij.tools.ide.starter/jvmti/Makefile | 15 - .../jvmti/vmtrace.cpp | 119 - .../resources/.gitattributes | 3 - .../resources/ide.general.xml | 12 - .../resources/libvmtrace-aarch64.dylib | Bin 51141 -> 0 bytes .../resources/libvmtrace.dll | Bin 131584 -> 0 bytes .../resources/libvmtrace.dylib | Bin 34216 -> 0 bytes .../resources/libvmtrace.so | Bin 17288 -> 0 bytes .../resources/sarif/qodana.sarif.json | 34 - .../src/com/intellij/ide/starter/Const.kt | 7 - .../src/com/intellij/ide/starter/android.kt | 164 - .../ide/starter/buildTool/BuildTool.kt | 8 - .../buildTool/BuildToolDefaultProvider.kt | 9 - .../starter/buildTool/BuildToolProvider.kt | 9 - .../ide/starter/buildTool/BuildToolType.kt | 6 - .../ide/starter/buildTool/GradleBuildTool.kt | 110 - .../ide/starter/buildTool/MavenBuildTool.kt | 30 - .../src/com/intellij/ide/starter/bus/Event.kt | 6 - .../intellij/ide/starter/bus/EventCallback.kt | 14 - .../intellij/ide/starter/bus/EventState.kt | 14 - .../ide/starter/bus/EventsReceiver.kt | 105 - .../intellij/ide/starter/bus/Extensions.kt | 41 - .../com/intellij/ide/starter/bus/FlowBus.kt | 82 - .../src/com/intellij/ide/starter/bus/LICENSE | 13 - .../com/intellij/ide/starter/bus/Signal.kt | 3 - .../intellij/ide/starter/bus/StarterBus.kt | 3 - .../ide/starter/bus/StarterListener.kt | 3 - .../com/intellij/ide/starter/ci/CIServer.kt | 21 - .../com/intellij/ide/starter/ci/NoCIServer.kt | 37 - .../community/JetBrainsDataServiceClient.kt | 34 - .../community/ProductInfoRequestParameters.kt | 29 - .../starter/community/PublicIdeDownloader.kt | 65 - .../ide/starter/community/model/BuildType.kt | 6 - .../ide/starter/community/model/IdeModel.kt | 3 - .../starter/community/model/ReleaseInfo.kt | 20 - .../ide/starter/coroutine/CommonScope.kt | 9 - .../ide/starter/data/TestCaseTemplate.kt | 9 - .../intellij/ide/starter/di/diContainer.kt | 59 - .../src/com/intellij/ide/starter/golang.kt | 35 - .../ide/starter/ide/AndroidInstaller.kt | 28 - .../ide/starter/ide/IDEStartConfig.kt | 21 - .../ide/starter/ide/IDETestContext.kt | 568 --- .../ide/starter/ide/IdeArchiveExtractor.kt | 110 - .../ide/starter/ide/IdeDistribution.kt | 81 - .../ide/starter/ide/IdeDistributionFactory.kt | 17 - .../intellij/ide/starter/ide/IdeDownloader.kt | 8 - .../ide/starter/ide/IdeInstallator.kt | 10 - .../intellij/ide/starter/ide/IdeInstaller.kt | 7 - .../ide/starter/ide/IdeProductProvider.kt | 42 - .../ide/InstalledBackedIDEStartConfig.kt | 16 - .../intellij/ide/starter/ide/InstalledIde.kt | 26 - .../ide/starter/ide/LinuxIdeDistribution.kt | 130 - .../ide/starter/ide/MacOsIdeDistribution.kt | 105 - .../ide/starter/ide/SimpleInstaller.kt | 23 - .../ide/starter/ide/WindowsIdeDistribution.kt | 58 - .../intellij/ide/starter/ide/codeInjectors.kt | 10 - .../ide/starter/ide/command/CommandChain.kt | 42 - .../ide/command/MarshallableCommand.kt | 5 - .../ide/starter/models/IDEStartResult.kt | 20 - .../ide/starter/models/IDEStartupReports.kt | 16 - .../intellij/ide/starter/models/IdeInfo.kt | 51 - .../intellij/ide/starter/models/IdeProduct.kt | 33 - .../ide/starter/models/IdeProductImp.kt | 73 - .../ide/starter/models/OsDependentData.kt | 22 - .../intellij/ide/starter/models/TestCase.kt | 43 - .../intellij/ide/starter/models/VMLogsInfo.kt | 11 - .../intellij/ide/starter/models/VMOptions.kt | 261 -- .../ide/starter/models/VMOptionsDiff.kt | 13 - .../intellij/ide/starter/models/VMTrace.kt | 37 - .../intellij/ide/starter/path/GlobalPaths.kt | 57 - .../intellij/ide/starter/path/IDEDataPaths.kt | 84 - .../ide/starter/path/InstallerGlobalPaths.kt | 5 - .../ide/starter/plugins/PluginConfigurator.kt | 136 - .../starter/plugins/PluginInstalledState.kt | 8 - .../intellij/ide/starter/plugins/plugins.kt | 3 - .../starter/process/LinuxProcessMetaInfo.kt | 10 - .../starter/process/MacOsProcessMetaInfo.kt | 6 - .../ide/starter/process/ProcessMetaInfo.kt | 8 - .../process/exec/ExecOutputRedirect.kt | 101 - .../process/exec/ExecTimeoutException.kt | 9 - .../starter/process/exec/ProcessExecutor.kt | 228 -- .../ide/starter/process/exec/execUtil.kt | 58 - .../ide/starter/process/processUtils.kt | 261 -- .../ide/starter/profiler/ProfilerInjector.kt | 7 - .../ide/starter/profiler/ProfilerType.kt | 7 - .../ide/starter/project/projectInfo.kt | 92 - .../ide/starter/report/ErrorReporter.kt | 65 - .../ide/starter/report/FailureDetailsOnCI.kt | 21 - .../report/publisher/ReportPublisher.kt | 8 - .../impl/ConsoleTestResultPublisher.kt | 13 - .../impl/QodanaTestResultPublisher.kt | 15 - .../ide/starter/report/qodana/QodanaClient.kt | 13 - .../ide/starter/report/sarif/SarifBuilder.kt | 48 - .../sarif/TestContextToQodanaSarifMapper.kt | 42 - .../ide/starter/runner/CodeBuilderHost.kt | 33 - .../ide/starter/runner/CurrentTestMethod.kt | 27 - .../ide/starter/runner/IDECommandLine.kt | 10 - .../ide/starter/runner/IDERunContext.kt | 368 -- .../ide/starter/runner/IdeLaunchEvent.kt | 8 - .../ide/starter/runner/TestContainer.kt | 112 - .../ide/starter/runner/TestContainerImpl.kt | 15 - .../runner/TestContextInitializedEvent.kt | 7 - .../ide/starter/runner/TestWatcherActions.kt | 24 - .../ide/starter/sdk/JdkDownloadItem.kt | 25 - .../ide/starter/sdk/JdkDownloaderFacade.kt | 122 - .../intellij/ide/starter/sdk/JdkItemPaths.kt | 5 - .../intellij/ide/starter/sdk/JdkVersion.kt | 12 - .../com/intellij/ide/starter/sdk/SdkObject.kt | 9 - .../src/com/intellij/ide/starter/sdk/sdk.kt | 10 - .../com/intellij/ide/starter/system/OsType.kt | 8 - .../intellij/ide/starter/system/SystemInfo.kt | 39 - .../intellij/ide/starter/utils/FileSystem.kt | 251 -- .../src/com/intellij/ide/starter/utils/Git.kt | 65 - .../intellij/ide/starter/utils/HttpClient.kt | 92 - .../com/intellij/ide/starter/utils/hash.kt | 52 - .../com/intellij/ide/starter/utils/logging.kt | 33 - .../intellij/ide/starter/utils/memoryFs.kt | 14 - .../com/intellij/ide/starter/utils/retry.kt | 34 - .../com/intellij/ide/starter/utils/size.kt | 14 - .../ide/starter/utils/testNameExtension.kt | 38 - .../com/intellij/ide/starter/utils/utils.kt | 298 -- .../wsl/WslDistributionNotFoundException.kt | 38 - .../.gitignore | 4 - .../README.md | 14 - .../build.gradle | 101 - .../gradle/wrapper/gradle-wrapper.jar | Bin 59536 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 - .../gradlew | 234 -- .../gradlew.bat | 89 - .../intellij.tools.plugin.checker.tests.iml | 41 - .../plugin/checker/data/IdeaUltimateCases.kt | 30 - .../tools/plugin/checker/data/TestCases.kt | 9 - .../checker/marketplace/MarketPlaceEvent.kt | 13 - .../checker/tests/EventToTestCaseParams.kt | 6 - .../plugin/checker/tests/InstallPluginTest.kt | 79 - 453 files changed, 11477 insertions(+), 14044 deletions(-) delete mode 100644 .idea/libraries/kodein_di_jvm.xml delete mode 100644 .idea/libraries/qodana_sarif.xml create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/lexer/IJPerfLexer.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/parser/IJPerfParser.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfCommandLine.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfCommandName.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfDelayTypingOption.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfElementTypes.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfGotoOption.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfOption.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfOptionList.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfSimpleOption.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfStatement.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/IJPerfVisitor.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfCommandLineImpl.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfCommandNameImpl.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfDelayTypingOptionImpl.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfGotoOptionImpl.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfOptionImpl.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfOptionListImpl.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfSimpleOptionImpl.java create mode 100644 plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/psi/impl/IJPerfStatementImpl.java create mode 100644 plugins/performanceTesting/intellij.performanceTesting.iml create mode 100644 plugins/performanceTesting/resources/META-INF/plugin.xml create mode 100644 plugins/performanceTesting/resources/commandDescriptions/InspectCodeExCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/addFileCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/altEnterCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/buildProjectCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/checkOnRedCodeCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/cleanCachesCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/compareIndicesCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/delayTypeCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/deleteFileCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/doCompleteCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/doHighlightingCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/doLocalInspectionCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/exitAppCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/expandProjectMenuCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/findUsagesCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/gitCheckoutCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/gotoCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/inspectCodeCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/memoryDumpCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/openFileCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/openProjectCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/pressKeyCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/projectCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/reformatCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/reloadFilesCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/replaceTextCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/runConfigurationCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/runSingleInspectionCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/searchEverywhereCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/selectFileInProjectViewCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/startPowerSaveCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/startProfileCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/stopPowerSaveCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/stopProfileCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/storeIndicesCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/takeScreenshotCommand.html create mode 100644 plugins/performanceTesting/resources/commandDescriptions/waitForSmartCommand.html create mode 100644 plugins/performanceTesting/resources/messages/PerformanceTestingBundle.properties create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/BaseCommandProvider.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/BaseRunCallbackHandler.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/CommandLogger.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/CommandProvider.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/CommandsRunner.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/CreateCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/OnEndListener.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/PerformanceTestSpan.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/PerformanceTestTotalTimeTimer.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/PerformanceTestingBundle.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/PerformanceTroubleInfoCollector.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/PlaybackRunnerExtended.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/ProjectIndexingComponent.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/ProjectLoaded.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/RunCallbackHandler.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/SpanBuilderWithSystemInfoAttributes.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/SpanWithOnEndListener.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/Timer.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/actions/ExecuteScriptAction.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/actions/OpenIndexingDiagnosticsAction.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/AddFileCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/CleanCaches.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/CodeAnalysisCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/CompareIndices.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/CompareProjectFiles.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/CompletionCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/CorruptIndexesCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/CreateAllServicesAndExtensionsCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/DelayTypeCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/DeleteFileCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/DoHighlighting.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/DoLocalInspection.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/DumpProjectFiles.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/EnterCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ExitAppCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ExitAppWithTimeoutCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ExitMetrics.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ExpandEditorMenuCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ExpandMainMenuCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ExpandMenuCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ExpandProjectMenuCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/FindUsagesCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/FlushIndexesCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/GitCheckoutCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/GoToCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/InspectionCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/InspectionCommandEx.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/MemoryCapture.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/MemoryDumpCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/MemoryMetrics.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/MoveDirectoryCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/OpenFileCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/OpenFileWithTerminateCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/OpenProjectCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/OpenProjectView.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/OpenRandomFileCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/PerformanceCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/RecordCounterCollectorBaselinesCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/RecordStateCollectorsCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/RecoveryActionCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ReformatCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ReloadFilesCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ReplaceTextCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/RunClassInPlugin.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/RunConfigurationCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/SearchEverywhereCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/SelectCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/SelectFileInProjectViewCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/SetupProjectSdkCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/ShowAltEnter.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/SingleInspectionCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/StartPowerSave.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/StartProfileCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/StopPowerSave.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/StopProfileCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/StoreIndices.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/TakeScreenshotCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/TestTipsAndFeaturesIntegrationCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/WaitForAsyncRefreshCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/WaitForSmartCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/WaitForVcsLogCommand.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/commands/Waiter.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/IJPerfFileType.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/IJPerfLanguage.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/IJPerfParserDefinition.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/IJPerfSyntaxHighlighter.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/IJPerfSyntaxHighlighterFactory.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/IJPerfTokenSets.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/completion/IJPerfCompletionContributor.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/doc/IJPerfDocumentationProvider.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/inspections/IJPerfStartStopProfileInspection.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/lexer/IJPerf.flex create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/lexer/IJPerfLexerAdapter.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/psi/IJPerf.bnf create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/psi/IJPerfElementFactory.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/psi/IJPerfElementType.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/psi/IJPerfFile.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/psi/IJPerfPsiImplUtil.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/lang/psi/IJPerfTokenType.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/profilers/Profiler.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/profilers/ProfilerHandlerUtils.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/profilers/ProfilersController.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/profilers/SnapshotOpener.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/ui/ExecuteScriptDialog.form create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/ui/ExecuteScriptDialog.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/ui/FinishScriptDialog.form create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/ui/FinishScriptDialog.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/AbstractCallbackBasedCommand.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/ActionCallbackProfilerStopper.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/EditorUtils.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/HardwareCollector.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/JvmRuntimeUtils.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/ResultsToFileProcessor.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/ScriptRunner.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/StatisticCollector.java create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/errors/ErrorCollector.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/errors/ToDirectoryWritingErrorCollector.kt create mode 100644 plugins/performanceTesting/src/com/jetbrains/performancePlugin/utils/indexes/CurrentIndexedFileResolver.kt create mode 100644 plugins/performanceTesting/testData/completion/afterCommand.ijperf create mode 100644 plugins/performanceTesting/testData/completion/betweenStatements.ijperf create mode 100644 plugins/performanceTesting/testData/completion/doublePrefix.ijperf create mode 100644 plugins/performanceTesting/testData/completion/emptyFile.ijperf create mode 100644 plugins/performanceTesting/testData/completion/endOfStatement.ijperf create mode 100644 plugins/performanceTesting/testData/completion/inOptionList.ijperf create mode 100644 plugins/performanceTesting/testData/completion/onCommand.ijperf create mode 100644 plugins/performanceTesting/testData/completion/singlePrefix.ijperf create mode 100644 plugins/performanceTesting/testData/completion/withoutPrefix.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/commandWithoutParams.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/commandWithoutParams.txt create mode 100644 plugins/performanceTesting/testData/lexer/comment.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/comment.txt create mode 100644 plugins/performanceTesting/testData/lexer/doublePrefixCommand.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/doublePrefixCommand.txt create mode 100644 plugins/performanceTesting/testData/lexer/filePathInParameters.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/filePathInParameters.txt create mode 100644 plugins/performanceTesting/testData/lexer/numberOptions.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/numberOptions.txt create mode 100644 plugins/performanceTesting/testData/lexer/optionWithValue.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/optionWithValue.txt create mode 100644 plugins/performanceTesting/testData/lexer/pipeSeparatedOption.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/pipeSeparatedOption.txt create mode 100644 plugins/performanceTesting/testData/lexer/scriptWithEmptyLines.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/scriptWithEmptyLines.txt create mode 100644 plugins/performanceTesting/testData/lexer/singlePrefixCommand.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/singlePrefixCommand.txt create mode 100644 plugins/performanceTesting/testData/lexer/spaceSeparatedParameters.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/spaceSeparatedParameters.txt create mode 100644 plugins/performanceTesting/testData/lexer/spaceSeparatedParametersValue.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/spaceSeparatedParametersValue.txt create mode 100644 plugins/performanceTesting/testData/lexer/textOptionWithSymbols.ijperf create mode 100644 plugins/performanceTesting/testData/lexer/textOptionWithSymbols.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithFilePathInParameters.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithFilePathInParameters.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithNumberOptions.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithNumberOptions.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithPipeOptionSeparator.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithPipeOptionSeparator.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSeveralOptions.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSeveralOptions.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSeveralOptionsSeparated.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSeveralOptionsSeparated.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSeveralOptionsWithValue.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSeveralOptionsWithValue.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSimpleOption.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSimpleOption.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSimpleOptionWithValue.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithSimpleOptionWithValue.txt create mode 100644 plugins/performanceTesting/testData/parser/CommandWithoutOptions.ijperf create mode 100644 plugins/performanceTesting/testData/parser/CommandWithoutOptions.txt create mode 100644 plugins/performanceTesting/testData/parser/SimpleExample.ijperf create mode 100644 plugins/performanceTesting/testData/parser/SimpleExample.txt create mode 100644 plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/GenerifyExceptionMessageTest.kt create mode 100644 plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/RunClassInPluginCommandTest.java create mode 100644 plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/SetupProjectSdkCommandTest.java create mode 100644 plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/TestUtil.java create mode 100644 plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/lang/completion/IJPerfCompletionTest.java create mode 100644 plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/lang/lexer/IJPerfLexerTest.java create mode 100644 plugins/performanceTesting/testSrc/com/jetbrains/performancePlugin/lang/parser/IJPerfParserTest.java delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/.gitignore delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/README.md delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/build.gradle delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/gradle/wrapper/gradle-wrapper.jar delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/gradle/wrapper/gradle-wrapper.properties delete mode 100755 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/gradlew delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/gradlew.bat delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/intellij.tools.ide.metricsCollector.iml delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/src/com/intellij/metricsCollector/collector/PerformanceMetrics.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/src/com/intellij/metricsCollector/collector/PerformanceMetricsDto.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/src/com/intellij/metricsCollector/collector/SystemMetrics.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/src/com/intellij/metricsCollector/metrics/indexingMetrics.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/src/com/intellij/metricsCollector/metrics/openTelemetry.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/src/com/intellij/metricsCollector/publishing/ApplicationMetricDto.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.metricsCollector/src/com/intellij/metricsCollector/publishing/utils.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/.gitignore delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/README.md delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/build.gradle delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/gradle/wrapper/gradle-wrapper.jar delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/gradle/wrapper/gradle-wrapper.properties delete mode 100755 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/gradlew delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/gradlew.bat delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/intellij.tools.ide.starter.junit4.iml delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/src/com/intellij/ide/starter/junit4/JUnit4StarterRule.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/src/com/intellij/ide/starter/junit4/JUnit4TestWatcher.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit4/src/com/intellij/ide/starter/junit4/testNameExtensions.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/.gitignore delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/README.md delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/build.gradle delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/gradle/wrapper/gradle-wrapper.jar delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/gradle/wrapper/gradle-wrapper.properties delete mode 100755 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/gradlew delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/gradlew.bat delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/intellij.tools.ide.starter.junit5.iml delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/src/com/intellij/ide/starter/junit5/JUnit5StarterAssistant.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/src/com/intellij/ide/starter/junit5/JUnit5TestWatcher.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.junit5/src/com/intellij/ide/starter/junit5/testInfoExtension.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/.gitignore delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/README.md delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/build.gradle delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/gradle/wrapper/gradle-wrapper.jar delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/gradle/wrapper/gradle-wrapper.properties delete mode 100755 tools/ideTestingFramework/intellij.tools.ide.starter.tests/gradlew delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/gradlew.bat delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/intellij.tools.ide.starter.tests.iml delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testResources/mockito-extensions/org.mockito.plugins.MockMaker delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testResources/opentelemetry/opentelemetry.json delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testResources/opentelemetry/opentelemetry2.json delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testResources/opentelemetry/opentelemetry_with_main_timer.json delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/examples/data/GoLandCases.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/examples/data/IdeaCommunityCases.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/examples/data/TestCases.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/examples/junit4/IdeaJUnit4ExampleTests.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/examples/junit5/IdeaJUnit5ExampleTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/EventBusTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/HttpClientTests.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/IdeDownloaderTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/IdeProductProviderTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/OpenTelemetryTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/PluginsInjectionTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/ProfilerInjectionTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/ReportPublisherTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/ReportingTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/RunIdeEventsTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter.tests/testSrc/com/intellij/ide/starter/tests/unit/TestRunnerInitEventsTest.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/.gitignore delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/README.md delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/build.gradle delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/gradle/wrapper/gradle-wrapper.jar delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/gradle/wrapper/gradle-wrapper.properties delete mode 100755 tools/ideTestingFramework/intellij.tools.ide.starter/gradlew delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/gradlew.bat delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/intellij.tools.ide.starter.iml delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/jvmti/Makefile delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/jvmti/vmtrace.cpp delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/resources/.gitattributes delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/resources/ide.general.xml delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/resources/libvmtrace-aarch64.dylib delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/resources/libvmtrace.dll delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/resources/libvmtrace.dylib delete mode 100755 tools/ideTestingFramework/intellij.tools.ide.starter/resources/libvmtrace.so delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/resources/sarif/qodana.sarif.json delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/Const.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/android.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/buildTool/BuildTool.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/buildTool/BuildToolDefaultProvider.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/buildTool/BuildToolProvider.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/buildTool/BuildToolType.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/buildTool/GradleBuildTool.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/buildTool/MavenBuildTool.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/Event.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/EventCallback.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/EventState.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/EventsReceiver.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/Extensions.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/FlowBus.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/LICENSE delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/Signal.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/StarterBus.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/bus/StarterListener.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ci/CIServer.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ci/NoCIServer.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/community/JetBrainsDataServiceClient.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/community/ProductInfoRequestParameters.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/community/PublicIdeDownloader.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/community/model/BuildType.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/community/model/IdeModel.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/community/model/ReleaseInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/coroutine/CommonScope.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/data/TestCaseTemplate.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/di/diContainer.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/golang.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/AndroidInstaller.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IDEStartConfig.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IDETestContext.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IdeArchiveExtractor.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IdeDistribution.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IdeDistributionFactory.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IdeDownloader.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IdeInstallator.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IdeInstaller.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/IdeProductProvider.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/InstalledBackedIDEStartConfig.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/InstalledIde.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/LinuxIdeDistribution.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/MacOsIdeDistribution.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/SimpleInstaller.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/WindowsIdeDistribution.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/codeInjectors.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/command/CommandChain.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/ide/command/MarshallableCommand.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/IDEStartResult.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/IDEStartupReports.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/IdeInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/IdeProduct.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/IdeProductImp.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/OsDependentData.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/TestCase.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/VMLogsInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/VMOptions.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/VMOptionsDiff.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/models/VMTrace.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/path/GlobalPaths.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/path/IDEDataPaths.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/path/InstallerGlobalPaths.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/plugins/PluginConfigurator.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/plugins/PluginInstalledState.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/plugins/plugins.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/LinuxProcessMetaInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/MacOsProcessMetaInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/ProcessMetaInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/exec/ExecOutputRedirect.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/exec/ExecTimeoutException.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/exec/ProcessExecutor.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/exec/execUtil.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/process/processUtils.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/profiler/ProfilerInjector.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/profiler/ProfilerType.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/project/projectInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/ErrorReporter.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/FailureDetailsOnCI.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/publisher/ReportPublisher.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/publisher/impl/ConsoleTestResultPublisher.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/publisher/impl/QodanaTestResultPublisher.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/qodana/QodanaClient.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/sarif/SarifBuilder.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/report/sarif/TestContextToQodanaSarifMapper.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/CodeBuilderHost.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/CurrentTestMethod.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/IDECommandLine.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/IDERunContext.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/IdeLaunchEvent.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/TestContainer.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/TestContainerImpl.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/TestContextInitializedEvent.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/runner/TestWatcherActions.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/sdk/JdkDownloadItem.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/sdk/JdkDownloaderFacade.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/sdk/JdkItemPaths.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/sdk/JdkVersion.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/sdk/SdkObject.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/sdk/sdk.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/system/OsType.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/system/SystemInfo.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/FileSystem.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/Git.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/HttpClient.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/hash.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/logging.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/memoryFs.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/retry.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/size.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/testNameExtension.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/utils/utils.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.ide.starter/src/com/intellij/ide/starter/wsl/WslDistributionNotFoundException.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/.gitignore delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/README.md delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/build.gradle delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/gradle/wrapper/gradle-wrapper.jar delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/gradle/wrapper/gradle-wrapper.properties delete mode 100755 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/gradlew delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/gradlew.bat delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/intellij.tools.plugin.checker.tests.iml delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/testSrc/com/intellij/tools/plugin/checker/data/IdeaUltimateCases.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/testSrc/com/intellij/tools/plugin/checker/data/TestCases.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/testSrc/com/intellij/tools/plugin/checker/marketplace/MarketPlaceEvent.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/testSrc/com/intellij/tools/plugin/checker/tests/EventToTestCaseParams.kt delete mode 100644 tools/ideTestingFramework/intellij.tools.plugin.checker.tests/testSrc/com/intellij/tools/plugin/checker/tests/InstallPluginTest.kt diff --git a/.idea/libraries/kodein_di_jvm.xml b/.idea/libraries/kodein_di_jvm.xml deleted file mode 100644 index 11b5c2e7ad8d..000000000000 --- a/.idea/libraries/kodein_di_jvm.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/qodana_sarif.xml b/.idea/libraries/qodana_sarif.xml deleted file mode 100644 index b89e0a50a6fe..000000000000 --- a/.idea/libraries/qodana_sarif.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml index 26a779390a1f..966a9bcf3d89 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -774,6 +774,7 @@ + @@ -1032,10 +1033,6 @@ - - - - diff --git a/build/src/org/jetbrains/intellij/build/IdeaCommunityProperties.kt b/build/src/org/jetbrains/intellij/build/IdeaCommunityProperties.kt index 221ed7844682..323a0c58d9d3 100644 --- a/build/src/org/jetbrains/intellij/build/IdeaCommunityProperties.kt +++ b/build/src/org/jetbrains/intellij/build/IdeaCommunityProperties.kt @@ -26,11 +26,7 @@ open class IdeaCommunityProperties(private val communityHomeDir: Path) : BaseIde "intellij.platform.debugger.testFramework", "intellij.platform.vcs.testFramework", "intellij.platform.externalSystem.testFramework", - "intellij.maven.testFramework", - "intellij.tools.ide.starter", - "intellij.tools.ide.metricsCollector", - "intellij.tools.ide.starter.junit4", - "intellij.tools.ide.starter.junit5" + "intellij.maven.testFramework" ) } diff --git a/intellij.idea.community.main.iml b/intellij.idea.community.main.iml index 9e4f3ba703fe..e41123f56441 100644 --- a/intellij.idea.community.main.iml +++ b/intellij.idea.community.main.iml @@ -198,5 +198,6 @@ + \ No newline at end of file diff --git a/platform/build-scripts/src/org/jetbrains/intellij/build/CommunityRepositoryModules.kt b/platform/build-scripts/src/org/jetbrains/intellij/build/CommunityRepositoryModules.kt index da4ee90dc572..f1da062dc15c 100644 --- a/platform/build-scripts/src/org/jetbrains/intellij/build/CommunityRepositoryModules.kt +++ b/platform/build-scripts/src/org/jetbrains/intellij/build/CommunityRepositoryModules.kt @@ -70,6 +70,7 @@ object CommunityRepositoryModules { spec.withModule("intellij.xml.langInjection", "IntelliLang.jar") spec.withModule("intellij.java.langInjection.jps") }, + plugin(listOf("intellij.performanceTesting")), plugin("intellij.tasks.core") { spec -> spec.directoryName = "tasks" spec.withModule("intellij.tasks") diff --git a/platform/platform-impl/src/com/intellij/ide/startup/impl/StartupManagerImpl.kt b/platform/platform-impl/src/com/intellij/ide/startup/impl/StartupManagerImpl.kt index 312ad17108a0..cb4a683e6590 100644 --- a/platform/platform-impl/src/com/intellij/ide/startup/impl/StartupManagerImpl.kt +++ b/platform/platform-impl/src/com/intellij/ide/startup/impl/StartupManagerImpl.kt @@ -192,6 +192,7 @@ open class StartupManagerImpl(private val project: Project) : StartupManagerEx() val pluginId = adapter.pluginDescriptor.pluginId if (!isCorePlugin(adapter.pluginDescriptor) && pluginId.idString != "com.jetbrains.performancePlugin" && pluginId.idString != "com.intellij.clion-makefile" + && pluginId.idString != "com.jetbrains.performancePlugin.yourkit" && pluginId.idString != "com.intellij.clion-swift" && pluginId.idString != "com.intellij.appcode" && pluginId.idString != "com.intellij.clion-compdb" diff --git a/plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/lexer/IJPerfLexer.java b/plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/lexer/IJPerfLexer.java new file mode 100644 index 000000000000..50d7d4baf509 --- /dev/null +++ b/plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/lexer/IJPerfLexer.java @@ -0,0 +1,703 @@ +/* The following code was generated by JFlex 1.7.0 tweaked for IntelliJ platform */ + +package com.jetbrains.performancePlugin.lang.lexer; + +import com.jetbrains.performancePlugin.lang.psi.IJPerfElementTypes; +import com.intellij.psi.tree.IElementType; +import com.intellij.psi.TokenType; +import com.intellij.lexer.FlexLexer; + + +/** + * This class is a scanner generated by + * JFlex 1.7.0 + * from the specification file IJPerf.flex + */ +class IJPerfLexer implements FlexLexer { + + /** This character denotes the end of file */ + public static final int YYEOF = -1; + + /** initial size of the lookahead buffer */ + private static final int ZZ_BUFFERSIZE = 16384; + + /** lexical states */ + public static final int YYINITIAL = 0; + public static final int WAITING_INPUT = 2; + public static final int WAITING_TEXT = 4; + public static final int WAITING_LAST_OPTION = 6; + + /** + * ZZ_LEXSTATE[l] is the state in the DFA for the lexical state l + * ZZ_LEXSTATE[l+1] is the state in the DFA for the lexical state l + * at the beginning of a line + * l is of the form l = 2*k, k a non negative integer + */ + private static final int ZZ_LEXSTATE[] = { + 0, 0, 1, 1, 2, 2, 3, 3 + }; + + /** + * Translates characters to character classes + * Chosen bits are [12, 6, 3] + * Total runtime size is 15696 bytes + */ + public static int ZZ_CMAP(int ch) { + return ZZ_CMAP_A[(ZZ_CMAP_Y[(ZZ_CMAP_Z[ch>>9]<<6)|((ch>>3)&0x3f)]<<3)|(ch&0x7)]; + } + + /* The ZZ_CMAP_Z table has 2176 entries */ + static final char ZZ_CMAP_Z[] = zzUnpackCMap( + "\1\0\1\1\1\2\1\3\1\4\1\5\1\6\1\7\1\10\1\11\1\12\1\13\1\14\1\15\1\16\1\17\1"+ + "\20\5\21\1\22\1\23\1\24\1\21\14\25\1\26\50\25\1\27\2\25\1\30\1\31\1\32\1\33"+ + "\25\25\1\34\20\21\1\35\1\36\1\37\1\40\1\41\1\42\1\43\1\44\1\45\1\46\1\47\1"+ + "\21\1\50\1\51\1\52\1\53\1\54\1\55\1\56\1\21\1\25\1\57\1\60\5\21\2\25\1\61"+ + "\7\21\1\25\1\62\20\21\1\25\1\63\1\21\1\64\13\25\1\65\1\25\1\66\22\21\1\67"+ + "\1\70\4\21\1\71\11\21\1\72\1\73\1\74\1\75\1\21\1\76\2\21\1\77\3\21\1\100\2"+ + "\21\1\101\10\21\123\25\1\102\7\25\1\103\1\104\12\25\1\105\15\25\1\106\6\21"+ + "\1\25\1\107\u0582\21\1\110\u017f\21"); + + /* The ZZ_CMAP_Y table has 4672 entries */ + static final char ZZ_CMAP_Y[] = zzUnpackCMap( + "\1\0\1\1\1\0\1\2\1\3\1\4\1\5\1\6\1\7\2\0\1\10\1\7\2\0\1\11\1\12\3\0\1\13\1"+ + "\14\1\15\1\16\2\0\1\17\3\0\1\17\71\0\1\20\1\0\1\21\1\22\1\23\1\24\2\22\16"+ + "\0\1\25\1\26\1\27\1\30\2\0\1\31\11\0\1\32\21\0\1\31\1\33\24\0\1\7\3\0\1\17"+ + "\1\34\1\7\4\0\1\35\1\7\4\0\1\32\1\36\1\22\3\0\2\37\1\22\1\40\1\41\1\0\1\42"+ + "\10\0\1\5\1\43\14\0\1\44\1\32\1\0\1\45\1\5\1\46\1\22\1\35\7\0\1\47\14\0\1"+ + "\21\1\22\1\5\1\50\4\0\1\40\1\16\5\0\1\40\2\22\3\0\1\2\1\0\1\37\6\22\2\0\1"+ + "\25\1\40\2\22\1\51\21\0\1\52\1\5\1\7\1\0\1\44\1\53\1\54\2\0\1\45\1\55\1\56"+ + "\1\53\1\57\1\35\1\60\1\52\1\5\1\2\1\61\1\62\1\63\1\54\2\0\1\45\1\64\1\65\1"+ + "\63\1\66\1\34\1\67\1\70\1\5\1\40\1\22\1\62\1\32\1\31\2\0\1\45\1\71\1\56\1"+ + "\32\1\72\1\73\1\22\1\52\1\5\1\34\1\7\1\62\1\53\1\54\2\0\1\45\1\71\1\56\1\53"+ + "\1\66\1\74\1\60\1\52\1\5\1\34\1\22\1\75\1\76\1\77\1\100\1\61\1\76\1\0\1\20"+ + "\1\76\1\77\1\101\1\22\1\70\1\5\1\22\1\34\1\44\1\25\1\45\2\0\1\45\1\0\1\102"+ + "\1\25\1\77\1\103\1\37\1\52\1\5\2\22\1\44\1\25\1\45\2\0\1\45\1\44\1\56\1\25"+ + "\1\77\1\103\1\27\1\52\1\5\1\104\1\22\1\44\1\25\1\45\5\0\1\25\1\105\1\51\1"+ + "\35\1\52\1\5\1\22\1\33\1\75\1\0\1\17\1\33\2\0\1\31\1\106\1\17\1\107\1\110"+ + "\1\0\1\70\1\5\1\111\1\22\1\7\6\0\1\63\1\0\1\17\1\5\1\112\4\22\1\113\1\114"+ + "\1\51\1\7\1\115\1\75\1\0\1\72\1\110\1\40\1\5\1\116\4\22\1\73\2\22\1\21\1\5"+ + "\1\112\1\117\1\120\1\0\1\7\3\0\1\23\1\7\1\0\1\25\2\0\1\7\3\0\1\23\1\27\7\22"+ + "\10\0\1\5\1\112\10\0\1\5\1\121\4\0\1\32\1\15\5\0\1\122\51\0\1\77\1\17\1\77"+ + "\5\0\1\77\4\0\1\77\1\17\1\77\1\0\1\17\7\0\1\77\10\0\1\47\4\22\2\0\2\22\12"+ + "\0\2\40\1\7\114\0\1\53\2\0\1\7\2\0\1\37\11\0\1\76\1\0\1\73\1\0\1\25\1\23\1"+ + "\22\2\0\1\23\1\22\2\0\1\2\1\22\1\0\1\25\1\123\1\22\12\0\1\124\1\125\1\5\1"+ + "\112\3\22\1\126\1\5\1\112\13\0\1\22\5\0\1\37\10\0\1\40\1\22\3\0\1\17\1\0\1"+ + "\2\1\0\1\2\1\70\1\5\3\0\1\40\1\23\1\22\5\0\1\2\3\0\1\21\1\5\1\112\4\22\3\0"+ + "\1\2\7\0\1\17\3\0\1\53\1\5\1\112\1\5\1\112\1\35\1\22\1\0\1\40\10\22\11\0\1"+ + "\2\1\5\1\112\1\22\1\127\1\2\1\22\6\0\1\5\1\50\6\0\1\2\1\22\7\0\1\22\1\5\1"+ + "\130\1\5\1\50\3\0\1\40\1\0\1\73\10\22\1\122\4\0\1\21\37\0\1\31\42\0\2\40\4"+ + "\0\2\40\1\0\1\131\3\0\1\40\6\0\1\25\1\110\1\132\1\23\1\133\1\2\1\0\1\23\1"+ + "\132\1\23\1\22\1\127\3\22\1\134\1\22\1\35\1\73\1\22\1\135\1\22\1\25\1\0\1"+ + "\34\1\35\2\22\1\0\1\23\4\0\2\22\1\0\1\23\1\136\1\0\1\73\1\22\1\107\1\33\1"+ + "\106\1\137\1\24\1\140\1\0\1\56\1\141\1\142\2\22\5\0\1\73\116\22\5\0\1\17\5"+ + "\0\1\17\20\0\1\23\1\127\1\2\1\22\4\0\1\32\1\15\7\0\1\35\1\22\1\35\2\0\1\17"+ + "\1\22\10\17\4\0\5\22\1\35\72\22\1\141\3\22\1\7\1\0\1\137\1\23\1\7\11\0\1\17"+ + "\1\143\1\7\12\0\1\122\1\141\4\0\1\17\1\7\12\0\1\17\2\22\3\0\1\37\6\22\170"+ + "\0\1\40\11\22\75\0\1\37\2\22\21\0\1\23\10\22\5\0\1\40\41\0\1\23\2\0\1\5\1"+ + "\144\2\22\6\0\1\51\1\32\16\0\1\21\3\22\1\35\1\0\1\33\14\0\1\54\3\0\1\17\1"+ + "\0\7\22\1\35\6\0\2\22\1\73\6\0\1\2\1\22\10\0\1\40\1\22\1\5\1\112\3\0\1\145"+ + "\1\5\1\50\3\0\1\40\4\0\1\2\1\22\3\0\1\23\10\0\1\73\1\35\1\5\1\112\2\0\1\5"+ + "\1\146\6\0\1\17\1\22\1\0\1\40\1\5\1\112\2\0\1\17\1\33\10\0\1\37\2\22\1\125"+ + "\2\0\1\147\1\22\3\150\1\22\2\17\5\0\1\122\1\40\1\22\17\0\1\151\1\5\1\112\64"+ + "\0\1\2\1\22\2\0\1\17\1\127\5\0\1\2\40\22\55\0\1\40\15\0\1\21\4\22\1\17\1\22"+ + "\1\127\1\141\1\0\1\45\1\17\1\110\1\152\15\0\1\21\3\22\1\127\54\0\1\40\2\22"+ + "\10\0\1\33\6\0\5\22\1\0\1\23\2\0\2\22\2\0\1\61\2\22\1\141\3\22\1\34\1\25\20"+ + "\0\1\53\1\135\1\22\1\5\1\112\1\7\2\0\1\63\1\7\2\0\1\37\1\74\12\0\1\17\3\33"+ + "\1\153\1\154\2\22\1\155\1\0\1\44\2\0\1\17\2\0\1\156\1\0\1\40\1\0\1\40\4\22"+ + "\17\0\1\37\10\22\6\0\1\23\20\22\1\15\20\22\3\0\1\23\6\0\1\73\1\22\1\73\3\22"+ + "\4\0\1\22\1\141\3\0\1\37\5\0\1\37\3\0\1\40\4\0\1\2\1\0\1\137\5\22\23\0\1\40"+ + "\1\5\1\112\4\0\1\2\4\0\1\2\5\0\1\22\6\0\1\2\23\22\46\0\1\17\1\22\2\0\1\40"+ + "\1\22\1\0\23\22\1\40\1\45\4\0\1\32\1\157\2\0\1\40\1\22\2\0\1\17\1\22\3\0\1"+ + "\17\10\22\2\0\1\151\1\22\2\0\1\40\1\22\3\0\1\21\10\22\7\0\1\74\10\22\1\160"+ + "\1\51\1\44\1\7\2\0\1\2\1\63\4\22\3\0\1\23\3\0\1\23\4\22\1\0\1\7\2\0\1\17\3"+ + "\22\6\0\1\40\1\22\2\0\1\40\1\22\2\0\1\37\1\22\2\0\1\21\15\22\11\0\1\73\6\22"+ + "\6\0\1\37\1\22\6\0\1\37\41\22\10\0\1\17\3\22\1\70\1\5\1\22\1\35\7\0\1\161"+ + "\2\22\3\0\1\73\1\5\1\112\6\0\1\162\1\5\2\22\4\0\1\163\1\22\10\0\1\23\1\153"+ + "\1\5\1\164\4\22\2\0\1\31\4\0\1\27\10\22\1\17\1\140\1\0\1\32\1\0\1\73\7\0\1"+ + "\37\1\5\1\112\1\44\1\53\1\54\2\0\1\45\1\71\1\56\1\53\1\66\1\101\1\141\1\133"+ + "\2\23\21\22\11\0\1\37\1\5\1\112\4\22\10\0\1\32\1\22\1\5\1\112\24\22\6\0\1"+ + "\40\1\0\1\73\2\22\1\40\4\22\10\0\1\165\1\22\1\5\1\112\4\22\7\0\1\22\1\5\1"+ + "\112\6\22\3\0\1\102\1\0\1\2\1\5\1\112\54\22\10\0\1\5\1\112\1\22\1\35\40\22"+ + "\7\0\1\17\1\35\1\22\6\0\1\133\2\0\1\21\4\22\7\0\1\73\40\22\1\0\1\45\4\0\1"+ + "\17\1\0\1\73\1\22\1\5\1\112\2\22\1\33\3\0\1\33\2\0\1\7\1\17\11\22\1\17\1\31"+ + "\4\0\1\17\1\166\1\0\1\22\1\0\1\21\24\22\63\0\1\21\14\22\15\0\1\17\2\22\30"+ + "\0\1\2\27\22\5\0\1\17\72\22\10\0\1\17\67\22\7\0\1\73\3\0\1\17\1\5\1\112\14"+ + "\22\3\0\1\40\1\23\1\22\6\0\1\17\1\22\1\2\1\22\1\5\1\112\1\127\2\0\1\141\2"+ + "\0\56\22\10\0\1\23\1\22\5\0\1\17\1\22\1\35\2\0\10\22\1\21\3\22\75\0\1\23\2"+ + "\22\36\0\1\37\41\22\43\0\1\17\12\22\61\0\1\2\40\22\15\0\1\37\1\0\1\23\1\0"+ + "\1\73\1\0\1\154\1\2\127\22\1\141\1\102\2\0\1\47\1\2\3\22\1\13\22\22\1\153"+ + "\67\22\12\0\1\25\10\0\1\25\1\167\1\170\1\0\1\171\1\44\7\0\1\32\1\47\2\25\3"+ + "\0\1\172\1\110\1\33\1\45\51\0\1\40\3\0\1\45\2\0\1\122\3\0\1\122\2\0\1\25\3"+ + "\0\1\25\2\0\1\17\3\0\1\17\3\0\1\45\3\0\1\45\2\0\1\122\1\52\6\5\6\0\1\17\1"+ + "\127\5\0\1\23\1\15\1\22\1\135\2\22\1\127\1\7\1\0\52\22\1\17\2\0\1\54\1\152"+ + "\1\37\72\22\30\0\1\23\1\22\1\17\5\22\11\0\1\37\1\5\1\112\24\22\1\44\3\0\1"+ + "\113\1\7\1\122\1\173\1\107\1\174\1\113\1\131\1\113\2\122\1\67\1\0\1\31\1\0"+ + "\1\2\1\62\1\31\1\0\1\2\50\22\32\0\1\17\5\22\106\0\1\23\1\22\33\0\1\40\120"+ + "\0\1\21\1\22\146\0\1\73\3\22\3\0\1\40\74\22\1\34\3\22\14\0\20\22\36\0\2\22"); + + /* The ZZ_CMAP_A table has 1000 entries */ + static final char ZZ_CMAP_A[] = zzUnpackCMap( + "\11\14\1\4\1\2\1\1\1\5\1\3\6\14\4\0\1\4\1\0\1\12\1\0\1\14\1\6\6\0\1\10\1\17"+ + "\1\22\1\20\12\21\1\16\2\0\1\7\3\0\12\14\1\0\1\13\2\0\4\14\1\0\1\11\2\0\6\14"+ + "\1\15\2\14\2\0\4\14\4\0\1\14\2\0\1\14\7\0\1\14\4\0\1\14\5\0\7\14\1\0\2\14"+ + "\4\0\4\14\16\0\5\14\7\0\1\14\1\0\1\14\1\0\5\14\1\0\2\14\2\0\4\14\1\0\1\14"+ + "\6\0\1\14\1\0\3\14\1\0\1\14\1\0\4\14\1\0\13\14\1\0\1\14\2\0\6\14\1\0\1\14"+ + "\15\0\1\14\1\0\2\14\1\0\2\14\1\0\4\14\5\0\6\14\5\0\1\14\4\0\3\14\1\0\1\14"+ + "\3\0\2\21\4\0\6\14\1\0\4\14\1\0\6\14\2\21\3\14\2\0\4\14\2\0\3\14\2\21\6\14"+ + "\4\0\10\14\2\0\2\21\5\14\2\0\2\14\2\0\6\14\1\0\1\14\3\0\4\14\2\0\5\14\2\0"+ + "\4\14\5\0\2\14\1\0\1\14\3\0\2\14\4\0\3\14\1\0\6\14\4\0\2\14\1\0\2\14\1\0\2"+ + "\14\1\0\2\14\2\0\1\14\1\0\3\14\2\0\3\14\3\0\4\14\1\0\1\14\7\0\2\21\1\14\1"+ + "\0\2\14\1\0\5\14\1\0\3\14\2\0\1\14\15\0\2\14\2\0\2\14\1\0\6\14\3\0\3\14\1"+ + "\0\4\14\3\0\2\14\1\0\1\14\1\0\3\14\6\0\3\14\3\0\3\14\5\0\2\14\2\0\2\14\5\0"+ + "\1\14\1\0\5\14\1\0\4\14\1\0\1\14\4\0\1\14\4\0\6\14\1\0\1\14\3\0\2\14\4\0\2"+ + "\21\7\0\2\14\1\0\1\14\2\0\2\14\1\0\1\14\2\0\1\14\3\0\3\14\1\0\1\14\1\0\1\14"+ + "\2\21\2\0\4\14\5\0\1\14\1\0\1\14\1\0\1\14\4\0\2\14\2\21\4\14\2\0\3\14\1\0"+ + "\5\14\1\0\2\14\4\0\4\14\3\0\1\14\3\0\3\14\5\0\4\14\4\0\5\14\2\21\3\0\3\14"+ + "\1\0\1\14\1\0\1\14\1\0\1\14\1\0\1\14\2\0\3\14\1\0\6\14\2\0\2\14\2\1\5\14\5"+ + "\0\1\14\4\0\1\14\3\0\3\14\1\0\5\14\2\0\1\14\1\0\4\14\1\0\1\14\5\0\5\14\4\0"+ + "\1\14\2\0\2\14\2\0\3\14\2\21\2\14\7\0\1\14\1\0\1\14\2\0\2\21\5\14\3\0\5\14"+ + "\2\0\6\14\1\0\3\14\1\0\2\14\2\0\2\14\1\0\2\14\1\0\2\14\2\0\3\14\3\0\2\14\3"+ + "\0\2\14\2\0\3\14\4\0\3\14\1\0\2\14\1\0\2\14\3\0\1\14\2\0\5\14\1\0\2\14\1\0"+ + "\3\14\2\0\1\14\2\0\5\14\1\0\2\21\4\14\2\0\1\14\1\0\2\21\1\14\1\0\1\14\3\0"+ + "\1\14\3\0\1\14\5\0\1\14\1\0\2\14\1\0\1\14\2\0\1\14\2\0\2\14\2\0\4\14\1\0\4"+ + "\14\1\0\1\14\1\0\5\14\1\0\4\14\2\0\1\14\1\0\1\14\5\0\1\14\1\0\1\14\1\0\3\14"); + + /** + * Translates DFA states to action switch labels. + */ + private static final int [] ZZ_ACTION = zzUnpackAction(); + + private static final String ZZ_ACTION_PACKED_0 = + "\4\0\2\1\1\2\2\3\1\4\1\2\1\5\1\3"+ + "\1\6\1\4\1\2\1\4\1\7\2\10\1\4\1\11"+ + "\1\12\1\11\1\13\1\4\1\0\1\4\4\0\1\6"+ + "\1\4\1\0\1\4\2\2\1\14\3\0\2\4"; + + private static int [] zzUnpackAction() { + int [] result = new int[44]; + int offset = 0; + offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result); + return result; + } + + private static int zzUnpackAction(String packed, int offset, int [] result) { + int i = 0; /* index in packed string */ + int j = offset; /* index in unpacked array */ + int l = packed.length(); + while (i < l) { + int count = packed.charAt(i++); + int value = packed.charAt(i++); + do result[j++] = value; while (--count > 0); + } + return j; + } + + + /** + * Translates a state to a row index in the transition table + */ + private static final int [] ZZ_ROWMAP = zzUnpackRowMap(); + + private static final String ZZ_ROWMAP_PACKED_0 = + "\0\0\0\23\0\46\0\71\0\114\0\137\0\162\0\205"+ + "\0\230\0\253\0\276\0\321\0\344\0\367\0\u010a\0\u011d"+ + "\0\u0130\0\u0143\0\u0156\0\46\0\u0169\0\u017c\0\230\0\230"+ + "\0\230\0\u018f\0\u01a2\0\276\0\u01b5\0\u01c8\0\u01db\0\344"+ + "\0\u01ee\0\u0201\0\u0214\0\u011d\0\u0169\0\u018f\0\u0227\0\u023a"+ + "\0\u024d\0\u0260\0\u0273\0\u0286"; + + private static int [] zzUnpackRowMap() { + int [] result = new int[44]; + int offset = 0; + offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result); + return result; + } + + private static int zzUnpackRowMap(String packed, int offset, int [] result) { + int i = 0; /* index in packed string */ + int j = offset; /* index in unpacked array */ + int l = packed.length(); + while (i < l) { + int high = packed.charAt(i++) << 16; + result[j++] = high | packed.charAt(i++); + } + return j; + } + + /** + * The transition table of the DFA + */ + private static final int [] ZZ_TRANS = zzUnpackTrans(); + + private static final String ZZ_TRANS_PACKED_0 = + "\1\5\1\6\1\7\1\6\2\7\1\10\5\11\1\5"+ + "\1\6\1\11\1\5\2\11\1\5\1\12\1\13\1\7"+ + "\1\13\1\14\1\7\4\11\1\15\1\16\1\17\1\20"+ + "\1\11\1\21\1\16\1\22\1\21\1\23\1\24\1\7"+ + "\3\24\7\23\1\24\5\23\1\12\1\25\1\7\1\25"+ + "\1\26\1\7\1\11\1\27\1\30\1\31\1\15\1\16"+ + "\1\17\1\32\1\11\1\21\1\16\1\22\1\21\2\5"+ + "\1\0\1\5\6\0\1\5\1\0\2\5\1\0\1\5"+ + "\1\0\1\5\1\0\1\5\1\6\1\7\1\6\2\7"+ + "\4\0\1\5\1\0\1\5\1\6\1\0\1\5\1\0"+ + "\1\5\2\0\5\7\7\0\1\7\5\0\2\5\1\0"+ + "\1\5\2\0\1\33\5\0\2\5\1\0\1\5\2\0"+ + "\1\5\23\0\2\12\1\0\1\12\6\0\1\12\1\0"+ + "\2\12\1\0\1\12\1\0\1\12\1\0\1\12\1\34"+ + "\1\7\1\34\2\7\4\0\1\12\1\0\1\12\1\34"+ + "\1\0\1\12\1\0\1\12\2\0\3\7\1\14\1\7"+ + "\7\0\1\7\11\0\1\35\6\0\1\36\2\37\1\0"+ + "\2\35\1\37\1\35\12\0\1\40\1\16\2\41\1\0"+ + "\2\16\1\41\1\16\2\12\1\0\1\12\6\0\1\42"+ + "\1\41\2\17\1\43\1\21\1\41\1\17\1\16\1\12"+ + "\1\34\1\7\1\34\2\7\4\0\1\42\1\41\1\17"+ + "\1\44\1\43\1\21\1\41\1\17\1\16\2\12\1\0"+ + "\1\12\6\0\1\42\1\16\2\17\1\0\1\21\1\16"+ + "\1\17\1\16\12\0\1\40\3\41\1\43\1\16\1\41"+ + "\1\22\1\16\2\23\1\0\20\23\1\12\1\45\1\7"+ + "\1\45\2\7\4\0\1\12\1\0\1\12\1\45\1\0"+ + "\1\12\1\0\1\12\2\0\3\7\1\26\1\7\7\0"+ + "\1\7\5\0\1\12\1\45\1\7\1\45\2\7\4\0"+ + "\1\42\1\41\1\17\1\46\1\43\1\21\1\41\1\17"+ + "\1\16\2\5\1\0\1\5\3\0\1\47\4\0\2\5"+ + "\1\0\1\5\2\0\1\5\4\0\1\35\5\0\1\16"+ + "\3\35\1\0\4\35\4\0\1\35\5\0\1\16\1\50"+ + "\2\35\1\0\4\35\4\0\1\35\5\0\1\16\1\51"+ + "\2\37\1\52\1\35\1\51\1\37\1\35\12\0\1\40"+ + "\3\41\1\43\1\16\2\41\1\16\2\12\1\0\1\12"+ + "\1\35\5\0\1\12\1\36\2\53\1\0\1\54\1\35"+ + "\1\53\1\35\13\0\1\41\2\16\1\43\1\16\1\41"+ + "\2\16\2\47\2\0\17\47\4\0\1\35\5\0\1\16"+ + "\1\35\2\37\1\0\2\35\1\37\1\35\4\0\1\35"+ + "\5\0\1\16\1\51\2\35\1\52\1\35\1\51\2\35"+ + "\4\0\1\35\6\0\1\51\2\35\1\52\1\35\1\51"+ + "\2\35\2\12\1\0\1\12\1\35\5\0\1\21\1\51"+ + "\2\53\1\52\1\54\1\51\1\53\1\35\2\12\1\0"+ + "\1\12\1\35\5\0\1\21\1\35\2\54\1\0\1\54"+ + "\1\35\1\54\1\35"; + + private static int [] zzUnpackTrans() { + int [] result = new int[665]; + int offset = 0; + offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result); + return result; + } + + private static int zzUnpackTrans(String packed, int offset, int [] result) { + int i = 0; /* index in packed string */ + int j = offset; /* index in unpacked array */ + int l = packed.length(); + while (i < l) { + int count = packed.charAt(i++); + int value = packed.charAt(i++); + value--; + do result[j++] = value; while (--count > 0); + } + return j; + } + + + /* error codes */ + private static final int ZZ_UNKNOWN_ERROR = 0; + private static final int ZZ_NO_MATCH = 1; + private static final int ZZ_PUSHBACK_2BIG = 2; + + /* error messages for the codes above */ + private static final String[] ZZ_ERROR_MSG = { + "Unknown internal scanner error", + "Error: could not match input", + "Error: pushback value was too large" + }; + + /** + * ZZ_ATTRIBUTE[aState] contains the attributes of state aState + */ + private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute(); + + private static final String ZZ_ATTRIBUTE_PACKED_0 = + "\4\0\4\1\1\11\15\1\3\11\1\1\1\0\1\1"+ + "\4\0\2\1\1\0\4\1\3\0\2\1"; + + private static int [] zzUnpackAttribute() { + int [] result = new int[44]; + int offset = 0; + offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result); + return result; + } + + private static int zzUnpackAttribute(String packed, int offset, int [] result) { + int i = 0; /* index in packed string */ + int j = offset; /* index in unpacked array */ + int l = packed.length(); + while (i < l) { + int count = packed.charAt(i++); + int value = packed.charAt(i++); + do result[j++] = value; while (--count > 0); + } + return j; + } + + /** the input device */ + private java.io.Reader zzReader; + + /** the current state of the DFA */ + private int zzState; + + /** the current lexical state */ + private int zzLexicalState = YYINITIAL; + + /** this buffer contains the current text to be matched and is + the source of the yytext() string */ + private CharSequence zzBuffer = ""; + + /** the textposition at the last accepting state */ + private int zzMarkedPos; + + /** the current text position in the buffer */ + private int zzCurrentPos; + + /** startRead marks the beginning of the yytext() string in the buffer */ + private int zzStartRead; + + /** endRead marks the last character in the buffer, that has been read + from input */ + private int zzEndRead; + + /** + * zzAtBOL == true <=> the scanner is currently at the beginning of a line + */ + private boolean zzAtBOL = true; + + /** zzAtEOF == true <=> the scanner is at the EOF */ + private boolean zzAtEOF; + + /** denotes if the user-EOF-code has already been executed */ + private boolean zzEOFDone; + + + /** + * Creates a new scanner + * + * @param in the java.io.Reader to read input from. + */ + IJPerfLexer(java.io.Reader in) { + this.zzReader = in; + } + + + /** + * Unpacks the compressed character translation table. + * + * @param packed the packed character translation table + * @return the unpacked character translation table + */ + private static char [] zzUnpackCMap(String packed) { + int size = 0; + for (int i = 0, length = packed.length(); i < length; i += 2) { + size += packed.charAt(i); + } + char[] map = new char[size]; + int i = 0; /* index in packed string */ + int j = 0; /* index in unpacked array */ + while (i < packed.length()) { + int count = packed.charAt(i++); + char value = packed.charAt(i++); + do map[j++] = value; while (--count > 0); + } + return map; + } + + public final int getTokenStart() { + return zzStartRead; + } + + public final int getTokenEnd() { + return getTokenStart() + yylength(); + } + + public void reset(CharSequence buffer, int start, int end, int initialState) { + zzBuffer = buffer; + zzCurrentPos = zzMarkedPos = zzStartRead = start; + zzAtEOF = false; + zzAtBOL = true; + zzEndRead = end; + yybegin(initialState); + } + + /** + * Refills the input buffer. + * + * @return {@code false}, iff there was new input. + * + * @exception java.io.IOException if any I/O-Error occurs + */ + private boolean zzRefill() throws java.io.IOException { + return true; + } + + + /** + * Returns the current lexical state. + */ + public final int yystate() { + return zzLexicalState; + } + + + /** + * Enters a new lexical state + * + * @param newState the new lexical state + */ + public final void yybegin(int newState) { + zzLexicalState = newState; + } + + + /** + * Returns the text matched by the current regular expression. + */ + public final CharSequence yytext() { + return zzBuffer.subSequence(zzStartRead, zzMarkedPos); + } + + + /** + * Returns the character at position {@code pos} from the + * matched text. + * + * It is equivalent to yytext().charAt(pos), but faster + * + * @param pos the position of the character to fetch. + * A value from 0 to yylength()-1. + * + * @return the character at position pos + */ + public final char yycharat(int pos) { + return zzBuffer.charAt(zzStartRead+pos); + } + + + /** + * Returns the length of the matched text region. + */ + public final int yylength() { + return zzMarkedPos-zzStartRead; + } + + + /** + * Reports an error that occurred while scanning. + * + * In a wellformed scanner (no or only correct usage of + * yypushback(int) and a match-all fallback rule) this method + * will only be called with things that "Can't Possibly Happen". + * If this method is called, something is seriously wrong + * (e.g. a JFlex bug producing a faulty scanner etc.). + * + * Usual syntax/scanner level error handling should be done + * in error fallback rules. + * + * @param errorCode the code of the errormessage to display + */ + private void zzScanError(int errorCode) { + String message; + try { + message = ZZ_ERROR_MSG[errorCode]; + } + catch (ArrayIndexOutOfBoundsException e) { + message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR]; + } + + throw new Error(message); + } + + + /** + * Pushes the specified amount of characters back into the input stream. + * + * They will be read again by then next call of the scanning method + * + * @param number the number of characters to be read again. + * This number must not be greater than yylength()! + */ + public void yypushback(int number) { + if ( number > yylength() ) + zzScanError(ZZ_PUSHBACK_2BIG); + + zzMarkedPos -= number; + } + + + /** + * Contains user EOF-code, which will be executed exactly once, + * when the end of file is reached + */ + private void zzDoEOF() { + if (!zzEOFDone) { + zzEOFDone = true; + + } + } + + + /** + * Resumes scanning until the next regular expression is matched, + * the end of input is encountered or an I/O-Error occurs. + * + * @return the next token + * @exception java.io.IOException if any I/O-Error occurs + */ + public IElementType advance() throws java.io.IOException { + int zzInput; + int zzAction; + + // cached fields: + int zzCurrentPosL; + int zzMarkedPosL; + int zzEndReadL = zzEndRead; + CharSequence zzBufferL = zzBuffer; + + int [] zzTransL = ZZ_TRANS; + int [] zzRowMapL = ZZ_ROWMAP; + int [] zzAttrL = ZZ_ATTRIBUTE; + + while (true) { + zzMarkedPosL = zzMarkedPos; + + zzAction = -1; + + zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL; + + zzState = ZZ_LEXSTATE[zzLexicalState]; + + // set up zzAction for empty match case: + int zzAttributes = zzAttrL[zzState]; + if ( (zzAttributes & 1) == 1 ) { + zzAction = zzState; + } + + + zzForAction: { + while (true) { + + if (zzCurrentPosL < zzEndReadL) { + zzInput = Character.codePointAt(zzBufferL, zzCurrentPosL/*, zzEndReadL*/); + zzCurrentPosL += Character.charCount(zzInput); + } + else if (zzAtEOF) { + zzInput = YYEOF; + break zzForAction; + } + else { + // store back cached positions + zzCurrentPos = zzCurrentPosL; + zzMarkedPos = zzMarkedPosL; + boolean eof = zzRefill(); + // get translated positions and possibly new buffer + zzCurrentPosL = zzCurrentPos; + zzMarkedPosL = zzMarkedPos; + zzBufferL = zzBuffer; + zzEndReadL = zzEndRead; + if (eof) { + zzInput = YYEOF; + break zzForAction; + } + else { + zzInput = Character.codePointAt(zzBufferL, zzCurrentPosL/*, zzEndReadL*/); + zzCurrentPosL += Character.charCount(zzInput); + } + } + int zzNext = zzTransL[ zzRowMapL[zzState] + ZZ_CMAP(zzInput) ]; + if (zzNext == -1) break zzForAction; + zzState = zzNext; + + zzAttributes = zzAttrL[zzState]; + if ( (zzAttributes & 1) == 1 ) { + zzAction = zzState; + zzMarkedPosL = zzCurrentPosL; + if ( (zzAttributes & 8) == 8 ) break zzForAction; + } + + } + } + + // store back cached position + zzMarkedPos = zzMarkedPosL; + + if (zzInput == YYEOF && zzStartRead == zzCurrentPos) { + zzAtEOF = true; + zzDoEOF(); + return null; + } + else { + switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) { + case 1: + { yybegin(WAITING_INPUT); return IJPerfElementTypes.COMMAND; + } + // fall through + case 13: break; + case 2: + { yybegin(YYINITIAL); return TokenType.WHITE_SPACE; + } + // fall through + case 14: break; + case 3: + { return TokenType.BAD_CHARACTER; + } + // fall through + case 15: break; + case 4: + { yybegin(WAITING_LAST_OPTION); return IJPerfElementTypes.IDENTIFIER; + } + // fall through + case 16: break; + case 5: + { yybegin(WAITING_LAST_OPTION); return TokenType.WHITE_SPACE; + } + // fall through + case 17: break; + case 6: + { yybegin(WAITING_LAST_OPTION); return IJPerfElementTypes.FILE_PATH; + } + // fall through + case 18: break; + case 7: + { yybegin(WAITING_LAST_OPTION); return IJPerfElementTypes.NUMBER; + } + // fall through + case 19: break; + case 8: + { yybegin(YYINITIAL); return IJPerfElementTypes.TEXT; + } + // fall through + case 20: break; + case 9: + { yybegin(WAITING_LAST_OPTION); return IJPerfElementTypes.OPTIONS_SEPARATOR; + } + // fall through + case 21: break; + case 10: + { yybegin(WAITING_LAST_OPTION); return IJPerfElementTypes.ASSIGNMENT_OPERATOR; + } + // fall through + case 22: break; + case 11: + { yybegin(WAITING_TEXT); return IJPerfElementTypes.PIPE; + } + // fall through + case 23: break; + case 12: + { yybegin(YYINITIAL); return IJPerfElementTypes.COMMENT; + } + // fall through + case 24: break; + default: + zzScanError(ZZ_NO_MATCH); + } + } + } + } + + +} diff --git a/plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/parser/IJPerfParser.java b/plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/parser/IJPerfParser.java new file mode 100644 index 000000000000..9d9625f51a78 --- /dev/null +++ b/plugins/performanceTesting/gen/com/jetbrains/performancePlugin/lang/parser/IJPerfParser.java @@ -0,0 +1,209 @@ +// This is a generated file. Not intended for manual editing. +package com.jetbrains.performancePlugin.lang.parser; + +import com.intellij.lang.PsiBuilder; +import com.intellij.lang.PsiBuilder.Marker; +import static com.jetbrains.performancePlugin.lang.psi.IJPerfElementTypes.*; +import static com.intellij.lang.parser.GeneratedParserUtilBase.*; +import com.intellij.psi.tree.IElementType; +import com.intellij.lang.ASTNode; +import com.intellij.psi.tree.TokenSet; +import com.intellij.lang.PsiParser; +import com.intellij.lang.LightPsiParser; + +@SuppressWarnings({"SimplifiableIfStatement", "UnusedAssignment"}) +public class IJPerfParser implements PsiParser, LightPsiParser { + + public ASTNode parse(IElementType t, PsiBuilder b) { + parseLight(t, b); + return b.getTreeBuilt(); + } + + public void parseLight(IElementType t, PsiBuilder b) { + boolean r; + b = adapt_builder_(t, b, this, null); + Marker m = enter_section_(b, 0, _COLLAPSE_, null); + r = parse_root_(t, b); + exit_section_(b, 0, m, t, r, true, TRUE_CONDITION); + } + + protected boolean parse_root_(IElementType t, PsiBuilder b) { + return parse_root_(t, b, 0); + } + + static boolean parse_root_(IElementType t, PsiBuilder b, int l) { + return scriptFile(b, l + 1); + } + + /* ********************************************************** */ + // commandName optionList? + public static boolean commandLine(PsiBuilder b, int l) { + if (!recursion_guard_(b, l, "commandLine")) return false; + if (!nextTokenIs(b, COMMAND)) return false; + boolean r; + Marker m = enter_section_(b); + r = commandName(b, l + 1); + r = r && commandLine_1(b, l + 1); + exit_section_(b, m, COMMAND_LINE, r); + return r; + } + + // optionList? + private static boolean commandLine_1(PsiBuilder b, int l) { + if (!recursion_guard_(b, l, "commandLine_1")) return false; + optionList(b, l + 1); + return true; + } + + /* ********************************************************** */ + // COMMAND + public static boolean commandName(PsiBuilder b, int l) { + if (!recursion_guard_(b, l, "commandName")) return false; + if (!nextTokenIs(b, COMMAND)) return false; + boolean r; + Marker m = enter_section_(b); + r = consumeToken(b, COMMAND); + exit_section_(b, m, COMMAND_NAME, r); + return r; + } + + /* ********************************************************** */ + // NUMBER PIPE TEXT + public static boolean delayTypingOption(PsiBuilder b, int l) { + if (!recursion_guard_(b, l, "delayTypingOption")) return false; + if (!nextTokenIs(b, NUMBER)) return false; + boolean r; + Marker m = enter_section_(b); + r = consumeTokens(b, 0, NUMBER, PIPE, TEXT); + exit_section_(b, m, DELAY_TYPING_OPTION, r); + return r; + } + + /* ********************************************************** */ + // NUMBER OPTIONS_SEPARATOR NUMBER + public static boolean gotoOption(PsiBuilder b, int l) { + if (!recursion_guard_(b, l, "gotoOption")) return false; + if (!nextTokenIs(b, NUMBER)) return false; + boolean r; + Marker m = enter_section_(b); + r = consumeTokens(b, 0, NUMBER, OPTIONS_SEPARATOR, NUMBER); + exit_section_(b, m, GOTO_OPTION, r); + return r; + } + + /* ********************************************************** */ + // simpleOption | gotoOption | delayTypingOption | FILE_PATH | NUMBER + public static boolean option(PsiBuilder b, int l) { + if (!recursion_guard_(b, l, "option")) return false; + boolean r; + Marker m = enter_section_(b, l, _NONE_, OPTION, "