From 416f05460e0ebeaff6010bc33b7ba2f46b47200e Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Sun, 3 Sep 2023 01:11:35 +0800 Subject: [PATCH] Initial commit --- .editorconfig | 17 + .gitignore | 13 + .idea/.gitignore | 10 + .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/compiler.xml | 12 + .idea/icon.png | Bin 0 -> 160857 bytes .idea/inspectionProfiles/Project_Default.xml | 14 + .idea/jarRepositories.xml | 20 + .idea/kotlinc.xml | 6 + .idea/ktlint.xml | 6 + .idea/uiDesigner.xml | 124 ++ .idea/vcs.xml | 6 + LICENSE | 202 +++ README-zh-CN.md | 93 ++ README.md | 96 ++ build.gradle.kts | 16 + docs/changelog-zh-CN.md | 5 + docs/changelog.md | 5 + docs/guide-zh-CN.md | 1156 ++++++++++++++++ docs/guide.md | 1223 +++++++++++++++++ examples/sample-android/.gitignore | 15 + examples/sample-android/build.gradle.kts | 5 + examples/sample-android/demo-app/.gitignore | 1 + .../sample-android/demo-app/build.gradle.kts | 42 + .../demo-app/proguard-rules.pro | 21 + .../demo_app/ExampleInstrumentedTest.kt | 24 + .../demo-app/src/main/AndroidManifest.xml | 25 + .../sweetdependency/demo_app/MainActivity.kt | 12 + .../drawable-v24/ic_launcher_foreground.xml | 30 + .../res/drawable/ic_launcher_background.xml | 170 +++ .../src/main/res/layout/activity_main.xml | 17 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../res/mipmap-anydpi-v33/ic_launcher.xml | 6 + .../src/main/res/mipmap-hdpi/ic_launcher.webp | 0 .../res/mipmap-hdpi/ic_launcher_round.webp | 0 .../src/main/res/mipmap-mdpi/ic_launcher.webp | 0 .../res/mipmap-mdpi/ic_launcher_round.webp | 0 .../main/res/mipmap-xhdpi/ic_launcher.webp | 0 .../res/mipmap-xhdpi/ic_launcher_round.webp | 0 .../main/res/mipmap-xxhdpi/ic_launcher.webp | 0 .../res/mipmap-xxhdpi/ic_launcher_round.webp | 0 .../main/res/mipmap-xxxhdpi/ic_launcher.webp | 0 .../res/mipmap-xxxhdpi/ic_launcher_round.webp | 0 .../src/main/res/values-night/themes.xml | 16 + .../demo-app/src/main/res/values/colors.xml | 10 + .../demo-app/src/main/res/values/strings.xml | 3 + .../demo-app/src/main/res/values/themes.xml | 16 + .../src/main/res/xml/backup_rules.xml | 13 + .../main/res/xml/data_extraction_rules.xml | 19 + .../demo_app/ExampleUnitTest.kt | 17 + .../sample-android/demo-library/.gitignore | 1 + .../demo-library/build.gradle.kts | 40 + .../demo-library/consumer-rules.pro | 0 .../demo-library/proguard-rules.pro | 21 + .../demo_library/ExampleInstrumentedTest.kt | 24 + .../demo-library/src/main/AndroidManifest.xml | 2 + .../demo_library/DemoLibrary.kt | 3 + .../demo_library/ExampleUnitTest.kt | 17 + examples/sample-android/gradle.properties | 23 + .../sweet-dependency-config.yaml | 42 + .../gradle/wrapper/gradle-wrapper.jar | 0 .../gradle/wrapper/gradle-wrapper.properties | 5 + examples/sample-android/gradlew | 185 +++ examples/sample-android/gradlew.bat | 89 ++ examples/sample-android/settings.gradle.kts | 20 + examples/sample-jvm/.gitignore | 42 + examples/sample-jvm/build.gradle.kts | 3 + examples/sample-jvm/gradle.properties | 1 + .../sweet-dependency-config.yaml | 18 + .../gradle/wrapper/gradle-wrapper.jar | 0 .../gradle/wrapper/gradle-wrapper.properties | 5 + examples/sample-jvm/gradlew | 234 ++++ examples/sample-jvm/gradlew.bat | 89 ++ .../sample-jvm/sample-jvm/build.gradle.kts | 23 + .../sweetdependency/demo_jvm/Main.kt | 9 + examples/sample-jvm/settings.gradle.kts | 19 + gradle.properties | 19 + .../sweet-dependency-config.yaml | 38 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 59203 bytes gradle/wrapper/gradle-wrapper.properties | 5 + gradlew | 185 +++ gradlew.bat | 89 ++ img-src/icon.png | Bin 0 -> 160857 bytes settings.gradle.kts | 30 + sweetdependency-gradle-plugin/.gitignore | 2 + .../build.gradle.kts | 69 + .../sweetdependency/SweetDependency.kt | 54 + .../document/DependencyDocument.kt | 101 ++ .../document/PreferencesDocument.kt | 125 ++ .../document/RepositoryDocument.kt | 273 ++++ .../document/RootConfigDocument.kt | 253 ++++ .../document/VersionFilterDocument.kt | 105 ++ .../document/factory/DocumentFactory.kt | 160 +++ .../mapping/RootConfigDocumentMapping.kt | 197 +++ .../mapping/entity/DependencyMapping.kt | 29 + .../environment/Environment.kt | 95 ++ .../SweetDependencyUnresolvedException.kt | 42 + .../gradle/delegate/GradleDelegate.kt | 94 ++ .../gradle/delegate/ProjectTransaction.kt | 63 + .../entity/ExternalDependencyDelegate.kt | 67 + .../gradle/entity/DependencyName.kt | 127 ++ .../gradle/entity/DependencyUpdateMode.kt | 58 + .../gradle/entity/DependencyVersion.kt | 157 +++ .../gradle/entity/ExternalDependency.kt | 44 + .../gradle/factory/ExtensionAwareFactory.kt | 117 ++ .../gradle/factory/GradleProjectFactory.kt | 190 +++ .../gradle/helper/GradleHelper.kt | 155 +++ .../gradle/proxy/IGradleLifecycle.kt | 57 + .../wrapper/LibraryDependencyWrapper.kt | 92 ++ .../gradle/wrapper/PluginDependencyWrapper.kt | 34 + .../wrapper/type/LibraryDependencyType.kt | 42 + .../manager/DependencyManager.kt | 335 +++++ .../manager/GradleTaskManager.kt | 120 ++ .../manager/RepositoryManager.kt | 131 ++ .../manager/const/AdditionalRepositories.kt | 82 ++ .../manager/const/InternalRepositories.kt | 64 + .../manager/content/Dependencies.kt | 150 ++ .../manager/content/Repositories.kt | 93 ++ .../helper/DependencyAutowireLogHelper.kt | 61 + .../manager/helper/DependencyDeployHelper.kt | 190 +++ .../manager/maven/MavenParser.kt | 82 ++ .../manager/maven/entity/MavenMetadata.kt | 34 + .../DependencyMigrationTemplateTransaction.kt | 110 ++ .../transaction/RuntimeDebugTransaction.kt | 261 ++++ .../plugin/SweetDependencyExtension.kt | 69 + .../plugin/SweetDependencyPlugin.kt | 42 + .../config/content/SweetDependencyConfigs.kt | 78 ++ .../factory/SweetDependencyConfigsFactory.kt | 67 + .../config/proxy/ISweetDependencyConfigs.kt | 52 + .../accessors/proxy/IExtensionAccessors.kt | 27 + .../SweetDependencyConfigureExtension.kt | 89 ++ .../SweetDependencyAutowireExtension.kt | 45 + .../generator/LibrariesAccessorsGenerator.kt | 433 ++++++ .../plugin/helper/PluginUpdateHelper.kt | 65 + .../impl/SweetDependencyExtensionImpl.kt | 111 ++ .../plugin/impl/base/BaseExtensionImpl.kt | 45 + .../plugin/task/AutowireDependenciesTask.kt | 42 + .../plugin/task/AutowireLibrariesTask.kt | 42 + .../plugin/task/AutowirePluginsTask.kt | 42 + ...CreateDependenciesMigrationTemplateTask.kt | 34 + .../plugin/task/SweetDependencyDebugTask.kt | 34 + .../plugin/task/UpdateAllDependenciesTask.kt | 42 + .../plugin/task/UpdateAllLibrariesTask.kt | 42 + .../plugin/task/UpdateAllPluginsTask.kt | 42 + .../task/UpdateOptionalDependenciesTask.kt | 42 + .../task/UpdateOptionalLibrariesTask.kt | 42 + .../plugin/task/UpdateOptionalPluginsTask.kt | 42 + .../plugin/task/base/BaseTask.kt | 31 + .../sweetdependency/utils/FileFactory.kt | 136 ++ .../sweetdependency/utils/HttpFactory.kt | 58 + .../utils/ThreadPoolFactory.kt | 47 + .../sweetdependency/utils/ThrowableFactory.kt | 31 + .../sweetdependency/utils/VariableFactory.kt | 150 ++ .../utils/code/CodeCompiler.kt | 193 +++ .../utils/code/entity/MavenPomData.kt | 30 + .../utils/code/factory/CodeCompilerFactory.kt | 84 ++ .../sweetdependency/utils/debug/SError.kt | 38 + .../sweetdependency/utils/debug/SLog.kt | 131 ++ .../sweetdependency/utils/yaml/Yaml.kt | 117 ++ .../utils/yaml/factory/YamlFactory.kt | 46 + .../utils/yaml/proxy/IYamlDocument.kt | 29 + .../SweetDependencyProjectExtensionFactory.kt | 51 + ...SweetDependencySettingsExtensionFactory.kt | 51 + 164 files changed, 12089 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/compiler.xml create mode 100644 .idea/icon.png create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/kotlinc.xml create mode 100644 .idea/ktlint.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 LICENSE create mode 100644 README-zh-CN.md create mode 100644 README.md create mode 100644 build.gradle.kts create mode 100644 docs/changelog-zh-CN.md create mode 100644 docs/changelog.md create mode 100644 docs/guide-zh-CN.md create mode 100644 docs/guide.md create mode 100644 examples/sample-android/.gitignore create mode 100644 examples/sample-android/build.gradle.kts create mode 100644 examples/sample-android/demo-app/.gitignore create mode 100644 examples/sample-android/demo-app/build.gradle.kts create mode 100644 examples/sample-android/demo-app/proguard-rules.pro create mode 100644 examples/sample-android/demo-app/src/androidTest/java/com/highcapable/sweetdependency/demo_app/ExampleInstrumentedTest.kt create mode 100644 examples/sample-android/demo-app/src/main/AndroidManifest.xml create mode 100644 examples/sample-android/demo-app/src/main/java/com/highcapable/sweetdependency/demo_app/MainActivity.kt create mode 100644 examples/sample-android/demo-app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 examples/sample-android/demo-app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 examples/sample-android/demo-app/src/main/res/layout/activity_main.xml create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-hdpi/ic_launcher.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-hdpi/ic_launcher_round.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-mdpi/ic_launcher.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-mdpi/ic_launcher_round.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-xhdpi/ic_launcher.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-xxhdpi/ic_launcher.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp create mode 100644 examples/sample-android/demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp create mode 100644 examples/sample-android/demo-app/src/main/res/values-night/themes.xml create mode 100644 examples/sample-android/demo-app/src/main/res/values/colors.xml create mode 100644 examples/sample-android/demo-app/src/main/res/values/strings.xml create mode 100644 examples/sample-android/demo-app/src/main/res/values/themes.xml create mode 100644 examples/sample-android/demo-app/src/main/res/xml/backup_rules.xml create mode 100644 examples/sample-android/demo-app/src/main/res/xml/data_extraction_rules.xml create mode 100644 examples/sample-android/demo-app/src/test/java/com/highcapable/sweetdependency/demo_app/ExampleUnitTest.kt create mode 100644 examples/sample-android/demo-library/.gitignore create mode 100644 examples/sample-android/demo-library/build.gradle.kts create mode 100644 examples/sample-android/demo-library/consumer-rules.pro create mode 100644 examples/sample-android/demo-library/proguard-rules.pro create mode 100644 examples/sample-android/demo-library/src/androidTest/java/com/highcapable/sweetdependency/demo_library/ExampleInstrumentedTest.kt create mode 100644 examples/sample-android/demo-library/src/main/AndroidManifest.xml create mode 100644 examples/sample-android/demo-library/src/main/java/com/highcapable/sweetdependency/demo_library/DemoLibrary.kt create mode 100644 examples/sample-android/demo-library/src/test/java/com/highcapable/sweetdependency/demo_library/ExampleUnitTest.kt create mode 100644 examples/sample-android/gradle.properties create mode 100644 examples/sample-android/gradle/sweet-dependency/sweet-dependency-config.yaml create mode 100644 examples/sample-android/gradle/wrapper/gradle-wrapper.jar create mode 100644 examples/sample-android/gradle/wrapper/gradle-wrapper.properties create mode 100644 examples/sample-android/gradlew create mode 100644 examples/sample-android/gradlew.bat create mode 100644 examples/sample-android/settings.gradle.kts create mode 100644 examples/sample-jvm/.gitignore create mode 100644 examples/sample-jvm/build.gradle.kts create mode 100644 examples/sample-jvm/gradle.properties create mode 100644 examples/sample-jvm/gradle/sweet-dependency/sweet-dependency-config.yaml create mode 100644 examples/sample-jvm/gradle/wrapper/gradle-wrapper.jar create mode 100644 examples/sample-jvm/gradle/wrapper/gradle-wrapper.properties create mode 100644 examples/sample-jvm/gradlew create mode 100644 examples/sample-jvm/gradlew.bat create mode 100644 examples/sample-jvm/sample-jvm/build.gradle.kts create mode 100644 examples/sample-jvm/sample-jvm/src/main/kotlin/com/highcapable/sweetdependency/demo_jvm/Main.kt create mode 100644 examples/sample-jvm/settings.gradle.kts create mode 100644 gradle.properties create mode 100644 gradle/sweet-dependency/sweet-dependency-config.yaml create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 img-src/icon.png create mode 100644 settings.gradle.kts create mode 100644 sweetdependency-gradle-plugin/.gitignore create mode 100644 sweetdependency-gradle-plugin/build.gradle.kts create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/SweetDependency.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/DependencyDocument.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/PreferencesDocument.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RepositoryDocument.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RootConfigDocument.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/VersionFilterDocument.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/factory/DocumentFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/RootConfigDocumentMapping.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/entity/DependencyMapping.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/environment/Environment.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/exception/SweetDependencyUnresolvedException.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/GradleDelegate.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/ProjectTransaction.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/entity/ExternalDependencyDelegate.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyName.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyUpdateMode.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyVersion.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/ExternalDependency.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/ExtensionAwareFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/GradleProjectFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/helper/GradleHelper.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/proxy/IGradleLifecycle.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/LibraryDependencyWrapper.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/PluginDependencyWrapper.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/type/LibraryDependencyType.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/DependencyManager.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/GradleTaskManager.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/RepositoryManager.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/AdditionalRepositories.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/InternalRepositories.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Dependencies.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Repositories.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyAutowireLogHelper.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyDeployHelper.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/MavenParser.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/entity/MavenMetadata.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/DependencyMigrationTemplateTransaction.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/RuntimeDebugTransaction.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyExtension.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyPlugin.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/content/SweetDependencyConfigs.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/factory/SweetDependencyConfigsFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/proxy/ISweetDependencyConfigs.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/accessors/proxy/IExtensionAccessors.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/configure/SweetDependencyConfigureExtension.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/manager/SweetDependencyAutowireExtension.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/generator/LibrariesAccessorsGenerator.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/helper/PluginUpdateHelper.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/SweetDependencyExtensionImpl.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/base/BaseExtensionImpl.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireDependenciesTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireLibrariesTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowirePluginsTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/CreateDependenciesMigrationTemplateTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/SweetDependencyDebugTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllDependenciesTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllLibrariesTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllPluginsTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalDependenciesTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalLibrariesTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalPluginsTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/base/BaseTask.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/FileFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/HttpFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThreadPoolFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThrowableFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/VariableFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/CodeCompiler.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/entity/MavenPomData.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/factory/CodeCompilerFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SError.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SLog.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/Yaml.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/factory/YamlFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/proxy/IYamlDocument.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencyProjectExtensionFactory.kt create mode 100644 sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencySettingsExtensionFactory.kt diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7101007 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# noinspection EditorConfigKeyCorrectness +[{*.kt,*.kts}] +ktlint_standard_annotation = disabled +ktlint_standard_filename = disabled +ktlint_standard_wrapping = disabled +ktlint_standard_import-ordering = enabled +ktlint_standard_max-line-length = disabled +ktlint_standard_multiline-if-else = disabled +ktlint_standard_argument-list-wrapping = disabled +ktlint_standard_parameter-list-wrapping = disabled +ktlint_standard_trailing-comma-on-declaration-site = disabled +ktlint_function_signature_body_expression_wrapping = multiline +ij_continuation_indent_size = 2 +indent_size = 4 +indent_style = space +insert_final_newline = false +max_line_length = 150 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f8ad16 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +*.iml +.gradle +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..d649463 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +/gradle.xml +/misc.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..07fefc3 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/icon.png b/.idea/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d8f73c5996124610662dda328ab9188a46050742 GIT binary patch literal 160857 zcmd42by$?&_9#B|NOuekN=VGm-3W*@h=>RbFm!k4kdgv|BAo`MltB(5B9a0ElF}d` z-M@Fh&*z-;z2`jVKKFP3xbr-t^R9R8)qCx|*IvZxXsHt6L-0W$5YcTlWjzoG3yJ=M zaRJDY)`b-C-!)gY`yL<=0R{St0ebeF76ifjN(@MN(-*w{JCux);5W@E9ll3}|iq6yPsrkDj^!>FAEd3oUC9K%w zWLczrB>@6X2v0bRual#*hor9z+a+B|;5Ql!Wn;NS@pO=3Q$RChG1AmwQF3udu!!=* z_$*;CQ5G=?ek-^I+|t5=mqidJC;){CLj{ESU@%D`2}xmLmOmdhfStRQwWOZ1${%LH zlMI`!r>CnV6zb#S!|x-+@8WI)6_AjSfWic!f`WVi2A_wYvnSk_&)I|hFAB;C4@-AD zS5G?^XBIR?xP^Xi;ou9}*E6L$9aV=2I9P+zz!RDd4_b#g*0c8TrbdCMCZ z{6~y`i|t|H=Zb*pAv|2X+$|Beyb;cx?Ee_9hxmsU{~N;r^uGsNS^mw~)yv)SQhO^) zD8dop1n}?xL>2g3PFGtOPZtkc7uUas{0p^}R6rP}EF`EbDx`Qz zQ010{h@zmFgrJx*8;g~tq_vB?6C8*UJ14je0_y5)!^ZLt4U}9QUEDQYtPnD6LjMfE zt)!&m?qY4{2)tlpL7Q9hHhTO$J1b9H88!i!pzuF~H4x4={{yar_Bb#J-R&%IJ9{GB zUEP5Ri4J-hHo-qb_2EvgjtCDOgu9NNFT(LsgiBUN=xBBHy22KK3jD#p|L?*7fZlbs z0~GxWT@&sANPpW3;bP+scVbbv&BlTb2FY8%KZXc*k4sr#foFUMTIyZ^tu0~{==EiD9Cw=K7 z-2VJ>v}3tU9+Gg&D?59@y%APye}H!XCR$-u!h(VV))IUO3n5`XVIX_*iCc&Y@`+eV z2#H#Xii?O!0MUL$)W;TqcJ#lhEhZ@>_LtgMXdW)so<4AQgn|t)&;H8Mmyv_c6)b{+ z{K70;ns7@yXLR=9{)@V$E!^1#0jv&CHt2s+$I`{w8{zKx50zZuKolT=Nc50lvvzlJ zV!4_S_O1vU7EhNyPw46KA4ysv-0l9!M*mFkZ*DCAXQcnD@vVidEUm;WB>2PyMJ)J) zErbO5BrIVTd_tDu0^&kKLRJ>&IR1ad`2SU%|GmujpVavu^Wy(zEJ4vr^3^PX{?7?? z^{jjq1uEze^6&%}M9Kd@lLb8_qy>Qu;fGOgQ?`S ze6AGA8v_wY)puXw$M9BqTF6*Ff7BMcRi$A_eN%|Xusx1y4tmjdK~SK%d^Ux_27JcJ zs;8yofAmgnGUf$!$S1|b#FRBV)i!puxXBB!Fc1=+0+1M6_U!RTgp?-?SZ(L188lLi z_ni-QHzL|)+d`}A1rFH(QU&!13Kq<8`LO_6Y;rO(GTr*yb-Hv6`=q$YA4wQ20EBGs z@!~!YRy%)ZXqA)z_&Rz}aO(gH{Tu-M^V~I4)dORhG$X`}MRV2>5MRe61RvmGDWK&o zFdCD!Ha~nKz!La}4VhDXVU!CUR$F72d@@=x+Y@p7Lu!D86d^X6M9dTe7D}c))b&7s z6wQ)tJcy9+0EE@{1NCRXrT}d679n_=;SZ1cq_A0jbNL33KLqxfu~1?x2LX8glo3}_ z{Av?DCU!--2KXkU^&<0vCQ>_7V6~OQS=5w)&#)9NtuvXviddKVrA%dF)qKs@5=p%~ zBcjnFl^wX%xMDG|IwrMV8b&t+PTx$FNLsSZ!ipAg)r^79v5l;a_7A_-mb#EojQk`# zY&5q4b2uTWB>p!G3mO+(J*{06pzau0~qY{h!chR{+z#j+>3tr2CW5 z%u4{Sx^@R|BPHqnF!ae4z_72Kzmc4D{|hwj5&)JVN9`)gk5M$MUCLF!@sPR4GeCZ9 zuUY;IK;-GAG1Q9zzjrZrIU=U6%)v6tnF#!0pGM`%q*xE><~=Rt$I_d*uEvNBdsStA``l_)d2tM%goX&%(jZ-4$>>@rBuWQy}!Y-{>%(~h4P@ENp z8~Jei(WTef{CoCgsK+-$U8h4Zu85x4npqZ{5rXLm(bErbqorfbH2WWpHQM_;EI*eo zqm4}0(afUg4E#4{t^Zo}-~{pC&tCh6mKE9~(mnWSRz=*y^&v6bKOlK(VtIcL}kvL}Wz?V(tI4|Q?wv*0O-zY>Odxkh{%uYxWb&*W+PS)zs-Md4I0mF8vm<3f zJF<)h(edq1GQmGgP)AStW-a0}G|K{aA zm!oMZkx2TBJu#7JKL8lXX7M0qpB}3%s72%|i=-J7DK~yX;v~tKc@}IhJ(g5qIF%#`wn(By|iHSER?`vzz^ z8gU#w28e4J#5L${piQ@`5P!{142HPMH@3h+dpUOsa@dhEagf2U0)O846OUR?GWN0~ zPx=0stVgS6nX;qvoqVW^71`tYy8%5THU^^BLTC`DhdFg215Q&dv3aVey7S3xUQ}iYv zCGST^O|*aXloZV;)TxROrId&5{5T-RCAOCQ8BqN)bc z;_br8dsE0<+&~LWaDz}W|LNk*S7*nv^$~w%G^{vwB<*vi@Zet?=z#@41i+Ej$9q8= z?JY^9?t0v42D$+edbZZdZb;IIAte~sW-8j-QyM!aQmbZIQi@#2i)e*QtLX+15}r)A z{FR?0z9O3y&st_%F7xHUA}-=ZRB%WLqiy1qkq1iJaMn+1`@iIsbO~O056F{PRHXY3 zF1TpM0~3RN>~^zU%Pe#;2+ree^GnB%yI@IfR#Xxy%hS$_9mzfDCQR*Eme^1k8RW>8~b`_s*gEg6P{G~)!R>%|qzX6}|cR7r# z>)*haYq)Llo~4xReZQK~DQ4Bbg4>`EP%6uGL-#5TO*wTPXvmLMV(2$FK`%+H2LG8` zfE#3l6vryrZO@LI&_cxE-mm1n)%u6mD*joWYa{7-u5)MTRZ@Mg(u^J12$KYR`pI)4 zm$R_KFGq<|<=KJ!7;>T~(KS7~;Z^+oEH)cF*weH}} zCU@ZvQLFd#$J;V!r;%;c2iu$Z^aRX;uR>`cbo_v<%{eySM_;Z9oppgUB6q?>O0Ih_ zxN_mBSafcGoDvgL_u>fhTHnV}9yw|j#$R?%p~mLe?%7Ci6AdswD7QH!upp3rFogWv zX+?nd(2$lu zU<$Ao;hiyC^z6oJpYjCQSwORRVTy+r)ZHO(Qxuhh_+RsvrONRzUc44z2^W1llB_7N zhM@#jV+C=u-Z;%oan_HV*aZkvN*9MW=*eSk*A*et1or|9Ooz3dHqQc~46K1lACvW< z`o<`)2oR~fY%c0>i#F=cEkY`SPe#=09hkqr6S4@;ZOdLH#V9F&AnF)5!C)%NJRJKy zT*J{(T?gSAe|~B0RyPLmibqlNZEhwF6^~R<3MjXJ*GcmbVdZ`hxt=^e-Pt-`sH{Q7K zOsJ1ca62q8A_Iww^#(3dp?S$YEpG@JGIQG3+p!5zp@b^CMe#y6Pe<)jMPG{4Q0o{g z@kG*8(ro=aA~0|u;^i%$`PN2m`lY$;(a}946XQW&I561ND;XX!2G)BF<# zA&K*fJS35hxX~r0u8U*vFB;l2GwYNbovJ##)X6QYp5U?-I;mM#LyMC_TJS5FCi-ABHBH90za3qV!syB6s_PyIfxkX4gME6)=FC zGJ|%bck$J~N!`EmszgP@3_hX08ddS}Kv-)w2sKbh1il(~avwtX6GFe$tY@!$eviLN z)FxiA^O2~DcK(!Yo}p8osf)Rt7ZudBvGdF<1XbA8x4pbgz*}B{s^g=LYIWcqkcI2g zv5o7ibE~1`t24Vk>5!ofu`n!PBI84@uWw1qNQdi)rGvjkIb+AQpdd0?H!<^m()-G(^hP(+!h`aVym81CmljfogvU%6Vs6{!pm1ayU->`eeYgX!<(puZ#NA` zMylT!0zt3yN^GWq_@lY9fTMW#jL6t))&emq>dC>I8eeyZ$x>zvqgdsuS2^Gt4< z2U>yIi!nJmqjZ?~;qIP}fX+pXxHSppV1zyAPUfLGb0|*(X|xDqj4B|!s7OMjLUV)t;wKJ*Ta%ilJAbc2>}w%d ziUk;K=f5vbn;GWVAf!a2x2lu7zU)#~JeP{RW1}_KzAnrWb*EoZ0TSHjsa9r1Va0ix zf@)ASJvrj;o`MmPQQp#VO_wVuOAnpDDO`i6?eO}w;r8-@&EfVryL4_yWNDw-%-$gR z%Wn{q(S)T5Y!BzLDnRdIPaWT$o$xf@Fh|jd>J-5eP7c?@7TyvL6}QuVj4xUVZI3Za zSXqcLdSK=RSZrLl^ESfQD=XkPWoOL9?ouv08N^iXn6O{?^I#XG1z)V*WR1kg$G{=F z7vL(Bp#Gy3s=c)ReS>*xq1**<{SeF8@W)`izLl=I^ne6*q*M!5f`5V@zMgtKA<^vV z3We|H_$?E0FUmrt8)=Vl)VOCPh`2WH(R}MRT@!n<-ulb+Ytf*_*-QTt1S_W#m>a_m z)V4K$n>!!EU!of2>T6GV=hZ7CW7F2T-}pczZ27xg<9S8((b%{R2>+LRxD0(E7g4jN z8E?Xrlbj5QIJNvuH4AKeVM&Qo8X)Bi_>Af^cD$yi-*bW^&WQ!V&wO z#Z+HS|12|+FGS}vR59dO^8^yp}wPQ27#!Bz_4R(45AjU050uizK5u}QkCCCRZ=5V)b z+BwbbZ!-uE7Y=M1E>0-EK>01*ycnHzytH|!%6GmrB*#39EVL*|tJ0(>L9kgqqh;i` zaCXPWE9G?C-NMjFOq$zT7ygV=0;Ms7Fm*mhe0a}brjmLe|E1kyuQ`!=_3IT6>E$ZD z(gZYylAe6j!GHNn-hm~x7w&99+eNG~yA+M`J+)v`=MKeS-J>NQb7aP9W1I<7Y3u~6 z$2JGnhBAjVB^AE4q~*4PnJ{6RkR+&}m}9Yw^^p4x!sQ!laqZ8d&m9$-b4?sFOJaZb zlL|iNwJx!CUEJmV0j{I@2e#JA+A@IISb7L4oqdMIk7vgv1y9#cSWh4FOBs_S>byjcp-m|5M64 zJ;69b>3jGuYb6;*wYjMtx3Ui8frk`p^+-W)>JqwB;6FX+0LQ_-{mJocN?dK7ap&1l znNJy%n$mW1*WdT&EL9#XiT8hwh|E?Cp1fZ-C*K{As%Pp9wn=4Z&(C}j z_pBwxNKr2&R3$iT!-2!YVSF_~GimBLKP)Pr_s5pUT8+J+5JG_RQxnQa9kC=_4MX^tJLx>nZGOO^$Bis z=`+nYc4?_|@=n&(CRkdCYu}}@Pr{g`u8JYtBjCPa(x+7ZYvxyk84GrDZP@I`NDF=v zZX)pnmB820PLJC|J{Yp4<8KAD;$ZWlpd1kU}PzDsk*L-m>ZjSD73q_A?7%)G%c5U^?el|!NM#n!}ILU{HM2{OL~I3NHi@S zi;%I^g6{96K|~GC$>}r49;<1%NVDhaN_aadVinks+qm}d(~OsVh4WHm)JX%nRovmD zF*HqTrSVZ7SYoBDNMuU&%n0Q0Y?~m^>m(rXWWLYH%YcXp|`+Imyd^kuilqVU|Tyz!MHdDGly-tj*-Ch8w&ZX{Sb#ZkETym@MvqBcF~ zS}w!{K2Z+M{F13A&6?>y2H$8!dWJq5llN>!;?9UOF`b`d=LQ||H68upH*F4105U^e zuXFP{g;UC6^+y~+aD6Cy#BdUCPk3plOH&A_SaUc%lAh)*EtDpYfh1?XWNFi>-}1Q@ z#ogG6)E(Qw$16p~H77TBHjhHY2)CWieTzb zghtt_Gvi>_#6+l58R$4qMZ3nv{;Z%cAsXG=I{gNbJ^6)ke*UfA_w+ZFV^37tVp7t|Xmy~V~Rcddqr7ro_HXzk&akaU}N?H{OlplVDN*2$& zW6~IEU$&*2UtoPMf6wd;dQg2a7Caret zI7#yeq0qrhQVXk3|Z`YM0G)!fyTRd@7JB~Ht-8r_l>6DnG) za#nkDy5&1Xmw+Ktcq!$Kf4^yij&#A2BUddUa%_7~Uif0tU1@E;V1j&aw=hkg_0&R0 z^A=*TFEteOg!-QAQdjQwbZ%f6GxI5?(r5FpyNOfyx_!Q>9(B2H$SN%A$N37Z$j~M3 zVS16t_W{gpFdeT@2b#WuOaWG$8A<-fbgKR+2fKn#t(_#3-BTRF&N5EaoNqp;?N@b`FWaeis)em@08YcQ?se^&0)DGT>mL%-$| z7ba+8%oz5Wk%?fSmI%0TxcVad@g*i&KDBcte$|@&v`guJe?nVnD6|w*OqoW^18UmN zVlQAEG*;p!LJ0%AGvH__>})C-k>qUJ#_VF+R&9wsskCmH0F;)vh`pwCDJ*N*koArTYJ4E&z(=6DBWbZvz zs@;|{RuTp)83q_aIcNs)1GZaHhQLDG3LI3P*r_~fb)jC{a5Aa!!*b+lHFpo{`04SC z-W>u;!z%_&ywQa)buPEl;&-sUti`3yxL0NP;_!u`-uiX`XMuOxi0ea=T4TnAd{z^2 z4+iGRhNy!Iv(DCcwTFs3#Jam$^GBZmn7XGSy@yR?HmuN`k0Z_gzh)E_l=H{(@U7+`( zz|beTmlCGOkAmGO(!h?)uB%=l%J;rOF8TwtU;k^SZR!_6{txf8-v>iAylMD2@#)b5 zBF3F+0!jIb)H?WkDp*8aVWpIWq7^Yy_{EeaeG#FZ%Q_gG#LO+xqtLlR`V6zHkg6E-R9x(j&4;MzspdE#RT6kZa+v!=`4{HFd1}f* z1B7!U@9zZ!a{sRMY87D^LpZLy8lp+_-JCTb_S?${=8&Moi=9g7*7uD~ zT^I3CQdp4{Dl-NIW6^+X)9HTMkshWe9vS7)sfeg{Crd3vCAUEzRHQjS=oX@zTygrk zu;z^!N{QK)T;)V@6iBR8%u1<_(owW~?&tT;t>^0XYm z?=Qd?N8L+@`&}o#@2bFLCaCXItOcYGc$J40!5BlZyxL9|?Oe=UF>^XdR9a@%GkMvp zZJ~70Z2Q9M70fW1>n0_N68uQYDku6bV&-;NKgxv^)}KPuzb=0B0Q(%Au5A!TA}#p_ zIgy;^u<&&bm1x(wEmjlR0LUnRcE<~LyyUlpY8c{)Lxrthy(_5jR~SZj-Q|qcURM}y zy9bk99M4h9o~(*e8;-!$u5kx!`zR>~!~(_0VZ-4GUXZrk7bq{*VEfo1w)znRuTl** z@*Hf;MsypA0f%X;MxV|1zR-G5Op5n(mgiS$)u%+ms_QUWlNR51$XPw6R}NGkeQQC* zBG-rB#7t$51mD%{a?{~obX!;#IIT=_o{Qk2akI52EHM)+))dJ2DZ+kaLvo9Idp2-w zkuc7+JLYFamsxqIi77Un>yExh8)pR1c2*}9#qQXK2q4Z6K#8vrUzt_(3Z(B z!c)!O*FqZn=*0M+ceEeUYD|Rp-!v*}{4V=ig5%l6fNXKok=r>WQlVvRWtLQ1L!Kbzt-yRU4c3+p9O5NIZW&D~-i8%-xux;=? zpA(V2I2HxI^dAFjLAHz!OYzoLHEKj6Mx5mr7dE{%}RW&a7GXeQ^4;79(`Zzr9pnv@BZt>Qr z+m~^UD1!T65;Ndn;6zQw+S0j6p z*5A)}JNtt}eSO0R53*Xo)ih6>EW8WizsJIVz7-`LYG0cEfqI)!d4`a>J|@q;Dv!r* zrtSbNxC}W@+nA?6#2i%Sv;v0;H9JruUf;KvQA$VIj4b@}k6zhdHxu^lcusi8A5A!b zZ8M{k8wXl`|Axq(F9w{B+Dy-ka`x%G5=rhJgCW)eUDyhW!kAgF7nBn$<%#DI^ttI) z-UXIgxW5Huo!xQcUiXn8eJ|^}aJn@r#7Vcy$z>Orjbl4&Yi6RRDsM-meN-6c%@O^3 znf7KauIbn2sCmgP=_C)o7|Fq{v~a{TadD~0q^S>KBo$_DV`|r)*vU)a8$UY491^5~ zO6Pj{*Emg#M*ixzJNGi$z4MG?(F{7Xb2CwBoM2@b#?^@2a(kjjavv(w4Q1L`Zv z6N}t9U2atkA2GXj%qQ-r^&rwdD}}xSEkF-n-BynY40tLyj2( zN0xxw_OR~hM#Nf!+cqz8pB9_t@ryilEO{Nix4oZ#vuS*A)N0f)p%FbET9JG^`uK!J z|H4_lmc&_1P_zg!|NRtG_WW4tbO+e|o-e7EjjSarwg``{DAzoUIL`h8+^CL=P6+4M zcFwIzI{yd);b3`-MrTDz7nPcW6bj30`Ii?Zmqc$+=-rxY?k)(N=#F3g=+axf;yNL<^^`D?Shv85ei%~-OH5I`OsQ2lKtU}`1=VU?jL$_=Y=T?ZfhqWo zH;u;N8=?NqtS+$6mw$x%qV%um$OIxjx> zZvUnlc}Zm(8fk4iu22%ga}?gDNk=V#4NSx^iuFbs{)kY5%Er`s;P=-{te}0z9z^WmpEdtc+zt~j2{}}Gl^dUMV_*|r^`2dtSFApJqyt1t9Vnu2h83tTg zFZW(!HK)a8=(<&G+&cGIZZ5soN|&FAHLF)qE#+m~$^~QG2UPt>@t^{M%yDD3QT2L9 z`-rKghs59smx*btYb`L%_{4aYj2?NeNc(yDpU7~Ig2&{FB2j`W;~U*?j;DrXvB z(V!2$)}(|gqbU#Z!C5=X9V$MUStGf>-)cl$#Fi|1PkOJ(+?L$N8xIM!yT4V_Irv*r zws{Zhd}rEh=If6WBa{1)h-WZOj$pFJ7Ye8RObt9;dBivr8#v`6juV)mk0wT)8Pn6z z$#hl(H%z2GzGySNVlN|C$d0L_(cHaOWUpAG5^%nwEU2kb#8moVuzB1? zsXs(A zfT&4Z^yt^wJ~4g^&jxILkZDzL>DbKs{@FKG+iT8S4EYH^*)f)%B$kgXwP&lBXTaP-7m?w8hQqyAPBC48$lqH&SZj#7`_7XrrOMCD-#4q@|WxJ6DDPEJJio9FS(A*Uiu=jS=OaF&)71vYPeKe&O8xV;mJ)C86o*g4O0q052SZ5vKL9 ze_C({syL|6t2co)guBCmiU_+;ze*!^)&gVGv@x_fXqP{c@wviC-RwK28vF=}@6zi` zl#lVH{KPhUr`6?YZK~@fE(+pG80$zdve(DPXHw{YDINL@yK%4(VHsnk@7+Z2zc2Q- zGY%I|0(=`AkS3x8L&8S#Q881WTC>K*amC;8d8Hmz50Fvb!5Mpk1O1Yv zTvhZYIg~V6@}V+@rkrXY89rR%Nc@NJnS4G@krvV|HdLpyWHV-wo}B*n`IrPt+JiDJ zC@AD7%UG$h1&`p9u-8r&fn}k4d-%aY$CyN22p74%T3E$PgI8P`zkQeHZl5kJBA(0o zgMlkEV?QuE8*5RBTc}pr9VHlUot2e%ZGj zW!$<+Urf}7}VgDC9ldEQ8g4G=~q!`%H|zaHH_JDWzIr6T%%ordli zV@07AU*@Al5-I^D(He(SMIrKZdqy4ys@JdYn$wam=wT>DnpE){8rgEB$UZX?wLnen z5#LqG!V)LD9%Lun%j&q(uwR)PY*L!Nn&vhh_*Ubio;{<0QbBU9fQV^Sc>CG{zTwEL zvf-D(H(F&cFbi6L`r)fPSiQY(A|8Nwu~tam;5{oGh3^MO_SCj>r;?H3>ao$LOsGrR zE>ZTCB(SeOQGaM-oHMrH#HFL*dE!`$v4V#b^gWwdQ9K#F!>99V#O>r)(CHGV+5C=_ z+|1D_8*t0{X3R}_S9BNXZ6!2EU%@>v#(L+7s|Y^*J+XP%{)Eel&`LA*d$$0v@0)Jx z@TwOqYkLc%v) z<6&+u9g7V+BBpa@hAN$BUr9~F?fh_x6=i*Sca&qNq7=kOkNuIZq*1=H?^8(6x$@>4 zfEClo$T-Z&1|};S2Lx)5;H;l1Y)z$|ag8m-pQ;!k;?vFfySBje=qHys%%9W=8mzT* z(Kh z?{?H89o-s|^cs>c3X#QIauROJRkM+I?ImTapoC!i49r+0kK9D67)if7@=19q1Njm; zY^?MQ_e*@jw`Y$wnWZ~{12L8C*`gG0#cKtJ5Jp8d{}0D9CCev3lgNHFDQ1aXfw9k) zV=#tD*De06TdWx<9afTJnP!1e%GNtx?3@N`{SbL5kGXe>-6r3xTta9`U+&kt ztkER<-^>050&!`#em0`zUVx?b<_)-RySo9G##EUl)v5P5SJf+);NJF>n7_YzUhs+qjx(1eXbmy7H+eB=5q#90U{Y1~M( zPk8Q%_X&KX7=9^XNfo;LR$13hcw45dWxKG+`AAgzcWq(^&W;;?S+cd{m|8i11bl~W`(@{D>E6GnvL7jdrm!`QnA)|{FROD1> zT0YzTmgaD7?E&ze0CKSsYu4HcF1N1O+CgSPCD0mVdvRn(-Qr&yS6hoe!sC_sByvuN z?42XEUW_@}qHlJa!DjHCz99QGr*q-bkl5iueTS#9ETslWo}|c?SD2*1_kunszx^te zW{VwnNVXlICMWB>+-WB2EgStDfr4Qhj*e{E!!dFUVb@i0%Y44k69IdRE|R`EZD4Ql zqh|?b$b@O|#?pFTi#6pvr7!~Hx+=+ouip>vuL$X3dpQ_K(dzfbth6VrY&@EoI)qS9 z-b9*liwHc+99M3E5!!O=x^M+v%-lOYC^eg(Hv7>!w6sGSzD5WvS*sH~U$Q7eSqgsK zKmtWST@T8p!+ju$^&DJvfj(WzgX7RNl<;xIioXlAJ&w3nn`4ktL&W3q<4!{v-=WyxX^gMI! zWM|K4Wl9f1>LZkGoa78*<_fg7PO&8zqZA4UrAnO012~AYnB$M_4@Je>y2W$ zJEajHp;S*`>kW-oNf(9(s$O8hteoPARb*5cg(~q}QZ4S2dm~jfA2C5&X^Y3mVWFB4 zVDll=MLc)rK;ydJ&%16ytc8$~QD!2_bE+PdalYP+T7ZNI?s+y=dxt=vROWmnxJ7Ta9aI9 z))ovUxHG(_3~O89PKZqRdOgZOm=P@?Y8=IV13BBr9Z&sATay8Qh!3SlIa?L3A{|az z5{~N;Nj{3)on#9uu|Vn`1Z9pq^Q*oAK1e@iCO;`GEaqbYabHI!)7J&m?yHIl z(h=OBX#4#c-}IxYeB*51Yy*stIy3)QY53QKSqoxjQ<uY|y_tSB-j+D(U zD5bTQJ$OYlzgVln7-Q&-jt`|NZ^dl0+=qmV!%><{Gn1$^+(&9;0}ncY5`q7#Qw4F1 zQGMTicMQc-?4HM;)Mid&QJ==?Y)5g@#yuZ&JK;KYQ}@2GfhT`==FmV#)jnBB#;JqT9!&fmk4|TD0YQ&$IE6#eK5z0(xxaJj~6hHIj z#k_dPsyIoOFb-`Ox& z_Vzn|(99vw|58^K*QK2UBxIDnB!rK3RdjZM4+kbD6P9%kI=7WC0Y+`Tid*$ftGNGr z(m^&zFFN2&p3BhDGeYvhA(869TSlY81Dh0hsZuh<<6i_E?|`|$KyTVdQ!9DpQ+@zN(g_C5EfyVzUdJH3!SCx@ExwYkZtaewbtQa&lzQ~}49`OprU zP36z}`fi7x!N-rc1G#HxTX3I`;@y?5lbz1KD(gg zm!VXOwxlvmino?m2m<$eA6{0iqVbvwl6zZ(iE?_BYg~@mSk^~H6k?9E!2XrT-6haW>tM)m`yiXGoF8HJN(Oa78FWk!;c3UYB)l2Lu|8(LE{!j~J@ z5{G35wu?>#<*c;{Yiel4TRMB=&Renrtwv#MKyDCad+~v*Jf+vlb@fn}LDmPQNt3Zv@;qN(!qQccBP=VOq6S zacjG1=%O(d`GyLf-cGEtuM(_YP4q5pg5FSQ)lX!o8Kb~>By3F+o4ahbFV_5SQJiV} zirseI5If_nv_kpW-e*B?T;S+C;($Ktbu3VgQ4{Fs_~@uBaVG$60YGoc9CXvP^~HR2 zgoXxDLY2C!5C+Cm+F5Np*u37%IwcBqMWc=g&GqFP|-_DpY`O&gBO-# zzLL$zkYG2wi@ol9K#NjonHVG)R~0wb|DoJ-RFHt;SPz*5*-;x#=DpFi!}IgaGD%F} zXoor?#6JoorNxliT+uE~wLjcBf6Q$;fO>r4Y=^^U4~koyU}Z5lER4Zal6OkxAHO}f z4YXh4fWzjaZMNZim^qEUu}e@h7mqCE08WPOtgM{&^tYuz+X22eI<|0cJqS-xU@@}C zjIqYzJpXaTFn#@@)NwV!aH|P?P&Er2%6aE{Hh;}uob*B64rZaBj5r8~)*nS(AIMva z7B4E@p=?-W(Y@#%qh{#ph)`{wedO|MX5YuBx~U0QC|46Za-)|1wpztQ>Z!`wsKNI^ z5W6kN_Ve~bi_PhZ{B$kKsB2xP#`ic0=|8QEem@rB36yEkM(GfD^23A_L0tA=Hn z0XA?;>=YDBT+mohE7#?1Z-LpB$fUrZfn~zkK%(nk=6L)oafE93V&HeI*e2^J}T?Sgc4y)XoN#j}=KZKKbM5^; zxQ9Z#chc6QS=(ZB2rkEGRD<_Ec209)K+f!2R1|65~_nCvxgw60?flclGx%Vtz`zlxlav3^gcNal6@|-7)~# zi;IwwJBzyLlWS@Lq6Rf|{#>!!Jh=?I=Wa6i76Wc%8y0h{Puo&%@Ur0yCG+zwEm*xGX*h8|0nU$cOMa zeV$asuy066pfAn_4tL4895x)TK(imPw3{Pp@u{#Y9qk8$U1ey124@>B2Gr!2>qV40 z8+dpV%O>}Qk1`W6OpHkFvoyoSoK&x`eP5n&XJaup;xK%2Z)+ndX{$SCkREA9^INa)!*Tr z))QUrmERz!8_?D4XKv+{jH2WRt3C1#IBM6}Q(Gr@DZgfmM}6D7Y5LJ0hrP^JZMTlA zn6((Vf9#mt#nxh!3m-@kWa#>#vX#oqHFW%%DC7BUCrgK=N$2wE7pRPcb2VEcUjFi# z54j<&ae49s}*K;vS4K}cW!0yWGZU8-(bw1 zo-JKAuHEk%Xt45>XU0qp3Cl}s`w^`TG@ArHVrDu|OjpOzgTOL5)P+g?MP%VVRAgQ< zL&E*8CenWILbaQYFwhmfhKpsN1|qzuG*~aA>F4k|%M+U(mNWuR+_;glw^#$aoIxkv zkf>H_?9)6_e96-fv*ry(ZN);IZa-%j1ihnP?Cy@d%faKmLCg#^pA<&x@-MP3sB|4_ zVX+VRD{cr;6;!Q&W;@yuhpf5>lxnP&z==M;0)i99G_;%GT~0}N3~Wa<<1RNHg#lwH~`Kz zgs9|CV+^&N5amYdN?O&vhsV<=jTFktS!7$#s*1Jz+4n|9rjeyU1F0&^;AYz!sp4#> zexXW~r!I@hg$6cj0no2?KZ}ic{j^J6PE&YK&?yei@;#o&R0%9^d;RT?wuv)2$#lc$ zG7J0XruLb*MXWmI6>vX4y2=d0s*i?Yh|~rzsw=qzfB5N-`G81ySf6(SxyC&iu#27Zq`xhEkSUS*S@;bipthpl9XUQB_Q`YT z;Q%dCo)j#aUT7Cb6bZ(vQGRjq^R!?wVNG1v(YPr%;!GnAMo9jkkS#4WuLxAMTASWCRbY5^#61d(oob~g6_5Is}yovLM+4-qm zs)^@0y0ov(=sNV&kIfwE9YQb?d1o_20y=-T^FOM?F&M`z&|Mc+kny1QAr zJ48ylLAr&dOS+{IP+$RR0qK@{kdW?J8We;@x|U99T>2f~KY$OjyEF5<_nvdUceyrL zU8%_`n4NK@@`ofbJ^?Z^6S~_nv^rY(;l5EIrS-%2V%}j0#AcDAi{ScC8W%0|`RSRc zldOH30%ob-xrizjade0TClSlL`^6Y<7t@E+{bs}ZsAiAeVN;*{=CdGhYmzn+iaILT z8IN2ei;6*2rVtlr^VpJ2xx~L|4)9WyvN+I6ha$DR5jcs5fo@bHFXD(Fw%f_q=kuYr zK!2Az6E$jL5_k(*U+s=DTYrkEm?{_$)}(^in?=VW4bCTd%)jI+b(<&B`%HwQJ=EP z5GC-tr~=ZAzYiYuM1+1EM2FeIP^oGXj(`50j-i}p_hb3#B1}=TdtFHF5^^(TBxzR) zcLrP%3E}U9FrUv)1)$PF`WyJD%kuqR!@oYvr>EJ;LST>N?k>?qs17m0`4$-mmaGI_(ERO7kcd1 zUnc*eP71bZCRBbEB}x`@N?kE-kkk6L`vql3pPnO`wr_xA>in#=LRbB}je3ZJD?S$+ zP7n=jiv@r>K|<%E^#4F$$Y~ZY^CvUTo?3Dj2KRn< zj96`TcK)?d`=B7Rw?2h|ON<`86Wlk4LVV3j{0(_GkiXz(FSJ+onZ#=KiQ?#pT#d^n zTP3A-`ev-($wIeXP>mX}RBg%Q=BxR}Kkq9YI&~F*^X|%-L z!~r=wJ1aN4e{g|H_~D&QNjFigw74;S{}n=91)@=}N%~(qDmxQBRRZDNnaSU&%+~rX zGcrnl9FFI^y*3+Ay%y?`t1IGs4-@fs&kEjOx(*ly(?4fx0`3<9UTGNcwF9|RtbZyc z5a;;w^nheKAvY)LeS7Szsgt09gFGN7kx>&l`E#+H(=AP_*-EVw=I@X@J)|wboP#ri zNQTv7P6&Dnl+ZqpNu=jvxN0&E>CDJn>`QQYe=XMwX$f%Wj(N(Fn zqGua__jI5C^0X}t#)y5Qnp_4x95_UaC+k3|Q%6or071FRminJ~&ZwD2Mg4&|n_nbE z(cFdMJbkbzSWEnH;UZ5dW7;b`jYhWsb3jn=mE|z}z&jxw$Hb~m0jT$r%zyp4kcu`R z25cwT314D1g7fF;5@G}0r0=TS(K7yM9+26yO?C5)6wx))`6pYMVPOpn&bZ*OKi}a! zpC7n~-mXpoj>$byE7XiT)JTP;DoZt*lf#IV3}xq5r+k;0d#khi4%H?~G&G7gbGqRO z8s6oP?l>!5UN~E6b}0oPp*Q?Lz(>|S)^{SG<28=$1xhPa=fzhW+U=uZ2*2FS%Gf<} zbuPx2qQk0?7m^|$hB5%HhexnoMf&7JaWTnco)l#9AWqulc+h#_{&yA$65aqqe*hh( z?86n(^WHzHH~H`Pu8u!%u6LwXd&<&P2K4Bo@^j zETqRVLr6$Xc0&WqJ;LT_@I%8-9ZhBw*Mz)&3j@`THApfxsmUV=D}VwQW5~Xw3_Vh! z{7K_ot!_?-R)wdI)L8G3pC0G7_wfdAL63Rg=D5qRqMcN2PyVhiyF#MuBM|RE4-CZ} z8}TEaFhomyqCFku`YNWprILV%FNEnu`WT?( zGG$H`>sJAKP8ko)rIP1=)u;*uzE|ady}lGKCpXZ7hgAdTMxQqznu&7H7W5}!)t&zg zwc-Y{ds}-}g#*GpA8|iaQ%>0~G%z)PH2%+BbABa+l3$)F@|`X^etwoSCnIt4>OrL* z?Oes{FRiVA*CepO19NiRg#$ zbidMZHYryMs*D&*CGjy94CVh^YM??$4gujbIT7~ZA2)%)9W12 z@ltxUUCKB0cPG+)!ZvSt%_YLnN_Ut7la_p9418`Zr7*{P9UFHeVkzR1dBWHYGD!{6 zTZ-C+!`m_t$;N=aUMlH_mYscN)7Dqx68{J85{&YZ5ic(n6lw#Mf|xJOLXztKPHsIv z2G=zHwBlf3ME8D8B&(dW0747YPfxdep$|X*2Hu3yx0^%O$=`FEvIV%<;yEVKK^cG{ z=x^VDV-+kWuhVHeVM_t1H?2Rrfz`oyM18KWTh)E^NFo_VImhr>e{+0W&?5@_2uF&* zc70pZ$MpiKfeNd&{x|FELr3!(Ugj}Y7w?CKw47@6YQ(&r;dNA#rc`5Z1wm-)C%fz- zb?1~x<7F^7$t8}+rmf)EZG>884WTNY!EanMeoy$;=j3Vkkdm$Uf30}JXsu1zA)l1V zaDxCfwn>Iype^fGu--MCyrg^W;?qkyFXSNGJVd7S^7`IgX5KA-Y6BGDg@e)~yVo(z@) z+xu9Wu!uJ`2z*~;JW4kp_=)EW1V4FptmQWL)(dTH91`hB-Ya1tPY6wW(Mn}o^~v_$ z5kTv07N}`urAV)DstH)4kx0s{HqD^DekJDbQ<|tB#Z0BxK}KZEI26k7tb7b#SZEo> z?^kJkq{#(C!S`G`z<7Uq0mx#go*nPF&eGr~MZjpLK`HvoncrVXTMh#w-Etc=XMagV zkG67v*?ax_W)!h-<6KIt5PfKgo&sPR`VB@Ecw>BaUc+!!$PgawC}5>bjq+f*FAHy8 zYjFn-;*H&mM#Rxi9&x|zdf5sZdh?M;XR6UXH^5Y#^8MH_m}}bqoogt}580*_h!}h7 z764TP6*c!}-xVwS@Q95XGI@Fu0nI{zK9NF+3FpRm^kwBMxgqo~JcN3l!q(InKNxpX zf(xB690SGm5KUHE-Ix`vUP ztUj+gg#TD1xKyiMyI4*dZg0CD5%{)5rOI${VHC@fk5`e4ex%7aOkIc(Kh9hx#-}|2 zs*C*}{N`As;Z>p`mRt@{cX0m+4F_iA_sDe=Up6|PK!tc1_wh(YNPtDT+}S3uGHQZy z625!QlSRuAnT}F0qt{wEheN%rQl%T^oTDpoj0N|We=I&i`S%(OqKABX^)FfdW02~b zIfc_Kpx}4peE{-H3d2I)*1;rVbxv~X+l}mhWFN?Rj*P^UwlGO%FB6I`oNDI!1dq=z^lm6WjO381w7<5&d<&Wmhg5>4A_<(ClDjvlEd`HNps(`cMdNTVV_V$Tqfdj zf>B!L+V1xQehAd~uVX7nl2{r6F@LEtujjve^~a~y3$H@GPEZKwvQVN(wWl;>#f*3{ zVylCpg)gaSH9#m5CWM0Yi>QX7zm&Ot{uCf7Pf&;tl(80Es3>M?vN|%1x+G{;@JX`$ zub8GwyWMbb&}p%7@7kE=WY$yo;iFJlC;?Dlk2<>d`HJq(EkH$E>Fh-EUz&yXXruWu zXHU@O$q1QM-&G=Yq zE_HW;ZEQTRuPj>`5FP!Zftu#%-$fwMfwF%%9q>uBva6~x;<035wgnN9PcgoJ5(}-d zCKCuYZ1|AP&z&}NLj^k{+~qqqs9$f_#|G?noa8=&_=`=wO3S6qz!TYbye)ol%lqr) zrT#L*HN>V521-21q5Ryb~_e3v*V&aFAMhM)r-=9!uLOz0+Cmg zS__F}(ilhU{^+AB>mI)aFEve^UmyUWV7J3W=CfEi5HW9fNNGVzbOF`qln1&uply$G z#$x2;p|9|-6o0QhlK3uMNmU*z(ROXPlTt^X6Z6@S;E&8VyJm2VbCxFY0SooSM@ZjE z2q6$@6Vh5~OX&{`qAHk=*yA3pmnpV-jq#IBwmC&F_RD|D+=d3k%G3!|>@#yDd~y4C znQClW$wKoA~Gln&`%eTl8fj&wgJf$@;xpq-OG~iEMCk^mKeKkz_%(8^I`$#i>(1Kdg~L+ zMPdGl`iB-at>!g-3?wV{uscr3Yt4(xYKA`lf*^hmBQZLyf^Z zkbna_`=st!VkX4e$Elrw6B>XCaiIR$*culM5DpG`!T>SInJT4!U&{yXX_a-yrQhm| zW;7&>G(WJvkG0kwOkIsnIB{gul@%U+eLcP$D%lhRoo=vYN)GN$GFx9A8q_5QZr`k2 zI#sU1$cnBFLE_x6DZ_L)-`^=Vna=Vo6u%~};EEZ-C2N|Q_AR}}msAb}4+!GnWqjh? zzNi#2-rN*XG9z=aFriM5(V(KHhd7vef&7{d&<`X|Fa|R&fTXuZsNa!f=*=~qRL~vX zq8r81(z9jo5)Gg{j1c~Wce`eKT|=FJXeL1oa0)1XY58g_IqD%6nG|rS%8>^E(8^Mw z#>6+=VANHgpEh!8@0BqRiXlu)4(Vr<=epXEg^-xk5d;x$*=R40ryJ70hRt1R`zjaAfyr4-Gx#nBHp953`qG7 zrks?%R7ty~pOg|=^Sj2&3pyKxr@vkW&3cD0ufi)z)%zrj9)<<+gv|+gcwB+3!e2yk za_=xKvu>*yNLL0_xgyZ*&4ob(Dv(cYUYkT7mNGG}lsYzU_Ee@55ytdH{xqIh+6>y1 zXAE{ZB<1O0F*X5BJ5?ioic6fp9UzIKh8{{I^`G6Jg5EEAA04pr#KlpUg{-mgM}7xh zU9kc4u=F|e!vA#CxR|2)N-G3X+kGkbbQqvxrM|klf+Q1~P3j2?&9th^(xOTos4UIt zXuo=VOD|>QgX($X;!>H?HI$JAI?6dd2gg*9@ecHDJ5jTgmB^~rJ5Z-}OVx@Nie+&= ze%N24w^-SF|B{!~b)p&=v{?OrO8WSy3S=jRvVT|}i=VKJcr$$+bPA$+1LTx}8Fthq zN3!)>AH3S?h$7JC7wl&f5)@#P^ToO3PjE=fvyvwb@bL_o>1|#MFQrMmr;b8LPoH~2 zxzPuXr6|`-e%rD`o0>ZjdNIqsOR^{?)32q3SnwFL-zs!R8Gf@ze)}5}J@4x?Tgo8H zXP_$eufL`%{eApCd7XJys~UHf2>-&-r{dg=A9ZMy#|N;bP10a4V9pLNW+KBye-@?t z`St`1|IR;f+X{+c`rc#N|ESu#c@6YQ^Lg3yk1DQ3bCq^Y=EI9=BWE!Io*Q>%FGtNt zlD05dMzye?a^EN8e(<_wf(cqvL3+uEVz8Vk-wgy@_5gTPK_zumc2h-+Gg$u84-PUL zmx7B^0ec~FA<1aMx`Ie|q{8=?d|^*JFQiTcY$rsjgL8q{GcD!T4zo7htBBNMCM>4N z=I5MhUv^dI&*5TLBb#>It8=lLB~ICXR4c!`*b=vKxN{RjV?5OdgjpdP=wuhBQOgEY25OnYZSoz#By#uaWo$!RseBUIa~16 z{Ml}eOmNY-`+X(sHqbW~3FFN4sb~G=Bp&$WLhSk*L`87JU-mE_d235QKba4;TJMFR zzBE9>!#XMJJwq>II!JQ+C*Df`~9=jpLP3+|u7_UB4I zhk2uu0(I9)n-4a_N+>1^OQ};EPVL^cF10@nSIu|hD(1AY&6)N_#6YK*7yJhoK%Vl7 zR4I`&fM*g64KM#RyXJ|4%uA3b2oERYw$iOLd`nw=cdSzPpGdm;*KChj(EQWN=)Yk8 zHxKIJVoOq5)kQaq7V>wzN_14Yw2>CWMnG>cyfVuw(-lM)e!Ktvhqg}tIoTmTWzwFX zABfj)H;{gAj)#gn!|Qr8DAemxVlq!WNs}FQ=frX(n&>IGzN=uya$%}1mL+O7vq?WJ z0G@>2Z?TzE_i;RldKn6U29Rv}{OG7i0$<1`gI8^ev*|a3={31th`oYT?@eu#2GnjW zMZct?1Ctfa3*0FpwG#~+E{zYO4o;4e|mA9 z{T>_ZRY1y3(pm4dk@#R{-U#`_%0azGc^d1>Q<9M?V~{TWS3oZ^h5`vzJcB^Q2w>j? z@2>F zP*1KxMGLCe@5HBwB%$`|_pj;QffAvgMk=LHs#sM}##w7IbPOU>EzaF;W{)wgz((O8y`w0h*!X}I@v4b5?By(9!K02egec?Cmr&{ zrD6acmY#*D2gcyk>h#EwRVO}|4H}@V4D0u9U@=|O^?qmI-&`%P@8c%|m!?c?jIIa+ zu~SrN-}B=ILD=0+fRn)h5w9?;MoOo6&dJ)v4R2l`Z&>xza%iZLaSsP%qjhg+Zwj2UDPiWClW=1dhpcN}_fH1_j}KloyE@OrH;? zi|b)^W>ZLq?`;_*Xl~dTw?`RIsNogTNiKc60iA-$VL`Qm`~); zl#VI1bUcy`wk&HT>KyKxeLt8Xv+;7KBFRp`9{_T~wu+Dz-n8$jQ*R#$YWbfJ{|H~u z6{?=o0HMAL;jb0C^z_5OHTJ9>F6uRL*Vi7Yb*v^^@i8hTooawT5qtq2Ru!w=5ID6O zDbB{W_oX;&&Ur49Ml6)LzDmYEeCa98=yuS~vZSnl#aX873-Zdi=p99W;QAoh6^6@I z@{#_RH=Anl<9vfw+`)H}r_f7g-r}?K%+~XXt-Z4*2+`-AADwE=#sfed0376fg`Spu z(Oa0h&nj@9}Oq{3vhtfFB+|1IIkEgvnq3}L2rd(hlx9HUi#R&F)5yi00t_$304VN@N^m;O z2}&7$u;h)QkJ7rpFEn_?`}lH;Ps7)dms-dvD4bvne!4_^TqmZK ziMI@}&K-%F_k$QD+bY$ptbo zTX*+;SJRI>ZS+w{!z$x#K2Ky%cm00mvH_qnedMJ}fD9;2kB((lW}~54vO50J-6d1y zFJj8$%^=J1H;;Tt@-^FR44*|jO~n$ekhn_x=UAR?A1ZDN8|u|HbF~5*t-V;;e##S^ z>X`nIY#*jmN%$941*OcRn%o}lCp^!$Z>3zWF?c8J`|ICt{~d7wYyQosb@`xg+}e*jHCFJ&36&5oTBdgvgasA)Tz-;#<;2%~ zEj;R_00&B!2tWiFq>&=_A9E{t;(mki>nJlfI{4?gRvgv2>|csb=1W16*SaB%96CiN zyd`>dsA{~Z-^V1vJ(LTCE2|uRxy4$I zXMoRtPH+ zRrv?t@a1BY+;P%?I+$H9;(fZM)jX(>h%c(tzdv&EeZji%v!t?o>y;@sm~G}c>f%|6 z)Q{B6iJSBDlcXuRiJU94A`Vc%lKR5x*N|~q2A`Ypq=GN-Tz_+4ESkr72QTpy=<5Rh zF^A3LI2Ob};zXO*A2foW3H@KfTB2kB6T*tQT)G@LR zM$$V40>JOt@KCrja(Z`j)Ye-|-666~w-;OE2|kT4gy~V2)LZXZnIX~ z=KRzvDPrf*&^O~Y-FM^Sw8!Sg+|gl3=_;lA$})Ca$J4Ly_T24xNuLo9qG7>TR0Vs5 zk(vyvA!BG8@M30yDa}pKQ>!6{_4Wi?uG1-MyxJ`k`67-S+2_QhMMTdmTX1BB6MkF4 z$JQ9-qu3i%pevz4iAW()zb#d$JwjR75q1FZq+@#dtYsoi)xdx^^+Is1-JhCV705um zPXwrA<~sd?ta#H>GRmDb;5wGVpYYKSueyA9Ncan7V~X{WEo%sBHv78T^8%$nlna}f z87r1q)Szo6Omy55VmU_o#HjF+@JDl@Ts9A?%d?xY*U0xk*RWJA8oCk$WVLL3~UWw$8Ov!THA)wz7epDAfY&{ z9sVmT8$~9^pSF6{eDE`{;FAnI5_9+83u9w*5%89LLLxKgz#9M9BS=jV^*U^qZu7=# z&Ci6l)}X{m%1B8yn|l26AtHsVbXJv$NZ%@z2q?jLj>ubb-hD?EvWcUhgY=q-9G)f6ruXQh^p>=EHpj!Fc{Gs52=sGFbH48F$9_fqNO4LB?-v#~9 zN(SDjD019XWKQ!DauQE2)cl$W$82AKi$r~-cO)hY!Jhe5VyD4kdLZbc;ewA(d}S3o zo3E$fEGTip;0ZUUObsRk3ny*m=JL-V;1caF2lRAW@ zZb-vXofC!S+`8j?-iM>SPdEMeD{WpNK<+CxZ?jz4+O@(UEetwqrnM-IG}oo`cy-7^ zki@~aQ9&d2lMC-JTOMXL8#LmV4)ygOkq5er_CZFuA-o|M~B+TPa3-@~o% zUWQg9;zLbiKx)_Ky~Awouu*8WI;=w&mN;(bYdN1AKUeroEakg9(B{A+18TQQ1M2L2 znxf{0Eq%Xdo%C2QJUG#v#2@v?a;hclJr31T(+hZ?FKzp7Z5d*^5)I=QoCRtmu&R8p zycAvMD{s`T&YR<-`E;K0N$`_R3s^Ay~ zS}4<5=^{9?tn?i|5M><-z2WPLeJ=Zk|w^8L)4mId&+khsuQ zg`CX3rUNYE7hrk}DNJ<^?w}htlZDqY_TEfIO$y!9a_n|?9>F9GYokbDs4#0-*p(#h zyp|zPS^n9_qKOtf&BR1Na2){J+f471&DVGijk*%;-;&%e{Z?fp;#JPkkcexamuk^6 zo$lHn&uh{lN5Nj%LhA1!0P~WZi&d&jw_38YonP26uePFOyE9h1Ok%8jc_2Nlobn(A zoMTSF`1;;q%vvq3%7-|-J&3ra_$*xZ5dc@z74HVtYepu<{X^0UwM18aC+_lnVtw*@ zq1=MkD4p^rIkv0>@dJy|aL@Z;qLOdSQB3)6W>In+u-Hi9vdX;o-0h>DDNXln zj}=2B`Ms}+h3!)~mC`hw)%_z!stgod)$rwbu!=V^Tzi|hoc|tpy~23T;ckxod`Kp& zbO=JU5LC_)q$6tWbDZu5)sybn>VBSMNfMQ#+;MFz2~?)3t6r}+Zp{^o2#V-KfdM^} zD>jw>)*PWMssgm(n?-P4-7W8eeq zO;6}%pNjtU8T&}Cc}3L+y_A>R&`EhCh)m{7jh9glcSctP)%V;{1TZ{cjCdCzo3O)F zTNTlJ%>c8Ih)hxdf8oGAP)x=tHjcg(a%v;c_to$(JL$M4CL#XjURFvmJV!$~&AAOA zS2sE0oTBOjV2}HJq|E=t(oVT18k_`kn0f4lP#5&dkbm{mF!>Uv_|jl>@1<8Wq&fl< zu!xTzN&q#m|* zT7G$h(-RcC$NJ$FW|--5cGc@pga-jQtMV0nfpmD>Z*_+^mf=NCfHe-#g1l~zUjss< zP!hu{Jg&!gtA@H{IuE!7@pLWZ0X})hjP>!G@^q{@9=?ugk?htIH15fAf)boc6W-f| z>PMo9Cx2i;iy!=1;^6J8e`pC+?*W)AG8cYAa?(aV4`mTk@i}@J;s6=GylMG| z^K(6Oi4YQiVD{0sA_*#rFJ6mDz8&XbNL$OctzqP<-BaKZq#ekKn%hJg^(P4JmhpAYIDf|+UKpuYVlAnoS@|>pYApa zB?PrwJ>N8$pa@$ehBDs3Q1avLr?5GFm~rHkDWgZa)7N<^x4-Sft`L}#SX%T%X5p}euE!U2ZwX<2F+FJ_tWXyCZ&enz= zS(kwoCtJL%eeh1rU&RE}TJ}w&zT{l^B5P%IFc{zs+xsuKZeD_aHsit5p4j_bG)_u_(2ah_wjPMZ)GQQBTCd~P1BN2b0 z8tSIFiTFUh-9QbzVZk88LFR~wrA6dchhWKnDe39odR~c2e7xi!+#)TC@hQF>kd;^kFT;HZOFSy^4YRR5ZM zST4sel2a*R(O~vY0>%E9jY*wYeNzX-rJG>ri0hgf0~i7dBUQkQjO%Wz=sbx`y2pIT zy$4<^C2}!l5!8t^RRDB#@14z{*^H=aw6M@KEFPYTlotH4S5|z6x`KTTTC_6aF@zqL zBj+qJ$R`3+w4$ugscJj)`64IC3=WuuQ)FZLIDkGncT8`n2u@4kajv?hRI;EOC|mOA zD%0}NG#A(`U!=uI?IC$?PTU2=xjNhHi8u8W2#9CiZkFmP4aM4v7xH^MoviB1bn>p8 z6k(~|ZwfJcCwV;dY~CZ!dlxeaz7YMSu{UMg{ig){_Y4-PN(B9AlePMMA2b1~MdiY$ z&B}*%&ev@a0_453WAP?qFRAGIO1+A$8q>W=(bZ6{72Szz@zg~dHPi{7qd=Kw9M=r+ zmALU7(I^p=`c zF4(Q0i`d1Shbv9uzF+X~pP0cj_*eF=>f$YHp~KC~g}at%iBr^NB45b_HBnU^Ic#V$ zi!3mgTsICT<}2r1fOq`zxY53<0u~TG3hw^k^CHGTl@KuEXaqjrInZX&E3(@a>s6z3 zb)WBj?s>}rQ;KYl<|~b@c|8#3Y0>F=sKT=PlkoRHq=coZYWH*m{k~4x9q~Wm3f`6Z z`x?iRulAUiQL{#pXeIq=PxN3g)3_u6%!P!buR)tfHLM1wgk*AkJl!`{!?emrso52VX_wyBBzvq*ZHvBh@s;?VWP9nnvrhSx z*G1pdW7}C4od-rYg+b3F4T%1*0f^Og0LcIxZsA)gfGmaF~#ZYq6`4;8Tl`Fa3G$&%Q?c=CjHiNh9?_&aO|YN9POvW1Ng8 z1#11?7KW~Vy&qrc75#vZX^JcZLQHrhPQx$~XkMO}0~^A@O|x-v+;N-ymjm8O5T z&?I%aHd)e2oD3Kn;KEpP)tv*uOlbm}+i+9>=BwSEByjo=0c^&=XfVlQkU|Eam;bWm zYu#bgr&cmCRp&NxJhO*MR)MOcH!+_mes!#VCOzqem4bhSy^9mWU)tQVDgnD&J39dK zSM+g-DEhR=|G$}sh8o~GHMLS5@FOmdY@*m#dyvf7Y#oX%fn7=-8(i!Oz85&eCV!IY z$Ph6hY4f?m0>(^gGLhk7K{T?@cWC7{NbbQJ_eO|p=Q2PBO6u(iM+Yt_dJHawhuoG# zDRvHR5(GTjg~}sC3AwR@XCEL+;sR4TY`6w;4lv($4@*^KI>>yRkV1yd=2tQ#8n&_4 zYb97S8b-Flg5P*SlwYv{YEvTAYyE+d0<4HjuKC*VtZA<P{{&b6I}c|9p&Z=t}U# z_)#=E-PT%06@&+Ly3c5D4uVTR0C1)*>-IQti`ve*O)wADOhgl3o>VXq#75yYO_J!@ z)uOLqwa9j3cF(B;g+dWP0T%@JrbtEv)LQgkYwZ0?;p(e738>k*rd?!!>jZ!yy5=v! zFCXogzDwD|PG3^@pid>vF)3a7b`Tc%85Ua@yafB`#<(Bbi*&aMIX7%N%`UI{JbZGh zwas%`%8~f58L}5dHTX_sskoBq8>yqBmm3=g;h%Ab{lu6nGuFKcc9=?Q^P8%s$i%-q zevf)M5TeoDOYxv9K^OY^Ij`^Fs#0UuK5q+?x6h)zO*aO!u8Dv*L)9A&Ap;jQlRfu?YFRqr%fx3XY;lwx^K^FeYkW)r_^#H zi~vWv%-ReCfP|kvHESTwc8zGW=%Q_MoM!VGRa`HhmX&O3ob$&*L}loq!}iOm&E**C z!5Z8Izw~vq$_wLw$me#Ta+|p_RTTS75jcQ3m_edB8WFbREM7~=+us0RWA04$79%WM?Pjk~y@aOTh{rB;Xjhe(Enp%JJ}UxoS4m&mqiYFJvqad_bwHOTc*vG8Ct;#?7bLvILE)*HSLZc8R9dlNl zP>XSd_V+SC0G}PG%L1SiO*1IJRZyp__-uom@uS@c^g(Ba=1iLJ)Je5gdTb1=BZa4H zPQF1XB8(;I2i3n4{|7-u-Z=Zg`E)fIltA$kajMfZ7$EzIf{qVsx~r|w$3mX>)2o&g z7ng?QQfk9XCpf%A{ZYz)dC@&z!kGWqV7%LGBuc^BD~;tO7j~n?!rCuyT17Z2Eo(n1 zqM6~7s+UfwQN`^IljA)e21=}DDF|Ow_(>fJn5HY@B4;@Du~yTUtBO6m`?c>+*E8>h z_QKmr_xqFqj^95PGL29Zn~hv$I)SkbwhAr`bvD<{o~P6YM8y4gx{dpF=Ji&YL6j3E zD=R%W)Np#xDRgrsmRqfbYc`!e4rl6U!+WeQ!4N0tj`q4v8wY|0xn!@+m&7@l)vJ5+ zy`kk$02Q@wzqH*6e!kg8Fg(H56>!V@bT&y&`|2GM%PsGU3d?lrqVQ7Y=!V?FB4vVH zjBDp`rX@fttecNJa?W)tvX^h&Fx^L-6iCoJq$CRb@}m7#`v#5yEUbKt0)`jODg#3k zZ{khBV0oJkBrXST#$ym22EX)tWD3e+9^hl&1#|&#;1iRYdTv3fLVl@wTO7k-78$CuHG+=5a z^HvRD!i)|9#+dCK@TJGzOgn?ubKmCHxt-UQPI%#|E$hrtl@on0szW? z{!9@un`|APbZ1EKa1joaktET-0t`O_8$ZVEMsq0gT=@3+2vEQ88veM^mpAdLRlmB| zUZHS#wiAvP0FC0Sp6j#VNTk+&-MWo9uuwa-vsKVM_Q@OU5FmArFoK4`qYT0WLpv-?a(QzrOJFT(UhgsyAi48TR!MDU#~7 z&WeEQR>l6inBOkwxEd3{8mfcb*>HUPWuX^_+<@W17qQ=6EiNR64r}`5gos|1=$@M0 zcRTE$7YJb{ax_Kq-UD9>vBc7ouHC%tHB(eK{11Smm<$8kbj;_mV}#e8I+a%c&A|A$ z*rcWg;^#F0W=;QCWpPhX&c1PVjEB+4_12P80UASD2PZ!4b5<_Z2k~$eWsRb|iH(?h z!gE_2Yz4I}2r^eo6K}};d3*uVt7YhzA`CGgN$I_FrMJz?GtGV#5~ZAFNn>=rB4_dr z9sVYe*@E}H-roB6XVcjO?=iE|VIL|q0OV)TaOj-JPyWX9>X`)zD}Nz4g@mT8XV?>q z**g?qfgLwcseS0-#(^KJ7M$~+u{3&_*s22R?y8nTUx#|4*waHXoJS6^dvz zjcCa??DL;`y`;j@vubR%o7lVCdYf!zlB>>zWIDo#!$bE-2&R4la8;m4#(yLK$?Fv@^+ON2 z#4|K^U?`tf=VwUA>K;3)0zjxAijQUkc8r}A2@>mh{wozVuzJCJ7l$}=bMqhnOT35S zcBZ8l`70Bo&;3fm#s83y-+ykWTI^0E*ob&I^8DV^fH&fu+I(WM{I|Ot{`VM{NspV% z`+SAkyfc)zOdoq3_luL~C0|}ow{H>bb5gpCmvAzusXQ)j*Ka`Sh*PddhI!{JV5M9c@=hDTTW^FJw7vU-SI`9>P9~%;(XRor zb?%6cRfWDf6u=VC3me=Xq+06^CO$Rqj6I(w2E6Iw9xkgeC+d8ykS?$+tn#G?Zl-Lw zlF7*uiGc!Q$lkKsa&UYp*y`(Fl7H(}@4lpysB?X*H9EVv76Ni-Hp`+3S|N$8t~>*V z%i&=ar#}S)KSTNk_lYi|@pu)BoN^I2YdV35dsroJ%Oa}uB-k~uHa@Zu7PvPP)D?dH zFMWnuKvNdcT&+3pPoRgeIuVn5C-~pK7@hJ_WG=@1($i$A-;+eIhYO4QU!A7*npGC% zm>1A;_>UT#0>GvP(muPlkA$=oPkRA8>LM~E8ziiFA3u77^&ag#t$Vb7rD0P zfQ4F84aE?YayCIj-i@U)7yz~L%I5|wKVrb9JSL_2ieyn*%$XEU%1d#-D@G4ap&`{kUsEzX6eaSdHM+G{|R2<7`tfJz>t-{peJu+^Wsx4#vgu77JxGa zRKuRp2MYKj14m^dQejV^9b5Vx1q|?kQq@s}hkM{)ce>NF_;lV~L-%mJQ}+C?oB^sS z|G0I^B6u)97L#s0T5X<0LTV_+jxB{Qs8=RD8X($wRHQ>}u(okunM(wbJzqY$iU&J^ z^xMzgN&IeTMtpRFwOnRq6WPdN$+6{9*nr=fbg?bIN}+X#RUvBUvUO>^&1PQ%5}zcWB;8+UMh-`5q?mWiBEm431tbVy>fnM0BGM2AvevKbHaD zY|Y#wOcB(-(xqLMC+W^9CR^u=Ij+JYe2@yA6D%n+Q01^Hee7wy1@9vkYE}d`k_(VQ zjcLFZoO3keOiI1#-vEV4DqUOP?Q{m3EdNfDj*0_iS`n&X>0v{wG2;GZ^h#;eC0>Mw^o>&yQq`i-|_{#TXimR_>6=Vj5vhi#xckWe)k<`;auQJH9o zD<7>l;#X|=Y*<>>O-`>2^zgu%%fN!xk=1%uH=tP0 z7arPA*w^BnxD2TowEekGo{!Vveq)NuRNUNmw4&wCE!i1sOH-{;rq$nOfM|eT_Q6~}Fz%dBVo=$1j)a|LWByJ^#1Y)2_H}8{ z<=d^{13Zp`=_099S#8%_?|%q<>l=0GEO9iz3Xj8<+nSw51$1xpf7GBI1%iSj`Pkjr zg6&h;X*Ck>DbFl=pf#mHQAdin*h6iRna|Vqx|UwsWNsu_a*qXYc7AKk>H!ou~HWmawj;xL4%G*{Tq(M9?69_h z6SuvY`o-&x?z3)ZCv-KYlox1|47vX!=^WVW?7A)7#;JE4BPq?DcG>yPl=B`9oqVJhuRUlyR0-4062@_d^A_QMgq zJrI4}B)>j+R>Pn(ORj+%WuW->Yqc{{mkw%a0zAa3#7dfi}_?|5GS zs{mIsoI#BV5uPj%6$apHG8TX6=+3S>5ljJW!wJ#c18tw1qD?}v%^2) zqgDpjU#Sz=wCznhxQr?$aLXAQZ?8{ZWbBQYXJO9GAGc}|lXeCeFm5r1KYm39@Bp9d zRW0tzF0syd0i6M;Fm2|E0Zhu)@e5T!kC9|YlGIdV$o!DF(v;eTGeG=Xqt;gwQsf(3 z#nX2o#c_bPMpGM@|H{FU2Ds7#W61*_agm@TN7@AI>Vf!Am1x(hpjhCAOpR}9clj?& z(Rz`zKnWD%DBOmX(xKy`J@LCLpOZXIOr)eOEX#{Kt4*?9R#-lw1eBI5vOI4>&|p-k zG7kI9wi~Sb%q}Tz$t)G-!>8xvR0dG=+ODUj9eF=KUpb5eviZKLavVw@V$66}MBj$f zYSJ8$9)mpMazt1fl)Tq#5hQ7b zO0oSDy~9!SydmJveoHX>c9paqZ9qvIw|TNnRU?JJ0SZ}#J8A;ev^J|nsZEQUz&4y>_Nv!-$J z3BBAb+QeuiOHu%6>_Ma}vri&xXV;r(znF@(P$0VJ_czk7)1-0@+Cit>A&=kssQx;7 zmTQIg{>jjD(QDR!p6TIx$q!F-B4ly+$Am9`;}SclJaW?-jyIb(;v&;8?S?R^7Hdrb zH(7JU)M@1|TLK4VZg18~{d?`;xO2mUWSx2BHs4=niGTOH+&0 zrmoU_882}IJwpEfI9FBIF)`qaYt|g!eOFJ;)#MS&xdD9Hjxi9Y01U~6n93ticABZu z%^Cr>AGCzje-=1g*Q^49J^-N!;K;P=gF2&VJ;Sk#8Chay?qtOY(%;cyB$l(8hlhug zMh_Z(0SMhOq&z@)`+F=oq6ds41I+LL{(HIejot-h>!cI?UTs1rrx2WL;32bdzV8FeEOf!Dt8DMAlj3jRK zKUts*82_>upnN_E{7XaO@T~xRXmpi__WsAVGobQo;|JBsGiT8B9Sw!Fdp?Gu6k@b8 zYvRH!5zysGvV6yK_zT*fbzz`J4b}pq17Ccz7qAO)aEbo2RtaM`bcAZJKrR30?4M`z zi?;3EV8`D5wB`4$ufWFL7tu1+aSb4LCxFl6hEYD)B+|0)of>eL$8gkRGoYy}29pw$+Ng#%gq(zkml&uqyfe;mk) zReBENjrqUN5e|W<2+be)T2`zYXEB>+^uVvuWO4t=qmcZ*S3CeHvR;q4&f+kv|=Q(ylm*V|)J8s|Co!x@A;`m?iSb2$y5B zQhnRGUo6YW0ddhxV7L`parbry%ZRO}mor|ZO87@8rs=c?hp53|Iv3r= z(tYjrQ@9o&5rsMus*lCW!G)@F8$bACzcIatDosHg-u8zKb*VtP?|Jp1Q}6j7Y6?HQ z$2+~%F7HXj49CM#xIghD$R(C@n^?L%oE-~`z8?6lKkt8IuKQw=Gx4M7ZCD_T8>1ij z@pK6H<;|Tew)!+nWr95Jke{Y2o{)Ib*u?ibXYBgJbm0IWpHctAg|~7X4!fZCU?$+r zFeVebH#T&hd+t#w&>Ydj8y=H-*gEn44@QB4dxcSO$|s3cYO~g$%MnZeAcesWKaKgT z>SK!6pN!e4hlQjk1FUhKqt=i1Bpekdw9?OHJZ>eV@rh!yri}J(5QYs;2uf{5=JjSL zq6xS2?!dS;MS5g9;J_Asz*T(g!Dm>Rp?udFv2=(_K-qo;a?g82+k;m|K|Ne5Oy4PZ zTz0RW>A-V$t#o1HI>gmHlfvG$^ktbf3V92idKiZ)G=l#^0+DQ%HMb^;brF^Z`mZ?g zzAOO_w+rEx>LHbvQ+AUqxG^bj13@>GK>vF|ps0zKq(l}k)~GA_bF10b*<0R-w`!Qb z`qFf~N-WmflhOM6(~~op>ui)dYhu$L*3iJA zx6SFq!m&gB`PGhqoOH;Sk9D`}e|R>M2-63VNtO861G2*lI!gV` zC0Uq$jiy1=zV+04ckipWy%Cd#^Z7ezh@;@E`SYef#1wKsKKiJ9W-KI7lKhe%hPuV; zMuKh6U-7gVnv6T%`l`{Vj8>Pqba6AJWK(03!<@lB(%+#A2ujOLq8qP2q5;q{49UO8 z%}6Cqy+KKEiUS}MeLNrpM>!z_Aeml4Tuoy85T&Q zq(@Ir8egtQMFfM?ow-ZO89a#y1SPhklZ&DLGx+xSKd=IAAj}$P5zm%w%cU5=?pnQDcI(!y+8Q1TXE z@ZzPT+aJcwXqEY4f}Ug6Ea6qyAq$E6>hc+T&dIGnVwn~26c27ZY7uhxAzjTk!r-Pf zh7a7t$o8OqFabkt1_ZmelSyf_+H?5Q{*g?)vldzc+;zLiLf)^QOBK7ft+G`T;O&Wop|I1g3Af8je5U zM;8TQV?EoZU%_mT$Njjq8^5Fix3-r%I1CfSL|rAbcDq6ri2!t&LnNs_{&JHWQ$}-0 zFVm`*K1?&!%}|Wrm$@J0O&4kGT%(L-%^Fqwur&C#RjEQgyF@Qm*1Lp)WPZz! zMR3EE-HHYqt6&QU&dYv4pe!|E=gcAB{?U#0WdqWOq0IR`8HRyHx{<|nHM+fKpx<%6 z!lXl#B`7>+pgA%DuN$!rC!|U@EGBfY|11h7|sPx~8(V zFEzyjuw`4_cMvLulNO|f5Ge_SjHMi5W8Hz2y2=)!cCzx4fsHfdm;Gz=mqaoD;cfrU z?|7syG?!L049Qes3Rt8)`u*Rs-=no62QiIG4{K*LT%5`w!OBDra+MYP-?=6#>)D?% zen;kqO!_oU4&|Z?1fHR>Wn|3e2)~;o+(SJ!$|c+*Wi%h%KCcJfguy2k&OKR(-P$eS zGsf+fWX{x4(OF~*bQwzbX?-k;BCXE4fbDa@&*KD!{A?xKd~Nm>BQjaRes06h1-s{^=mr!kdyX6u z&Zg8`>!@F^nqRbw^h*&C_PB^@@P;HmDvd?U$Ij)vnFO8s0H$>`^5yX=HMEOLZ1U^A z1V?QqnY6=gA4ckwYGYX&JE9jNAKq{aKkcnT7}>0y$iv8-KW(5%$iX8Ksvg9Kx5MLH z6yQnTCyuMgxc#OZ;RzGiU_zkOP@Hx8mQ|R&6PmyFJ$;-X7M^Rxwb>_Y2tlrUcW}AT zT(2cNbd#X}vz{6QcZgYWZ-2iq^7S=;t4hz36vOn=N&H0}7bX^=5`yTH3EyVG8)4wv z4*%LWhk>(ujoLQK?AQqonIEjl^WPk0h4{yM2A$o;DA|R{WOFP&y}+WT@YtH5Bv*v? zAAQq~DP|y@%ZSqUw&D@A)6$bVI!8YFjASdMt@!DLi_4~1*U+#Oa!f#L*74&a5v3d_ z!;<4Oi`&UE_~mTc7<980IX@;NtTtq|8+^w~*$I#R&CShX-HnwYPipZ+=^2C5ef|60 zi_<})d;n^okK#5C(!_ja)xr;**6>OLxYv)Zj`1_Da6dTBKPm$3yqJk;WzbG)=*w;O z^ux=8>D}4t_A@5@tn5HeB$(ySm~6wD*(qEO`QwPZeJ(RAZ!)>lGcCS?@%BP)0Uwb> zo!Hj!AGw#^8`ys$0WqHjTHjR<)DlSQg7YvAyy`G=@NeOvttwCdTR|P!xe{B;D{w5-nBYwkOMItgbmoXCrqUNV{RNN8n`3zL(6 z3kO_92n??uP^f?038RmvD1TM*dtT9ayE{8{C@k#5ECQx6H^M8Vpn|#gde|QY2WgEo z!xUCR=}Vw2j^H!({-BMcC8A#|gnyPt)r5ccFer>`_Nd~G(aDOA)B#I#s^dRFstJr7UTNZXnzmj{E;fDf^yD+X>Kpt5C0;K%UAlUwhwT2=a-)$;Xp3IA;0F65)&R!IPqpjq z1Kp%TD~dmnYHSLz~XX!d!O8I7@t;un#Wq*}C#^!_N;7+3^2MN~a;iy5|$ z#gO=RWEVp8Jk(cN`g5_Qer|0X*J~_);3d=+`gS!^op}TyqHZbI6su0hbly%@@FXyG8^5V z={D3Jm+>j6Sh&{F(=CUb0uOJp^SQhCNYh&F1#r{Mn*+v}_jCpyi(l26{Gz99 zMLG~QE8wWx6NgOHyDy#iUdO&Uu*Gw4e3YnpS!nU|$J1GLGmchjR%IiYPpZB9tvEk}LdsWOMFFVI5#-p;yyb><6 z)T&!*$fxQG2CuFPp2mM6GdxF+a4FDh9ZHsZemr#U-W%MOa>&m$WhZ!;m4z-A&ZFKI z$;$%pbUZDhxiVLnLPpQ2uhhaGUgjAQwkg*EN^y{o>_mJu2H~0phuFss0nz2I-2Amx z4l%xgm%k_rilb_F#;hEls~gyb27=M=FNUJk9!;iG6-{Xa)NCdA>qG8vflPJ5tzp-ga|IKJCt5ro~Ytgm(XcbpV1Gz5|et) z+~_YIY9X9?&_H@P(4`|aVI$LcCeO*OhyloU$^!6jV8bP zX4O1aSeLeVS0piDL8&!slH^noD)uC0J${1OFZ;!cFnx(Vi;Y-A^@H!HKJjiz9OdjV zzijcAmOmn*1+zhz{v>sOPoKvkDE1X7458jXC#R>29wn*X@ZfDtD3OtIN!Pb*N?^87 zIz+NvDB)zJ`TcgL^MW4h-zD#97dA8+fCMyN-7{u^$x)%2=iCJittzYiUbe~J_N%d9 zj*lb`D(r3cKcOX@H!Obt6>mcIQPaK;3(Lg#L0^XQ`{r^vUW}OId9JxRm7? zpi)8N@}&h2bpngg_C-7gEhK1y=ByU5YR8zfQZ1@>Cn?jA*;vP1DIej~4n0Q(TTeJ) zuZF?N$Z4P=jLX0hN@UL26_HX!aQmH!Az74WRWp0gUnAsKZ%=GYA}U^`cZayG^IJh; zX9-79)+SN*{l8|t`xb0^k?tpxD4;bz8^%9&DFUVTt+mb}i}4b)o9j z5}T?z!?Jww%etj`@_cQCgl+%kz&zvLCWs=WnMtw#eV8T+j%ECZ$eqp{$iMEBGf~*Y z#pU=9Au2GnB4PrCa*wHEvejn)Zle+~rQD~%=#=|mzk`0d{0r0dadB5#ST8C4+w;1m zQElzE_lD4+Te`WcSHZcEUd zE`A{E4nM+Cl6*}Il-6{+?WXizdK}aM)XZBeq&c<==F&joZ~!&euM>^ZWb8&fv#Y{iGCA*Cs0D)K4dX(+Surk z)(`M0PD27m34TVn$6)tjIj@t{6neb zvdqHSJoOc07Laaz@&k$J?PMY&6ASCvg(j-xl`(Rta}hR; zCPhi>5S80g4gu3CqBryB>nH|pM3^^iY`xNc-f|=^@bc+5-S3%?*OieB-#`A?+`ak( z{%v3grlbq&fe*`sG&rK2tqt`AyfPREdZy(I;U9hbb<@>X0b?w3BOHAn=ht1H$VCyM ztUgJneI=^;G;?es!ayq=ttUB|y(l%^z;~E=XT^TJD`qbrjxqc|!*J`8g!f*6&O#mb zD9pp-R`o$Anu%&>=(m>!lL}3$Xu&Sn*Y9xijwdBUrg~xjUl*N0w?`pRxz+-p9%$Qr zFSX?97m{-khw+kG8`t9#RJ5~=zHSjAai*|CmEUiVaylAu(8(yNeca5Hn6SiP(2Kcx zz*{w@m88|yN3LEaix8_Xm>4_^mJMD$0J0ua@nNq*&s%($qX(Cb{t2VIy?& zig{2+>4NXHP|E!iLk7e22BH*WlGx!KSH))(;Htbsqr$+LWs5d-!-@4@88Z1n59X`> zi3_!0vr?H&k7UUmovZwr;6r&ToOS(t)_u)rkxtL6g+scBt36Qb#AHY{dpk_@=PVbc zvY|&u4#0vc%+)wDOb_+o+g~AXZ!=76P^-RDP2Df7oRezrE@P4|OS-qb+T zVezz*6${%acM}UrEFKJ;CYiOHdy8H0UW)qxp#mHB|J%Nal6@7BW0$i^tHRn2!!ex^E6L!5pqpAW&@5!6Cubt+peR9(3k!NN*aEIUSTuh6%t&G}(I`gQwN}`hDsWD}~8KeH1&_1|Wi#A-TJT;zvFD zEVu#>+fHxpCoqAJJ6d;tSA#u8e7XX}NwDn9`m^tAqt1LL>PQr5TH17ZQK=opLJdo! z)Q4jTR|cOAsr+^+LSg$CWMgyh$=u#fRDiM*E+ahO9^UOYc;p(WIL|4=fh@WFw;;{( zv6~4Lw-%&*4NSSA5pr{i5ewF;^!YNl3I48JUiy%5u4f}Kww!@v-=M8`sILVj@4}GMb*UFL*C@-mlRg0=HeFhToh(1XmQ?Cb} zWT_Vyh5DPm35b0PH(7f@(X`LV{9@xNcw;y{eV>)u{|yf62;HD8DACh#*SK4-&sdGr zdOCrHo^M1TGXO^BK8W|H53O{QuGJ5%lDNsjV$vzXh-vUV_7xsT_1v28!L;|2g3a3BLd60=U+=U zrQgAzf`O>v5?Gy#c#M?iX}rhBD-}SH1MiFxB{;rP9;g5vatzQRj|9J`xQZkOpPDN4 z{j0fVcF30L+>mel@HXx~uSAnfBA}-m&%dRvyDcyqtBP#}J0k4aB!2`go7^zyoNV`Z zq?A^`;f24VEw;FB#WGR|TEF6mjtb((bJsEp>ay*T(xRA5>7lxA@oGw7O{1)refBdI zl9q?}$7TzRD=p%at-Q&-W5dn7Hrk+F33ot1knOd8vhWhZH~BoCpry`~MQ5R(@&v^+2>_ zJJ(n$KO_14h#&0a+^dFPduc3|zyCP?39dFaAAWr7vVeLi@o*%#XHM6J1h9Fv`@F)* z-Jk7*k|OK0hB~etsbnQsb$>4jhcx$04Of>Fbt%lA`b*gCRG1fs&mR$$v5)^`kT{9* z$MS!dGEPEhp{0yg&M>WKmZpg+*D@T;ku2#*qR2atl+d}??_KuhE>SFpu4$-T?s5}K zFtqCUW7V-xwqP?$?!d~gkN_AR{J3UA92=|;dAnc!@^1!Q68hf#>pOENaQ6-B$iife zLfD0yk-DFDjy?)lSeXX9t7mVy%{%(h?L7`Z5kDZQDdx#%A+U-C$4u zqIEv;Q8|evZNUt7T>HtlChYYRGQQ;Gdj2K_2vf7(HLXB*C?{S^IguRdHPj?VP{e~1 z`^n1sFsra|hyjK`NWwUoabyx>ALvi&;a zJd^VT795u7L+>}UNK+nyNmTQH2)jlXVuGetqEC-pKDAF(=oap5pPXdQ07h~w%gTQE zS(-$1+QfRkd4O6Yi=R_itlar930`#I!QHHy&UJRBg6BXFnqqbaLSK3^Xny9xCwICp zN>yR|c@vRPL@u&U-;R}r7K3K(;WW zdjz*Vd2s}ZCdmFoI`PEh6sMTjK;3*^xBRUat93+>}SY3ityc0W+APp>G%ajmuXN{ z^msIKXaPZ%w(D;n?r%O7u+$W%Pr2c|jj1aZHxD-gOE2*0h5r3z!P>9g7e2vp_WWKp zFZBNRgC=(J}|-s@580khPfI*Rbll@fX=XhTLW zMl4pMKhr3yssXZ9eKLuvMi5y4rmyd)kaY%vNCK)$E$+AhN@RqeQEVjayb`YiIB}-J#CCEtU zHC*Tmu+`ORot(Jgj`z%jS2N!7aU!!g_!@D@z@78hp(`o|3hQ}&WJ3G58GDzewgoM{ zYD!rmAQa8CnUrFS(uiM8W%%oo(D>YitaBSa+`C7mQJ(ikIN*?j0dcDP9fHuNXbZE6 zG`Wa99f4zt6O8v21NM^RdW2Rl<(M&+!Wghj*b> zr&Ql)>dfH?CKX+nfGYulF&eOlr?qYj6RUjUYp&e}ta8obsw^_9G;Q8em&>WQnK@Zd z6Q}h)Z+@u5%9?LJQDC7$KO=rrB$xO%ry&cew8+TxSm)=O8Ehz3p&EF_^hHSzEY|%F zY8??&3afBjU1r_6la_%W?v1`1v-vP=E5gf`8%G;9`;US@42LQK*;ZOmrXs44eJXX> zD@NVrMhxhBJb$QG>4@6^qf{1_j-+d2;Xm6@Yl_8=c6CzDuABV)uMpm!ZWYk}{ZXjW zl#lYR44U4c;e8~F`qF>`(V$Lo(J7W`8Th2>M#WA&#J<8; zNCS3Jm4t`-#6bO*6%NSDPCQyV7))?3Umv(B`@64Dl#!Mwb=lRPTGkxhguF! zafpg3o>t7Lz5m8N-tn5tAv?ER6CjTKi#SBDlSW5A%U+eb#wAI|Tz&qXD>+#g4GQ@) z2*dv%c1MWPdisE%C4Spcz(5opC^P(d66;UOl4^C3B3wwL?ozI{Nm%u}o{brZ#X)18 z41HUU8&w&sOer=Sd(<|34JU7^!HUc8?IpGl5)bRHhJJ(wcO!x>bU*IRguuhC3A~N` z3Qv_2-7)TYi<=gG!-yZYZ+Y>?v6bg#PF^ONq4J2dpzR0?N$D$HKY;E4T6^w zBZ7yH{ek~rAGOMR>X%OMJN)m-D%lJyfXVIg#;fuL5&_Qt9nd4<4=HXUnYrJ{)md<> zwC(d4Gw9c_lpaR^Myjp1|6Qhw-_z$a`29!O^qg=GPX5@R(fpY|%4DKxY7{HxIpq>8s_Owvx=XxP^P{C+3tz?r`-msC| zUDDuf^BwsLRXmk;w$$3zELkF{c$KW&lKUWuOk+AplF^v{I@#mhYK>Z2PyA;uH@D+- zy#`CLhlGV@PVp`2Y(yCPrhb?E0SWOx{RVXt%dVkY-^9nabxYRGc9rV2acJZH5e_H; zpjt48VIJ>qWd1_T!urQYyhT*1TyJ;e?T>aWtac1WO!J3Qx!*z9715XX^Qtou6e6ZX zAzw!=MSo;F@3bpSb8yt63(9y*Xh4!}^;{Qxv?U!dM+XPuacp&YbTO%pvhGSz9xa)~ zKehBUs3~ogmeY}Ao09PRCCrMO!l2IvTW2nUdL%n0NU+@w%2&?5ZxKh!4nlLfJb%z; zf=wV@4RvIKi6Ngd>iZlQEuLl0HPaU|kkKJXC%OR^3-rjtj=bAm#_RXcIQFhhb<-!F zri+gmDVl*Qt`UD&vcY6Ch|Bq@7dHB}gkd+cS^}`Na%Fy2#x1k0Ao`b}9p5)Qpv0Md z|7G}10i%HYz~zPI;An3e3_8)jHcB81emLl%|SArjFf%x)xnM;qC>!_?7e&VGN8S46DWg>& zF>kT=ai5&WJZRM*>YaFsyoXsDk~bk=;Q47D`*mS=B$^meniFH0rzmU+r#56x%UBDl zh0+@A>XQ+$@Gd6Nfen7#kB_;apP87N7w~+bI6eD#R67iBcGEEq70Z*>icS6a>ks!7QuslPuW@(G0 zcfe{KX!X=Ws7axy!@miJZT#ito0u9lpKrVEOaH`$zhn23dozV8mElHG_Dh!eq+=b| zhADgA1sOdaGJUz%<;$l-R>S?5eS2Z=H>``$i9O(8C;s1xga&fPn-_%xp5h>fY)$N1 z671L?A7$lx z_nhKy5dibKf$=e>);5F9?8^V{WQoEtp`pV~ss^-qt7D+Mf78MAU&-k8u*VQ8QRrIr z5OX$`y!$F%;7KKyfQZrKVDM!rN1IX0VeJ=er-|trR*k#Kj&(r9G&w82*m42oQ{*9C z0^Vrm8BO)(C6%*7D?u)die1|g_Qs9fby*c7h4=ahH{QYHs1c3miY+A+gfD_8cq`ZP zxVM(&AXsotS=vl~I7vGBKFn14)64ff!G*#L06{ttuF6&t4{p~IV{Smexf;|~~F*};5`B%F#M#M2B=%_HQ)%)#u9$pP3 zD9WU8toYjTv**MP*K5{9V`kIz%J0(?)Gd*?>o%h%bfp|P^W%QJaQ71P^O%S4-4of9 z_Ku?L1J;rk25Q3EsW4OTjI)YQ<|+>kf6kOCT{>TJ&z#?tagjqa2`S`5x~}8NqZ)Y?{|$+c;*S-Mu_NE&OmFqGDqVCK1Vj zLq|1ob;f9Lp1&pb@Vt63r4s!i(t0-I(9-dKgQ>)1k3$;iFZ8Y6(KI9YD!j+Suws$r zZk$NWuJr3JI5C1_m@u>^4XOsD2n#5!r4NrFI7Ke?oYQY)Gskxz65_Q+SH~#=o0`kC zel2z(k)g{0-^a{4waXPSd{%xo-1LBN_{gB{k|*RVWlp<-VOq~`EDQxHF-wJLS%{9a z%k`aqfPh;9aoahNU}Sq^pcqcoXT)TLo-9uAPC_<(U{%E1WBV?MM+#q43~_KfUR8O!e&#ah24yZ-<=SkUp}o+#W3WSi}F$mVkR&%ff-WABhIyWj^Eb8zz~8!n1S)ja16vGoa)lw&W}EH^tH z`6;}j-S$s}9>{$~d>>%0k*@*BT9~JEugR9{*%Y+dbrZ=hMNsw=4uDY%>hbf4QA_lf zTwyH|X1hww{Z4Y7Lt9%%=D$v0QL)64u60n7ia}pLP_#t~_ zN~tD&zDRMTU=e|T{3WvE`@q@eg3FO&~EH(Nj zT^WNKMM5?xN-C2metxvHC9c-F%pV8Ic8#7nV@WTs$20eQ+Iaiw4E|?J=ZIwV(*$#R z6+=upm7cdo!yExCOKyi}_MZ5<(Ko#dqH1J5H~b)zFcCDcf?c;ZIrU zZ?}jO!36~l}^d=d_gLYSDu0e2|(lwNo;iC=s26Lu*aBU@Ap z-T3}p6>b(D-0TzoPi2kYlB-a`q@nos9 z$$XG7c8yZ`Lk}hF8kf}m%wV4Cc;3vqKRca}!w%PTOtp-~qhDlas`$}G28@~vxb-Z- zIQ`S)Hm$6`h6iw*w9ivwp&33hUn&vxD60fDj9|VZ%1&L=FXJ`cGD0984r^95D^?y| zgd?#%bmX;dvFb&4%~qzKIp*;9mtyZP0>*{HV-8&>*b-_V87X{-P`ltfmrqtJ4lrfb$scM*YF#`d9iCPA_!kXuipbD!yi# zcejzY|9hqOllNYm2GVA@)W_;cUVNwZ-OWJ$0ky;03kOiPWN}bhk7(a?^6q`yfAZ`l zQc|!uFG0I|r=iauUN;C&t8+FO4~t=M*cQGP;z2-GiGLe9>>?Z3D zmwlp1Cv;eO?mxqVMs@MwX20~ze11eY!b-D_K4IU+m9-PY(8b(WCgPfI&vq|s&gWHM z@-`1ca-Jqov|4Oe|A?|>ezoP+2VN+mOQ6Ff5}3z#X5PA9&equYL3f1pMQ0+N{;2B{P%rF5KRFsJm|u5*C$4` zZNR5gp>s`2k2hU0Uay6y$0kxhuU=P%1zl1~kRZ!RXd_@0Zqh223GkIX(Nmv*$XN`UaQJv}?@TWLRCVt?ZW2FgjzGDtu}_uuYA@T&q!5gjJ*n9F)d91HL6(J40dlB z90jHr#d=;tQVU5eo?jeHLeP@43nY3W@=wSSxLMOMuVYT$y0N4co8M2$-l|OyIeDf69*Jjz>GB1Kxo=5lC&+amz^Uz(kNpD<+J2hY*U(4YW#OnYGpW`%z|hIct5$<^157O z-=8j-tyv8ZA9pwr#2zMvJk#Cw9tmrE>lrGh6KQDyuh(k0 zTRkSX7rCloY<8xuzr5N|!f73odYg5tG&1_gQrV7lsBi6IH09lSR4nAqh_~V4%^bY5 zZ!5Ci0a{VZb_o>t89dDshPk4?1!vsot0Y=hmO zcQTvn>z&7XrB~nu=4F;_74M8qTVk*I+B(Xu9d379X&r=|RB=GLrXT$5 zdHMc$TKI5UWe$`fVT)4Hi&8z4%w=tI)2Pz@ZQfdg^iulV+Rp5;X?X62eSg5y|BY66 ziv?!uqZe*dN$AK^nsX8;OQ5#v&HQ5$gqCU1v+}e;TJv-%IZCSI6QG?%dBYP8qq_Aj zwUlFU>_?@Qh{F`YR$e8jW0t)J=Lt#S;n@Bje*R>qF#MF$!%nAbV0hSn2LDocK6M4@ z82|Z`&p)vLe>-LDe>=tb1Ca_aeG55jXl<39ZC&OS+odyXWof>H>WOPMIeW)Pbfn&} zN`;de!Fu2|XMChh>iU&C+oJJ2T$7`wh%kw&X>s?Nf{L6F^Jy}PQkxEj8j8V_3o4P} z>QO_w{9>{I=Hlv+>X6M~>!w3VIG{nkatVxngZ1ne!Tgm;rVi3~=25Rcp{=C6G{z4* zFv!|sgOLM5v-OhJLs^$j48ye*iX2mB_Q~>idc-NW)M8Gn`f}?2Or}(Q+Pv!M^D3I) z*z*-C|J0kl9J7Dt2uyw{_I8B}7JG|&JpLu7-yDO_5?7TJ9=1YOS^&FEm*Ack@C7AX zE%KRj;-cT1w!9bQ0QV|7ZOrU?_W~Or>XslkZTygd&8aMhncI|t)VueKb)zWp#%F$< zw+RB7SCnb~((P%KRkK1e;n~9$P~Go^1$T#V*;VE7!pyZPq6bg3kBCpAxtsIWoef${ zz7urt=2v^!9100Fbhr7*!~g9T?)~=Kd&;;=q4SS~ebN_IIJZ47(*L#jOJNuRLFnb& z`A(UcZ1}bwt2Q4qnyWIHbTansu}jN6Q(Fl_7U7(m6+$VM6%jV!HiRij_NnAn*ze@}ajhW8|L7+VSEBILO3Uw{6Uhty7*meLbt|Z~ zfK+tkzRJDkn8vAG_1+s5W?i0@TMG;UqCb#t`c3f_lAD`WB+Lh6kUwIAA^dI@{UF}v zKbXnb!^@E+tpfRUUSD8@n)vkbfIoi@I-J#-GWb1)UdiTiJ>@U>`cZOO-c;rgIdnb3 zLi)p)7Rr-<&LmIsVj3e4Fz7oZN$Jh@8!F{>PWJ0Yi?@{??r*Y2Jf9MfJcgwFb3qRh zW!~O{J95(#p-3tW!f|ynZirPS7=l0k;(AH+e!HtXW!O2ibHy00&h=1hI7T86VEzAF z0O89Pd^s$04X@XWYjSXFR(8In-H#A0`mGKS|1Bk|l3u6TKgDd}@|KUK3DbJ7g*qSn zWa6m5WurL!6$qF~zaZH}v4aAQezz{m{<+w_nTiIRq^>@p+Uk%&`Y$s%K?Pbg zmysM&ymV>$okEs;Yi_Y89rVa=q=@E^f+&V;^#~`5%wb{RcIF9Xjk>hs`%WNC24eF~ zUC~@O&>>I~H%kJ~F?N9b-%jA`zEZdF8^^63BJ#^AzOAW@^iQcX6-h2^!==HrKJI5F zQD+!UtJHA$RFWy7>mV0LD6BH_@#0;(0@fPP)0|3ok4w5xqS1`oM^oysA$3KVGd=@~ zSKrn4NlF^t-VA4WHBdZ^Z0RoDbMujl9+Dr{UKWZK?q1dS zq8OmBwVKDfC6EXhA^+F#?V?ICsC2HC&N?(TE}F0(X}Qz5Y4OCQ|6p6EH>OZd%B7Ud zTI9t)5Ec`m7!)FM7hx;|_R!H{e+#OZ-SMhVXNCQilZg3qm=jys_Xgab!AVuAbp#`~YJ-hdb;zncN-*e^#+j4*8Upk+S;7b5u%JKj2ds76;dKR(cyPY{sCZ=kXCqu;{C`h{9Zy&V`lhiJ#0`BKk z1AQa-I@dR6353$uI&q^W1k+!b$r-Z`|Hsl<21M0$ZCL4+?(PQZj-f$78iwwnySuxj zyFo-sy1PNTQ9z`myWu-L@Aqqd5ogcYYp=c5eP7F_NhVo|9|OTvK*Rt+Zo^H-p{dpN z8gAp&HH(S&r1r<}0i;NiAI~e4{w;}s`RVW$Qe8EB+Em9vpB_E`O~Y_HwI3OJYh7Xf zLLSO#z1lb~NQpSCbwPW28cZb=XTHWf!S)IwEeMn2d@-Y{A5oReD z^wRcuJzh??bFSgfob89>cHl;V4xymyaNjM8z}{?yUY&$nJyvP51K1vFYTR5%{NYCN z%%YU!76_>&;s0`bbZJAQ5E^Hg1`$@VtnD`*gn79XwuM0jfxnG<#&_JRe|L<3uw(r8)_+xI2IOVNog?e4e+Jd zAF#v{v@fTo!%Ml%lC!RCuL#_pS~$cd6{k4dCPnz$E1h%-9T}j=I*j{xz8y_dGip{# z;zdAAx$YRmna4vJr{`rcZe3C+vK^Wjrd3V&(JGHg)9pnzPc2zpj&GpTmUPJ_Q?i|} zxD}EVNhFyE@$$gGSaZ7~YDuiG3BIYR@x_yrl%T70Z<~k7g)+EcP#)ILw4TdkLqV3I zSbVqCf@!$bQYkO58S?}IdTOdgyF!gcdI@HFiNAO%7j6!t3>34WE~pD0019 z$-D~JTH-lfBUe{NF+cn^7d=!`Tahy0t>+~(P!lB(y zgZ4?$p9Z@p#dzPFy&=X@Q$f_RmVr*Ecg;p(KN~hYP(8uZ$E{bX1$z0$?)LG)rlxBg z2m@Hn4qx{4*F)uYPaT31pJJ$;kUhdoafDurVAC*mOTc%uU%@cANHZ5&cS6YN&3(tl zFxm&r6u;U~^Hs8?#vCw2S9}XqO9el#2Q*EH{?ywQ^%okxZvUWTU{}yU)+5_h$MaUX zev=^n^;7^v;Za?1>g$ zedCGwbCsd(3CQ8H5U((f*{JkMC&edXad!@XX|NR4)kImit}yM>>B$ z4oKwJC{syD3$56;3M1YMhg!LahKy{sX0vkf!jOwF`jdT_SpJ@so-)uBxc^%${B+2h ze|fw&ywc@{Mj)AhI;U`_W|M(VTW)9FORGlY#z^4{PPR%I%>pp+wa)EQNxJ&X*UXo`2rS3cM%hzgowip3{-_I^7Z) zrIAayo6L=$?W@h>iM!eUw}DU;#Cw0RHwXOT^uf}FWq1oLrc)60K%1ERjh}t!1>}3xpKAeZX7Nr<<1)>d6eaXW z^f;SK-H@8)$UT{_6+It*6ba!~85I9Jn#OLFenDyw2sL%-+1fEyYSVnzEta6)_J{vg+Ym8N6$K6&e2i8ZM?3YVvGZBhd|&>#NS&36CBR%$Dv2-- z@8dZ#5y%A7CXJT+Fmx-ut-jc)BA- z=`*S_2}~%Z*1@<6*bxF7N9hCbgjzw=LQ_jmI3zLKK!vK=LD}iwzPP)?Mlj1Wf3e1e zLBgkZ{jEqzeY8rq7@}C1)S~Ov!x*nKw`OUz31_hG#(4OU-k4Nc%j(~MPRrSxFMm_v zF6nv#zWATSD(>pEGtao!)JAYBe$q?ARS-bZtCtY8m|_F?9H#!rM){Hy5sCEn!6t76 z6J=#>P@wAn5fj6o3i_LO^rN4j5(VC18)iH6OAb{yfA!R2uuu9#?+v1#x>}Kw#8g#c z4pLMDb95#fatiM1&TxIiVUBjx;rnh+QH;;stJwPS)=7jirmr7nb zfTTICwWPc5bCHuies~2(3aw>~$6Ny2)R5RWQi<)42umADg$B14g_i56;RS-?zj!*6 zBGc@S;xSvem9MHT00|eRAV*ACOz&G$K2J+`O7x*0itc^0F0m=8W@?(xHiW z;BHn5VvDWa>Ofe?bcje=>572pq+Ta5M!P{!c#+Wmw^Zr;skE3nSS|lsZNL=T%XRkD z{a%fTxp7y#sa(pTl!|S=?1dwq6t#9lx+JGpvF7c*jti?JtO_~gb8Pk&>p^J!6n7%aAERul1nH0q#V<2JAu5*1D zt50rx`L4tfRxcun5S3swwjXfk|FVyGY(BY|JE+%daY{~CV3Ht>I3R3X%q-JNev}|bKIEx`olw#O+94(iQJMmm>xDg%(gA+GzGl~0CZFCHUVuU`SCz*MDi?t3m4r6W z_#rB8y4Jys4>s|h8_}ia7DJfkOXGU?DfG)h_7uO@U(=?aN>tS1c_X9aMCJx|2Kk=G zCKq9aPS;^&IZZU@dI{3?qp6ik_xD!>_8S2s;NqPr8VV|wcsbTTgO!_dG{cX=@vB=? z$kVI+#~vynXi{ADjYxCXgoIlO2QXcAl-iz=Lykw^W@`c+71<~Uw(&wtX3MZ{52Ve@ z8*R%70yOP)tEf`#+FAzc{Edf-(qt!jLL%+q!t$0-H(Y%hJ~R8r`GQFzd)sWP&>h^^yKjvDNa|vQRSC~BnuX% z36XX<$W9oI5raOH&h0?)o`@98oS5j`2&VUlP+x()Cg#5#JsQykJYQfN`n!kf>+aTt z4QY^qE2Fq)B_g%+PhE)*-3*F>m+5_pq|LrfZ}MAS+BSX*gsSTY{WM+u6wDwR32=Su zdxjWS#nlXPss=6T%vF~ISMT+{4-N~Om85B(t9uQ?M#aYV^l8Fo=NRexBM?Cyg&pQr{##dTZ2JJL=w;^U2%?JwQNP*yQ3?XL>@)_Y}w5iNsMCo4hG5;j0vw-NVNHrc{N-+JW~h6s08_ zr*qnN&d)=3KlNJ%lJVH^JxSwJk_>+y>V0Wg(Gu{CR3bUFid!Q(+w7GfUXW-Jj{bu$ z*gU1in11eEZK&k=VnNko4^;z>M<-_)jjy^)8Kd#eD=25KUT+(>Hq8Z>#?t%^1ur!N z_KV=@J2d#4fDuu@XNF->{*k_Q6nTaQ&3-yq7q1j)o9(*Upfa0nsSr8zrv4w)@-_lh zJiOJvHq-N`oF0EmXf6@S;-F)G^tEq0*6FqDyXT4eGR`%wxysu(*u=2(Z-RySbB(g) zJQl8f3YHKPrsT-_Eqocp3wK<1!qUSB)BZiD27Riqfi&E{x@Y9A)($uoR6G#U)A%?#jz=<;92Zcctn^)^96*LZlnAfy}`ub?68Hl39x^MLsHng$1L zcpZg5D0_8hPN~q-D;U|g{X8LAyH6L*{hO^eoSFR%3TjF%Q<5f*tMz_?LQ=8=5JRH5`LWFMH^QxTZeo8Z#8thIZeW99ck>#InFsRw~aibFt{sPJYEUE|S^kP?9c- zDmyR*^%L4D=O^p2;6;fMbhSyykAjPPXD^VdG{--r7_HpVI#zVW9@;Fge4LR9|AdTX zin)r0lnAA~`n}=N^#LhVqElpYe&SQ&KS>IX;vs5i34Gn+089)W_GrfrENafYWJHz{ zW9?ms@n~Et{3?bpQqPoV*j;P$GDcYNF)kZ!`oYyBU)pmvy|+4gNx6|i{K;$J>)w>% z*>1gR#lzBjFMa?JgNhA*-QHEFY7L!>if9d-W)y$~lH%_FR=d4@vPisBf`y>6l> z#L@<}dfjK@gJsP{!W`b4>fBz`cTB!GteiW|+*n5w-40MP5T7DBqXNysQ~Xa@xth(x z;7VAwbZtGWv%mM4fJgODvGCeTw++0HhrRhX)iPCv5c8mN0QjXC;&0laeCk_@ttvmZ zg9*fg0qg+=B#?1{V}CDaHPv=8K01|9hJBrav@)2?Z*vb5LD$6O6=w^Jnk$1P#yQ_>rotwc4EeVLb%qa1!^}AYD8l zFeUr+akoKcMKly$b_@Ax?062WU$|jsjHpE6q@6^ScHU@p60iD{yPLdzg2!PDN6M ztDuV&3OVra_$b-zUGQrK1}}QI_G}Wol%;6@yLEi3e9HM{mRoa?&{G~B7g_Gv;KmR8 zFm0AlMU9B?z9H%S6Z*Lm*k)`H%B8;E*Zl~q>;8h8%&#RuzV(QclDnwBg2)(?Z2WWU zzD;-d-f>Nkq*&pAP`n?*Fv~3Uo`&o;$j%Qk)_(qsTiy_PI32`acgUbORSX=D$5))Igf}y_xyzN&69C17&N5p`s?_E zXHx^HeQmq9J{_>r-y7Y!-<&=M3JW&XJ1i+#H!{3-o?iC?cu71K^$zlUb_RtkrGuU$ z48<{CI^5rVcgXXFf() znkB}&`b;JRGsz@tFeA)iwd9tH5ySbGnM*^ExgJT=PeitXjIhP)kzq<}6~$Hdlq2{i zv@2MmIXNC7L&xK&Ygel}t~Ece8En%~UK?g|sGfv1jCQuCCUXbb<0%`LLdX-OI>{*{ z(ZS%F+Z&K%r>9y?Wj(^da|0>xNk^gKVQyc&EmY%_&^kIbeus-fZu>gMC&L84T7V|a1^s|xB^PlRowg69HXVtLBq{~CY|H0d zfaLcIj#b%^+2wWyi&WTe6iA3Y>sm%G{t2A)4E~^wKemA)*<1R!_7k|eXaBFhk}Li$ zjfO!E{;as++DF)aqjl7sy>Qk~U!9kfU;)w>+hkByEf4WA8)sEEs^UMQGOMM~-GO6bC zg9@m)AdAvtK&_T*;1P(e`FY4O)1fWSA4|e{Z;62!c?Z?=;f^95DXZw}tANZ(vkg4x zE^B~ZFJR1!WnkKEuD|b@=r9Cr97}~RWiP0lK6RW};0&X>cHc8A|EHk^`@XSG7_UH{ zN;De7N~;}H!2N?uJlTDQYF%hKmwZLibzBFY0Y(%TT9gl4hl7zUlT8j)SdSWMr$Kha z?Wxo5m6ZLj76}``vcc742YYKYZBcJ1&;cVZhNY&Pk;Qh<)~^{hBR!`sWz~IRT{YC3 zAiDc^FaL+l6zdTPapz_R7*7A1hHr@}I>Vh%y9M`|abOoCCH{P0dEGI5}FsimHISVoai6}y5ipaf9qgPkQ5K#JG zXoQQih}nyY>F{hFxL6fnOViTP(J?KZDdBaT5vbL!V;1e15R{#E`8!g_|KCMvga1i# z)}Q{=q%aT;4t(kA6eq)``A)Gy+sxfNt4bGlx!ICVu*qR(I>KkU(=7-zGXye04r=h7 zlh(Z}(*X^H$`W0dZjDRzy5q2mae*I1DR3)5$J?@brIV;u#!N&4JL$>hq^WhLB^D|X zg{Q^aKgO{T_ec%jaYhA}>xH6Ymu{ZHuhBc9P~iAAkH@4lHF&d1jHNTbe?%1vjYA4R zm`)QLp|tT!sJzWDDv4`ijt{u__~>pon1)1$z|5(7Nh2NW9{qIa1pfVrK@|O^-^L7% zN^Szb9i+0sU#&g zj>533AQ*9dGZWJNz>)nP0f%`$GmMDOJ3Kk_BD(eY8cG-M0Etrl?7rjkiJCv3PaJ3Z z$&VkaMSF703ev-2tAAnY*uj;GWF{e=lI(scadT1+Ek*$|KQb!P`TUJ|4Fmi`i{afl zb)C?y1NS=fc8^kxC%V5DVo=USp`NH+@?%U%wnxgCbc@)X%p zy;u0aO6n)Xvd@XjxS^q<*~s1q|RiOJVy&_WPRR^=dMm`1y{!5e!?ZC$yuuKGhsFG4dtK zh*bcI-b^m261&qN;nCyN`D6me{+D;p*cg%l`|p`&0rBj~cWTDDh@7W#xGr3t;Gkeo zRbQ_JnbXC5`O&XiipC0t=`3S`C-;xDv3ZU{@1Z6$*m2vWb2#mLE$b03Z)t?Bw*{CL zDD99-a2!&43WhJ_W6Igmv<+;4vn6#;!RC9j0CV+sK(I|o`1N@wWChyCQR9uOX!k~6klR$-$^MougAQ)>_MPej_M`N)Dgiv~%>NCsC z-nhj-odV%UIELpLaW@I8huMvcoodFB#nk2pkNV{0Txzkrhs7%Uo0Fm;$F?~ zl9iK!RB3Rs6_SKqwq|r@1!H@&!;WE>$Y3*FLcLpcJbITq&D9d2KtR!8xSY)Ne0)@) zFlDFlSHb{at}lZNZosv5AOVm^o&0e#_|CI`E6m&;Xg(@tn(LH+W_2#pp#Gr|@>B;l zwi$d{XC@=NORVX>i^Y=ppjM;l$Q(p?weipI+?xG6jLG(0((os+rg!_RY-CLsI(gAN zW01S*eox7YX!*+Vte!#n(%~CJ>lR2>{0Jv;0i3AU#Stvip<*6e^_jC*98ft?YED3^ zZa3FesTN;r+9>o90`AZbSpP|KgafTKqqhfCO9G|Kl@Dh)PlWt~(EXvdiqr};D^)Ai zGxKvTjQ!&e4hS!Sz4l45-ey=6cNa;!52xf?7w|_ZjIH)DXv;wmGx?fAD6)#8QvMdx z_=~;aS~y|vDq5yP7J=%B9X_Hv1oNi8@B9$0?;6CjeW+G$l4h%P(KM@Le};;s%+7IF z8H3bzLymRp8pNa<3Cv5g*crQ&({v!S^DMu4i0RFXG0@Ln^J1hqHJtdI96!*&6Ia}C z9pM0SHTf9XagL^mp6+ocfXlYt_xfWq^a>WI&ZKOo_PZ)33XSfIX7Pc^!ICt`x~B6$|-w8v580 zp)CG!BQ25&Kr6}!zDaFl0OLL^c)p=~ZCB0&j+S3T7EXTd_@>3@l|uCv{ab|J6TM*5 zPc?>gM|gY3QCCM{gDOP}a>67^qQW%B&VV0~xWF^TLtKl)lri{yA0!&)p9Za?^@HY& zG@{cJU(!cLtz+_kL>0>AJcysE@PN9WR@KCr!733H3XGs<)7$V$Bt(?*ZZJe8_TtYtsrSYvJ%|2yMLUgb(IBfY3LD`7nHi8;ATmWRV4{Z&zlU1orLE}--06?>38PQ%RdB7!=-yOWiAlmvADaHu}P$gCx{g4Bm z|50!Fz7SkCGD5-*D`X>iT)5+pXLOUB{Ot7lgt*BM#PNwz!mp)c1aHaCFAwT-_yaQc zY*68<`Cq)(2pXUmC5vWDe+TQPxX`V8Lmo%wkdD8RyC>#1Niz)o^A0IZ)c}BU zxdstRHN&gkKzZ7YaFUhj5Op!z?oCH!pZ?Nw8FGpcfI*&94pbZmd9#CQfWRB@KW{KG z)fSfYbXtvS$|_zx2xC%%aDi;vML6r%dj%Us=J8wMI%q77wKQ2P6~>3IhE;48ZIvXt zRMoM|Fn;fT1+R3P_;+*e>-jZa4xeuzi<{`NIKC$h_P@F756$M7W@LLZ1+kA9Q#EGy zFJFGv5|pOkk_P9&H$=XMv(eWxr(&L_oc?0%@^Xk#HvMIKk{gBIyl=v0 zubGXWv(CF%+-LKefu9H7{diM(80})E_rtP??x3oF78Zu|Ml3dDdzizvI)9dw*_Y#Q zw)(dLENVZcdH>vJVH^6Qx^!`M9b;3CO6D5w7PnUnpq~f~iDO}(OPJ&M+Jn@8iOnc$ z`lpSxdha8COA9pKk_$l#Q0OSyWX;>#V)&rUp!Zf8ZK=L^y?r|Nf5MA0m)JMOe`@LlqGi=Nd*yl0=mg{f#y;NVy2EhU?{M1OzIVJCWQV);SL z1$iJ`i}_hcS6HW-^jf%={rt(I`&C(^uB6~EUrG#`dvB2*^JfNZdOeq~wFMleF_^w?vk&5AurrD9R-tZo8M$EXF^jf)6D0Y7%C@DDa-1UG2zo zb#+IP)4gNX z+8BJO-`jRIIA0DM(`A6MIaDMS^6OQ$d{e593k9^wH=ia%)CT*1{XAJ2K1Mi1?cLn4 z$gTY{?GJ@kDpY2pA+p{WSEJ-NmJa;d;XdM>B1H%G<$|Mgb_d?VjgwT&KHkPu*;QbB zF)8y0Jfi_D!@b3489q-CV|v zHw9!P>Izao;Qgeip`DRyJbr|7Ip?^MUyxY z^64D&zZRU_veo6&AXR3qJI7aXZ}ok~80lN2+>^kd!!K!PlHWSw*0PQRS}L#alw2jCW^l<(&pb}3kJd}1Uh(2b%`EY+isrZMfXUQFI_vG$?vB49|!`JzD z_@#!8)P@G&c>D`UDDF>z1NwHx1)Pi4#C>0n9{fEyZJ>#Ivm*%i4M#Nm_dh!Tzdv_| zq=7r|$)7ZBZtKLh8^I!Tku)yBpdBI5L%7mz}5{7A=OwMUxhpTu2m|+0_8v-Jq=# zZPWSY!YxnO(5%g1d!CN$vS!176wsV&XXHgUTFROd%RnaLCOHPJXyZD*aXwfc#VO71 zo_~-UN5TF9oR=*Deln~j zmI*S3z~u(@R^hTSz*(;U79r0U&ietNW>_?hpM+z`XWCDSGN^egzAoPpP3rfz?4>0j zS6=D_b*Ed&QYg z=2bJs=nq2#duBXasFX*FDfGWtYuEqHwO(cfp?j)2Kb=vCtk#J!u=CEtP*YN(5v)$4 z)YR4ycDc42&|E;?Ex9GBvg_Ae+@FVFEAY?^zde#|ZvK|TM&6(NZUOO`G{{uHntyz6 z#^$GZ3Z|_kAy&lPj9hH8>G(eo21*4yX|nFo1fuO4}KD#e0ThpkKL>CzW7#O0$m?U z=wrT8%PF|)=cz&pc(^CKo*%7L3l6|~ZO$PE%`uBex?^G^Ly_RG5nRX)NEU`A=;XaF z@IoCP>CrnX1LkF(p}&w_$U|$ca|`qgiHMs8nH>Inz3emn(FM%#+Ko9tgB3}rRw&f| zyD0;-ZIowh8yRqrf#tmosiPNdnP@L7j0#37&Dw$ge9rAWl`pcjzJjdR?wq|di04_| zM~I=gFfg6*z%3o!<4Gp5+UUwZbH3$CrM>(ktUsT4XF00)Xt|T9WIzLnu=ih*gn-{&JN|G6Y_zBcqvQeV8`W7J7mLLzP@IF%=Zf4o|*YAaBm1a76^lOkQ`!@*n&kBPM9xnk3uH= zn|65eqPdY7nT1(%Nl>rDDgE_n>p!3A%w@Vi;}>!x&9~)zBK@x(@BDOvvAg<%C0nz6 zcpFba+dU|(RcA~pqR6yZT^0`7ke4B;k5Zl_pB(={SzYbl_M=8-D7O$R7x&feAdM^m zI;bjS9=lNNIG~|C5%P^D0xYFkTlfo7-!^;J=t#JsH30!z^k5a+zRym|l0k7kOM+s~ z4#NHZ-DAHMsa?BBy+XB8^W6?F+kpiSmunw+-PUsEYTjoB9BZ+l62rX3j2M_?$mO4Z z(8u2n3x&d*g;NfTgxSa$D6Du#U+=ubEfj9N#eQJD&)kSyD5)>F6Qx0j0?oN`dysW+ zM!38=Sv5#S4NEyc%dVa8ZQ+9;X)K}24_|1r-)kWCxepCOiW4Yj|3ol)>LS?+i7bmu zRZvCT?ar%++(UTH*Py0QeNnf)$SGa^{gp(-LjlziraHWo2 z!OvbGI^bJFG#4S9esrkX>tl&U$qJMi{qm4VvRv{^Lkr32MS$Fvjd08kRG2)0ajI2= z{$du(YG+>l>nEcI;SlsPg@FExZ?l9Ro3p141g>DdG$V^|peofKCt_Fhm1G#F7;bvR zNdxKo6+fivOsCvWCM_!n`GrmVimQGjaZ!Uz6m}vVPAg#i?XMCB_QrBS7kVe6o+DG1 zKb-(uC@^V8zWcN=ve-C_Hc?_EgK~7g<>d+0%jSm!| zALq^K+N64^Y)0^V4Av6rVI6q$Flu%I(xL(>grHbwp9j+{`~|HRgW_GK-nzQdfny)N z4*!_fyB9pxUoHKA#=w2UJiv1C`%jIa{(j5!BE-#BOSwHxL8l(4b=|2&A(yWBr_Om=4$5UqfFX zwzx!d+XuWWL(p5JAixT|@ck$G`+FxL4)YR5sJLDt>_35A z`wt2|wp9}ouEM*r?@Q02!6UXH+12kZ+iejrb00BKhi}9lLA7eN6)6hyHfk-aCRKCA zb8mHD=zzZICF_)r*8gttL44K9RPLMBkY*oOLH)L4TB-3O5sgyq1_nN!Rb)6L^>f6_ z8Ff}34q5QnDXRb-@m|X72KBQ7H@$!eS9{J?4ljJYeOzMDW10EPKi8JmO^S{Dt{&yR z8pqRKEbuQ<5Lnhq%8o38o^C%8Q}AjOy24y?y5XbcEVTl3^`WsYZat@34&MXf20+B2 zg1-T#aNtNWqrR50sX*Y`XT%k)=Nbat;X8!m7$^I|3e@RRXVy~HQ$WmNfT>P3o4rB>Z+8i7#*T$iSUeKZJ zev4m?aJDg!535xX#>>FjLkwEyi4ALZS(9Zo6mnLge|q?+ygvq`+v7UTYZ=A}?0e`K z>VR5>8B5=80`jex_uX*^6*IHvv>mi7Xxpmcdy=g*sNG_hp2;Jzr+5`Ew5|INY2+El zAK3C|r;o3_&h`<3*3dAZ4Z6HrLH6zxi8ocoRpio7_=HiK2qSYFV%UvF6>E|C4{i;h zkUQUP$~+y6Px1TzWe3c>4L8sNVJe=*$`>1a92p(EWdT%4L$mXY2{xv*U(h1SVF1Rg zUb|oZ>(dFIKYu`~efOyhW+RX25YTG@#=-p8Yyo;={d7psOTZ8tfP@3s6poIFuPX>4 zINy-^`>E`*RU~b*(l|0>`iiX_gGUokgCImJUC1$}L2{ve zxM5t~IQCUoBs?FV2(_YrAMyqaUj+-vB6b{a6p6jjqCd-(q^ZEl@?qh2(F$!T*@}jo zy@>ZuARl%B)k%F=2toML_aRPMHH7Gf+{Q|r`b79Oo5zDDAm)IEP@yN2OjBmJv;Q$!bw2}d#oRRRx<}&Pw{e8$ZY3i4L^~QlujnNlIoxmnM z-fkuJmaXS*gLfbV-T4RRp#yBA?~MX2ehJovvZZ<@>J3R8xi146qjlQ!^BB2UY)WwYcx6tfe?-9J2}(H|U_b4QGFQwP|M=gr zSN{K-?hGMW`WBwGTCia0m|dTx&U9R;$^4`3Jb%TAHEHUVxqSAPR2Kf6okA?1h)TRp z)0r@7sg#{H;SuI>5HN4Wq;rP+=exxD@Hm@mN55p`POC`^hzR4m6d4~kf^nD3>a>cb zaqJja!_Ug+D2BzBFuoLm;T>>0k)5h9gk3wYPI>iy}*80-ExVQH&WP99Aod#_6 zHD&`Ab_yv{#W&4qfaiZg1L9Lup;BNz-}h?neN;Fg)@WCJuGDzGLSQKSQTM2wg&r@^ ziykfWjhW+Tbm&1(027yP@)wf|**f(SO@`tJVZuY3t4HC7kf556@>WP#Z4=lOV-H;) zP5Nj;TL)hcy+|i5fYFUI?V<&r89BN2hnoPLInLjZ*h3s@q$mc*5q2pf21Xw1aygjf zC93fVM=lKB@sGZnl)+iE+IDH^WoXwnk%0yaUOT5#%3{tB};qwQOh%Zn0bZBHow~JoHOst}v zw3tnY8W=XOlFpe;*yqfb<0ADp5*A8@vDN15}lYp!V z7|8e^ItlQ01ewcWPanBzgKcV8ZPn;gGxIC9wKtccaKi6D*sc%71Y1o;Gl)fOJtg~a zddi2YbXkCiws@f^|5&A)^qTlvL`R!`+`qQ+Xm1eswVcmPk!X4QH#Jn>E_%1(Br-8p zR;Xa%xV~jo((0=wBX*3Gd?}@WUvvv<7v+3`wn}fs4Qxouxf>#Ez_#UB^W2k&bvAmT zXi-Hj3ew!_{v!mG0SR_mKAZVSq2A-&JasJdrZF=I_`{hIQ|VT>Ld=y$cPREZZPr5q zXJMf}Bg3pG-I8_e`rAG5?RVpQGWT;)61Lg7eMwNI8Wy^kC9gQ>Q!Sn++Bu4=y z>>PP8&zKYxSBeJtELDI3O!#GLBVc#()s_nxj}C_2JBlSs5#x%%Bu@i5aSzSjv|ym1OE|8DyMb0EzJ8=X3vOUM?QMvGuKU!LBL6sL2EKNwAlB z=05S~{+YdkR+6bjeN=a3E(!IonF_0HzDof1+v@QnFhMf(>>1I8BLldu+`|5^h~WcE z;hSF&bU1T-qpfQ=d?^G}zvmhm#!`Q6D4%Lw1*+3Fnm(Pi;@Q9U@sy|Yt(y4gDI7V|tqPWVPY)Cxs^_d50sBd* ze5QP9v>JU@bbAJR%n?u4Zm`a3nH=I)_#VnJkq5~j+@nnM@GAkNh~|aNxNg?g<#7uT z(YPe#PZ|8(0s{3aH1oJLj2B$}$DgD+3BMb~U7qjqkb+FUss5Sn`sI6hU!Eg$gXrUK zUuq;5`kVZ?|F4G9B5Sg(1$y82Xo+MS1$jNxsq{rC4$m|fEqef&(9?AE#{7A+NBytn zY|z)l%&ahL+i2C~12CdEIqQLeia4RtOj8L>`-j*Vl=BmjDR9)xA9v z(7UEd4iQk-`mU5&(7{vD*0ox4NscD8cD*>!ou3J0guXx(&Pdc`QWqR
=MO;@YZ#D(80f1@9g@e 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
j{??rbq3YVQ#aa+Rfob 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⪻Di8N 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%0Aq1bU+J*z`GisDv<&QH|AvTSeR( z{`27nDH~6-wF{cp!!=*$NAT$dj>JX+8*2kPRw8+7+f%arvcmDWiQ2_&5aLTABIg z@Z8zz&5d~c7M!1D-(Ni!xJ5VxO(4CfN_64ChCk-{;%iTpfV0A`Tf!N0b_)K=jSrvfcGJQQ5~arlZFe(N`nL}QggzMfA= zZUKAf(*YS92wcVyea6yK!;5u=69nR z)OwSotGmL4T_Gy)DD=hOMGRaIF#^bkV~gfe(UYhuL06@Qo$nWH>wi9XC(PKbBcpOa zICv>HK3%!Y`T9kN7vf)9|6aMNs?nsiXb3%AVD}=t*!uw=Hdnq|vNEAlIW}Xim>4#< zaj-h!G}?g8+3#IWM0MOe7E_A(u#?GQZ=lG_0)ruVzxTX9H5GhWVW-3FTQjo*2E)tr zPR#ASyCjcuv1W5o^{zPbCT<4Zw>sUICauT3Z~_Dmw~r=;1P_+p#VI1%lWsX=Ij`sL zIJ_Nw9a91uIt#UX$9p~HI94k6MkSV~EAHa8=U_u_`o-k^EGy^uatWy`6}xu}NbM6N zzKp!UyJ?~`a+FI9P4#m9v3cU?Oj43z$5gF;bwCQGQ61C~u1B6vL>_Ji6V}eE;Dt;@BnPPmCBQG05 zMQBJES_Rd-cI~eO{a$o&*4U!yzA`X0XVl`Z_$ME(`CIww(QZZfMwG{HUhpv9JZZABW}?z()TpR5etYsk>&we#wUs`V(WNU<$>T$wMmwkG1P8dvw&&qsQX$Z&5TJ9F z;ago-Eb(}l+R^Nx=2s88=h?!3E)SAako;y=HB&|qHeY&BHfKNJ7PDnV55(|E2d}1? zJQ5PWuvX+JAMHPM50BGkK5mV}-+-bm_ciGQ&o zs$x>rDpVrNRGjQZQNnb2={QjdYXm#Dth{3nUW=_Ks-vgG10J!WE8v2;sU#x!C4%Z` zXXb$c67VFIQ16Pp3HsG!jT-EU+$+=eD&idL`Y+=AJK!QJ1d5_w08Gb79rm($W^Dvo zw}&qc#A?N!35@+lS&qEuOeVh-X9#qLWj_%41ueFh!Ez4V7BHp7yw9YcP7l>uJS0Z2 zA&MipLfOAiyhqi!g;SM>);0_Umg6hOF)x4wlaPjTrL<3FL3lceN-Cx%{#9hG>i&ag zSl{mCNPVNrj;!{f{Gq|i+wq?w%RU}w9(VFRB4nd)Y)e$|AV($>0l6F1)GR4pWx%7( zcM5E(pgMlczZ{OrXVk9#g}3>uiL z7yEV>+3&v0Vdtqhn#HQnBYzr55R;f$d~B(DYW3N*19?NS^!g zuHD1wf6gD|2U1=6LnV)A1g6ocRYr&H96cd_BJ=T!@7{Wn;?po_ z?WJKDCx+!G>01|jc}zUyn0$<=f>|7w_7h(xi>(~Dn;;(E_}PMt5E3K+RGb`J{z0v_kfG(d0{Wj=uYoPqa>MEW1Cp#ZzlTT3{}>RoIK%ll(KYyK3Iur53g6R5wm zlp7wig_Br&A*n7#JMT0n|0oItN|}yn3)6Zq%G(-FlEvxMOl{Xy_nbze61gtKvcqXad(Cn2vCPx{KGTu zkDv6RM1z9hNMT1Hu0)V}RQWRVSN!lkS5S8#5p~*t~Lhb_GNQM46Pl5gDW+|(>{!hWRHZxx=0;l^>jYD@NCFh^C?G7ON@P?GzzflO*mV-{*ni{+ zPnh12O_0PDq)U!@{*%_&nqJ)lUYs@P*ybT+Dh)(OXa3-9yR|Fz+Sv;B1B;OibA9_$*B8dBDqB~fL%J$kEAas(#|}xTGOf%Nw1+Ged*6oY z*J9(5$cz?Dj}p!PVRM$3Kd z?-!Y6`;~me?shs^L#I{J12GRWWexh*gZw6G60-uftqi-JL^fVRfwgV?oK6S1_nA-Q zN6){&-fL*vM@xP{Q<)u?k#QzoioKQYol^D? zpLj2_WA%X6AU?yG-PROjUH5auD<>%v`#M~zWKUOr6wH5dSmAejj%>W}^pP_qwsFn( zmU{JigNUSyGKTaY?L@fc+8;~l_7y#FZO6~>bS5LCA5Z}yCK?(tP*#fgn{!W*_X~)- zq;7NcTASu&`;9rF$MZU6c+IBnocz)JG0XDKaylckE#KuWa7sJtc6ivl6M+EnJ#K_6 zMfZyEmlq^v8@`q1MXp6$dME+-!tZuf_C zE)Ne)E_`pY_AVm~5vF_^&%Uk+$K^9l7`InuWkvCOdDb->X%r9)Hf0z8EZ!iBJ`6y; zd*!e@m~PYTPkJ$Tg*f~iFu7oyt<}84MB-f{hA~-5B@}nBso3kHvkcoGkEVOLKBsxO z`MS_@{;za~pMTmO6-aeC9&flk`x)}Z`B}{?L5!roPA35-ewW3@9RWY<-&pXy7`V=+ zr&o53-4GgCC1m1Eh{^wm4rLPJ*6>@4FryIS=Ye;*iw~fMf#$|ec|(3np{#yjC?db^ zcaa~Y{r&0qN4GoE_4Pu+VC(C4oRi`_c33Ry1c?8;nve z&~$r*aYgy=gRZ`ATyZfyACJZ$HbRKI-61P75#`sxm4qh4zkLxhr(b>FhsbR`%UToA zaJJ+Usn@MrA&749&@J-#Xh&^jWhM!#T*hbMY6R{$j_sOzK@{?s_UzNNuy z@b(1QY^m8sRP8K1A*y-b?Vr4U-Q$`~w@=IRzyJ7xo5oBe>+QmHkf3#N+N9_G_HJvJ z(~}ayThWyvyLFcy#k1LPX7o+=9vlc}hyC7M?j1&Xdf6q?_PM;tNkIJ~-o>bi8&)>G zKR>&uT@OhxlTrDI&nFib zHZ%6~cHh=As-wk80g2`Dth@M2Q#*rLOIZ63LLo~a0`IsW^eygltG_PfH`y@Yz*})h zQ2~d;AWK@c1pN>eL{nmn;V9LjUVUeKP{GxKt6C`X>_z34%Ay1CD_0_ajV*VPBi zvCO)E1&qA&c(04ec6kUyU#opCdAsE-;K@B6u$AYwmj%O}+=IjF8&MO~1 z&nu540*f!-EV#xbZ2P#93!e&7w8i6qB+-AoL%3|TR8lJ%h_w2iTI$#>Sjffwly=da zoYZnPqG2%3$sIM1x#+gx0O39rwifo&hmPHC;|fQ;P-0nN=c#ANmPvDW6V{TQzf&yK z9}T2hqE7cdy$Za;xYEuora5#h&Gr3sc_bqT>|=<|fFR|d)&LVVV|d9pCha>8$zKy2 z&s3AR64!fBlv&X0tF^|Xi*zcSbO;8=7Z*dewze%cXbrRqWn7Quj(BDb3VhPs1{~kH z^xs_^mCmM%0IH1YhRF>w#WM&p!-UwCYUk~hX=MmIor6yXu8|V$^G~gtD>?3*3!y?@YwLFG(*>V67Np*&G2Ghi=RCW-tLx18b57DO&gA+8OL~TjRu1vWpvUgxOOB^& zua-ausmY>5!}b0`gXKcHr=Ls)gcGf|GtcHS=ic#VwWH*5#g&)m_cKRH4=9i=ShV}r zmSsvvjJ5Zv)!zqdO+&O$bN+OEi3UcgVJ>HkxdUwdAL;JX1z+gq5gO`1INYvG+Bj{qpg{nyx(O+$b0)& zq3*2D48u61%nKCa%y`9wN}JPdmYM=}asqr+OoDEj1Az?O?foR|Ec%`1?DsB7jWJF9 zxyqWMghc+Q0o&2I_5Mr$fpfa`QqAS@TJR7s*%X01(8OS?$A53Nrtzn5K~X>Cim)er zAeC?Z6A+RS^?R)Q1SHhYFV0Qh4c8c2>2v5V@9!=URFpgId70cRLAU7nB>3`5C&HBE zOya1Xc0n4nWJQ}P6MZ}Zck~Q6O|kf+*aye}rp)x1`C9Zznw{6`t;f^xGzO3>ijO>l%NUr5cx;+@Adw4_$T&Q*4K?EvI5DZ{;n4rdYS~=6gezf$Sg+A`EuRc)TK@BxcyW}G^0{A~G+7+Dw4aBXlK1V8WgF^zoXSVtrP=xl9UCFZj?v!%H zvwz7&`khTvE7rC(B|wPua5Y4B+iDV&x8fftW3t>-IhSseE-i)md|=+Qx2iFvwO?G} zSel#uCfjBGoTm~7sVJ_GRbhj-A!@4P7L5=)t2ax=XLVsva5 z-HB-XF^u*C}<)8>b`^w@(bfX>QM-Bom-dwB(H<{l2gBsv_SOyexl(G>=A7_Dy zmDk0nJ*5Mge|o<75Xir@LgtqA+9m+z%EUWH7MmYaudLHQ|giP%auFBgJsJdem}jA z1?oDgff&E0fkh`gFGX>|p)cEPd{QOJos9Yf8RuO4ezf*7*%y}n3E z1?KW*W+P-}QM*DHY8GRNh=t4WF8&&$dH*uvhl=vI#8rcpb8ThUvtm7XS?T|d+xoz`xD$i zfdb~9dzpCj=n-%&J2*YjpfS+DG*-s%(R%+TxIhBCe$VV|2{-rrOw-(;!@hDVwquiB zd$vbxG^dpuX(YLAzK}rMUOv)tp>c-L9q1V_KbR>iaq%yIf4_>7G_i58QyY3*9sI;& zd~iO(^^VN=_gW8f^{{>QTl+h&1D(smogDc&f5aw!)jPuJ`pO+g_1lwDj;gy(s7uZgNZ>-d zprDXNF&wC0X|BJr+PC}AwV#?Ef$nDoZ@vfu2~qXdUlnC>ATe(#t-PSWyr4R->a|Dk z$DDscf-Pmnjo@Rk75xV%{;IAV_V4NGI_D7;*P^8*EQ;uopk%GT3{zIdw&Movo)q_2 z?{}r1_~d?6GIoC-XKAU7f4@fGQrL0Qg#d3S;d44*|KDK&Hgq?Aif<;Y^sa#ooZ7&e zt^wJx(%yR4zsvm_qrUEV`7;y2x{Z%dovr}pP(D+RpiFf0eSdN@*LQKw12YJY{u@ql-E8@VLz9IUaiam{Z z(~6{KR}VLr!M2IJF$1stZn(c%cyq6J&7=F)sELiurLqU~eJ8K_R*$Jof!h-{Da^xa z-01X^n8zhz*T%>0ygpI0ywpD51P)}uS9+@)zYY28f*V;IT)?=}Jc8z8Xf?PSYxITy z*g7oC9UP$Bhc=e)f_tAwyEY`E-1_&1n(zYJ7I227JsxJb zHDmHiA!~gZ(f0osB;p;>#QUVG*V1DXD%5*U&Ubd+9t{crjnWs%Mv~QLWXUVnJI@`- zYK|9GE=J(WULkLFF|O*Fyq$WDQTlz{;pw*%Akp^i0((KQtj$J;Y)nb%>YG$nb_>~n z{{?5Oi%SqQ@7}^+PJFZ!a&)dIj8zH9d{gSFtm zwe7??j+5x{7)RG!X2sycZY+s1_MvZg^c!36`wPXAnl8iFWi+xIMn9jwY4&*gtUR_& zLXq83YukIUdUtb;tXg;fa`5Z=s@vq2?ijV>8?GaM{}|fbCpnSArgu;W&iV#dXr-tX z8IE=YStZ!9AEu95pq6O@zu{$3sz1ha_ojfjcbQu$3qe8;6h~9 zJz8lh_DMpJU|W;vgOB&ViA98KYE#DEl?I^@94o`c;U7_&e$r3DK< zi}`mvQoX)E-^gjcJdB``&pi59a8^|K#P#dK+fnPvya)t>pgNuWY9?l54`?H3#)>#& zzRxkLwz?1$(Gxk_K8U2ZfAT48Dl8HOs8EGfjGBnB6V`+;;Hb`uDL3Ig7%KzRqF=;1L8d1p6@UKgJ2kW z8K#hvDK3rz5bTuXnc~;!tlh~E0GhCtxN@m$)XAvZe_U*9DU<@ZP*%&=i&h_7y3o*b z?0o5F5pTUxJyr5I?{JRV=67B(D2Jd_nrCiQMK;pZrUMWGzCo>FnJ?Yg^`kcIf*U|! z&P5G~q^oZAata&u9z31gw<2w32FH(}1o|E()mxkLfi~gysAS8qTm{)V$B*W#7d&CV zhLZ+w8#%oTj*?k!+?U!%?7p3|a&yq_T53298*M5pRYU=jPA-OJEA&0q)v+#z9%xrz z*?iqnbSi|et!1+WQhMioOG2+*xX`>EwRRZ+hxmV*1@zZEm-$Ssb-7A_W-nqcEg4g1 zGFrNWx6CBC)Ep+Q8CxjKoufl99cvvz@^4wUUR zk*UDVho(;NdruS5zd|v-MLN@u(fR7o{VPI>mid`^q8aNr=q(mC$o!2tBlO1S>yF!? zs2G+)Uu{#iGL*+U<||$Ns6(XyPJ3=kp_!S578N*vZ= z3303oqZ2WgGZXPAV2}!y{ZUA$i~Sv=O|S5mT^LTAF#yRYBB7l~5aMmqVQtUqoD&Oo z=STo6F-!+j2|wy!iT15%s10ZOy))7mH8A*azb;^+)f3-|SEL2+hZC%3LO%)_}CW@p3?GJNDJziW&$oePy0M@$G!?4pfU$ zWPi{xqL;2(S{uR~Ly!inC7o6kZ~5;ie%mo883 z!^&yr2;(cIf#)S+WkpI$bC_Am#(rE+&ho_?7S>y~PIaMu7V&|=Snw{LC}TU%6uLKL z)@}x9$3I%^^>&dvpGyw=3kt=zq)XPjhCY4Q75k3pU+l+YPYC$TA+z)jRr+XZ*d%I%DByAN|KhTnoCMdMe!xI)&Gz@V$s4cKUI3tOnfXiV_a!sY3)0Na3tVPmavRZIZ zLue;s&sS_Y&0e}h3a%vx4%@!NxP2G5${{%2cmcZQPA#}JuvM^+T>LP676GVJ`yeGD zzL8~m{1(RdgK^RP)kSG<%sB+w=) zGO)P-&Xj@^fjuH~b>wsouSEde6T}%fGvJm_9$6Swwj(;8JGivW)Dt8vTn_0|5;T@Y zRl=4s1I_lOErLS;s11LR^z^WEK;V>=Jb=wKnBhmXmw1YGr&|GtKqygXDVfGd`f<^? z9S|njYWT2P0Bjeh0AYq_h);$wKmB-moE8^8UgIOWQX)1fa;p^=UCd1=+_A8osPff3 zg}$CSO;{<}&Aq`vnF}=gp3j=l3U)I%A!mLA@VX|9Jo{>Qth$ycutK2K8cMAQRQE|f zD}*Z3T2F#mMyRVxkz0M(vuN%T&-DY2B7rLJRI$uI5Yg%nIRvG9G2ZULvqvsYLHH|n ze8g+QmK064fLX`9SGOJMFjJ_|C;dYoO2nT@<~d}R-ys75jM$e=i5XAru~hNn0K~PT zkkKrKq + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..fdc392f --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..f8467b4 --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/ktlint.xml b/.idea/ktlint.xml new file mode 100644 index 0000000..92c4441 --- /dev/null +++ b/.idea/ktlint.xml @@ -0,0 +1,6 @@ + + + + false + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..80ba5d5 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright HighCapable [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README-zh-CN.md b/README-zh-CN.md new file mode 100644 index 0000000..8c02071 --- /dev/null +++ b/README-zh-CN.md @@ -0,0 +1,93 @@ +# Sweet Dependency + +[![Blank](https://img.shields.io/badge/license-Apache2.0-blue)](https://github.com/HighCapable/SweetDependency/blob/master/LICENSE) +![Blank](https://img.shields.io/badge/version-v1.0.0-green) +[![Telegram](https://img.shields.io/badge/Discussion-Telegram-blue.svg?logo=telegram)](https://t.me/HighCapable_Dev) + +LOGO + +一个轻松自动装配和管理依赖的 Gradle 插件。 + +[English](https://github.com/HighCapable/SweetDependency/blob/master/README.md) | 简体中文 + +## 这是什么 + +这是一个用来管理 Gradle 依赖的 Gradle 插件,所有依赖集中管理并自动更新,解决了每个子项目都需要手动更新到相同版本依赖的问题。 + +虽然 Gradle 后期推出了 Version Catalogs 来管理依赖,但是它的方式依然不够自由和人性化,且存在限制。 + +不同于传统的依赖管理方式,`SweetDependency` 采用 YAML 进行动态配置,可读性相对较高,配置过程简单且易用。 + +## 兼容性 + +不仅仅是 Android 项目,任何使用 Gradle 作为构建工具的项目都可以使用。 + +目前暂时只有 Gradle 插件,IDEA 的相关插件还在计划开发中,预计将会支持配置文件的语法检查和将配置文件显示在 Android 项目的 Gradle 文件列表中。 + +支持 Gradle `7.x.x` 和 `8.x.x`,其它版本未做测试并不推荐使用。 + +> 构建脚本语言 + +- Kotlin DSL + +推荐优先使用此语言作为构建脚本语言,这也是目前 Gradle 推荐的语言。 + +- Groovy DSL + +部分功能可能无法兼容,在后期会逐渐放弃支持,且部分功能会无法使用。 + +> 相关功能列表 + +部分功能将跟随后期用户需求逐渐完善。 + +- [x] 支持 Kotlin Multiplatform + +- [x] 管理 Gradle 插件依赖 + +- [x] 管理 Gradle 库依赖 + +- [x] 自动装配 Maven 依赖 (POM、BOM) + +- [ ] 自动装配 Ivy 依赖 + +## 开始使用 + +- [点击这里](https://github.com/HighCapable/SweetDependency/blob/master/docs/guide-zh-CN.md) 查看使用文档 + +## 更新日志 + +- [点击这里](https://github.com/HighCapable/SweetDependency/blob/master/docs/changelog-zh-CN.md) 查看历史更新日志 + +## 项目推广 + +如果你正在寻找一个可以自动生成属性键值的 Gradle 插件,你可以了解一下 [SweetProperty](https://github.com/HighCapable/SweetProperty) 项目。 + +本项目同样使用了 **SweetProperty**。 + +## Star History + +![Star History Chart](https://api.star-history.com/svg?repos=HighCapable/SweetDependency&type=Date) + +## 许可证 + +- [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) + +``` +Apache License Version 2.0 + +Copyright (C) 2019-2023 HighCapable + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +``` + +版权所有 © 2019-2023 HighCapable \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..5e36f12 --- /dev/null +++ b/README.md @@ -0,0 +1,96 @@ +# Sweet Dependency + +[![Blank](https://img.shields.io/badge/license-Apache2.0-blue)](https://github.com/HighCapable/SweetDependency/blob/master/LICENSE) +![Blank](https://img.shields.io/badge/version-v1.0.0-green) +[![Telegram](https://img.shields.io/badge/Discussion-Telegram-blue.svg?logo=telegram)](https://t.me/HighCapable_Dev) + +LOGO + +An easy autowire and manage dependencies Gradle plugin. + +English | [简体中文](https://github.com/HighCapable/SweetDependency/blob/master/README-zh-CN.md) + +## What's this + +This is a Gradle plugin for managing Gradle dependencies. + +Although Gradle later launched the Version Catalogs to manage dependencies, its method is still not free and user-friendly, and has limitations. + +Different from traditional dependency management methods, `SweetDependency` uses YAML for dynamic configuration, +which is relatively readable, and the configuration process is simple and easy to use. + +## Compatibility + +Not just Android projects, any project that uses Gradle as a build tool will work. + +Currently there is only Gradle plugin, IDEA related plugins are still under development, +support for syntax checking of configuration file and displaying configuration file in the Android project's Gradle files list is expected. + +Gradle `7.x.x` and `8.x.x` are supported, other versions have not been tested and are not recommended. + +> Build Script Language + +- Kotlin DSL + +It is recommended to use this language as the build script language first, which is also the language currently recommended by Gradle. + +- Groovy DSL + +Some functions may be incompatible, support will be gradually dropped in the future, and some functions may become unavailable. + +> Related Feature List + +Some functions will be gradually improved following the needs of users. + +- [x] Support Kotlin Multiplatform + +- [x] Manage Gradle dependencies (plugins) + +- [x] Manage Gradle dependencies (libraries) + +- [x] Autowire Maven dependencies (POM, BOM) + +- [ ] Autowire Ivy dependencies + +## Get Started + +- [Click here](https://github.com/HighCapable/SweetDependency/blob/master/docs/guide.md) to view the documentation + +## Changelog + +- [Click here](https://github.com/HighCapable/SweetDependency/blob/master/docs/changelog.md) to view the historical changelog + +## Promotion + +If you are looking for a Gradle plugin that can automatically generate properties key-values, +you can check out the [SweetProperty](https://github.com/HighCapable/SweetProperty) project. + +This project also uses **SweetProperty**. + +## Star History + +![Star History Chart](https://api.star-history.com/svg?repos=HighCapable/SweetDependency&type=Date) + +## License + +- [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) + +``` +Apache License Version 2.0 + +Copyright (C) 2019-2023 HighCapable + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +``` + +Copyright © 2019-2023 HighCapable \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..64ba158 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,16 @@ +plugins { + autowire(libs.plugins.kotlin.jvm) apply false +} + +allprojects { + tasks.withType().configureEach { + kotlinOptions { + jvmTarget = "17" + freeCompilerArgs = listOf( + "-Xno-param-assertions", + "-Xno-call-assertions", + "-Xno-receiver-assertions" + ) + } + } +} \ No newline at end of file diff --git a/docs/changelog-zh-CN.md b/docs/changelog-zh-CN.md new file mode 100644 index 0000000..12f05bb --- /dev/null +++ b/docs/changelog-zh-CN.md @@ -0,0 +1,5 @@ +# 更新日志 + +## 1.0.0 | 2023.09.03 + +- 首个版本提交至 Maven \ No newline at end of file diff --git a/docs/changelog.md b/docs/changelog.md new file mode 100644 index 0000000..04e947b --- /dev/null +++ b/docs/changelog.md @@ -0,0 +1,5 @@ +# Changelog + +## 1.0.0 | 2023.09.03 + +- The first version is submitted to Maven \ No newline at end of file diff --git a/docs/guide-zh-CN.md b/docs/guide-zh-CN.md new file mode 100644 index 0000000..b924862 --- /dev/null +++ b/docs/guide-zh-CN.md @@ -0,0 +1,1156 @@ +# Sweet Dependency 使用文档 + +在开始使用之前,建议你仔细阅读此文档,以便你能更好地了解它的作用方式与功能。 + +你可以在项目的根目录找到 examples 中的 Demo,并参考此文档食用效果更佳。 + +## 工作原理 + +`SweetDependency` 通过配置文件定义的前置存储库作用于自身的同时应用到 Gradle 默认的项目存储库中。 + +它仅会将需要部署的依赖的名称和版本告知 Gradle,并不参与依赖的最终部署工作。 + +在完成上述工作后,Gradle 将使用 `SweetDependency` 设置的自定义存储库和依赖进行最终的部署。 + +> 工作流程示例 + +``` +--- Sweet Dependency --- +⬇️ 读取配置文件 +⬇️ 将存储库设置到 Gradle 当前项目 +⬇️ 通过存储库自动装配当前定义的依赖 +--- Gradle --- +⬇️ 得到项目存储库 +⬇️ 得到待部署的依赖 +✅ 通过存储库搜索所有依赖并部署 +``` + +## 前提条件 + +请注意 `SweetDependency` 最低支持 Gradle `7.x.x`,并且使用 `pluginManagement` 和 `dependencyResolutionManagement` 新方式进行管理。 + +如果你的项目依然在使用 `buildscript` 的方式进行管理,请迁移到新方式,否则会发生错误。 + +## 快速开始 + +首先,打开你根项目的 `settings.gradle` 或 `settings.gradle.kts`。 + +删除整个 `dependencyResolutionManagement` 方法 (如果有)。 + +然后在你根项目的 `settings.gradle` 或 `settings.gradle.kts` 中加入如下代码。 + +如果已经存在 `pluginManagement` 则不需要重复添加。 + +你需要在 `pluginManagement.repositories` 添加所需的存储库 `mavenCentral` 以便使 Gradle 能够找到 `SweetDependency` 插件。 + +同时你需要保持其它存储库存在以便使 Gradle 能够完成自身插件的初始化。 + +> Kotlin DSL + +```kotlin +pluginManagement { + repositories { + gradlePluginPortal() + google() + mavenCentral() + } +} +plugins { + id("com.highcapable.sweetdependency") version "" +} +``` + +> Groovy DSL + +```groovy +pluginManagement { + repositories { + gradlePluginPortal() + google() + mavenCentral() + } +} +plugins { + id 'com.highcapable.sweetdependency' version '' +} +``` + +请将上述代码中的 `` 替换为 +[Release](https://github.com/fankes/SweetDependency/releases) 中的最新版本, 请注意**不要**在后方加入 `apply false`。 + +上述配置完成后,运行一次 Gradle Sync。 + +**特别注意** + +`SweetDependency` 会替换 `pluginManagement` 和 `dependencyResolutionManagement` 中设置的存储库,如果你手动在这些方法块中配置了存储库,它们都将会无效。 + +如果你想继续配置 `dependencyResolutionManagement` 中的其它内容,例如 `versionCatalogs`,它只能出现在 `plugins` 的下方。 + +我们不建议继续配置 `versionCatalogs`,因为 `SweetDependency` 借用了来自它的部分功能,可能会引发冲突。 + +不出意外的情况下,`SweetDependency` 会自动为你创建 YAML 配置文件,你将会得到如下项目结构 (以 Android 项目举例)。 + +``` +MyApplication + ├─ gradle + │ └─ sweet-dependency + │ └─ sweet-dependency-config.yaml <-- SweetDependency 配置文件 + ├─ build.gradle / build.gradle.kts + ├─ settings.gradle / settings.gradle.kts + ├─ app + │ └─ build.gradle / build.gradle.kts + └─ mylibrary + └─ build.gradle / build.gradle.kts +``` + +然后,请打开 `sweet-dependency-config.yaml` 配置文件,对 `SweetDependency` 进行基础配置。 + +默认配置已经帮你自动生成,你可以按照你的需求进行配置。 + +如果你觉得手动配置很麻烦,没问题,你可以直接跳转到 [迁移依赖到 Sweet Dependency](#迁移依赖到-sweet-dependency) 进行阅读。 + +> 示例如下 + +```yaml +# 配置偏好设置 +preferences: + # Gradle Sync 时自动装配、更新依赖模式 + # 此选项决定了 Gradle Sync 时的行为 + # - UPDATE_OPTIONAL_DEPENDENCIES + # ↑ 默认模式,自动装配和更新可选依赖 + # - UPDATE_ALL_DEPENDENCIES + # ↑ 自动装配和更新所有依赖 + # - ONLY_AUTOWIRE_DEPENDENCIES + # ↑ 仅自动装配使用 "+" 填充版本的依赖 + # - UPDATE_OPTIONAL_PLUGINS + # ↑ 自动装配和更新可选依赖 (插件依赖) + # - UPDATE_ALL_PLUGINS + # ↑ 自动装配和更新所有依赖 (插件依赖) + # - ONLY_AUTOWIRE_PLUGINS + # ↑ 仅自动装配使用 "+" 填充版本的依赖 (插件依赖) + # - UPDATE_OPTIONAL_LIBRARIES + # ↑ 自动装配和更新可选依赖 (库依赖) + # - UPDATE_ALL_LIBRARIES + # ↑ 自动装配和更新所有依赖 (库依赖) + # - ONLY_AUTOWIRE_LIBRARIES + # ↑ 仅自动装配使用 "+" 填充版本的依赖 (库依赖) + # - OFF + # ↑ 什么也不做,关闭所有功能 + # 注意:不建议完全关闭此功能,如果存在未被自动装配的依赖将无法继续部署依赖 + autowire-on-sync-mode: UPDATE_OPTIONAL_DEPENDENCIES + # 存储库装载模式 + # 目前 Gradle 提供了如下 3 种模式,具体模式可参考官方文档 + # - PREFER_PROJECT + # - PREFER_SETTINGS + # - FAIL_ON_PROJECT_REPOS + repositories-mode: FAIL_ON_PROJECT_REPOS + # 依赖命名空间 + # 设置后在部署依赖时需要加入命名空间作为前缀 + # 只允许 26 个英文字母 (大小写) 以及 '.'、'_'、'-' 且必须以字母开头 (长度至少为 3 位) + # 例如我们有库依赖 "com.mydemo.test:test" 以 "implementation" 部署方式举例 + # 没有命名空间:implementation(com.mydemo.test.test) + # 存在命名空间:implementation(libs.com.mydemo.test.test) + dependencies-namespace: + # 插件依赖必须存在命名空间,如果不设置,其默认为 "libs" + plugins: libs + # 库依赖的命名空间可选 + # 如果你不需要库依赖的命名空间,请删除此节点 + libraries: libs + # 依赖版本过滤器 + # 如果你需要排除一些不希望被更新到的依赖版本 (例如测试版本) 可以手动进行配置 + # 默认情况下过滤器已帮你自动排除测试版本,无需对此项进行配置 + version-filter: + # 使用内置过滤器 + # 默认为启用状态,内置过滤器包含了所有测试版本中可能出现的关键词 + # 其中包含:"-beta"、"-alpha"、"-dev"、"-canary"、"-pre"、"-rc"、"-ga"、"-snapshot" + # 可被匹配的版本例如:"1.2.0-alpha01" 或 "1.1.2-beta01" + # 如果禁用此选项,将仅使用 "exclusion-list" 中定义的关键词,如果 "exclusion-list" 为空,将禁用过滤器 + use-internal: true + # 排除列表 + # 你可以在排除列表中填写需要排除的自定义关键词 (不区分大小写) + # 推荐在开头添加 "-" 防止发生误判,例如:"bar" 匹配 "1.0.0-bar01" 也会匹配 "1.0.0-foobar01" + exclusion-list: + -foo + -bar + +# 配置依赖使用的存储库 +repositories: + # 以下内容仅供示例,你只需要添加用到的存储库 + # 一般情况下只需要添加 google 和 maven-central,默认配置文件中将会自动帮你添加 + # 每个存储库都可以配置 url 和 path,这取决于存储库是否支持这种配置方式 + # 目前 SweetDependency 无法兼容 Maven 以外的自定义存储库 + # 下面这些节点名称为内置存储库,你不可以用这些名称作为自定义存储库 + google: # Google 存储库 + maven-central: # 中央存储库 + maven-local: # 本地存储库 + # 一般情况下不需要配置本地存储库的路径 + # 默认情况下会自动按照以下操作系统的默认路径获取 + # Windows: C:\Users\\.m2 + # Linux: /home//.m2 + # Mac: /Users//.m2 + # 详情请参考 https://www.baeldung.com/maven-local-repository + # 如果你修改了存储库的路径,请在这里重新指定 + # 如果你想保持默认配置,请删除此节点 + path: /path/to/repository + gradle-plugin-portal: # Gradle 插件存储库 + # 以下列出目前 SweetDependency 内置的常见存储库别名 + # 中央存储库 (分流) + maven-central-branch: + # JitPack + jit-pack: + # 阿里云 Google 存储库镜像 + aliyun-google-mirror: + # 阿里云中央存储库镜像 + aliyun-maven-central-mirror: + # 阿里云公共存储库镜像 + aliyun-maven-public-mirror: + # 阿里云 JCenter 镜像 + # 注意:JCenter 已经终止服务,不再建议使用 + aliyun-jcenter-mirror: + # OSS 存储库 + sonatype-oss-releases: + # 快照存储库 + sonatype-oss-snapshots: + # 自定义 Maven 存储库 + # 自定义的存储库节点名称除内置存储库外可随意填写 + your-custom-repo: + # 所有存储库添加即启用,如果你想禁用只需要添加此配置并设置为 false + enable: true + # 设置作用域 + # 此选项决定了此存储库将被作用于什么类型的依赖 + # - ALL + # ↑ 默认模式,作用于所有类型依赖 + # - PLUGINS + # ↑ 作用于插件依赖 + # - LIBRARIES + # ↑ 作用于库依赖 + scope: ALL + # 自定义内容过滤器 + # 此功能可以加快 Gradle 搜索依赖的速度 + # 如果已知此存储库仅包含某些依赖,就可以使用此功能 + content: + # 指定需要包含的内容 + # 你可以以不同形式指定一个或一组内容 + include: + # 此功能接受 1 个参数 + group: + androidx.appcompat + com.android + # 此功能接受 1 个参数 + group-and-subgroups: + androidx.appcompat + # 此功能接受 1 个参数 + group-by-regex: + androidx.* + com.android.* + # 此功能接受 2 个参数,使用 ":" 进行分割 + # 必须为 2 个参数,缺少参数会发生错误 + module: + androidx.core:core + # 此功能接受 2 个参数,使用 ":" 进行分割 + # 必须为 2 个参数,缺少参数会发生错误 + module-by-regex: + androidx.core:* + # 此功能接受 3 个参数,使用 ":" 进行分割 + # 必须为 3 个参数,缺少参数会发生错误 + version: + androidx.core:core:1.9.0 + # 此功能接受 3 个参数,使用 ":" 进行分割 + # 必须为 3 个参数,缺少参数会发生错误 + version-by-regex: + androidx.core:*:1.9.0 + # 指定需要排除的内容 + # 你可以以不同形式指定一个或一组内容 + exclude: + group-by-regex: + androidx.* + com.android.* + group-and-subgroups: + androidx.appcompat + module: + androidx.core:core + module-by-regex: + androidx.core:* + version: + androidx.core:core:1.9.0 + version-by-regex: + androidx.core:*:1.9.0 + # 自定义身份验证 + # 如果你的存储库需要身份验证才能访问,你可以添加此节点 + # 你可以使用 ${...} 的方式来引用当前项目或系统的键值内容 + # 具体用法你可以继续阅读文档最后的 "配置字符串插值" 部分 + credentials: + # 你的用户名 + username: ${your-repo.username} + # 你的密码 + password: ${your-repo.password} + # 自定义存储库 URL + url: https://to.your.custom/repo + # 自定义存储库本地路径 + # 注意:"url" 与 "path" 参数只能存在一个 + path: /path/to/repository + +# 配置需要使用的插件依赖 +plugins: + # 注意:我们只推荐在这里定义一些外部存储库的插件依赖,一些内置于 Gradle 的插件不应该被定义在这里 + # 注意:插件依赖需要声明一个版本,不声明版本的依赖会发生问题且不被推荐,也不会生成自动装配代码 + # 插件 ID + com.android.application: + # 自定义依赖别名 (可选,在部署依赖时会用到) + # 只允许 26 个英文字母 (大小写) 以及 '.'、'_'、'-' 且必须以字母开头 (长度至少为 3 位) + # 别名可被 '.'、'_'、'-' 至少分割为 2 份,例如 "com-mytest" + alias: android-application + # 依赖版本 (如果你不确定版本,可以填写 "+" ,将会自动装配) + version: 7.4.1 + # 自动装配、更新过程是否自动更新此依赖 (在版本为 "+" 的情况下设为 false 不会生效) + auto-update: true + # 依赖版本过滤器,默认情况下跟随全局配置 + version-filter: + use-internal: true + exclusion-list: + -foo + -bar + # 指定当前依赖使用的存储库名称 (可以同时指定多个) + # 在不设置此参数时,当前依赖将使用全部已定义的存储库按顺序依次进行搜索 + # 如果此依赖所在的存储库是已知的,推荐为其设置存储库以提升效率 + # 例如:google,你可以直接填写 google + # 例如:maven-central,你可以直接填写 maven-central + # 或是你指定的名称,例如上方的 jit-pack 节点,你需要填写 jit-pack + # 注意:如果你对目标存储库设置了作用域且不匹配当前依赖类型,它将自动被排除 + # 注意:如果你设置的存储库中没有一个可以被使用,当前依赖将被认为不存在存储库 + repositories: + google + maven-central + com.android.library: + # 如果存在相同版本的依赖,可以使用版本引用来避免重复填写相同版本 + # 版本引用内容支持匹配依赖全称和依赖别名 + # 不可引用已经存在版本引用的依赖 (递归调用) + # 注意:"version" 和 "version-ref" 节点在一个依赖中只能出现一次 + # 注意:如果你声明了 "version-ref",此依赖将在自动装配和更新中被排除 + # 注意:如果你声明了 "version-ref","auto-update"、"repositories"、"version-filter" 将无效 + version-ref: android-application # 或 "com.android.application" + org.jetbrains.kotlin.android: + alias: kotlin-android + version: 1.8.10 + +# 配置需要使用的库依赖 +libraries: + # Group ID + androidx.core: + # Artifact ID + core: + # 自定义依赖别名 (可选,在部署依赖时会用到) + # 只允许 26 个英文字母 (大小写) 以及 '.'、'_'、'-' 且必须以字母开头 (长度至少为 3 位) + # 别名可被 '.'、'_'、'-' 至少分割为 2 份,例如 "com-mytest" + alias: androidx-core + # 依赖版本 (如果你不确定版本,可以填写 "+" ,将会自动装配) + version: 1.9.0 + # 自动装配、更新过程是否自动更新此依赖 (在版本为 "+" 的情况下设为 false 不会生效) + auto-update: true + # 依赖版本过滤器,默认情况下跟随全局配置 + version-filter: + use-internal: true + exclusion-list: + -foo + -bar + # 指定当前依赖使用的存储库名称 (可以同时指定多个) + # 在不设置此参数时,当前依赖将使用全部已定义的存储库按顺序依次进行搜索 + # 如果此依赖所在的存储库是已知的,推荐为其设置存储库以提升效率 + # 例如:google,你可以直接填写 google + # 例如:maven-central,你可以直接填写 maven-central + # 或是你指定的名称,例如上方的 jit-pack 节点,你需要填写 jit-pack + # 注意:如果你对目标存储库设置了作用域且不匹配当前依赖类型,它将自动被排除 + # 注意:如果你设置的存储库中没有一个可以被使用,当前依赖将被认为不存在存储库 + repositories: + google + maven-central + core-ktx: + alias: androidx-core-ktx + # 如果存在相同版本的依赖,可以使用版本引用来避免重复填写相同版本 + # 版本引用内容支持匹配依赖全称和依赖别名 + # 如果当前被引用的版本在当前 "Group ID" 中,可以直接填写 "::Artifact ID" + # 例如当前为 "androidx.core",引用 "core" 的版本只需要填写为 "version-ref: ::core" + # 不可引用已经存在版本引用的依赖 (递归调用) + # 注意:"version" 和 "version-ref" 节点在一个依赖中只能出现一次 + # 注意:如果你声明了 "version-ref",此依赖将在自动装配和更新中被排除 + # 注意:如果你声明了 "version-ref","auto-update"、"repositories"、"version-filter" 将无效 + version-ref: ::core # 或 "androidx.core:core" 以及 "androidx-core" (别名) + com.squareup.okhttp3: + okhttp: + # 如果你在版本中声明了一个 "version-filter" 中存在的版本 (内置过滤器或排除列表) + # 例如版本 "5.0.0-alpha.7" 包含 "-alpha" + # 此时你不需要配置 "version-filter" 并设置 "use-internal: false" + # 运行自动装配和更新依赖时,它会自动更新到当前包含 "-alpha" 的最新版本 + version: 5.0.0-alpha.7 + com.google.android.material: + material: + alias: google-material-android + version: 1.8.0 + junit: + junit: + alias: junit + version: 4.13.2 + # 如果你正在使用一个 BOM 依赖,你可以像大多数依赖一样直接定义它 + org.springframework.boot: + spring-boot-dependencies: + alias: spring-boot-dependencies + version: 1.5.8.RELEASE + dom4j: + dom4j: + # 你可以使用 "" 声明此依赖不需要定义版本 + # 如果声明其不需要定义版本,它将自动使用 BOM 中定义的版本 + # 注意:如果你声明了 "",此依赖将在自动装配和更新中被排除 + # 注意:如果你声明了 "","versions"、"version-ref" 将不能再使用 + version: +``` + +`SweetDependency` 接管了 Gradle 的依赖存储库,在配置文件中定义的存储库会同时被 `SweetDependency` 和 Gradle 使用。 + +上述配置完成后,运行一次 Gradle Sync。 + +然后,你可以前往你每个项目的 `build.gradle` 或 `build.gradle.kts`,将依赖的部署方式迁移到 `SweetDependency`。 + +`SweetDependency` 会将依赖命名空间、依赖名称、依赖别名等自动进行分割。 + +注意:如果你在 `pluginManagement` 的 `plugins` 方法块中设置了插件的版本,请将其移除。 + +> Kotlin DSL + +首先,在根项目部署插件依赖,但是不应用 (与 Gradle 官方推荐做法一致)。 + +```kotlin +plugins { + // 推荐使用 autowire 方法进行部署 (你也可以使用官方提供的 alias 方法,其行为一致) + // 由于插件部分的自定义性限制,这里的代码生成借助了 Gradle 自身的 version catalogs + // 由于 version catalogs 的要求,插件必须以 "命名空间.plugins" 开头 + autowire(libs.plugins.com.android.application) apply false + autowire(libs.plugins.org.jetbrains.kotlin.android) apply false + // 使用别名 + autowire(libs.plugins.android.application) apply false + autowire(libs.plugins.kotlin.android) apply false +} +``` + +接下来,在子项目部署需要使用的插件依赖和库依赖。 + +```kotlin +plugins { + autowire(libs.plugins.com.android.application) + autowire(libs.plugins.org.jetbrains.kotlin.android) + // 使用别名 + autowire(libs.plugins.android.application) + autowire(libs.plugins.kotlin.android) +} + +dependencies { + // 直接部署 + implementation(androidx.core.core.ktx) + implementation(com.google.android.material.material) + // 使用别名 + implementation(androidx.core.ktx) + implementation(google.material.android) + // 如果你设置了依赖命名空间,请将命名空间作为前缀进行部署 + implementation(libs.androidx.core.core.ktx) + // 使用依赖命名空间的情况下,依赖别名的用法依然相同 + implementation(libs.androidx.core.ktx) +} +``` + +> Groovy DSL + +首先,在根项目部署插件依赖,但是不应用 (与 Gradle 官方推荐做法一致)。 + +```groovy +plugins { + // Groovy 不支持使用 autowire 方法进行部署,你只能使用官方提供的 alias 方法 + // 由于插件部分的自定义性限制,这里的代码生成借助了 Gradle 自身的 version catalogs + // 由于 version catalogs 的要求,插件必须以 "命名空间.plugins" 开头 + alias libs.plugins.com.android.application apply false + alias libs.plugins.org.jetbrains.kotlin.android apply false + // 使用别名 + alias libs.plugins.android.application apply false + alias libs.plugins.kotlin.android apply false +} +``` + +接下来,在子项目部署需要使用的插件依赖和库依赖。 + +```groovy +plugins { + alias libs.plugins.com.android.application + alias libs.plugins.org.jetbrains.kotlin.android + // 使用别名 + alias libs.plugins.android.application + alias libs.plugins.kotlin.android +} + +dependencies { + // 直接部署 + implementation androidx.core.core.ktx + implementation com.google.android.material.material + // 使用别名 + implementation androidx.core.ktx + implementation google.material.android + // 如果你设置了依赖命名空间,请将命名空间作为前缀进行部署 + implementation libs.androidx.core.core.ktx + // 使用依赖命名空间的情况下,依赖别名的用法依然相同 + implementation libs.androidx.core.ktx +} +``` + +**特别注意** + +形如 `ext`、`extra`、`extraProperties`、`extensions` 的名称为 Gradle 在创建扩展方法时自带的默认扩展方法。 + +`SweetDependency` 在生成首位依赖扩展方法时如果遇到这些名称将不能正常生成,解决方案是在名称的结尾添加 `s`。 + +如果你一定要使用这些名称作为依赖的名称或别名,你可以考虑设置一个依赖命名空间。 + +目前在 Maven 存储库中尚未收集到以这些名称作为开头的依赖。 + +当然,你也不可以直接使用这些自带的默认扩展方法名称来设置依赖命名空间、依赖别名等。 + +**可能遇到的问题** + +如果你的项目仅存在一个根项目,且没有导入任何子项目,此时如果 `dependencies` +方法体中的扩展方法不能正常生成,你可以将你的根项目迁移至子项目并在 `settings.gradle` 或 `settings.gradle.kts` 中导入这个子项目,这样即可解决此问题。 + +我们一般推荐将项目的功能进行分类,根项目仅用来管理插件和一些配置。 + +**局限性说明** + +`SweetDependency` 无法管理 `settings.gradle` 或 `settings.gradle.kts` 中的 `plugins` 方法块,因为这属于 `SweetDependency` 的上游,这种情况请使用通常做法进行管理。 + +### Kotlin Multiplatform 支持 + +在 Kotlin Multiplatform 中与一般依赖部署方式一致。 + +> Kotlin DSL + +```kotlin +sourceSets { + val androidMain by getting { + dependencies { + implementation(androidx.core.core.ktx) + implementation(com.google.android.material.material) + } + } +} +``` + +> Groovy DSL + +```groovy +sourceSets { + androidMain { + dependencies { + implementation androidx.core.core.ktx + implementation com.google.android.material.material + } + } +} +``` + +## 迁移依赖到 Sweet Dependency + +如果你是第一次开始使用 `SweetDependency`,你可以手动运行创建依赖迁移模板 Task。 + +你可以在根项目的 Task 分组 `sweet-dependency` 中找到 `createDependenciesMigrationTemplate` Task,手动运行它。 + +此操作将会自动分析所有项目中的外部存储库依赖,并在根项目的 `gradle/sweet-dependency` 生成以配置文件名为前缀的 `*.template.yaml` 文件。 + +如果你未修改过配置文件的名称,它将默认为 `sweet-dependency-config.template.yaml`。 + +如果生成的模版文件已经存在,则会被自动覆盖。 + +模板文件中会提供当前项目使用的依赖节点,请手动将生成的节点全部内容复制到配置文件中,并删除模板文件。 + +> 示例如下 + +```yaml +plugins: + ... +libraries: + ... +``` + +请注意,`SweetDependency` 不会在模版文件中创建依赖使用的存储库,请手动添加依赖使用的存储库或使用首次配置文件中自动生成的存储库。 + +然后,请手动将每个项目的 `build.gradle` 或 `build.gradle.kts` 的 `plugins` 和 `dependencies` 方法体中的外部存储库依赖迁移到 `SweetDependency`。 + +下面是一个示例,可供参考。 + +> Kotlin DSL + +```kotlin +plugins { + // 原始部署写法 + id("org.jetbrains.kotlin.android") version "1.8.10" + // 迁移后的写法 + autowire(libs.plugins.org.jetbrains.kotlin.android) +} + +dependencies { + // 原始部署写法 + implementation("androidx.core:core-ktx:1.9.0") + // 迁移后的写法 + implementation(androidx.core.core.ktx) +} +``` + +> Groovy DSL + +```groovy +plugins { + // 原始部署写法 + id 'org.jetbrains.kotlin.android' version '1.8.10' + // 迁移后的写法 + alias libs.plugins.org.jetbrains.kotlin.android +} + +dependencies { + // 原始部署写法 + implementation 'androidx.core:core-ktx:1.9.0' + // 迁移后的写法 + implementation androidx.core.core.ktx +} +``` + +如果你使用了 `versionCatalogs`,请将在 `settings.gradle` 或 `settings.gradle.kts` 中的定义也一并删除。 + +如果你使用 TOML 的方式定义了 `versionCatalogs`,例如 `libs.versions.toml` 文件,现在你可以不需要它了,你可以在迁移依赖后将其删除。 + +请注意,模版文件仅用于迁移依赖使用,它不应该出现在版本控制系统中,建议是使用后将其删除。 + +## 配置依赖自动装配 + +默认情况下,运行 Gradle Sync 即会执行搜索并自动装配、更新依赖。 + +依赖自动装配日志将会写入根项目的 `.gradle/sweet-dependency/dependencies-autowire.log` 中。 + +你可以在此文档的最下方找到配置是否启用依赖自动装配日志的方法。 + +你可以在 `sweet-dependency-config.yaml` 中配置 `preferences.autowire-on-sync-mode` 的模式。 + +你也可以在你需要的时候手动运行以下 Gradle Task,你可以在根项目的 Task 分组 `sweet-dependency` 中找到这些 Task。 + +- updateOptionalDependencies +- updateOptionalPlugins +- updateOptionalLibraries + +自动装配和更新可选依赖。 + +其中以 "Plugins" 结尾的代表仅管理插件依赖,以 "Libraries" 结尾的代表仅管理库依赖。 + +你可以在配置文件中使用 `^` 标识可选更新的依赖。 + +> 示例如下 + +```yaml +plugins: + # 插件依赖的可选更新行为与库依赖保持一致,请参考下方库依赖的示例 + ... + +libraries: + com.google.android.material: + material: + # 使用 "^" 作为开头标识当前版本,它将在有更新的时候被替换为最新版本 + # 使用 "^" 作为开头的版本将在下一次成功更新后移除此符号 (单次可选更新) + # 如果你希望持续保留此符号 (常驻可选更新),请双写它,形如 "^^" + version: ^1.8.0 +``` + +- updateAllDependencies +- updateAllPlugins +- updateAllLibraries + +自动装配和更新所有依赖。 + +其中以 "Plugins" 结尾的代表仅管理插件依赖,以 "Libraries" 结尾的代表仅管理库依赖。 + +将会检查所有依赖的更新并更新到最新版本,依赖过多时可能会非常耗时。 + +- autowireDependencies +- autowirePlugins +- autowireLibraries + +仅自动装配使用 "+" 填充版本的依赖。 + +其中以 "Plugins" 结尾的代表仅管理插件依赖,以 "Libraries" 结尾的代表仅管理库依赖。 + +**特别注意** + +依赖自动装配或更新后,你需要手动运行一次 Gradle Sync 使更改生效,如果你不进行此操作,则更改将在下一次编译或任何 Gradle 活动时生效。 + +## 配置依赖扩展功能 + +你可以使用 `autowire(...)` 方法来自动装配任意依赖。 + +注意:一些特性可能不会适用于 Groovy DSL,如有需要,请开始使用或转移到 Kotlin DSL。 + +下面是一个简单的示例。 + +> Kotlin DSL + +```kotlin +plugins { + // 部署 "org.jetbrains.kotlin.android" + autowire("org.jetbrains.kotlin.android") + // 使用别名部署 + autowire("kotlin-android") +} + +dependencies { + // 部署 "androidx.core:core-ktx" + implementation(autowire("androidx.core:core-ktx")) + // 使用别名部署 + implementation(autowire("androidx-core-ktx")) +} +``` + +> Groovy DSL + +```groovy +plugins { + // 很遗憾,Gradle 不允许使用常规方案自定义 plugins 方法块 + // 这是 Gradle 对自定义插件的限制,插件无法干预 + // 所以,autowire 方法将不会支持 Groovy DSL + // 如有需要,推荐开始使用或转换到 Kotlin DSL +} + +dependencies { + // 部署 "androidx.core:core-ktx" + implementation sweet.autowire('androidx.core:core-ktx') + // 使用别名部署 + implementation sweet.autowire('androidx-core-ktx') +} +``` + +除了自动装配插件依赖和外部存储库的依赖之外,你还可以用它来导入本地文件依赖。 + +> Kotlin DSL + +```kotlin +dependencies { + // 导入当前项目 libs 目录下的所有 jar 依赖 + implementation(autowire("libs/*.jar")) + // 导入 mylibrary 项目 libs 目录下的所有 jar 依赖 + implementation(autowire("../mylibrary/libs/*.jar")) + // 导入一个绝对路径目录下的所有 jar 依赖 + implementation(autowire("/home/test/someDepends/*.jar")) + // 导入当前项目 libs 目录下的所有依赖,不区分文件扩展名 + implementation(autowire("libs/*")) + // 你也可以一个一个或一组一组文件地导入 + implementation( + autowire( + "libs/*.jar", + "libs/*.aar", + "/home/test/someDepends/mylibrary-1.jar", + "/home/test/someDepends/mylibrary-2.jar" + ) + ) + // 以下是一个特殊情况 + // 如果你直接导入一个没有目录层次并相对于当前项目路径的文件,可能无法直接识别 + // 例如我们直接导入当前项目路径下的 "mylibrary.jar" + // 以下情况会识别 "mylibrary.jar" 为一个外部存储库依赖 + implementation(autowire("mylibrary.jar")) + // 要强调这个依赖是一个文件,请使用小括号将文件路径包起来 + implementation(autowire("(mylibrary.jar)")) +} +``` + +> Groovy DSL + +```groovy +dependencies { + // 导入当前项目 libs 目录下的所有 jar 依赖 + implementation sweet.autowire('libs/*.jar') + // 导入 mylibrary 项目 libs 目录下的所有 jar 依赖 + implementation sweet.autowire('../mylibrary/libs/*.jar') + // 导入一个绝对路径目录下的所有 jar 依赖 + implementation sweet.autowire('/home/test/someDepends/*.jar') + // 导入当前项目 libs 目录下的所有依赖,不区分文件扩展名 + implementation sweet.autowire('libs/*') + // 你也可以一个一个或一组一组文件地导入 + implementation sweet.autowire( + 'libs/*.jar', + 'libs/*.aar', + '/home/test/someDepends/mylibrary-1.jar', + '/home/test/someDepends/mylibrary-2.jar' + ) + // 以下是一个特殊情况 + // 如果你直接导入一个没有目录层次并相对于当前项目路径的文件,可能无法直接识别 + // 例如我们直接导入当前项目路径下的 "mylibrary.jar" + // 以下情况会识别 "mylibrary.jar" 为一个外部存储库依赖 + implementation sweet.autowire('mylibrary.jar') + // 要强调这个依赖是一个文件,请使用小括号将文件路径包起来 + implementation sweet.autowire('(mylibrary.jar)') +} +``` + +### Kotlin Multiplatform 支持 + +在 Kotlin Multiplatform 中与一般依赖部署方式一致。 + +> Kotlin DSL + +```kotlin +sourceSets { + val androidMain by getting { + dependencies { + implementation(autowire("androidx.core:core-ktx")) + implementation(autowire("libs/*.jar")) + } + } +} +``` + +> Groovy DSL + +```groovy +sourceSets { + androidMain { + dependencies { + implementation sweet.autowire('androidx.core:core-ktx') + implementation sweet.autowire('libs/*.jar') + } + } +} +``` + +## 配置依赖版本定义 + +有一些依赖的版本我们希望在项目中固定它们,并不轻易被更新或改变。 + +针对这种情况,你可以使用版本定义在配置文件中来预先定义这些版本。 + +> 示例如下 + +```yaml +# 定义一些需要使用的版本 +versions: + # 节点名称只允许 26 个英文字母 (大小写) 以及 '.'、'_'、'-' 且必须以字母开头 (长度至少为 3 位) + mydemo-test: 1.0.0 + +# 在插件依赖定义中引用这些版本 +plugins: + # 插件依赖的依赖版本定义行为与库依赖保持一致,请参考下方库依赖的示例 + ... + +# 在库依赖定义中引用这些版本 +libraries: + com.mydemo.test: + test: + # 你可以直接在此节点引用被定义的版本 + # 版本定义名称的优先级高于依赖名称、别名,如果存在相同的名称则会优先使用前者 + version-ref: mydemo-test +``` + +## 配置依赖版本别名 + +默认情况下,在配置文件中声明的依赖版本是固定的,部署的依赖版本跟随定义中的版本。 + +如果你有这样的需求:相同依赖的版本需要和其它子项目或主项目中依赖的版本保持不一样。 + +> A 项目示例如下 + +```kotlin +plugins { + id("com.mydemo.myplugin") version "1.0.1" +} + +dependencies { + implementation("com.mydemo.test:test:1.0.1") +} +``` + +> B 项目示例如下 + +```kotlin +plugins { + id("com.mydemo.myplugin") version "1.0.2" +} + +dependencies { + implementation("com.mydemo.test:test:1.0.2") +} +``` + +针对这种情况,你可以使用版本别名在配置文件中来声明多个不同的版本。 + +> 示例如下 + +```yaml +plugins: + com.mydemo.myplugin: + alias: demo-myplugin + # 依赖版本 (当前主版本,必须存在) + # 你也可以使用 "version-ref" + version: 1.0.2 + # 自定义版本别名 + # 只允许 26 个英文字母 (大小写) 以及 '.'、'_'、'-' 且必须以字母开头 (长度至少为 3 位) + # 版本不可以填写 "+",因为版本别名定义的版本不会被自动装配 + versions: + a-version: 1.0.1 + # 如果你想跟随主版本,可以填写 "" + b-version: + +libraries: + com.mydemo.test: + test: + alias: demo-test + # 依赖版本 (当前主版本,必须存在) + # 你也可以使用 "version-ref" + version: 1.0.2 + # 自定义版本别名 + # 只允许 26 个英文字母 (大小写) 以及 '.'、'_'、'-' 且必须以字母开头 (长度至少为 3 位) + # 版本不可以填写 "+",因为版本别名定义的版本不会被自动装配 + versions: + a-version: 1.0.1 + # 如果你想跟随主版本,可以填写 "" + b-version: +``` + +然后你可以直接在当前依赖后使用 `.` 来使用它的版本别名。 + +版本别名会自动被转换为小驼峰形式,建议别名全部使用小写字母表示。 + +> A 项目示例如下 + +```kotlin +plugins { + autowire(libs.plugins.com.mydemo.myplugin.aVersion) + // 你也可以直接使用依赖别名 + autowire(libs.plugins.demo.myplugin.aVersion) + // 或者使用 autowire 方法部署 + // 注意,你需要在 autowire 第二个方法参数中填写版本别名 + autowire("com.mydemo.myplugin", "a-version") + autowire("demo-myplugin", "a-version") +} + +dependencies { + implementation(com.mydemo.test.test.aVersion) + // 你也可以直接使用依赖别名 + implementation(demo.test.aVersion) + // 或者使用 autowire 方法部署 + // 注意,你需要在 autowire 第二个方法参数中填写版本别名 + implementation(autowire("com.mydemo.test:test", "a-version")) + implementation(autowire("demo-test", "a-version")) +} + +``` + +> B 项目示例如下 + +```kotlin +plugins { + autowire(libs.plugins.com.mydemo.myplugin.bVersion) + // 你也可以直接使用依赖别名 + autowire(libs.plugins.demo.myplugin.bVersion) + // 或者使用 autowire 方法部署 + // 注意,你需要在 autowire 第二个方法参数中填写版本别名 + autowire("com.mydemo.myplugin", "b-version") + autowire("demo-myplugin", "b-version") +} + +dependencies { + implementation(com.mydemo.test.test.bVersion) + // 你也可以直接使用依赖别名 + implementation(demo.test.bVersion) + // 或者使用 autowire 方法部署 + // 注意,你需要在 autowire 第二个方法参数中填写版本别名 + implementation(autowire("com.mydemo.test:test", "b-version")) + implementation(autowire("demo-test", "b-version")) +} +``` + +注意:一些特性在 Groovy DSL 中的 `plugins` 中可能会无法使用。 + +如果你不指定版本别名,部署的依赖默认会使用当前依赖的主版本 (即 "version" 定义的版本)。 + +**特别注意** + +如果上述示例中 A 项目与 B 项目存在依赖关系,它将优先使用二者中的较新版本 (插件依赖除外)。 + +这是 Gradle 的依赖继承规则,不受版本别名控制。 + +不指定版本的依赖不能使用依赖版本别名功能。 + +## 配置字符串插值 + +你可以使用 ${...} 来动态向 `SweetDependency` 的配置文件中插入内容,这样你就可以从你的配置文件中导出一些敏感信息。 + +其中 `...` 代表当前使用的 KEY (键值名称)。 + +`SweetDependency` 会从以下位置按优先级依次查找需要插入的内容: + +- 当前项目 (Root Project) 的 `gradle.properties` +- 当前用户的 `gradle.properties` +- 系统的 `System.getProperties()` +- 系统的 `System.getenv(...)` + +> 示例如下 + +```yaml +# 配置依赖使用的存储库 +repositories: + your-custom-repo: + credentials: + username: ${your-repo.username} + password: ${your-repo.password} + url: ${your-repo.url} + +# 配置需要使用的插件依赖 +plugins: + com.android.application: + version: + + +# 配置需要使用的库依赖 +libraries: + androidx.core: + # 它还能被设置到节点上 + ${depends.androidx.core.name}: + version: + + versions: + # 或是具体的内容上 + a-version: ${depends.androidx.core.core.a-version} +``` + +在读取配置文件时 `SweetDependency` 会优先将这些内容替换到实际的字符串再进行解析。 + +如果找不到当前使用的 KEY (键值名称) 对应的内容,将返回空字符串。 + +## 自动装配优化建议 + +现在,你已经了解了有关 `SweetDependency` 的基本功能,下面是针对现有项目存储库和依赖的一些优化建议。 + +### 存储库部分 + +根据 Gradle 的依赖搜索规则,存储库添加的顺序是有意义的,搜索顺序将按照你添加的顺序依次进行。 + +你可以适当地调整存储库的顺序,这将有助于提升依赖搜索效率。 + +> 示例如下 + +```yaml +repositories: + google: + maven-central: +``` + +针对中国大陆的用户,你可以采用 `SweetDependency` 为你预置的镜像服务器地址来加快依赖的搜索速度。 + +> 示例如下 + +```yaml +repositories: + aliyun-google-mirror: + aliyun-maven-central-mirror: + aliyun-maven-public-mirror: + aliyun-jcenter-mirror: +``` + +你还可以对 `google` 存储库设置 `content` 参数来提升其使用效率,因为它目前只包含以下开头的依赖。 + +- androidx.* +- com.google.* +- com.android.* + +> 示例如下 + +```yaml +repositories: + google: + content: + include: + group-by-regex: + androidx.* + com.google.* + com.android.* +``` + +你还可以把 `gradle-plugin-portal` 存储库的 `scope` 参数设置为 `PLUGINS` 来提升搜索效率,因为它只会被作用于插件依赖。 + +> 示例如下 + +```yaml +repositories: + gradle-plugin-portal: + scope: PLUGINS +``` + +推荐将 `gradle-plugin-portal` 排在所有存储库的第一位,插件依赖优先使用它进行搜索。 + +### 依赖部分 + +你可以给指定的依赖设置其使用的存储库以减少自动装配搜索的耗时。 + +你可以在适当的时候使用 `version-ref`,这可以减少重复搜索相同版本依赖的耗时。 + +> 示例如下 + +```yaml +plugins: + com.android.application: + alias: android-application + version: 7.4.1 + repositories: + google + com.android.library: + version-ref: android-application + +libraries: + androidx.core: + core-ktx: + version: 1.9.0 + repositories: + google +``` + +## 写出调试信息 + +你可以手动运行 `sweetDependencyDebug` Task 来写出调试信息,你可以在根项目的 Task 分组 `sweet-dependency` 中找到它。 + +此操作将写出当前 `SweetDependency` 在内存中的数据结构到控制台,你可以参照配置文件检查此数据是否正确。 + +如果你认为 `SweetDependency` 不能按预期正常工作,你也可以将此数据提供给我们以供我们调试和修复。 + +## 自定义选项 + +你可以在根项目的 `settings.gradle` 或 `settings.gradle.kts` 中使用 `sweetDependency` lambda 方法来配置 `SweetDependency`。 + +> Kotlin DSL + +```kotlin +sweetDependency { + + // 启用 SweetDependency,设置为 false 将禁用所有功能 + isEnable = true + + // SweetDependency 配置文件名称 + configFileName = "sweet-dependency-config.yaml" + + // 是否启用依赖自动装配日志 + // 此功能默认启用,会在当前根项目 (Root Project) 的 ".gradle/sweet-dependency" 目录下创建日志文件 + isEnableDependenciesAutowireLog = true + + // 是否启用详细模式 + // 此功能默认启用,关闭后 SweetDependency 将会在非必要情况下保持安静 (省略非必要日志) + isEnableVerboseMode = true +} +``` + +> Groovy DSL + +```groovy +sweetDependency { + enable true + configFileName 'sweet-dependency-config.yaml' + enableDependenciesAutowireLog true + enableVerboseMode true +} +``` + +## 问题反馈 + +如果你在使用 `SweetDependency` 的过程中遇到了任何问题,你都可以随时在 GitHub 开启一个 `issues` 向我们反馈。 \ No newline at end of file diff --git a/docs/guide.md b/docs/guide.md new file mode 100644 index 0000000..603c71c --- /dev/null +++ b/docs/guide.md @@ -0,0 +1,1223 @@ +# Sweet Dependency Documentation + +Before you start using it, it is recommended that you read this document carefully so that you can better understand how it works and its functions. + +You can find the demo in examples in the root directory of the project, and refer to this document for better use. + +## Working Principle + +`SweetDependency` acts on itself through the pre-repositories declared in the configuration file and applies to Gradle's default project repositories. + +It only informs Gradle of the name and version of the dependencies that need to be deployed, and does not participate in the final deployment of +dependencies. + +After the above work is done, Gradle will use the custom repositories and dependencies set by `SweetDependency` for the final deployment. + +> Workflow following example + +``` +--- Sweet Dependency --- +⬇️ Read configuration file +⬇️ Set repositories to Gradle current project +⬇️ Autowire currently declared dependencies via repositories +--- Gradle --- +⬇️ Get project repositories +⬇️ Get the dependencies to be deployed +✅ Search all dependencies through the repositories and deploy +``` + +## Prerequisites + +Note that `SweetDependency` supports at least Gradle `7.x.x` and is managed using the new `pluginManagement` and `dependencyResolutionManagement`. + +If your project is still managed using the `buildscript` method, please migrate to the new method, otherwise errors will occur. + +## Quick Start + +First, open `settings.gradle` or `settings.gradle.kts` of your root project. + +Remove the entire `dependencyResolutionManagement` method (if any). + +Then add the following code in `settings.gradle` or `settings.gradle.kts` of your root project. + +If `pluginManagement` already exists, there is no need to add it repeatedly. + +You need to add the required repository `mavenCentral` in `pluginManagement.repositories` for Gradle to be able to find the `SweetDependency` plugin. + +At the same time you need to keep other repositories exist so that Gradle can complete the initialization of its own plugins. + +> Kotlin DSL + +```kotlin +pluginManagement { + repositories { + gradlePluginPortal() + google() + mavenCentral() + } +} +plugins { + id("com.highcapable.sweetdependency") version "" +} +``` + +> Groovy DSL + +```groovy +pluginManagement { + repositories { + gradlePluginPortal() + google() + mavenCentral() + } +} +plugins { + id 'com.highcapable.sweetdependency' version '' +} +``` + +Please replace `` in the above code with the latest version in +[Release](https://github.com/fankes/SweetDependency/releases), please note that **DO NOT** add `apply false` after it. + +After the above configuration is complete, run Gradle Sync once. + +**Pay Attention** + +`SweetDependency` will replace the repositories set in `pluginManagement` and `dependencyResolutionManagement`, +if you manually configure repositories in these method blocks, they will have no effect. + +If you want to continue to configure other content in `dependencyResolutionManagement`, such as `versionCatalogs`, it can only appear under `plugins`. + +We do not recommend continuing to configure `versionCatalogs`, because `SweetDependency` used some functions from it, +which may cause conflicts. + +Without exception, `SweetDependency` will automatically create a YAML configuration file for you, and you will get the following project structure +(take Android project as an example). + +``` +MyApplication + ├─ gradle + │ └─ sweet-dependency + │ └─ sweet-dependency-config.yaml <-- SweetDependency config file + ├─ build.gradle / build.gradle.kts + ├─ settings.gradle / settings.gradle.kts + ├─ app + │ └─ build.gradle / build.gradle.kts + └─ mylibrary + └─ build.gradle / build.gradle.kts +``` + +Then, please open the `sweet-dependency-config.yaml` configuration file to configure the basic configuration of `SweetDependency`. + +The default configuration has been automatically generated for you, and you can configure it according to your needs. + +If you think manual configuration is cumbersome, no problem, you can jump directly +to [Migrating Dependencies to Sweet Dependency](#migrating-dependencies-to-sweet-dependency) for reading. + +> The following example + +```yaml +# Configure preferences +preferences: + # Autowire and update dependency mode when Gradle Sync + # This option determines the behavior of Gradle Sync + # - UPDATE_OPTIONAL_DEPENDENCIES + # ↑ Default mode, autowire and update optional dependencies + # - UPDATE_ALL_DEPENDENCIES + # ↑ Autowire and update all dependencies + # - ONLY_AUTOWIRE_DEPENDENCIES + # ↑ Autowire only dependencies fill in "+" versions + # - UPDATE_OPTIONAL_PLUGINS + # ↑ Autowire and update optional dependencies (plugin dependencies) + # - UPDATE_ALL_PLUGINS + # ↑ Autowire and update all dependencies (plugin dependencies) + # - ONLY_AUTOWIRE_PLUGINS + # ↑ Autowire only dependencies fill in "+" versions (plugin dependencies) + # - UPDATE_OPTIONAL_LIBRARIES + # ↑ Autowire and update optional dependencies (library dependencies) + # - UPDATE_ALL_LIBRARIES + # ↑ Autowire and update all dependencies (library dependencies) + # - ONLY_AUTOWIRE_LIBRARIES + # ↑ Autowire only dependencies fill in "+" versions (library dependencies) + # - OFF + # ↑ Do nothing, turn off all functions + # Note: It is not recommended to turn off this function completely + # If there are dependencies that are not autowired, you will not be able to continue to deploy dependencies + autowire-on-sync-mode: UPDATE_OPTIONAL_DEPENDENCIES + # Repositories setup mode + # At present, Gradle provides the following 3 modes, the specific mode can refer to the official document + # - PREFER_PROJECT + # - PREFER_SETTINGS + # - FAIL_ON_PROJECT_REPOS + repositories-mode: FAIL_ON_PROJECT_REPOS + # Dependencies namespace + # After setting, you need to add the namespace as a prefix when deploying dependencies + # Only allow 26 letters (upper and lower case) and '.', '_', '-' and must start with a letter + # For example, we have a library dependency "com.mydemo.test:test" and use the "implementation" deployment method as an example + # No namespace: implementation(com.mydemo.test.test) + # Has namespace: implementation(libs.com.mydemo.test.test) + dependencies-namespace: + # Plugin dependencies namespace must exist, if not set, the default is "libs" + plugins: libs + # Library dependencies namespace is optional + # If you don't need the namespace of library dependencies, delete this node + libraries: libs + # Dependencies version filter + # If you need to exclude some dependency versions that you don't want to be updated to (such as test versions), + # you can configure them manually + # By default, the filter has automatically excluded the test version for you, no need to configure this + version-filter: + # Use built-in filters + # The default is enabled, and the internal filter contains keywords that may appear in all test versions + # Contains: "-beta", "-alpha", "-dev", "-canary", "-pre", "-rc", "-ga", "-snapshot" + # Versions that can be matched eg: "1.2.0-alpha01" or "1.1.2-beta01" + # If this option is disabled, only the keywords declared in "exclusion-list" will be used, + # if "exclusion-list" is empty, the filter will be disabled + use-internal: true + # Exclusion list + # You can fill in the custom keywords that need to be excluded in the exclusion list (case-insensitive) + # It is recommended to add "-" at the beginning to prevent misjudgment, + # for example: "bar" matches "1.0.0-bar01" and also matches "1.0.0-foobar01" + exclusion-list: + -foo + -bar + +# Configure repositories used by dependencies +repositories: + # The following content is just for example, you only need to add the repositories used + # Generally, you only need to add google and maven-central, + # and the default configuration file will automatically add them for you + # Each repository can configure url and path, depending on whether the repository supports this configuration method + # Currently SweetDependency is not compatible with custom repositories other than Maven + # The following node names are built-in repositories, you cannot use these names as custom repositories + google: # Google repository + maven-central: # Maven Central repository + maven-local: # Maven Local repository + # Generally, there is no need to configure the path of the local repository + # By default, it will be automatically obtained according to the default path of the following operating systems + # Windows: C:\Users\\.m2 + # Linux: /home//.m2 + # Mac: /Users//.m2 + # For details, please refer to https://www.baeldung.com/maven-local-repository + # If you modified the path of the repository, please re-specify here + # If you want to keep the default configuration, please delete this node + path: /path/to/repository + gradle-plugin-portal: # Gradle plugin repository + # The following lists common repository aliases currently built into SweetDependency + # Maven Central repository (branch) + maven-central-branch: + # JitPack + jit-pack: + # Alibaba Cloud Google repository mirror + # For Mainland China + aliyun-google-mirror: + # Alibaba Cloud Maven Central repository mirror + # For Mainland China + aliyun-maven-central-mirror: + # Alibaba Cloud public repository mirror + # For Mainland China + aliyun-maven-public-mirror: + # Alibaba Cloud JCenter mirror + # Note: JCenter has shut down and is no longer recommended + aliyun-jcenter-mirror: + # OSS repository + sonatype-oss-releases: + # Snapshot repository + sonatype-oss-snapshots: + # Custom Maven repository + # The custom repository node name can be filled in freely except for the built-in repository + your-custom-repo: + # All repositories are added and enabled, if you want to disable just add this configuration and set it to false + enable: true + # Set scope + # This option determines what type of dependencies this repository will be used for + # - ALL + # ↑ Default mode, which applies to all types of dependencies + # - PLUGINS + # ↑ Act on plugins + # - LIBRARIES + # ↑ Act on libraries + scope: ALL + # Custom content filter + # This feature can speed up Gradle's search for dependencies + # This can be used if this repository is known to contain only certain dependencies + content: + # Specify what needs to be included + # You can specify one or a group of content in different forms + include: + # This function accepts 1 argument + group: + androidx.appcompat + com.android + # This function accepts 1 argument + group-and-subgroups: + androidx.appcompat + # This function accepts 1 argument + group-by-regex: + androidx.* + com.android.* + # This function accepts 2 arguments, separated by ":" + # Must be 2 parameters, missing arguments will cause an error + module: + androidx.core:core + # This function accepts 2 arguments, separated by ":" + # Must be 2 parameters, missing arguments will cause an error + module-by-regex: + androidx.core:* + # This function accepts 3 arguments, separated by ":" + # Must be 3 parameters, missing arguments will cause an error + version: + androidx.core:core:1.9.0 + # This function accepts 3 arguments, separated by ":" + # Must be 3 parameters, missing arguments will cause an error + version-by-regex: + androidx.core:*:1.9.0 + # Specify what needs to be excluded + # You can specify one or a group of content in different forms + exclude: + group-by-regex: + androidx.* + com.android.* + group-and-subgroups: + androidx.appcompat + module: + androidx.core:core + module-by-regex: + androidx.core:* + version: + androidx.core:core:1.9.0 + version-by-regex: + androidx.core:*:1.9.0 + # Custom authentication + # If your repository requires authentication to access, you can add this node + # You can use ${...} to refer to the key-value content of the current project or system + # For specific usage, you can continue to read the "Configure String Interpolation" section at the end of the document + credentials: + # Your username + username: ${your-repo.username} + # Your password + password: ${your-repo.password} + # Custom repository URL + url: https://to.your.custom/repo + # Custom repository local path + # Note: There can only be one "url" and "path" parameter + path: /path/to/repository + +# Configure plugins that need to be used +plugins: + # Note: We only recommend declared some external repositories plugins here, some built-in Gradle plugins should not be declared here + # Note: Plugins need to declare a version, dependencies that do not declare versions will cause problems and are not recommended, + # and will not generate autowire code + # Plugin ID + com.android.application: + # Custom dependency alias (optional, will be used when deploying dependencies) + # Only allow 26 letters (upper and lower case) and '.', '_', '-' and must start with a letter + # (minimum 3 digits in length) + # The alias can be split into at least 2 parts by '.', '_', '-', for example "com-mytest" + alias: android-application + # Dependency version (if you are not sure about the version, you can fill in "+" and it will be autowiring) + version: 7.4.1 + # Whether the autowiring, update process will automatically update this dependency (fill in false when version is "+" has no effect) + auto-update: true + # Dependencies version filter, follow the global configuration by default + version-filter: + use-internal: true + exclusion-list: + -foo + -bar + # Specify the name of the repositories currently used by dependencies (multiple can be specified at the same time) + # When this parameter is not set, the current dependency will use all declared repositories to search in order + # If repositories where this dependency is located is known, it is recommended to set the repositories for it to improve efficiency + # For example: google, you can directly fill in google + # For example: maven-central, you can directly fill in maven-central + # Or the name you specified, such as the jit-pack node above, you need to fill in jit-pack + # Note: If you set a scope on the target repository and it does not match the current dependency type, it will be automatically excluded + # Note: If none of the repositories you set are available, the current dependency will be considered as non-existing repositories + repositories: + google + maven-central + com.android.library: + # If there are dependencies of the same version, + # you can use the version reference to avoid filling in the same version repeatedly + # The version reference content supports matching the full name of the dependency + # and the alias of the dependency + # Cannot reference dependencies that already exist version references (recursive call) + # Note: "version" and "version-ref" nodes can only appear once in a dependency + # Note: If you declare "version-ref", this dependency will be excluded from autowiring and updating + # Note: If you declare "version-ref", "auto-update", "repositories", "version-filter" will not work + version-ref: android-application # Or "com.android.application" + org.jetbrains.kotlin.android: + alias: kotlin-android + version: 1.8.10 + +# Configure libraries that need to be used +libraries: + # Group ID + androidx.core: + # Artifact ID + core: + # Custom dependency alias (optional, will be used when deploying dependencies) + # Only allow 26 letters (upper and lower case) and '.', '_', '-' and must start with a letter + # (minimum 3 digits in length) + # The alias can be split into at least 2 parts by '.', '_', '-', for example "com-mytest" + alias: androidx-core + # Dependency version (if you are not sure about the version, you can fill in "+" and it will be autowiring) + version: 1.9.0 + # Whether the autowiring, update process will automatically update this dependency (fill in false when version is "+" has no effect) + auto-update: true + # Dependencies version filter, follow the global configuration by default + version-filter: + use-internal: true + exclusion-list: + -foo + -bar + # Specify the name of the repositories currently used by dependencies (multiple can be specified at the same time) + # When this parameter is not set, the current dependency will use all declared repositories to search in order + # If repositories where this dependency is located is known, it is recommended to set the repositories for it to improve efficiency + # For example: google, you can directly fill in google + # For example: maven-central, you can directly fill in maven-central + # Or the name you specified, such as the jit-pack node above, you need to fill in jit-pack + # Note: If you set a scope on the target repository and it does not match the current dependency type, it will be automatically excluded + # Note: If none of the repositories you set are available, the current dependency will be considered as non-existing repositories + repositories: + google + maven-central + core-ktx: + alias: androidx-core-ktx + # If there are dependencies of the same version, + # you can use the version reference to avoid filling in the same version repeatedly + # The version reference content supports matching the full name of the dependency + # and the alias of the dependency + # If the currently referenced version is in the current "Group ID", + # you can directly fill in the "::Artifact ID" + # For example, it is currently "androidx.core", + # and the version that refers to "core" only needs to be filled in as "version-ref: ::core" + # Cannot reference dependencies that already exist version references (recursive call) + # Note: "version" and "version-ref" nodes can only appear once in a dependency + # Note: If you declare "version-ref", this dependency will be excluded from autowiring and updating + # Note: If you declare "version-ref", "auto-update", "repositories", "version-filter" will not work + version-ref: ::core # Or "androidx.core:core" and "androidx-core" (alias) + com.squareup.okhttp3: + okhttp: + # If you declare a version in the version that exists in "version-filter" (internal filter or exclude list) + # For example version "5.0.0-alpha.7" contains "-alpha" + # At this point you don't need to configure "version-filter" and set "use-internal: false" + # When running autowiring and updating dependencies, + # it will automatically update to the latest version that currently contains "-alpha" + version: 5.0.0-alpha.7 + com.google.android.material: + material: + alias: google-material-android + version: 1.8.0 + junit: + junit: + alias: junit + version: 4.13.2 + # If you are using a BOM dependency, you can declare it directly like most dependencies + org.springframework.boot: + spring-boot-dependencies: + alias: spring-boot-dependencies + version: 1.5.8.RELEASE + dom4j: + dom4j: + # You can use "" to declare that this dependency does not need to declare version + # If it is declared that it does not need to declare a version, + # it will automatically use the version declared in the BOM + # Note: If you declare "", this dependency will be excluded from autowiring and updating + # Note: If you declare "", "versions", "version-ref" will no longer be used + version: +``` + +`SweetDependency` takes over Gradle's dependency repositories, and the repositories declared in the config file will be used by both `SweetDependency` +and Gradle. + +After the above configuration is complete, run Gradle Sync once. + +Then, you can go to your project's `build.gradle` or `build.gradle.kts`, and migrate the dependency deployment method to `SweetDependency`. + +`SweetDependency` will automatically split the dependencies namespace, dependencies name, dependencies alias, etc. + +Note: If you set the plugins version in the `plugins` method block of `pluginManagement`, please remove it. + +> Kotlin DSL + +First, deploy plugins in root project, but not applied (consistent with the official Gradle recommendation). + +```kotlin +plugins { + // It is recommended to use the autowire method for deployment + // (you can also use the official alias method, which behaves the same) + // Due to the customization limitations of the plugins, + // the code generation here uses Gradle's own version catalogs + // Due to version catalogs, plugins must start with "namespace.plugins" + autowire(libs.plugins.com.android.application) apply false + autowire(libs.plugins.org.jetbrains.kotlin.android) apply false + // Use an alias + autowire(libs.plugins.android.application) apply false + autowire(libs.plugins.kotlin.android) apply false +} +``` + +Next, deploy plugins and libraries that need to be used in the sub-projects. + +```kotlin +plugins { + autowire(libs.plugins.com.android.application) + autowire(libs.plugins.org.jetbrains.kotlin.android) + // Use an alias + autowire(libs.plugins.android.application) + autowire(libs.plugins.kotlin.android) +} + +dependencies { + // Direct deployment + implementation(androidx.core.core.ktx) + implementation(com.google.android.material.material) + // Use an alias + implementation(androidx.core.ktx) + implementation(google.material.android) + // If you set up a dependenies namespace, please deploy the namespace as a prefix + implementation(libs.androidx.core.core.ktx) + // In the case of using dependencies namespace, the usage of dependencies aliase is still the same + implementation(libs.androidx.core.ktx) +} +``` + +> Groovy DSL + +First, deploy plugins in root project, but not applied (consistent with the official Gradle recommendation). + +```groovy +plugins { + // Groovy does not support deployment using the autowire method, + // you can only use the official alias method + // Due to the customization limitations of the plugins, + // the code generation here uses Gradle's own version catalogs + // Due to version catalogs, plugins must start with "namespace.plugins" + alias libs.plugins.com.android.application apply false + alias libs.plugins.org.jetbrains.kotlin.android apply false + // Use an alias + alias libs.plugins.android.application apply false + alias libs.plugins.kotlin.android apply false +} +``` + +Next, deploy plugins and libraries that need to be used in the sub-projects. + +```groovy +plugins { + alias libs.plugins.com.android.application + alias libs.plugins.org.jetbrains.kotlin.android + // Use an alias + alias libs.plugins.android.application + alias libs.plugins.kotlin.android +} + +dependencies { + // Direct deployment + implementation androidx.core.core.ktx + implementation com.google.android.material.material + // Use an alias + implementation androidx.core.ktx + implementation google.material.android + // If you set up a dependenies namespace, please deploy the namespace as a prefix + implementation libs.androidx.core.core.ktx + // In the case of using dependencies namespace, the usage of dependencies aliase is still the same + implementation libs.androidx.core.ktx +} +``` + +**Pay Attention** + +Names such as `ext`, `extra`, `extraProperties`, and `extensions` are the default extension methods that come with Gradle when creating extension +methods. + +When `SweetDependency` encounters these names when generating the first dependency extension method, it will not be generated normally. + +The solution is to add `s` at the end of the name. + +If you must use these names as dependencies name or alias, you may consider set a dependencies namespace. + +Dependencies starting with these names are not currently collected in the Maven repository. + +Certainly, you cannot directly use these built-in default extension method names to set dependencies namespace, dependencies aliase, etc. + +**Possible Problems** + +If your project only has one root project and does not import any sub-projects, +if extension methods in `dependencies` are not generated properly, +you can solve this problem by migrating your root project to a sub-projects and importing this sub-projects in `settings.gradle` +or `settings.gradle.kts`. + +We generally recommend classifying the functions of the project, and the root project is only used to manage plugins and some configurations. + +**Limitations Note** + +`SweetDependency` cannot manage the `plugins` method block in `settings.gradle` or `settings.gradle.kts`, +because this belongs to the upstream of `SweetDependency`, please use the usual way to manage this situation. + +### Kotlin Multiplatform Support + +In Kotlin Multiplatform, it is consistent with the general dependency deployment method. + +> Kotlin DSL + +```kotlin +sourceSets { + val androidMain by getting { + dependencies { + implementation(androidx.core.core.ktx) + implementation(com.google.android.material.material) + } + } +} +``` + +> Groovy DSL + +```groovy +sourceSets { + androidMain { + dependencies { + implementation androidx.core.core.ktx + implementation com.google.android.material.material + } + } +} +``` + +## Migrating Dependencies to Sweet Dependency + +If you are starting to use `SweetDependency` for the first time, you can manually run the create dependencies migration template task. + +You can find the `createDependenciesMigrationTemplate` task in the task group `sweet-dependency` of the root project, and run it manually. + +This operation will automatically analyze all external repository dependencies in the projects and generate the `*.template.yaml` file prefixed with +the configuration file name in the root project's `gradle/sweet-dependency`. + +If you haven't changed the name of the configuration file, it will default to `sweet-dependency-config.template.yaml`. + +If the generated template file already exists, it will be overwritten automatically. + +The template file will provide the dependencies nodes used by the current projects. + +Please manually copy all the content of the generated nodes to the configuration file and delete the template file. + +> The following example + +```yaml +plugins: + ... +libraries: + ... +``` + +Please note that `SweetDependency` will not create a dependency repositories in the template file, please add the dependency repositories manually or +use the automatically generated repositories in the first configuration file. + +Then please manually migrate external repository dependencies to `SweetDependency` in the method body of `plugins` and `dependencies` of each +project's `build.gradle` or `build.gradle.kts`. + +Below is an example for reference. + +> Kotlin DSL + +```kotlin +plugins { + // Original deployment writing method + id("org.jetbrains.kotlin.android") version "1.8.10" + // Writing after migration + autowire(libs.plugins.org.jetbrains.kotlin.android) +} + +dependencies { + // Original deployment writing method + implementation("androidx.core:core-ktx:1.9.0") + // Writing after migration + implementation(androidx.core.core.ktx) +} +``` + +> Groovy DSL + +```groovy +plugins { + // Original deployment writing method + id 'org.jetbrains.kotlin.android' version '1.8.10' + // Writing after migration + alias libs.plugins.org.jetbrains.kotlin.android +} + +dependencies { + // Original deployment writing method + implementation 'androidx.core:core-ktx:1.9.0' + // Writing after migration + implementation androidx.core.core.ktx +} +``` + +If you are using `versionCatalogs`, please delete declared them in `settings.gradle` or `settings.gradle.kts` too. + +If you declared `versionCatalogs` using TOML, such as a `libs.versions.toml` file, you don't need it now, +and you can delete it after migrating dependencies. + +Please note that the template file is only used for migration dependencies, it should not appear in the version control system, it is recommended to +delete it after use. + +## Configure Dependencies Autowiring + +By default, running Gradle Sync will perform a search and autowire and update dependencies. + +Dependencies autowire logs will be written to `.gradle/sweet-dependency/dependencies-autowire.log` of the root project. + +You can find the method to configure whether to enable dependency autowiring logging at the bottom of this document. + +You can configure the mode of `preferences.autowire-on-sync-mode` in `sweet-dependency-config.yaml`. + +You can also manually run the following Gradle tasks when you need, you can find these tasks in the root project's task group `sweet-dependency`. + +- updateOptionalDependencies +- updateOptionalPlugins +- updateOptionalLibraries + +Autowire and update optional dependencies. + +The ones ending with "Plugins" only manage plugins, and the ones ending with "Libraries" only manage libraries. + +You can use `^` in the configuration file to identify optional update dependencies. + +> The following example + +```yaml +plugins: + # The optional update behavior of plugins is consistent with libraries, + # please refer to the example of libraries below + ... + +libraries: + com.google.android.material: + material: + # Use "^" as the beginning to identify the current version, + # it will be replaced with the latest version when there is an update + # Use "^" as the beginning to identify the current version will remove this symbol + # after the next successful update (single optional update) + # If you want to keep this symbol persistent (permanent optional update), + # please double write it, like "^^" + version: ^1.8.0 +``` + +- updateAllDependencies +- updateAllPlugins +- updateAllLibraries + +Autowire and update all dependencies. + +The ones ending with "Plugins" only manage plugins, and the ones ending with "Libraries" only manage libraries. + +All dependencies will be checked for updates and updated to the latest version, +which can be very time-consuming when there are too many dependencies. + +- autowireDependencies +- autowirePlugins +- autowireLibraries + +Only autowire fill in "+" version dependencies. + +The ones ending with "Plugins" only manage plugins, and the ones ending with "Libraries" only manage libraries. + +**Pay Attention** + +After dependencies are autowired or updated, you need to manually run Gradle Sync for the changes to take effect, +if you don't do this, the changes will take effect on the next compile or any Gradle activity. + +## Configure Dependencies Extensions + +You can autowire arbitrary dependencies using the `autowire(...)` method. + +Note: Some features may not work with Groovy DSL, please start using or move to Kotlin DSL if needed. + +Below is a simple example. + +> Kotlin DSL + +```kotlin +plugins { + // Deployment "org.jetbrains.kotlin.android" + autowire("org.jetbrains.kotlin.android") + // Deploy with an alias + autowire("kotlin-android") +} + +dependencies { + // Deployment "androidx.core:core-ktx" + implementation(autowire("androidx.core:core-ktx")) + // Deploy with an alias + implementation(autowire("androidx-core-ktx")) +} +``` + +> Groovy DSL + +```groovy +plugins { + // Unfortunately, Gradle does not allow custom plugins method blocks using the usual scheme + // This is Gradle's restriction on custom plugins, and plugins cannot intervene + // Therefore, the autowire method will not support Groovy DSL + // Recommended to start using or switch to Kotlin DSL if needed +} + +dependencies { + // Deployment "androidx.core:core-ktx" + implementation sweet.autowire('androidx.core:core-ktx') + // Deploy with an alias + implementation sweet.autowire('androidx-core-ktx') +} +``` + +In addition to autowiring dependencies from plugins and external repositories, you can also use it to import file collection dependencies. + +> Kotlin DSL + +```kotlin +dependencies { + // Import all jar dependencies in the libs directory of the current project + implementation(autowire("libs/*.jar")) + // Import all jar dependencies in the libs directory of the mylibrary project + implementation(autowire("../mylibrary/libs/*.jar")) + // Import all jar dependencies in an absolute path directory + implementation(autowire("/home/test/someDepends/*.jar")) + // Import all dependencies in the libs directory of the current project, regardless of file extension + implementation(autowire("libs/*")) + // You can also import one by one or a group of files + implementation( + autowire( + "libs/*.jar", + "libs/*.aar", + "/home/test/someDepends/mylibrary-1.jar", + "/home/test/someDepends/mylibrary-2.jar" + ) + ) + // The following is a special case + // If you directly import a file that has no directory hierarchy and is relative to the current project path, + // it may not be recognized directly + // For example, we directly import "mylibrary.jar" under the current project path + // The following will recognize "mylibrary.jar" as an external repository dependency + implementation(autowire("mylibrary.jar")) + // To emphasize that this dependency is a file, use parentheses around the file path + implementation(autowire("(mylibrary.jar)")) +} +``` + +> Groovy DSL + +```groovy +dependencies { + // Import all jar dependencies in the libs directory of the current project + implementation sweet.autowire('libs/*.jar') + // Import all jar dependencies in the libs directory of the mylibrary project + implementation sweet.autowire('../mylibrary/libs/*.jar') + // Import all jar dependencies in an absolute path directory + implementation sweet.autowire('/home/test/someDepends/*.jar') + // Import all dependencies in the libs directory of the current project, regardless of file extension + implementation sweet.autowire('libs/*') + // You can also import one by one or a group of files + implementation sweet.autowire( + 'libs/*.jar', + 'libs/*.aar', + '/home/test/someDepends/mylibrary-1.jar', + '/home/test/someDepends/mylibrary-2.jar' + ) + // The following is a special case + // If you directly import a file that has no directory hierarchy and is relative to the current project path, + // it may not be recognized directly + // For example, we directly import "mylibrary.jar" under the current project path + // The following will recognize "mylibrary.jar" as an external repository dependency + implementation sweet.autowire('mylibrary.jar') + // To emphasize that this dependency is a file, use parentheses around the file path + implementation sweet.autowire('(mylibrary.jar)') +} +``` + +### Kotlin Multiplatform Support + +In Kotlin Multiplatform, it is consistent with the general dependency deployment method. + +> Kotlin DSL + +```kotlin +sourceSets { + val androidMain by getting { + dependencies { + implementation(autowire("androidx.core:core-ktx")) + implementation(autowire("libs/*.jar")) + } + } +} +``` + +> Groovy DSL + +```groovy +sourceSets { + androidMain { + dependencies { + implementation sweet.autowire('androidx.core:core-ktx') + implementation sweet.autowire('libs/*.jar') + } + } +} +``` + +## Configure Dependencies Version Declares + +There are some dependencies versions that we want to keep fixed in the project and not easily updated or changed. + +For this case, you can use version declares to predeclare these versions in the configuration file. + +> The following example + +```yaml +# Declare some versions to use +versions: + # Node name only allow 26 letters (upper and lower case) and '.', '_', '-' and must start with a letter + mydemo-test: 1.0.0 + +# Reference these versions in plugins declare +plugins: + # The dependencies version declares of plugins is consistent with libraries, + # please refer to the example of libraries below + ... + +# Reference these versions in libraries declare +libraries: + com.mydemo.test: + test: + # You can reference the declared version directly at this node + # The node of the version declared name is higher than that of the dependencies name and alias + # If the same name exists, the former will be used first + version-ref: mydemo-test +``` + +## Configure Dependencies Version Aliases + +By default, the version of dependencies declared in the configuration file is fixed, and the version of the deployed dependencies follows the version +in the definition. + +If you have such a requirement: the version of the same dependency needs to be different from the version of the dependency in other sub-projects or +the main project. + +> The "A" project following example + +```kotlin +plugins { + id("com.mydemo.myplugin") version "1.0.1" +} + +dependencies { + implementation("com.mydemo.test:test:1.0.1") +} +``` + +> The "B" project following example + +```kotlin +plugins { + id("com.mydemo.myplugin") version "1.0.2" +} + +dependencies { + implementation("com.mydemo.test:test:1.0.2") +} +``` + +For this situation, you can use version aliases to declare multiple different versions in the configuration file. + +> The following example + +```yaml +plugins: + com.mydemo.myplugin: + alias: demo-myplugin + # Dependency version (current major version, must exist) + # You can also use "version-ref" + version: 1.0.2 + # Custom version alias + # Only allow 26 letters (upper and lower case) and '.', '_', '-' and must start with a letter + # (minimum 3 digits in length) + # Version cannot fill in "+", because the version declared by the version alias will not be autowiring + versions: + a-version: 1.0.1 + # If you want to follow the main version, you can fill in "" + b-version: + +libraries: + com.mydemo.test: + test: + alias: demo-test + # Dependency version (current major version, must exist) + # You can also use "version-ref" + version: 1.0.2 + # Custom version alias + # Only allow 26 letters (upper and lower case) and '.', '_', '-' and must start with a letter + # (minimum 3 digits in length) + # Version cannot fill in "+", because the version declared by the version alias will not be autowiring + versions: + a-version: 1.0.1 + # If you want to follow the main version, you can fill in "" + b-version: +``` + +Then you can use `.` directly after the current dependency to use its version alias. + +The version aliases will be automatically converted to lower camel case. + +It is recommended that all aliases be expressed in lowercase letters. + +> The "A" project following example + +```kotlin +plugins { + autowire(libs.plugins.com.mydemo.myplugin.aVersion) + // You can also use dependencies alias directly + autowire(libs.plugins.demo.myplugin.aVersion) + // Or use the autowire method to deploy + // Note that you need to fill in the version alias in the second method parameter of autowire + autowire("com.mydemo.myplugin", "a-version") + autowire("demo-myplugin", "a-version") +} + +dependencies { + implementation(com.mydemo.test.test.aVersion) + // You can also use dependencies alias directly + implementation(demo.test.aVersion) + // Or use the autowire method to deploy + // Note that you need to fill in the version alias in the second method parameter of autowire + implementation(autowire("com.mydemo.test:test", "a-version")) + implementation(autowire("demo-test", "a-version")) +} +``` + +> The "B" project following example + +```kotlin +plugins { + autowire(libs.plugins.com.mydemo.myplugin.bVersion) + // You can also use dependencies alias directly + autowire(libs.plugins.demo.myplugin.bVersion) + // Or use the autowire method to deploy + // Note that you need to fill in the version alias in the second method parameter of autowire + autowire("com.mydemo.myplugin", "b-version") + autowire("demo-myplugin", "b-version") +} + +dependencies { + implementation(com.mydemo.test.test.bVersion) + // You can also use dependencies alias directly + implementation(demo.test.bVersion) + // Or use the autowire method to deploy + // Note that you need to fill in the version alias in the second method parameter of autowire + implementation(autowire("com.mydemo.test:test", "b-version")) + implementation(autowire("demo-test", "b-version")) +} +``` + +Note: Some features may not be available in `plugins` in the Groovy DSL. + +If you don't specify a version alias, the deployed dependency defaults to using the current major version of the dependency (that is the version +declared by "version"). + +**Pay Attention** + +If there is a dependency relationship between project A and project B in the above example, +it will use the newer version of the two first (except plugins). + +This is Gradle's dependency inheritance rule and is not controlled by version aliases. + +No specific version dependencies cannot use the dependencies version aliases function. + +## Configure String Interpolation + +You can use ${...} to dynamically insert content into `SweetDependency` config file, +so you can export some sensitive information from your config file. + +Where `...` represents the currently used KEY (key value name). + +`SweetDependency` will look for content to insert from the following locations in order of priority: + +- The current project (Root Project)'s `gradle.properties` +- The current user's `gradle.properties` +- System's `System.getProperties()` +- System's `System.getenv(...)` + +> The following example + +```yaml +# Configure the repository used by dependencies +repositories: + your-custom-repo: + credentials: + username: ${your-repo.username} + password: ${your-repo.password} + url: ${your-repo.url} + +# Configure plugins that need to be used +plugins: + com.android.application: + version: + + +# Configure libraries that need to be used +libraries: + androidx.core: + # It can also be set on the node + ${depends.androidx.core.name}: + version: + + versions: + # Or specific content + a-version: ${depends.androidx.core.core.a-version} +``` + +When reading config file, `SweetDependency` will first replace these contents with actual strings before parsing. + +If no corresponding content is found for the currently used KEY (key value name), an empty string will be returned. + +## Autowire Optimization Suggestions + +Now that you understand the basic functionality of `SweetDependency`, here are some optimization suggestions for existing project repositories and +dependencies. + +### Repositories Section + +According to Gradle's dependencies search rules, the order in which the repositories are added makes sense, +and the search order will be in the order you added them. + +You can adjust the order of the repositories appropriately, which will help improve dependencies search efficiency. + +> The following example + +```yaml +repositories: + google: + maven-central: +``` + +For users in mainland China, you can use the mirror server address preset by `SweetDependency` to speed up the dependencies search. + +> The following example + +```yaml +repositories: + aliyun-google-mirror: + aliyun-maven-central-mirror: + aliyun-maven-public-mirror: + aliyun-jcenter-mirror: +``` + +You can also set the `content` parameter to the `google` repository to improve its efficiency, because it currently only contains the dependencies +starting with the following. + +- androidx.* +- com.google.* +- com.android.* + +> The following example + +```yaml +repositories: + google: + content: + include: + group-by-regex: + androidx.* + com.google.* + com.android.* +``` + +You can also set the `scope` parameter of the `gradle-plugin-portal` repository to `PLUGINS` to improve search efficiency, +since it will only be applied to plugins. + +> The following example + +```yaml +repositories: + gradle-plugin-portal: + scope: PLUGINS +``` + +It is recommended to rank `gradle-plugin-portal` first among all repositories, and plugins will be searched using it first. + +### Dependencies Section + +You can set repositories used by a given dependency to reduce the time spent on autowiring searches. + +You can use `version-ref` when appropriate, which can reduce the time-consuming of repeatedly searching for the same version of dependencies. + +> The following example + +```yaml +plugins: + com.android.application: + alias: android-application + version: 7.4.1 + repositories: + google + com.android.library: + version-ref: android-application + +libraries: + androidx.core: + core-ktx: + version: 1.9.0 + repositories: + google +``` + +## Dump Debug Information + +You can manually run the `sweetDependencyDebug` task to dump debug information, which you can find in the root project's task +group `sweet-dependency`. + +This operation will dump the data structure of the current `SweetDependency` in memory to the console, you can refer to the configuration file to +check whether the data is correct. + +If you think `SweetDependency` is not working as expected, you can also provide us with this data so we can debug and fix it. + +## Custom Preferences + +You can configure `SweetDependency` using `sweetDependency` lambda method in `settings.gradle` or `settings.gradle.kts` of the root project. + +> Kotlin DSL + +```kotlin +sweetDependency { + + // Enable SweetDependency, set to false will disable all functions + isEnable = true + + // SweetDependency configuration file name + configFileName = "sweet-dependency-config.yaml" + + // Whether to enable dependency autowiring logging + // This function is enabled by default and will create a log file in the ".gradle/sweet-dependency" directory of the current root project + isEnableDependenciesAutowireLog = true + + // Whether to enable verbose mode + // This function is enabled by default, and when disabled, + // SweetDependency will be silent when not necessary (omit unnecessary logs) + isEnableVerboseMode = true +} +``` + +> Groovy DSL + +```groovy +sweetDependency { + enable true + configFileName 'sweet-dependency-config.yaml' + enableDependenciesAutowireLog true + enableVerboseMode true +} +``` + +## Feedback + +If you encounter any problems while using `SweetDependency`, you can always open an `issues` on GitHub to give us feedback. \ No newline at end of file diff --git a/examples/sample-android/.gitignore b/examples/sample-android/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/examples/sample-android/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/examples/sample-android/build.gradle.kts b/examples/sample-android/build.gradle.kts new file mode 100644 index 0000000..9877187 --- /dev/null +++ b/examples/sample-android/build.gradle.kts @@ -0,0 +1,5 @@ +plugins { + autowire(libs.plugins.com.android.application) apply false + autowire(libs.plugins.com.android.library) apply false + autowire(libs.plugins.org.jetbrains.kotlin.android) apply false +} \ No newline at end of file diff --git a/examples/sample-android/demo-app/.gitignore b/examples/sample-android/demo-app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/examples/sample-android/demo-app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/examples/sample-android/demo-app/build.gradle.kts b/examples/sample-android/demo-app/build.gradle.kts new file mode 100644 index 0000000..99587cb --- /dev/null +++ b/examples/sample-android/demo-app/build.gradle.kts @@ -0,0 +1,42 @@ +plugins { + autowire(libs.plugins.com.android.application) + autowire(libs.plugins.org.jetbrains.kotlin.android) +} + +android { + namespace = "com.highcapable.sweetdependency.demo_app" + compileSdk = 33 + + defaultConfig { + applicationId = "com.highcapable.sweetdependency.demo_app" + minSdk = 24 + targetSdk = 33 + versionCode = 1 + versionName = "1.0" + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(androidx.core.core.ktx) + implementation(androidx.appcompat.appcompat) + implementation(com.google.android.material.material) + implementation(androidx.constraintlayout.constraintlayout) + testImplementation(junit.junit) + androidTestImplementation(androidx.test.ext.junit) + androidTestImplementation(androidx.test.espresso.espresso.core) +} \ No newline at end of file diff --git a/examples/sample-android/demo-app/proguard-rules.pro b/examples/sample-android/demo-app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/examples/sample-android/demo-app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/androidTest/java/com/highcapable/sweetdependency/demo_app/ExampleInstrumentedTest.kt b/examples/sample-android/demo-app/src/androidTest/java/com/highcapable/sweetdependency/demo_app/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..b0982fe --- /dev/null +++ b/examples/sample-android/demo-app/src/androidTest/java/com/highcapable/sweetdependency/demo_app/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.highcapable.sweetdependency.demo_app + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.highcapable.sweetdependency.demo_app", appContext.packageName) + } +} \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/AndroidManifest.xml b/examples/sample-android/demo-app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..aceeb8b --- /dev/null +++ b/examples/sample-android/demo-app/src/main/AndroidManifest.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/java/com/highcapable/sweetdependency/demo_app/MainActivity.kt b/examples/sample-android/demo-app/src/main/java/com/highcapable/sweetdependency/demo_app/MainActivity.kt new file mode 100644 index 0000000..bd3cbb5 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/java/com/highcapable/sweetdependency/demo_app/MainActivity.kt @@ -0,0 +1,12 @@ +package com.highcapable.sweetdependency.demo_app + +import android.os.Bundle +import androidx.appcompat.app.AppCompatActivity + +class MainActivity : AppCompatActivity() { + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContentView(R.layout.activity_main) + } +} \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/examples/sample-android/demo-app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/drawable/ic_launcher_background.xml b/examples/sample-android/demo-app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/sample-android/demo-app/src/main/res/layout/activity_main.xml b/examples/sample-android/demo-app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..0c068ae --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/layout/activity_main.xml @@ -0,0 +1,17 @@ + + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml b/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-hdpi/ic_launcher.webp b/examples/sample-android/demo-app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/examples/sample-android/demo-app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-mdpi/ic_launcher.webp b/examples/sample-android/demo-app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/examples/sample-android/demo-app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/examples/sample-android/demo-app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/examples/sample-android/demo-app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/examples/sample-android/demo-app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/examples/sample-android/demo-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/examples/sample-android/demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/examples/sample-android/demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-app/src/main/res/values-night/themes.xml b/examples/sample-android/demo-app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..34f316e --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/values-night/themes.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/values/colors.xml b/examples/sample-android/demo-app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/values/strings.xml b/examples/sample-android/demo-app/src/main/res/values/strings.xml new file mode 100644 index 0000000..8436732 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + SweetDependency + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/values/themes.xml b/examples/sample-android/demo-app/src/main/res/values/themes.xml new file mode 100644 index 0000000..9653717 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/values/themes.xml @@ -0,0 +1,16 @@ + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/xml/backup_rules.xml b/examples/sample-android/demo-app/src/main/res/xml/backup_rules.xml new file mode 100644 index 0000000..fa0f996 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/xml/backup_rules.xml @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/main/res/xml/data_extraction_rules.xml b/examples/sample-android/demo-app/src/main/res/xml/data_extraction_rules.xml new file mode 100644 index 0000000..9ee9997 --- /dev/null +++ b/examples/sample-android/demo-app/src/main/res/xml/data_extraction_rules.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/examples/sample-android/demo-app/src/test/java/com/highcapable/sweetdependency/demo_app/ExampleUnitTest.kt b/examples/sample-android/demo-app/src/test/java/com/highcapable/sweetdependency/demo_app/ExampleUnitTest.kt new file mode 100644 index 0000000..d7de63f --- /dev/null +++ b/examples/sample-android/demo-app/src/test/java/com/highcapable/sweetdependency/demo_app/ExampleUnitTest.kt @@ -0,0 +1,17 @@ +package com.highcapable.sweetdependency.demo_app + +import org.junit.Test + +import org.junit.Assert.* + +/** + * Example local unit test, which will execute on the development machine (host). + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +class ExampleUnitTest { + @Test + fun addition_isCorrect() { + assertEquals(4, 2 + 2) + } +} \ No newline at end of file diff --git a/examples/sample-android/demo-library/.gitignore b/examples/sample-android/demo-library/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/examples/sample-android/demo-library/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/examples/sample-android/demo-library/build.gradle.kts b/examples/sample-android/demo-library/build.gradle.kts new file mode 100644 index 0000000..5a32d1f --- /dev/null +++ b/examples/sample-android/demo-library/build.gradle.kts @@ -0,0 +1,40 @@ +plugins { + autowire(libs.plugins.com.android.library) + autowire(libs.plugins.org.jetbrains.kotlin.android) +} + +android { + namespace = "com.highcapable.sweetdependency.demo_library" + compileSdk = 33 + + defaultConfig { + minSdk = 24 + targetSdk = 33 + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles("consumer-rules.pro") + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" + } +} + +dependencies { + implementation(androidx.core.core.ktx) + implementation(androidx.appcompat.appcompat) + implementation(com.google.android.material.material) + implementation(androidx.constraintlayout.constraintlayout) + testImplementation(junit.junit) + androidTestImplementation(androidx.test.ext.junit) + androidTestImplementation(androidx.test.espresso.espresso.core) +} \ No newline at end of file diff --git a/examples/sample-android/demo-library/consumer-rules.pro b/examples/sample-android/demo-library/consumer-rules.pro new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/demo-library/proguard-rules.pro b/examples/sample-android/demo-library/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/examples/sample-android/demo-library/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/examples/sample-android/demo-library/src/androidTest/java/com/highcapable/sweetdependency/demo_library/ExampleInstrumentedTest.kt b/examples/sample-android/demo-library/src/androidTest/java/com/highcapable/sweetdependency/demo_library/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..1a86cda --- /dev/null +++ b/examples/sample-android/demo-library/src/androidTest/java/com/highcapable/sweetdependency/demo_library/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.highcapable.sweetdependency.demo_library + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.highcapable.sweetdependency.demo_library.test", appContext.packageName) + } +} \ No newline at end of file diff --git a/examples/sample-android/demo-library/src/main/AndroidManifest.xml b/examples/sample-android/demo-library/src/main/AndroidManifest.xml new file mode 100644 index 0000000..568741e --- /dev/null +++ b/examples/sample-android/demo-library/src/main/AndroidManifest.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/examples/sample-android/demo-library/src/main/java/com/highcapable/sweetdependency/demo_library/DemoLibrary.kt b/examples/sample-android/demo-library/src/main/java/com/highcapable/sweetdependency/demo_library/DemoLibrary.kt new file mode 100644 index 0000000..7f48e5b --- /dev/null +++ b/examples/sample-android/demo-library/src/main/java/com/highcapable/sweetdependency/demo_library/DemoLibrary.kt @@ -0,0 +1,3 @@ +package com.highcapable.sweetdependency.demo_library + +class DemoLibrary \ No newline at end of file diff --git a/examples/sample-android/demo-library/src/test/java/com/highcapable/sweetdependency/demo_library/ExampleUnitTest.kt b/examples/sample-android/demo-library/src/test/java/com/highcapable/sweetdependency/demo_library/ExampleUnitTest.kt new file mode 100644 index 0000000..f65954f --- /dev/null +++ b/examples/sample-android/demo-library/src/test/java/com/highcapable/sweetdependency/demo_library/ExampleUnitTest.kt @@ -0,0 +1,17 @@ +package com.highcapable.sweetdependency.demo_library + +import org.junit.Test + +import org.junit.Assert.* + +/** + * Example local unit test, which will execute on the development machine (host). + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +class ExampleUnitTest { + @Test + fun addition_isCorrect() { + assertEquals(4, 2 + 2) + } +} \ No newline at end of file diff --git a/examples/sample-android/gradle.properties b/examples/sample-android/gradle.properties new file mode 100644 index 0000000..3c5031e --- /dev/null +++ b/examples/sample-android/gradle.properties @@ -0,0 +1,23 @@ +# Project-wide Gradle settings. +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true +# AndroidX package structure to make it clearer which packages are bundled with the +# Android operating system, and which are packaged with your app's APK +# https://developer.android.com/topic/libraries/support-library/androidx-rn +android.useAndroidX=true +# Kotlin code style for this project: "official" or "obsolete": +kotlin.code.style=official +# Enables namespacing of each library's R class so that its R class includes only the +# resources declared in the library itself and none from the library's dependencies, +# thereby reducing the size of the R class for that library +android.nonTransitiveRClass=true \ No newline at end of file diff --git a/examples/sample-android/gradle/sweet-dependency/sweet-dependency-config.yaml b/examples/sample-android/gradle/sweet-dependency/sweet-dependency-config.yaml new file mode 100644 index 0000000..45ba3f1 --- /dev/null +++ b/examples/sample-android/gradle/sweet-dependency/sweet-dependency-config.yaml @@ -0,0 +1,42 @@ +preferences: + autowire-on-sync-mode: UPDATE_OPTIONAL_DEPENDENCIES + repositories-mode: FAIL_ON_PROJECT_REPOS + +repositories: + gradle-plugin-portal: + scope: PLUGINS + google: + maven-central: + +plugins: + com.android.application: + version: + + com.android.library: + version-ref: com.android.application + org.jetbrains.kotlin.android: + version: + + +libraries: + com.google.android.material: + material: + version: + + androidx.constraintlayout: + constraintlayout: + version: + + junit: + junit: + version: + + androidx.appcompat: + appcompat: + version: + + androidx.core: + core: + version: + + core-ktx: + version-ref: ::core + androidx.test.ext: + junit: + version: + + androidx.test.espresso: + espresso-core: + version: + \ No newline at end of file diff --git a/examples/sample-android/gradle/wrapper/gradle-wrapper.jar b/examples/sample-android/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-android/gradle/wrapper/gradle-wrapper.properties b/examples/sample-android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..545c4c0 --- /dev/null +++ b/examples/sample-android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip +distributionPath=wrapper/dists +zipStorePath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME \ No newline at end of file diff --git a/examples/sample-android/gradlew b/examples/sample-android/gradlew new file mode 100644 index 0000000..4f906e0 --- /dev/null +++ b/examples/sample-android/gradlew @@ -0,0 +1,185 @@ +#!/usr/bin/env sh + +# +# Copyright 2015 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=`expr $i + 1` + done + case $i in + 0) set -- ;; + 1) set -- "$args0" ;; + 2) set -- "$args0" "$args1" ;; + 3) set -- "$args0" "$args1" "$args2" ;; + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=`save "$@"` + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +exec "$JAVACMD" "$@" diff --git a/examples/sample-android/gradlew.bat b/examples/sample-android/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/examples/sample-android/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/examples/sample-android/settings.gradle.kts b/examples/sample-android/settings.gradle.kts new file mode 100644 index 0000000..623ab33 --- /dev/null +++ b/examples/sample-android/settings.gradle.kts @@ -0,0 +1,20 @@ +pluginManagement { + repositories { + gradlePluginPortal() + google() + mavenCentral() + } +} +plugins { + // Import the SweetDependency plugin here + // 在这里引入 SweetDependency 插件 + id("com.highcapable.sweetdependency") version "1.0.0" +} +sweetDependency { + configFileName = "sweet-dependency-config.yaml" + isEnableDependenciesAutowireLog = true + isEnableVerboseMode = true +} +rootProject.name = "SweetDependency-Sample-Android" +include(":demo-app") +include(":demo-library") \ No newline at end of file diff --git a/examples/sample-jvm/.gitignore b/examples/sample-jvm/.gitignore new file mode 100644 index 0000000..b63da45 --- /dev/null +++ b/examples/sample-jvm/.gitignore @@ -0,0 +1,42 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/examples/sample-jvm/build.gradle.kts b/examples/sample-jvm/build.gradle.kts new file mode 100644 index 0000000..d2cbf0a --- /dev/null +++ b/examples/sample-jvm/build.gradle.kts @@ -0,0 +1,3 @@ +plugins { + autowire(libs.plugins.org.jetbrains.kotlin.jvm) apply false +} \ No newline at end of file diff --git a/examples/sample-jvm/gradle.properties b/examples/sample-jvm/gradle.properties new file mode 100644 index 0000000..29e08e8 --- /dev/null +++ b/examples/sample-jvm/gradle.properties @@ -0,0 +1 @@ +kotlin.code.style=official \ No newline at end of file diff --git a/examples/sample-jvm/gradle/sweet-dependency/sweet-dependency-config.yaml b/examples/sample-jvm/gradle/sweet-dependency/sweet-dependency-config.yaml new file mode 100644 index 0000000..0700ab1 --- /dev/null +++ b/examples/sample-jvm/gradle/sweet-dependency/sweet-dependency-config.yaml @@ -0,0 +1,18 @@ +preferences: + autowire-on-sync-mode: UPDATE_OPTIONAL_DEPENDENCIES + repositories-mode: FAIL_ON_PROJECT_REPOS + +repositories: + gradle-plugin-portal: + scope: PLUGINS + google: + maven-central: + +plugins: + org.jetbrains.kotlin.jvm: + version: + + +libraries: + org.jetbrains.kotlin: + kotlin-test: + version: + \ No newline at end of file diff --git a/examples/sample-jvm/gradle/wrapper/gradle-wrapper.jar b/examples/sample-jvm/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..e69de29 diff --git a/examples/sample-jvm/gradle/wrapper/gradle-wrapper.properties b/examples/sample-jvm/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..8f5ef1a --- /dev/null +++ b/examples/sample-jvm/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists \ No newline at end of file diff --git a/examples/sample-jvm/gradlew b/examples/sample-jvm/gradlew new file mode 100644 index 0000000..1b6c787 --- /dev/null +++ b/examples/sample-jvm/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/examples/sample-jvm/gradlew.bat b/examples/sample-jvm/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/examples/sample-jvm/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/examples/sample-jvm/sample-jvm/build.gradle.kts b/examples/sample-jvm/sample-jvm/build.gradle.kts new file mode 100644 index 0000000..f7fb09a --- /dev/null +++ b/examples/sample-jvm/sample-jvm/build.gradle.kts @@ -0,0 +1,23 @@ +plugins { + autowire(libs.plugins.org.jetbrains.kotlin.jvm) + application +} + +group = "com.highcapable.sweetdependency.demo_jvm" +version = "1.0-SNAPSHOT" + +tasks.test { + useJUnitPlatform() +} + +kotlin { + jvmToolchain(17) +} + +application { + mainClass.set("com.highcapable.sweetdependency.demo_jvm.MainKt") +} + +dependencies { + testImplementation(org.jetbrains.kotlin.kotlin.test) +} \ No newline at end of file diff --git a/examples/sample-jvm/sample-jvm/src/main/kotlin/com/highcapable/sweetdependency/demo_jvm/Main.kt b/examples/sample-jvm/sample-jvm/src/main/kotlin/com/highcapable/sweetdependency/demo_jvm/Main.kt new file mode 100644 index 0000000..107745b --- /dev/null +++ b/examples/sample-jvm/sample-jvm/src/main/kotlin/com/highcapable/sweetdependency/demo_jvm/Main.kt @@ -0,0 +1,9 @@ +package com.highcapable.sweetdependency.demo_jvm + +fun main(args: Array) { + println("Hello World!") + + // Try adding program arguments via Run/Debug configuration. + // Learn more about running applications: https://www.jetbrains.com/help/idea/running-applications.html. + println("Program arguments: ${args.joinToString()}") +} \ No newline at end of file diff --git a/examples/sample-jvm/settings.gradle.kts b/examples/sample-jvm/settings.gradle.kts new file mode 100644 index 0000000..0f12eea --- /dev/null +++ b/examples/sample-jvm/settings.gradle.kts @@ -0,0 +1,19 @@ +pluginManagement { + repositories { + gradlePluginPortal() + google() + mavenCentral() + } +} +plugins { + // Import the SweetDependency plugin here + // 在这里引入 SweetDependency 插件 + id("com.highcapable.sweetdependency") version "1.0.0" +} +sweetDependency { + configFileName = "sweet-dependency-config.yaml" + isEnableDependenciesAutowireLog = true + isEnableVerboseMode = true +} +rootProject.name = "SweetDependency-Sample-Jvm" +include(":sample-jvm") \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..df81cba --- /dev/null +++ b/gradle.properties @@ -0,0 +1,19 @@ +# Project Configuration +project.name=SweetDependency +project.description=An easy autowire and manage dependencies Gradle plugin +project.url=https://github.com/fankes/HighCapable/SweetDependency +project.groupName=com.highcapable.sweetdependency +project.moduleName=sweet-dependency +project.version=1.0.0 +project.licence.name=Apache License 2.0 +project.licence.url=https://github.com/fankes/HighCapable/SweetDependency/blob/master/LICENSE +project.developer.id=0 +project.developer.name=fankes +project.developer.email=qzmmcn@163.com +# Gradle Plugin Configuration +gradle.plugin.moduleName=${project.groupName}.gradle.plugin +gradle.plugin.implementationClass=${project.groupName}.plugin.SweetDependencyPlugin +# Maven Publish Configuration +maven.publish.scm.connection=scm:git:git://github.com/HighCapable/SweetDependency.git +maven.publish.scm.developerConnection=scm:git:ssh://github.com/HighCapable/SweetDependency.git +maven.publish.scm.url=https://github.com/HighCapable/SweetDependency \ No newline at end of file diff --git a/gradle/sweet-dependency/sweet-dependency-config.yaml b/gradle/sweet-dependency/sweet-dependency-config.yaml new file mode 100644 index 0000000..ca286b0 --- /dev/null +++ b/gradle/sweet-dependency/sweet-dependency-config.yaml @@ -0,0 +1,38 @@ +preferences: + autowire-on-sync-mode: UPDATE_OPTIONAL_DEPENDENCIES + repositories-mode: FAIL_ON_PROJECT_REPOS + +repositories: + gradle-plugin-portal: + scope: PLUGINS + google: + maven-central: + maven-local: + +plugins: + org.jetbrains.kotlin.jvm: + alias: kotlin-jvm + version: 1.9.10 + org.jetbrains.kotlin.plugin.serialization: + alias: kotlin-serialization + version-ref: kotlin-jvm + com.vanniktech.maven.publish: + alias: maven-publish + version: 0.25.3 + +libraries: + org.jetbrains.kotlin: + kotlin-gradle-plugin-api: + version: 1.9.10 + org.snakeyaml: + snakeyaml-engine: + version: 2.7 + com.charleskorn.kaml: + kaml: + version: 0.55.0 + com.squareup.okhttp3: + okhttp: + version: 4.11.0 + com.squareup: + javapoet: + version: 1.13.0 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..e708b1c023ec8b20f512888fe07c5bd3ff77bb8f GIT binary patch literal 59203 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

K7UpUK$>l@ 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 E2O(~oYXATM literal 0 HcmV?d00001 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..692fc5c --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip +distributionPath=wrapper/dists +zipStorePath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME \ No newline at end of file diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..4f906e0 --- /dev/null +++ b/gradlew @@ -0,0 +1,185 @@ +#!/usr/bin/env sh + +# +# Copyright 2015 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=`expr $i + 1` + done + case $i in + 0) set -- ;; + 1) set -- "$args0" ;; + 2) set -- "$args0" "$args1" ;; + 3) set -- "$args0" "$args1" "$args2" ;; + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=`save "$@"` + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/img-src/icon.png b/img-src/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d8f73c5996124610662dda328ab9188a46050742 GIT binary patch literal 160857 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
=MO;@YZ#D(80f1@9g@e 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
j{??rbq3YVQ#aa+Rfob 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⪻Di8N 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%0Aq1bU+J*z`GisDv<&QH|AvTSeR( z{`27nDH~6-wF{cp!!=*$NAT$dj>JX+8*2kPRw8+7+f%arvcmDWiQ2_&5aLTABIg z@Z8zz&5d~c7M!1D-(Ni!xJ5VxO(4CfN_64ChCk-{;%iTpfV0A`Tf!N0b_)K=jSrvfcGJQQ5~arlZFe(N`nL}QggzMfA= zZUKAf(*YS92wcVyea6yK!;5u=69nR z)OwSotGmL4T_Gy)DD=hOMGRaIF#^bkV~gfe(UYhuL06@Qo$nWH>wi9XC(PKbBcpOa zICv>HK3%!Y`T9kN7vf)9|6aMNs?nsiXb3%AVD}=t*!uw=Hdnq|vNEAlIW}Xim>4#< zaj-h!G}?g8+3#IWM0MOe7E_A(u#?GQZ=lG_0)ruVzxTX9H5GhWVW-3FTQjo*2E)tr zPR#ASyCjcuv1W5o^{zPbCT<4Zw>sUICauT3Z~_Dmw~r=;1P_+p#VI1%lWsX=Ij`sL zIJ_Nw9a91uIt#UX$9p~HI94k6MkSV~EAHa8=U_u_`o-k^EGy^uatWy`6}xu}NbM6N zzKp!UyJ?~`a+FI9P4#m9v3cU?Oj43z$5gF;bwCQGQ61C~u1B6vL>_Ji6V}eE;Dt;@BnPPmCBQG05 zMQBJES_Rd-cI~eO{a$o&*4U!yzA`X0XVl`Z_$ME(`CIww(QZZfMwG{HUhpv9JZZABW}?z()TpR5etYsk>&we#wUs`V(WNU<$>T$wMmwkG1P8dvw&&qsQX$Z&5TJ9F z;ago-Eb(}l+R^Nx=2s88=h?!3E)SAako;y=HB&|qHeY&BHfKNJ7PDnV55(|E2d}1? zJQ5PWuvX+JAMHPM50BGkK5mV}-+-bm_ciGQ&o zs$x>rDpVrNRGjQZQNnb2={QjdYXm#Dth{3nUW=_Ks-vgG10J!WE8v2;sU#x!C4%Z` zXXb$c67VFIQ16Pp3HsG!jT-EU+$+=eD&idL`Y+=AJK!QJ1d5_w08Gb79rm($W^Dvo zw}&qc#A?N!35@+lS&qEuOeVh-X9#qLWj_%41ueFh!Ez4V7BHp7yw9YcP7l>uJS0Z2 zA&MipLfOAiyhqi!g;SM>);0_Umg6hOF)x4wlaPjTrL<3FL3lceN-Cx%{#9hG>i&ag zSl{mCNPVNrj;!{f{Gq|i+wq?w%RU}w9(VFRB4nd)Y)e$|AV($>0l6F1)GR4pWx%7( zcM5E(pgMlczZ{OrXVk9#g}3>uiL z7yEV>+3&v0Vdtqhn#HQnBYzr55R;f$d~B(DYW3N*19?NS^!g zuHD1wf6gD|2U1=6LnV)A1g6ocRYr&H96cd_BJ=T!@7{Wn;?po_ z?WJKDCx+!G>01|jc}zUyn0$<=f>|7w_7h(xi>(~Dn;;(E_}PMt5E3K+RGb`J{z0v_kfG(d0{Wj=uYoPqa>MEW1Cp#ZzlTT3{}>RoIK%ll(KYyK3Iur53g6R5wm zlp7wig_Br&A*n7#JMT0n|0oItN|}yn3)6Zq%G(-FlEvxMOl{Xy_nbze61gtKvcqXad(Cn2vCPx{KGTu zkDv6RM1z9hNMT1Hu0)V}RQWRVSN!lkS5S8#5p~*t~Lhb_GNQM46Pl5gDW+|(>{!hWRHZxx=0;l^>jYD@NCFh^C?G7ON@P?GzzflO*mV-{*ni{+ zPnh12O_0PDq)U!@{*%_&nqJ)lUYs@P*ybT+Dh)(OXa3-9yR|Fz+Sv;B1B;OibA9_$*B8dBDqB~fL%J$kEAas(#|}xTGOf%Nw1+Ged*6oY z*J9(5$cz?Dj}p!PVRM$3Kd z?-!Y6`;~me?shs^L#I{J12GRWWexh*gZw6G60-uftqi-JL^fVRfwgV?oK6S1_nA-Q zN6){&-fL*vM@xP{Q<)u?k#QzoioKQYol^D? zpLj2_WA%X6AU?yG-PROjUH5auD<>%v`#M~zWKUOr6wH5dSmAejj%>W}^pP_qwsFn( zmU{JigNUSyGKTaY?L@fc+8;~l_7y#FZO6~>bS5LCA5Z}yCK?(tP*#fgn{!W*_X~)- zq;7NcTASu&`;9rF$MZU6c+IBnocz)JG0XDKaylckE#KuWa7sJtc6ivl6M+EnJ#K_6 zMfZyEmlq^v8@`q1MXp6$dME+-!tZuf_C zE)Ne)E_`pY_AVm~5vF_^&%Uk+$K^9l7`InuWkvCOdDb->X%r9)Hf0z8EZ!iBJ`6y; zd*!e@m~PYTPkJ$Tg*f~iFu7oyt<}84MB-f{hA~-5B@}nBso3kHvkcoGkEVOLKBsxO z`MS_@{;za~pMTmO6-aeC9&flk`x)}Z`B}{?L5!roPA35-ewW3@9RWY<-&pXy7`V=+ zr&o53-4GgCC1m1Eh{^wm4rLPJ*6>@4FryIS=Ye;*iw~fMf#$|ec|(3np{#yjC?db^ zcaa~Y{r&0qN4GoE_4Pu+VC(C4oRi`_c33Ry1c?8;nve z&~$r*aYgy=gRZ`ATyZfyACJZ$HbRKI-61P75#`sxm4qh4zkLxhr(b>FhsbR`%UToA zaJJ+Usn@MrA&749&@J-#Xh&^jWhM!#T*hbMY6R{$j_sOzK@{?s_UzNNuy z@b(1QY^m8sRP8K1A*y-b?Vr4U-Q$`~w@=IRzyJ7xo5oBe>+QmHkf3#N+N9_G_HJvJ z(~}ayThWyvyLFcy#k1LPX7o+=9vlc}hyC7M?j1&Xdf6q?_PM;tNkIJ~-o>bi8&)>G zKR>&uT@OhxlTrDI&nFib zHZ%6~cHh=As-wk80g2`Dth@M2Q#*rLOIZ63LLo~a0`IsW^eygltG_PfH`y@Yz*})h zQ2~d;AWK@c1pN>eL{nmn;V9LjUVUeKP{GxKt6C`X>_z34%Ay1CD_0_ajV*VPBi zvCO)E1&qA&c(04ec6kUyU#opCdAsE-;K@B6u$AYwmj%O}+=IjF8&MO~1 z&nu540*f!-EV#xbZ2P#93!e&7w8i6qB+-AoL%3|TR8lJ%h_w2iTI$#>Sjffwly=da zoYZnPqG2%3$sIM1x#+gx0O39rwifo&hmPHC;|fQ;P-0nN=c#ANmPvDW6V{TQzf&yK z9}T2hqE7cdy$Za;xYEuora5#h&Gr3sc_bqT>|=<|fFR|d)&LVVV|d9pCha>8$zKy2 z&s3AR64!fBlv&X0tF^|Xi*zcSbO;8=7Z*dewze%cXbrRqWn7Quj(BDb3VhPs1{~kH z^xs_^mCmM%0IH1YhRF>w#WM&p!-UwCYUk~hX=MmIor6yXu8|V$^G~gtD>?3*3!y?@YwLFG(*>V67Np*&G2Ghi=RCW-tLx18b57DO&gA+8OL~TjRu1vWpvUgxOOB^& zua-ausmY>5!}b0`gXKcHr=Ls)gcGf|GtcHS=ic#VwWH*5#g&)m_cKRH4=9i=ShV}r zmSsvvjJ5Zv)!zqdO+&O$bN+OEi3UcgVJ>HkxdUwdAL;JX1z+gq5gO`1INYvG+Bj{qpg{nyx(O+$b0)& zq3*2D48u61%nKCa%y`9wN}JPdmYM=}asqr+OoDEj1Az?O?foR|Ec%`1?DsB7jWJF9 zxyqWMghc+Q0o&2I_5Mr$fpfa`QqAS@TJR7s*%X01(8OS?$A53Nrtzn5K~X>Cim)er zAeC?Z6A+RS^?R)Q1SHhYFV0Qh4c8c2>2v5V@9!=URFpgId70cRLAU7nB>3`5C&HBE zOya1Xc0n4nWJQ}P6MZ}Zck~Q6O|kf+*aye}rp)x1`C9Zznw{6`t;f^xGzO3>ijO>l%NUr5cx;+@Adw4_$T&Q*4K?EvI5DZ{;n4rdYS~=6gezf$Sg+A`EuRc)TK@BxcyW}G^0{A~G+7+Dw4aBXlK1V8WgF^zoXSVtrP=xl9UCFZj?v!%H zvwz7&`khTvE7rC(B|wPua5Y4B+iDV&x8fftW3t>-IhSseE-i)md|=+Qx2iFvwO?G} zSel#uCfjBGoTm~7sVJ_GRbhj-A!@4P7L5=)t2ax=XLVsva5 z-HB-XF^u*C}<)8>b`^w@(bfX>QM-Bom-dwB(H<{l2gBsv_SOyexl(G>=A7_Dy zmDk0nJ*5Mge|o<75Xir@LgtqA+9m+z%EUWH7MmYaudLHQ|giP%auFBgJsJdem}jA z1?oDgff&E0fkh`gFGX>|p)cEPd{QOJos9Yf8RuO4ezf*7*%y}n3E z1?KW*W+P-}QM*DHY8GRNh=t4WF8&&$dH*uvhl=vI#8rcpb8ThUvtm7XS?T|d+xoz`xD$i zfdb~9dzpCj=n-%&J2*YjpfS+DG*-s%(R%+TxIhBCe$VV|2{-rrOw-(;!@hDVwquiB zd$vbxG^dpuX(YLAzK}rMUOv)tp>c-L9q1V_KbR>iaq%yIf4_>7G_i58QyY3*9sI;& zd~iO(^^VN=_gW8f^{{>QTl+h&1D(smogDc&f5aw!)jPuJ`pO+g_1lwDj;gy(s7uZgNZ>-d zprDXNF&wC0X|BJr+PC}AwV#?Ef$nDoZ@vfu2~qXdUlnC>ATe(#t-PSWyr4R->a|Dk z$DDscf-Pmnjo@Rk75xV%{;IAV_V4NGI_D7;*P^8*EQ;uopk%GT3{zIdw&Movo)q_2 z?{}r1_~d?6GIoC-XKAU7f4@fGQrL0Qg#d3S;d44*|KDK&Hgq?Aif<;Y^sa#ooZ7&e zt^wJx(%yR4zsvm_qrUEV`7;y2x{Z%dovr}pP(D+RpiFf0eSdN@*LQKw12YJY{u@ql-E8@VLz9IUaiam{Z z(~6{KR}VLr!M2IJF$1stZn(c%cyq6J&7=F)sELiurLqU~eJ8K_R*$Jof!h-{Da^xa z-01X^n8zhz*T%>0ygpI0ywpD51P)}uS9+@)zYY28f*V;IT)?=}Jc8z8Xf?PSYxITy z*g7oC9UP$Bhc=e)f_tAwyEY`E-1_&1n(zYJ7I227JsxJb zHDmHiA!~gZ(f0osB;p;>#QUVG*V1DXD%5*U&Ubd+9t{crjnWs%Mv~QLWXUVnJI@`- zYK|9GE=J(WULkLFF|O*Fyq$WDQTlz{;pw*%Akp^i0((KQtj$J;Y)nb%>YG$nb_>~n z{{?5Oi%SqQ@7}^+PJFZ!a&)dIj8zH9d{gSFtm zwe7??j+5x{7)RG!X2sycZY+s1_MvZg^c!36`wPXAnl8iFWi+xIMn9jwY4&*gtUR_& zLXq83YukIUdUtb;tXg;fa`5Z=s@vq2?ijV>8?GaM{}|fbCpnSArgu;W&iV#dXr-tX z8IE=YStZ!9AEu95pq6O@zu{$3sz1ha_ojfjcbQu$3qe8;6h~9 zJz8lh_DMpJU|W;vgOB&ViA98KYE#DEl?I^@94o`c;U7_&e$r3DK< zi}`mvQoX)E-^gjcJdB``&pi59a8^|K#P#dK+fnPvya)t>pgNuWY9?l54`?H3#)>#& zzRxkLwz?1$(Gxk_K8U2ZfAT48Dl8HOs8EGfjGBnB6V`+;;Hb`uDL3Ig7%KzRqF=;1L8d1p6@UKgJ2kW z8K#hvDK3rz5bTuXnc~;!tlh~E0GhCtxN@m$)XAvZe_U*9DU<@ZP*%&=i&h_7y3o*b z?0o5F5pTUxJyr5I?{JRV=67B(D2Jd_nrCiQMK;pZrUMWGzCo>FnJ?Yg^`kcIf*U|! z&P5G~q^oZAata&u9z31gw<2w32FH(}1o|E()mxkLfi~gysAS8qTm{)V$B*W#7d&CV zhLZ+w8#%oTj*?k!+?U!%?7p3|a&yq_T53298*M5pRYU=jPA-OJEA&0q)v+#z9%xrz z*?iqnbSi|et!1+WQhMioOG2+*xX`>EwRRZ+hxmV*1@zZEm-$Ssb-7A_W-nqcEg4g1 zGFrNWx6CBC)Ep+Q8CxjKoufl99cvvz@^4wUUR zk*UDVho(;NdruS5zd|v-MLN@u(fR7o{VPI>mid`^q8aNr=q(mC$o!2tBlO1S>yF!? zs2G+)Uu{#iGL*+U<||$Ns6(XyPJ3=kp_!S578N*vZ= z3303oqZ2WgGZXPAV2}!y{ZUA$i~Sv=O|S5mT^LTAF#yRYBB7l~5aMmqVQtUqoD&Oo z=STo6F-!+j2|wy!iT15%s10ZOy))7mH8A*azb;^+)f3-|SEL2+hZC%3LO%)_}CW@p3?GJNDJziW&$oePy0M@$G!?4pfU$ zWPi{xqL;2(S{uR~Ly!inC7o6kZ~5;ie%mo883 z!^&yr2;(cIf#)S+WkpI$bC_Am#(rE+&ho_?7S>y~PIaMu7V&|=Snw{LC}TU%6uLKL z)@}x9$3I%^^>&dvpGyw=3kt=zq)XPjhCY4Q75k3pU+l+YPYC$TA+z)jRr+XZ*d%I%DByAN|KhTnoCMdMe!xI)&Gz@V$s4cKUI3tOnfXiV_a!sY3)0Na3tVPmavRZIZ zLue;s&sS_Y&0e}h3a%vx4%@!NxP2G5${{%2cmcZQPA#}JuvM^+T>LP676GVJ`yeGD zzL8~m{1(RdgK^RP)kSG<%sB+w=) zGO)P-&Xj@^fjuH~b>wsouSEde6T}%fGvJm_9$6Swwj(;8JGivW)Dt8vTn_0|5;T@Y zRl=4s1I_lOErLS;s11LR^z^WEK;V>=Jb=wKnBhmXmw1YGr&|GtKqygXDVfGd`f<^? z9S|njYWT2P0Bjeh0AYq_h);$wKmB-moE8^8UgIOWQX)1fa;p^=UCd1=+_A8osPff3 zg}$CSO;{<}&Aq`vnF}=gp3j=l3U)I%A!mLA@VX|9Jo{>Qth$ycutK2K8cMAQRQE|f zD}*Z3T2F#mMyRVxkz0M(vuN%T&-DY2B7rLJRI$uI5Yg%nIRvG9G2ZULvqvsYLHH|n ze8g+QmK064fLX`9SGOJMFjJ_|C;dYoO2nT@<~d}R-ys75jM$e=i5XAru~hNn0K~PT zkkKrKq = mutableMapOf(), + @SerialName("auto-update") + internal var isAutoUpdate: Boolean = true, + @SerialName("version-filter") + internal var versionFilter: VersionFilterDocument? = null, + @SerialName("repositories") + internal var repositories: String = "" +) : IYamlDocument { + + /** + * 获取版本 + * @return [DependencyVersion] + */ + internal fun version() = DependencyVersion(version) + + /** + * 获取版本别名数组 + * @return <[MutableMap]><[String], [DependencyVersion]> + */ + internal fun versions() = mutableMapOf().also { + versions.forEach { (key, value) -> it[key] = DependencyVersion(value.replace(DependencyVersion.LATEST_VERSION_NAME, version)) } + } + + /** + * 更新版本 + * @param newVersion 新版本 + */ + internal fun updateVersion(newVersion: DependencyVersion) { + version = newVersion.current + } + + /** + * 更新版本 + * @param document 当前文档实例 + */ + internal fun updateVersion(document: DependencyDocument) { + version = document.version + } + + /** + * 获取指定使用的存储库数组 + * @return [MutableList]<[RepositoryDocument]> + */ + internal fun repositories() = mutableListOf().apply { + repositories.toSpaceList().forEach { + add(Repositories.all().firstOrNull { e -> e.nodeName == it } ?: SError.make("Could not found repository with name \"$it\"")) + } + }.distinctBy { it.url.ifBlank { it.path } }.toMutableList() +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/PreferencesDocument.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/PreferencesDocument.kt new file mode 100644 index 0000000..23f861f --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/PreferencesDocument.kt @@ -0,0 +1,125 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/17. + */ +package com.highcapable.sweetdependency.document + +import com.highcapable.sweetdependency.document.factory.checkingName +import com.highcapable.sweetdependency.utils.camelcase +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.yaml.proxy.IYamlDocument +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable +import org.gradle.api.initialization.resolve.RepositoriesMode as GradleRepositoriesMode + +/** + * 偏好配置项文档实体 + * @param autowireOnSyncMode Gradle Sync 自动装配、更新依赖模式 + * @param repositoriesMode 存储库装载模式 + * @param dependenciesNamespace 依赖命名空间 + * @param versionFilter 版本过滤器文档实体 + */ +@Serializable +internal data class PreferencesDocument( + @SerialName("autowire-on-sync-mode") + internal var autowireOnSyncMode: AutowireOnSyncMode = AutowireOnSyncMode.UPDATE_OPTIONAL_DEPENDENCIES, + @SerialName("repositories-mode") + internal var repositoriesMode: RepositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS, + @SerialName("dependencies-namespace") + internal var dependenciesNamespace: DependenciesNamespaceDocument = DependenciesNamespaceDocument(), + @SerialName("version-filter") + internal var versionFilter: VersionFilterDocument = VersionFilterDocument() +) : IYamlDocument { + + @Serializable + internal data class DependenciesNamespaceDocument( + @SerialName("plugins") + var plugins: String = "libs", + @SerialName("libraries") + var libraries: String = "" + ) : IYamlDocument { + + init { + if (plugins.isNotBlank() && libraries.isNotBlank() && plugins == libraries) + SError.make("Duplicated dependencies namespace \"$plugins\"") + } + + /** + * 获取插件依赖命名空间 + * @return [String] + */ + internal fun plugins() = plugins.apply { checkingName("plugins namespace", isCheckExtName = true) }.camelcase() + + /** + * 获取库依赖命名空间 + * @return [String] + */ + internal fun libraries() = libraries.apply { checkingName("libraries namespace", isCheckExtName = true) }.camelcase() + } + + /** + * Gradle Sync 自动装配、更新依赖模式定义类 + */ + internal enum class AutowireOnSyncMode { + /** 自动装配和更新可选依赖 (插件依赖 + 库依赖) */ + UPDATE_OPTIONAL_DEPENDENCIES, + + /** 自动装配和更新所有依赖 (插件依赖 + 库依赖) */ + UPDATE_ALL_DEPENDENCIES, + + /** 仅自动装配使用“+”填充版本的依赖 (插件依赖 + 库依赖) */ + ONLY_AUTOWIRE_DEPENDENCIES, + + /** 自动装配和更新可选依赖 (插件依赖) */ + UPDATE_OPTIONAL_PLUGINS, + + /** 自动装配和更新所有依赖 (插件依赖) */ + UPDATE_ALL_PLUGINS, + + /** 仅自动装配使用“+”填充版本的依赖 (插件依赖) */ + ONLY_AUTOWIRE_PLUGINS, + + /** 自动装配和更新可选依赖 (库依赖) */ + UPDATE_OPTIONAL_LIBRARIES, + + /** 自动装配和更新所有依赖 (库依赖) */ + UPDATE_ALL_LIBRARIES, + + /** 仅自动装配使用“+”填充版本的依赖 (库依赖) */ + ONLY_AUTOWIRE_LIBRARIES, + + /** 什么也不做 - 关闭所有功能 */ + OFF + } + + /** + * 存储库装载模式定义类 (跟随 Gradle 进行配置调整) + */ + internal enum class RepositoriesMode { + /** 参考 [GradleRepositoriesMode.PREFER_PROJECT] */ + PREFER_PROJECT, + + /** 参考 [GradleRepositoriesMode.PREFER_SETTINGS] */ + PREFER_SETTINGS, + + /** 参考 [GradleRepositoriesMode.FAIL_ON_PROJECT_REPOS] */ + FAIL_ON_PROJECT_REPOS + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RepositoryDocument.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RepositoryDocument.kt new file mode 100644 index 0000000..cd611c6 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RepositoryDocument.kt @@ -0,0 +1,273 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/17. + */ +package com.highcapable.sweetdependency.document + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.manager.const.InternalRepositories +import com.highcapable.sweetdependency.manager.content.Repositories +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.parseUnixFileSeparator +import com.highcapable.sweetdependency.utils.toSpaceList +import com.highcapable.sweetdependency.utils.yaml.proxy.IYamlDocument +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable +import kotlinx.serialization.Transient +import org.gradle.api.artifacts.repositories.PasswordCredentials +import org.gradle.api.artifacts.repositories.RepositoryContentDescriptor + +/** + * 存储库配置项文档实体 + * @param isEnable 是否启用 + * @param scope 作用域 + * @param content 内容过滤器 + * @param credentials 身份验证配置项文档实体 + * @param url URL 地址 + * @param path 文件路径 + */ +@Serializable +internal data class RepositoryDocument( + @SerialName("enable") + internal var isEnable: Boolean = true, + @SerialName("scope") + internal var scope: RepositoryScope = RepositoryScope.ALL, + @SerialName("content") + internal var content: ContentDocument = ContentDocument(), + @SerialName("credentials") + internal var credentials: CredentialsDocument = CredentialsDocument(), + @SerialName("url") + internal var url: String = "", + @SerialName("path") + internal var path: String = "", +) : IYamlDocument { + + /** + * 身份验证配置项文档实体 + * + * 这些内容来自 [PasswordCredentials] + * @param username 用户名 + * @param password 密码 + */ + @Serializable + internal data class CredentialsDocument( + @SerialName("username") + internal var username: String = "", + @SerialName("password") + internal var password: String = "" + ) : IYamlDocument + + /** + * 内容配置文档实体 + * + * 这些内容来自 [RepositoryContentDescriptor] + * @param exclude 排除配置文档实体 + * @param include 包含配置文档实体 + */ + @Serializable + internal data class ContentDocument( + @SerialName("exclude") + internal var exclude: FilterDocument = FilterDocument(), + @SerialName("include") + internal var include: FilterDocument = FilterDocument() + ) : IYamlDocument { + + /** + * 内容过滤器配置文档实体 + * + * 这些内容来自 [RepositoryContentDescriptor] + * @param group 过滤器条件内容 + * @param groupAndSubgroups 过滤器条件内容 + * @param groupByRegex 过滤器条件内容 + * @param module 过滤器条件内容 + * @param moduleByRegex 过滤器条件内容 + * @param version 过滤器条件内容 + * @param versionByRegex 过滤器条件内容 + */ + @Serializable + internal data class FilterDocument( + @SerialName("group") + internal var group: String = "", + @SerialName("group-and-subgroups") + internal var groupAndSubgroups: String = "", + @SerialName("group-by-regex") + internal var groupByRegex: String = "", + @SerialName("module") + internal var module: String = "", + @SerialName("module-by-regex") + internal var moduleByRegex: String = "", + @SerialName("version") + internal var version: String = "", + @SerialName("version-by-regex") + internal var versionByRegex: String = "" + ) : IYamlDocument { + + /** + * 获取过滤器条件内容 + * @return [List]<[String]> + */ + internal fun group() = group.toSpaceList() + + /** + * 获取过滤器条件内容 + * @return [List]<[String]> + */ + internal fun groupAndSubgroups() = groupAndSubgroups.toSpaceList() + + /** + * 获取过滤器条件内容 + * @return [List]<[String]> + */ + internal fun groupByRegex() = groupByRegex.toSpaceList() + + /** + * 获取过滤器条件内容 + * @return [List]<[String]> + */ + internal fun module() = module.toSpaceList() + + /** + * 获取过滤器条件内容 + * @return [List]<[String]> + */ + internal fun moduleByRegex() = moduleByRegex.toSpaceList() + + /** + * 获取过滤器条件内容 + * @return [List]<[String]> + */ + internal fun version() = version.toSpaceList() + + /** + * 获取过滤器条件内容 + * @return [List]<[String]> + */ + internal fun versionByRegex() = versionByRegex.toSpaceList() + + /** + * 当前规则是否为空 + * @return [Boolean] + */ + internal fun isEmpty() = + group.isBlank() && groupAndSubgroups.isBlank() && groupByRegex.isBlank() && + module.isBlank() && moduleByRegex.isBlank() && + version.isBlank() && versionByRegex.isBlank() + } + + /** + * 当前规则是否为空 + * @return [Boolean] + */ + internal fun isEmpty() = exclude.isEmpty() && include.isEmpty() + } + + /** 节点名称 */ + @Transient + internal var nodeName = "" + + /** 节点类型 */ + @Transient + internal var nodeType = RepositoryType.UNSPECIFIED + + /** + * 存储库作用域定义类 + */ + internal enum class RepositoryScope { + /** 作用于所有类型依赖 */ + ALL, + + /** 作用于插件依赖 */ + PLUGINS, + + /** 作用于库依赖 */ + LIBRARIES + } + + /** + * 存储库已知类型定义类 + */ + internal enum class RepositoryType { + /** 未指定 */ + UNSPECIFIED, + + /** Google Maven */ + GOOGLE, + + /** 中央存储库 */ + MAVEN_CENTRAL, + + /** 本地存储库 */ + MAVEN_LOCAL, + + /** 自定义存储库 */ + MAVEN, + + /** Gradle Plugin 存储库 */ + GRADLE_PLUGIN_PORTAL + } + + /** + * 获取是否包含在作用域内 + * @param isPlugins 当前类型是否为插件依赖 + * @return [Boolean] + */ + internal fun isIncludeScope(isPlugins: Boolean) = + if (isPlugins) scope == RepositoryScope.ALL || scope == RepositoryScope.PLUGINS + else scope == RepositoryScope.ALL || scope == RepositoryScope.LIBRARIES + + /** + * 创建当前实体 + * @param name 键值名称 + * @return [RepositoryDocument] + */ + internal fun build(name: String) = apply { + when (name) { + InternalRepositories.Name.GOOGLE -> { + url = url.ifBlank { InternalRepositories.GOOGLE } + nodeType = RepositoryType.GOOGLE + } + InternalRepositories.Name.MAVEN_CENTRAL -> { + url = url.ifBlank { InternalRepositories.MAVEN_CENTRAL } + nodeType = RepositoryType.MAVEN_CENTRAL + } + InternalRepositories.Name.GRADLE_PLUGIN_PORTAL -> { + url = url.ifBlank { InternalRepositories.GRADLE_PLUGIN_PORTAL } + nodeType = RepositoryType.GRADLE_PLUGIN_PORTAL + } + InternalRepositories.Name.MAVEN_LOCAL -> { + path = path.ifBlank { Repositories.defaultMavenLocalPath } + nodeType = RepositoryType.MAVEN_LOCAL + } + InternalRepositories.Name.MAVEN -> SError.make("Use \"maven\" as a repository name is an error, please choose another name") + InternalRepositories.Name.IVY -> SError.make("Ivy is not support on ${SweetDependency.TAG} ${SweetDependency.VERSION}") + else -> { + url = url.ifBlank { + Repositories.findAdditional(name).ifBlank { + SError.make("Could not found internal or additional repository URL by repository name \"$name\", you must specify a URL") + } + }; nodeType = RepositoryType.MAVEN + } + }; nodeName = name + if (url.isNotBlank() && path.isNotBlank()) SError.make("There can only be one \"url\" and \"path\" parameter of \"$name\"") + if (path.isNotBlank() && (path.startsWith("https://") || path.startsWith("http://"))) SError.make("Invalid repository path: $path") + if (url.isNotBlank() && url.startsWith("https://").not() && url.startsWith("http://").not()) SError.make("Invalid repository URL: $url") + if (path.isNotBlank()) path = path.parseUnixFileSeparator() + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RootConfigDocument.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RootConfigDocument.kt new file mode 100644 index 0000000..e1ac84b --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/RootConfigDocument.kt @@ -0,0 +1,253 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/17. + */ +@file:Suppress("MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.document + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.document.factory.DependencyMap +import com.highcapable.sweetdependency.document.factory.RepositoryList +import com.highcapable.sweetdependency.document.factory.checkingName +import com.highcapable.sweetdependency.document.factory.convertToDependencyAmbiguousName +import com.highcapable.sweetdependency.gradle.entity.DependencyName +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.utils.capitalize +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.findDuplicates +import com.highcapable.sweetdependency.utils.hasDuplicate +import com.highcapable.sweetdependency.utils.yaml.proxy.IYamlDocument +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable + +/** + * 项目 (根节点) 配置文档实体 + * @param preferences 偏好配置项文档实体 + * @param repositories 每项存储库配置项文档实体 + * @param plugins 每项插件依赖文档实体 + * @param libraries 每项库依赖文档实体 + * @param versions 每项版本定义数组 + */ +@Serializable +internal data class RootConfigDocument( + @SerialName("preferences") + internal var preferences: PreferencesDocument? = PreferencesDocument(), + @SerialName("repositories") + internal var repositories: MutableMap? = null, + @SerialName("plugins") + internal var plugins: MutableMap? = null, + @SerialName("libraries") + internal var libraries: MutableMap>? = null, + @SerialName("versions") + internal var versions: MutableMap? = null +) : IYamlDocument { + + internal companion object { + + /** 默认文档内容 */ + private const val DEFAULT_CONTENT = """ + # SweetDependency project configuration file + # You can adjust your custom configuration to your liking here + # You can visit ${SweetDependency.PROJECT_URL} for more help + # + # SweetDependency 项目配置文件 + # 你可以在这里调整你喜欢的自定义配置 + # 你可以前往 ${SweetDependency.PROJECT_URL} 以获得更多帮助 + + # Configure preferences + # 配置偏好设置 + preferences: + autowire-on-sync-mode: UPDATE_OPTIONAL_DEPENDENCIES + repositories-mode: FAIL_ON_PROJECT_REPOS + + # Configure repositories used by dependencies + # 配置依赖使用的存储库 + repositories: + gradle-plugin-portal: + scope: PLUGINS + google: + maven-central: + + # Configure plugins that need to be used + # For example: + # plugins: + # org.jetbrains.kotlin.jvm: + # version: + + # + # 配置需要使用的插件依赖 + # 例如: + # plugins: + # org.jetbrains.kotlin.jvm: + # version: + + plugins: + + # Configure libraries that need to be used + # For example: + # libraries: + # com.google.code.gson: + # gson: + # version: + + # + # 配置需要使用的库依赖 + # 例如: + # libraries: + # com.google.code.gson: + # gson: + # version: + + libraries: + + """ + + /** 默认文档内容 */ + internal val defaultContent = DEFAULT_CONTENT.trimIndent() + } + + /** + * 获取当前偏好配置项文档实体 + * @return [PreferencesDocument] + */ + internal fun preferences() = preferences ?: PreferencesDocument() + + /** + * 获取当前存储库配置项文档实体 + * @return [RepositoryList] + */ + internal fun repositories() = repositories?.let { + mutableListOf().apply { + it.forEach { (name, repository) -> (repository ?: RepositoryDocument()).build(name).also { if (it.isEnable) add(it) } } + } + } ?: mutableListOf() + + /** + * 获取当前插件依赖数组 + * @param duplicate 允许重复 - 忽略处理后版本重复的异常 - 默认否 + * @return [DependencyMap] + */ + internal fun plugins(duplicate: Boolean = false) = createPlugins().resolveDependencies(typeName = "plugin", duplicate) + + /** + * 获取当前库依赖数组 + * @param duplicate 允许重复 - 忽略处理后版本重复的异常 - 默认否 + * @return [DependencyMap] + */ + internal fun libraries(duplicate: Boolean = false) = createLibraries().resolveDependencies(typeName = "library", duplicate) + + /** + * 处理依赖数组 + * @param typeName 依赖类型名称 + * @param duplicate 允许重复 - 忽略处理后版本重复的异常 - 默认否 + */ + private fun DependencyMap.resolveDependencies(typeName: String, duplicate: Boolean = false) = apply { + val firstTypeName = typeName.capitalize() + val checkDuplicateAlias = mutableMapOf() + val refLibraries = mutableListOf>() + val ambiguousNames = mutableListOf() + eachDependencies { dependencyName, artifact -> + artifact.alias.checkingName("$typeName \"$dependencyName\" alias", isCheckMultiName = true) + artifact.versions().forEach { (name, _) -> name.checkingName("$typeName \"$dependencyName\" version alias") } + if (artifact.alias.isNotBlank()) + if (checkDuplicateAlias.contains(artifact.alias).not()) + checkDuplicateAlias[artifact.alias] = dependencyName.current + else SError.make( + "Duplicated alias \"${artifact.alias}\", " + + "already declared in $typeName \"${checkDuplicateAlias[artifact.alias]}\"" + ) + if (artifact.version().isNoSpecific && (artifact.versions().isNotEmpty() || artifact.versionRef.isNotBlank())) + SError.make( + "$firstTypeName \"$dependencyName\" has declared that it does not specify a version, " + + "so it cannot use \"versions\" or \"version-ref\"" + ) + if (artifact.versionRef.isNotBlank() && artifact.versionRef.startsWith("::")) + artifact.versionRef = artifact.versionRef.replace(":", dependencyName.groupId) + refLibraries.add(Triple(dependencyName, artifact.alias, artifact.version())) + } + eachDependencies { dependencyName, artifact -> + /** 处理版本引用 */ + fun resolveVersionRef() { + refLibraries.firstOrNull { artifact.versionRef.let { e -> e == it.first.current || e == it.second } }?.also { + if (dependencyName == it.first || dependencyName.current == it.second) + SError.make("$firstTypeName \"$dependencyName\" declared \"version-ref\" from itself (recursive call found)") + when { + it.third.isNoSpecific -> SError.make( + "$firstTypeName \"${it.first}\" does not specify a version, so it can no longer be " + + "declared as \"version-ref\" by $typeName \"$dependencyName\"" + ) + it.third.isBlank -> SError.make( + "$firstTypeName \"${it.first}\" already has \"version-ref\" declared, so it can no longer" + + " be declared as \"version-ref\" by $typeName \"$dependencyName\" (recursive call found)" + ) + }; artifact.updateVersion(it.third) + } ?: SError.make( + "Could not found any versions or dependencies associated with " + + "version-ref \"${artifact.versionRef}\" of $typeName \"$dependencyName\"" + ) + } + if (artifact.version().isNoSpecific) return@eachDependencies + if (artifact.version().isBlank) + if (artifact.versionRef.isNotBlank()) + versions()[artifact.versionRef]?.also { artifact.version = it } ?: resolveVersionRef() + else SError.make("Missing declared version when configuring $typeName \"$dependencyName\"") + else if (artifact.version().isBlank.not() && artifact.versionRef.isNotBlank() && duplicate.not()) + SError.make("$firstTypeName \"$dependencyName\" can only have one \"version\" or \"version-ref\" node, please delete one") + } + eachDependencies { dependencyName, artifact -> + ambiguousNames.add(dependencyName.ambiguousName()) + if (artifact.alias.isNotBlank()) { + artifact.alias.checkingName("$typeName \"$dependencyName\" alias", isCheckMultiName = true) + ambiguousNames.add(artifact.alias.convertToDependencyAmbiguousName()) + }; this[dependencyName] = artifact + } + if (ambiguousNames.hasDuplicate()) ambiguousNames.findDuplicates().forEach { + SError.make("Found ambiguous name \"$it\" in declared dependencies, please checking your $typeName aliases that your declared") + } else ambiguousNames.clear() + } + + /** + * 获取当前版本定义数组 + * @return [MutableMap]<[String], [String]> + */ + internal fun versions() = versions?.onEach { (name, _) -> name.checkingName("versions name") } ?: mutableMapOf() + + /** + * 重新创建 [plugins] + * @return [DependencyMap] + */ + private fun createPlugins() = mutableMapOf().apply { + plugins?.forEach { (notation, artifact) -> this[DependencyName.plugin(notation)] = artifact } + } + + /** + * 重新创建 [libraries] + * @return [DependencyMap] + */ + private fun createLibraries() = mutableMapOf().apply { + libraries?.forEach { (groupId, libraries) -> + libraries.forEach { (artifactId, artifact) -> this[DependencyName.library(groupId, artifactId)] = artifact } + } + } + + /** + * 循环每项 [plugins]、[libraries] + * @param result 回调每项结果 + */ + private inline fun DependencyMap.eachDependencies(result: (dependencyName: DependencyName, artifact: DependencyDocument) -> Unit) = + forEach { (dependencyName, artifact) -> result(dependencyName, artifact) } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/VersionFilterDocument.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/VersionFilterDocument.kt new file mode 100644 index 0000000..99f9168 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/VersionFilterDocument.kt @@ -0,0 +1,105 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/9. + */ +package com.highcapable.sweetdependency.document + +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.manager.content.Repositories +import com.highcapable.sweetdependency.utils.filter +import com.highcapable.sweetdependency.utils.toSpaceList +import com.highcapable.sweetdependency.utils.yaml.proxy.IYamlDocument +import kotlinx.serialization.SerialName +import kotlinx.serialization.Serializable + +/** + * 版本过滤器文档实体 + * @param isUseInternal 使用内置过滤器 + * @param exclusionList 排除列表 + */ +@Serializable +internal data class VersionFilterDocument( + @SerialName("use-internal") + internal var isUseInternal: Boolean = true, + @SerialName("exclusion-list") + internal var exclusionList: String = "" +) : IYamlDocument { + + /** + * 版本排除列表实体 + * @param list 当前排除列表数组 + */ + internal class ExclusionList internal constructor(private val list: MutableList) { + + /** + * 获取当前排除列表数组 + * @return [MutableList]<[String]> + */ + internal fun all() = list + + /** + * 当前是否存在排除列表 + * @return [Boolean] + */ + internal fun isEmpty() = all().isEmpty() + + /** + * 当前是否不存在排除列表 + * @return [Boolean] + */ + internal fun isNotEmpty() = isEmpty().not() + + /** + * 依赖于当前 [version] 提供的版本并在 [all] 中排除 (不区分大小写) + * + * 此操作会调用 [clone] 创建一个新实例并返回 + * @param version 当前版本 + * @return [ExclusionList] + */ + internal fun depends(version: DependencyVersion) = clone().apply { + if (version.isAutowire.not() && version.isBlank.not()) all().removeAll { version.deployed.lowercase().contains(it.lowercase()) } + } + + /** + * 使用 [all] 过滤当前版本字符串 (不区分大小写) + * @param versions 当前版本字符串数组 + * @return [MutableList]<[DependencyVersion]> + */ + internal fun filter(versions: MutableList) = + if (all().isEmpty()) versions else versions.filter { version -> all().none { version.current.lowercase().contains(it.lowercase()) } } + + /** + * 克隆并创建一个新实例 + * @return [ExclusionList] + */ + private fun clone() = ExclusionList(mutableListOf().apply { addAll(all()) }) + + override fun toString() = all().toString() + } + + /** + * 获取排除列表 + * @return [ExclusionList] + */ + internal fun exclusionList() = ExclusionList(mutableListOf().apply { + if (isUseInternal) addAll(Repositories.defaultVersionFilterExclusionList) + addAll(exclusionList.toSpaceList()) + }) +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/factory/DocumentFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/factory/DocumentFactory.kt new file mode 100644 index 0000000..631f693 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/factory/DocumentFactory.kt @@ -0,0 +1,160 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/31. + */ +package com.highcapable.sweetdependency.document.factory + +import com.highcapable.sweetdependency.document.DependencyDocument +import com.highcapable.sweetdependency.document.PreferencesDocument +import com.highcapable.sweetdependency.document.RepositoryDocument +import com.highcapable.sweetdependency.gradle.entity.DependencyName +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.gradle.factory.isUnSafeExtName +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.firstNumberToLetter + +/** 存储库文档实体类型定义 */ +internal typealias RepositoryList = MutableList + +/** 依赖文档实体类型定义 */ +internal typealias DependencyMap = MutableMap + +/** 依赖文档更新实体类型定义 */ +internal typealias DependencyUpdateMap = MutableMap> + +/** 依赖文档查找条件类型定义 */ +internal typealias DependenciesCondition = (dependencyName: DependencyName, artifact: DependencyDocument) -> Boolean + +/** + * 转换 [PreferencesDocument.AutowireOnSyncMode] 到 [DependencyUpdateMode] + * + * 如果为 [PreferencesDocument.AutowireOnSyncMode.OFF] 则会返回 null + * @return [DependencyUpdateMode] or null + */ +internal fun PreferencesDocument.AutowireOnSyncMode.toUpdateMode() = when (this) { + PreferencesDocument.AutowireOnSyncMode.UPDATE_OPTIONAL_DEPENDENCIES -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.ALL, DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL) + PreferencesDocument.AutowireOnSyncMode.UPDATE_ALL_DEPENDENCIES -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.ALL, DependencyUpdateMode.UpdateType.UPDATE_ALL) + PreferencesDocument.AutowireOnSyncMode.ONLY_AUTOWIRE_DEPENDENCIES -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.ALL, DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE) + PreferencesDocument.AutowireOnSyncMode.UPDATE_OPTIONAL_PLUGINS -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.PLUGINS, DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL) + PreferencesDocument.AutowireOnSyncMode.UPDATE_ALL_PLUGINS -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.PLUGINS, DependencyUpdateMode.UpdateType.UPDATE_ALL) + PreferencesDocument.AutowireOnSyncMode.ONLY_AUTOWIRE_PLUGINS -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.PLUGINS, DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE) + PreferencesDocument.AutowireOnSyncMode.UPDATE_OPTIONAL_LIBRARIES -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.LIBRARIES, DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL) + PreferencesDocument.AutowireOnSyncMode.UPDATE_ALL_LIBRARIES -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.LIBRARIES, DependencyUpdateMode.UpdateType.UPDATE_ALL) + PreferencesDocument.AutowireOnSyncMode.ONLY_AUTOWIRE_LIBRARIES -> + DependencyUpdateMode(DependencyUpdateMode.DependencyType.LIBRARIES, DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE) + PreferencesDocument.AutowireOnSyncMode.OFF -> null +} + +/** + * 合并到依赖名称 + * @param groupId Group ID + * @param artifactId Artifact ID + * @return [String] + */ +internal fun spliceToDependencyNotation(groupId: String, artifactId: String) = "$groupId:$artifactId" + +/** + * 分离到依赖名称数组 + * + * "com.mylibrary:library-core" → "com.mylibrary" | "library-core" + * @return [List]<[String]> + */ +internal fun String.splitToDependencyNames() = trim().split(":").apply { if (size != 2) SError.make("Invalid dependency name \"$this\"") } + +/** + * 分离到依赖生成名称数组 + * + * "com.mylibrary:library-core" → "com" | "mylibrary" | "library" | "core" + * @return [List]<[String]> + */ +internal fun String.splitToDependencyGenerateNames() = + trim().replace("_", "|").replace(".", "|").replace(":", "|").replace("-", "|").split("|").filter { it.isNotBlank() } + +/** + * 转换到依赖 URL 名称 + * + * "com.mylibrary:library-core" → "com/mylibrary/library-core" + * @return [String] + */ +internal fun String.convertToDependencyUrlName() = splitToDependencyNames().let { "${it[0].replace(".", "/")}/${it[1]}" } + +/** + * 转换到依赖模糊分离名称 (使用 [symbol] 进行分离) + * + * "com.mylibrary:library-core" → "com[symbol]mylibrary[symbol]library[symbol]core" + * @param symbol 分隔符 - 默认 "." + * @param isReplaceFirstChar 是否使用 [firstNumberToLetter] 替换每一段第一个字符 - 默认否 + * @param isLowerCase 是否全部转换为小写 - 默认是 + * @return [String] + */ +internal fun String.convertToDependencyAmbiguousName(symbol: String = ".", isReplaceFirstChar: Boolean = false, isLowerCase: Boolean = true) = + mutableListOf().apply { + trim().replace(".", "|").replace("_", "|").replace(":", "|").replace("-", "|").split("|").forEach { + add(if (isReplaceFirstChar) it.firstNumberToLetter() else it) + } + }.joinToString(symbol).let { if (isLowerCase) it.lowercase() else it } + +/** + * 检查名称、别名是否合法 + * + * - 只能包含:'0-9'、'A-Z'、'a-z'、'.'、'_'、'-' 且必须以字母开头 (长度至少为 3 位) + * - 不能是 [isUnSafeExtName] + * @param content 内容 + * @param isCheckExtName 是否同时检查是否为 Gradle 使用的关键字名称 - 默认否 + * @param isCheckMultiName 是否同时检查是否可被 [splitToDependencyGenerateNames] 分割为两位及以上名称 - 默认否 + * @throws IllegalArgumentException 如果名称、别名不合法 + */ +internal fun String.checkingName(content: String, isCheckExtName: Boolean = false, isCheckMultiName: Boolean = false) { + if (isBlank()) return + if (length < 3) SError.make("Illegal $content \"$this\", the length of $content must be >= 3") + /** + * 检查是否为 Gradle 使用的关键字名称 + * @param isEnable 默认跟随 [isCheckExtName] + * @throws IllegalArgumentException 如果名称、别名不合法 + */ + fun String.checkUnSafeExtName(isEnable: Boolean = isCheckExtName) { + if (isEnable && isUnSafeExtName()) SError.make("This $content \"$this\" of \"${this@checkingName}\" is a Gradle built-in extension") + } + checkUnSafeExtName() + if (isCheckMultiName) splitToDependencyGenerateNames().also { splitedNames -> + if (splitedNames.isEmpty()) SError.make("This $content \"$this\" cannot be split, please check and try again") + if (splitedNames.size < 2) SError.make("This $content \"$this\" must be able to be split into at least 2 parts") + splitedNames[0].checkUnSafeExtName(isEnable = true) + splitedNames.forEach { + if (it.first() !in 'A'..'Z' && it.first() !in 'a'..'z') + SError.make("Illegal $content \"$it\" of \"$this\", it must start with a letter") + } + } + forEachIndexed { index, char -> + if ((char !in 'A'..'Z' && char !in 'a'..'z' && index == 0) || + (char !in 'A'..'Z' && char !in 'a'..'z' && + char !in '0'..'9' && char != '_' && char != '-' && char != '.') + ) SError.make("Illegal $content \"$this\", it only allow 26 letters (upper and lower case) and '.', '_', '-' and must start with a letter") + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/RootConfigDocumentMapping.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/RootConfigDocumentMapping.kt new file mode 100644 index 0000000..2a38661 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/RootConfigDocumentMapping.kt @@ -0,0 +1,197 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/1. + */ +package com.highcapable.sweetdependency.document.mapping + +import com.highcapable.sweetdependency.document.RootConfigDocument +import com.highcapable.sweetdependency.document.factory.DependencyUpdateMap +import com.highcapable.sweetdependency.document.factory.spliceToDependencyNotation +import com.highcapable.sweetdependency.document.mapping.entity.DependencyMapping +import com.highcapable.sweetdependency.exception.SweetDependencyUnresolvedException +import com.highcapable.sweetdependency.gradle.entity.DependencyName +import com.highcapable.sweetdependency.plugin.config.proxy.ISweetDependencyConfigs +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.filter +import com.highcapable.sweetdependency.utils.joinToContent +import com.highcapable.sweetdependency.utils.toFile +import com.highcapable.sweetdependency.utils.yaml.Yaml +import com.highcapable.sweetdependency.utils.yaml.factory.asMap +import com.highcapable.sweetdependency.utils.yaml.factory.isKeyExist +import java.io.File + +/** + * [RootConfigDocument] 的测绘实例实现类 + * @param configs 当前配置 + */ +internal class RootConfigDocumentMapping internal constructor(private val configs: ISweetDependencyConfigs) { + + private companion object { + + /** 偏好设置节点名称 */ + private const val PREFERENCES_NODE_NAME = "preferences:" + + /** 存储库节点名称 */ + private const val REPOSITORIES_NODE_NAME = "repositories:" + + /** 版本节点名称 */ + private const val VERSIONS_NODE_NAME = "versions:" + + /** 插件依赖节点名称 */ + private const val PLUGINS_NODE_NAME = "plugins:" + + /** 库依赖节点名称 */ + private const val LIBRARIES_NODE_NAME = "libraries:" + + /** 依赖版本起始内容 */ + private const val VERSION_NODE_CONTENT = "version:" + + /** 依赖版本引用节点名称 (不包括结尾的“:”) */ + private const val VERSION_REF_NODE_NAME = "version-ref" + + /** 4 个空格 (缩进) 内容 */ + private const val SPACE_OF_4 = " " + + /** 6 个空格 (缩进) 内容 */ + private const val SPACE_OF_6 = " " + } + + /** 当前配置文件 */ + private var configFile: File? = null + + /** 配置文件行内容数组 */ + private val configFileContents = mutableListOf() + + /** 插件依赖测绘实体数组 */ + private val pluginsMapping = mutableListOf() + + /** 库依赖测绘实体数组 */ + private val librariesMapping = mutableListOf() + + init { + runCatching { createMapping() }.onFailure { + when (it) { + is SweetDependencyUnresolvedException -> throw it + else -> SLog.error("Failed to create config file's mapping, this will cause problem") + } + } + } + + /** 创建测绘数据 */ + private fun createMapping() { + configFileContents.clear() + configFileContents.addAll(configs.configFilePath.toFile().apply { configFile = this }.readText().split("\n")) + var isFoundPluginsStartLine = false + var pluginsStartLine = -1 + var pluginsLine = 0 + var isFoundLibrariesStartLine = false + var librariesStartLine = -1 + var librariesLine = 0 + val pluginsContents = mutableListOf() + val librariesContents = mutableListOf() + configFileContents.forEachIndexed { index, content -> + if (content.contains("\"\"")) SError.make("Character declared like -> \"\" <- are not allowed, detected at line ${index + 1}") + } + configFileContents.forEachIndexed { index, content -> + if (content.startsWith(PREFERENCES_NODE_NAME) || + content.startsWith(REPOSITORIES_NODE_NAME) || + content.startsWith(VERSIONS_NODE_NAME) || + content.startsWith(LIBRARIES_NODE_NAME) + ) { + isFoundPluginsStartLine = false + return@forEachIndexed + } + if (content.startsWith(PLUGINS_NODE_NAME)) { + isFoundPluginsStartLine = true + pluginsStartLine = index + } + if (isFoundPluginsStartLine) pluginsContents.add(content) + } + configFileContents.forEachIndexed { index, content -> + if (content.startsWith(PREFERENCES_NODE_NAME) || + content.startsWith(REPOSITORIES_NODE_NAME) || + content.startsWith(VERSIONS_NODE_NAME) || + content.startsWith(PLUGINS_NODE_NAME) + ) { + isFoundLibrariesStartLine = false + return@forEachIndexed + } + if (content.startsWith(LIBRARIES_NODE_NAME)) { + isFoundLibrariesStartLine = true + librariesStartLine = index + } + if (isFoundLibrariesStartLine) librariesContents.add(content) + } + if (pluginsContents.isNotEmpty()) + Yaml.loadFromStringAsNode(pluginsContents.joinToContent()).forEach { (_, rootNode) -> + rootNode.asMap()?.forEach { (notation, artifactNode) -> + if (artifactNode.asMap()?.isKeyExist(VERSION_REF_NODE_NAME) == false) + pluginsMapping.add(DependencyMapping(notation.content)) + } + } + if (librariesContents.isNotEmpty()) + Yaml.loadFromStringAsNode(librariesContents.joinToContent()).forEach { (_, rootNode) -> + rootNode.asMap()?.forEach { (groupId, libraryNode) -> + libraryNode.asMap()?.forEach { (artifactId, artifactNode) -> + val notation = spliceToDependencyNotation(groupId.content, artifactId.content) + if (artifactNode.asMap()?.isKeyExist(VERSION_REF_NODE_NAME) == false) + librariesMapping.add(DependencyMapping(notation)) + } + } + } + pluginsContents.onEachIndexed { index, content -> + if ((content.trim().startsWith(VERSION_NODE_CONTENT) && content.startsWith(SPACE_OF_4)).not()) return@onEachIndexed + pluginsMapping[pluginsLine].versionLine = index + pluginsStartLine + pluginsLine++ + }.clear() + librariesContents.onEachIndexed { index, content -> + if ((content.trim().startsWith(VERSION_NODE_CONTENT) && content.startsWith(SPACE_OF_6)).not()) return@onEachIndexed + librariesMapping[librariesLine].versionLine = index + librariesStartLine + librariesLine++ + }.clear() + } + + /** + * 使用测绘数据更新依赖版本内容 + * @param dependencies 需要更新的依赖名称和版本数组 + */ + internal fun updateDependencies(dependencies: DependencyUpdateMap) { + /** + * 写入更新的依赖数据到文件内容 + * @param dependencies 依赖数组 + * @param spaceContent 空格内容 + */ + fun List.dumpToContents(dependencies: DependencyUpdateMap, spaceContent: String) = + filter { dependencies.containsKey(it.notation) }.forEach { + var codeNote = "" + val originContent = configFileContents[it.versionLine] + if (originContent.contains("#")) originContent.indexOf("#") + .also { e -> if (e > 0) codeNote = originContent.substring(e - 1..originContent.lastIndex) } + configFileContents[it.versionLine] = "$spaceContent$VERSION_NODE_CONTENT ${dependencies[it.notation]?.second?.mapped}$codeNote" + } + + val plugins = dependencies.filter { it.value.first.type == DependencyName.Type.PLUGIN } + val libraries = dependencies.filter { it.value.first.type == DependencyName.Type.LIBRARY } + if (plugins.isNotEmpty()) pluginsMapping.dumpToContents(plugins, SPACE_OF_4) + if (libraries.isNotEmpty()) librariesMapping.dumpToContents(libraries, SPACE_OF_6) + if (configFileContents.isNotEmpty()) configFile?.writeText(buildString { configFileContents.forEach { append("$it\n") } }.trim()) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/entity/DependencyMapping.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/entity/DependencyMapping.kt new file mode 100644 index 0000000..c226215 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/document/mapping/entity/DependencyMapping.kt @@ -0,0 +1,29 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/1. + */ +package com.highcapable.sweetdependency.document.mapping.entity + +/** + * 每项依赖测绘实体 + * @param notation 依赖名称或 ID + * @param versionLine 版本所处行号 + */ +internal data class DependencyMapping(internal var notation: String = "", internal var versionLine: Int = -1) \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/environment/Environment.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/environment/Environment.kt new file mode 100644 index 0000000..dd314fe --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/environment/Environment.kt @@ -0,0 +1,95 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/28. + */ +package com.highcapable.sweetdependency.environment + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.generated.SweetDependencyProperties +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.utils.toFile +import java.io.File + +/** + * [SweetDependency] 环境工具类 + */ +internal object Environment { + + /** [SweetDependency] 缓存存放目录 */ + private const val MEMORY_DIR_PATH = ".gradle/${SweetDependencyProperties.PROJECT_MODULE_NAME}" + + /** [SweetDependency] 功能存放目录 */ + private const val RESOURCES_DIR_PATH = "gradle/${SweetDependencyProperties.PROJECT_MODULE_NAME}" + + /** + * 获取 [SweetDependency] 缓存存放目录 + * @return [File] + */ + private val memoryDir get() = "${GradleHelper.rootDir.absolutePath}/$MEMORY_DIR_PATH".toFile().also { if (it.exists().not()) it.mkdirs() } + + /** + * 获取 [SweetDependency] 功能存放目录 + * @return [File] + */ + private val resourcesDir get() = "${GradleHelper.rootDir.absolutePath}/$RESOURCES_DIR_PATH".toFile().also { if (it.exists().not()) it.mkdirs() } + + /** + * 获取系统信息 + * @return [String] + */ + internal val systemInfo get() = "${System.getProperty("os.name")} ${System.getProperty("os.version")}" + + /** + * 获取字符集名称 + * @return [String] + */ + internal val characterEncoding get() = System.getProperty("file.encoding") + + /** + * 获取 Java 版本 + * @return [String] + */ + internal val javaVersion get() = System.getProperty("java.version") + + /** + * 获取 [SweetDependency] 缓存存放目录 + * @param dirOrFileName 子路径目录、文件名称数组 + * @return [File] + */ + internal fun memoryDir(vararg dirOrFileName: String) = memoryDir.parseDir(*dirOrFileName) + + /** + * 获取 [SweetDependency] 功能存放目录 + * @param dirOrFileName 子路径目录、文件名称数组 + * @return [File] + */ + internal fun resourcesDir(vararg dirOrFileName: String) = resourcesDir.parseDir(*dirOrFileName) + + /** + * 解析 [SweetDependency] 存放目录 + * @param dirOrFileName 子路径目录、文件名称数组 + * @return [File] + */ + private fun File.parseDir(vararg dirOrFileName: String): File { + var splitPath = "" + dirOrFileName.forEach { splitPath += "$it/" } + return "$absolutePath/${splitPath.ifBlank { "/" }.dropLast(1)}".toFile() + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/exception/SweetDependencyUnresolvedException.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/exception/SweetDependencyUnresolvedException.kt new file mode 100644 index 0000000..05dae63 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/exception/SweetDependencyUnresolvedException.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/31. + */ +package com.highcapable.sweetdependency.exception + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.utils.dumpToString + +/** + * [SweetDependency] 异常定义类 + * @param msg 异常内容 + * @param parent 父级异常 - 默认空 + */ +internal class SweetDependencyUnresolvedException internal constructor(private val msg: String, parent: Throwable? = null) : Exception( + ("[${SweetDependency.TAG}] The project initialization could not be completed, please check the following for errors\n" + + "If you need help, visit ${SweetDependency.PROJECT_URL}\n" + + "* What went wrong:\n" + + "$msg\n${if (parent != null) (when (parent) { + is SweetDependencyUnresolvedException -> "* Caused by:" + else -> "* Exception is:" + } + "\n${parent.dumpToString()}") else ""}").trim() +) { + override fun toString() = "${javaClass.simpleName}: $msg" +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/GradleDelegate.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/GradleDelegate.kt new file mode 100644 index 0000000..7ac680e --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/GradleDelegate.kt @@ -0,0 +1,94 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/26. + */ +package com.highcapable.sweetdependency.gradle.delegate + +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.gradle.proxy.IGradleLifecycle +import com.highcapable.sweetdependency.utils.debug.SError +import org.gradle.api.Project +import org.gradle.api.initialization.Settings + +/** + * Gradle 代理工具类 + */ +internal object GradleDelegate { + + /** 当前 Gradle 生命周期接口实例 */ + private var lifecycle: IGradleLifecycle? = null + + /** + * 创建 Gradle 生命周期 (插件) [T] + * @param settings 当前设置 + */ + internal inline fun create(settings: Settings) { + runCatching { + lifecycle = T::class.java.getConstructor().newInstance() + }.onFailure { SError.make("Failed to create Gradle lifecycle of \"${T::class.java}\"") } + GradleHelper.attach(settings) + callOnSettingsLoaded(settings) + settings.gradle.settingsEvaluated { callOnSettingsEvaluate(settings = this) } + settings.gradle.projectsLoaded { + callOnProjectLoaded(rootProject, isRoot = true) + rootProject.afterEvaluate { callOnProjectEvaluate(project = this, isRoot = true) } + rootProject.subprojects.forEach { + callOnProjectLoaded(it, isRoot = false) + it.afterEvaluate { callOnProjectEvaluate(project = this, isRoot = false) } + } + } + } + + /** + * 调用 Gradle 开始装载事件 + * @param settings 当前实例 + */ + private fun callOnSettingsLoaded(settings: Settings) { + lifecycle?.onSettingsLoaded(settings) + } + + /** + * 调用 Gradle 装载完成事件 + * @param settings 当前实例 + */ + private fun callOnSettingsEvaluate(settings: Settings) { + lifecycle?.onSettingsEvaluate(settings) + } + + /** + * 调用 Gradle 开始装载项目事件 + * @param project 当前项目 + * @param isRoot 是否为根项目 + */ + private fun callOnProjectLoaded(project: Project, isRoot: Boolean) { + if (isRoot) GradleHelper.cachingProjectList(project) + lifecycle?.onProjectLoaded(project, isRoot) + } + + /** + * 调用 Gradle 项目装载完成事件 + * @param project 当前项目 + * @param isRoot 是否为根项目 + */ + private fun callOnProjectEvaluate(project: Project, isRoot: Boolean) { + GradleHelper.cachingDependencyList(project, isRoot) + lifecycle?.onProjectEvaluate(project, isRoot) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/ProjectTransaction.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/ProjectTransaction.kt new file mode 100644 index 0000000..7e96e27 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/ProjectTransaction.kt @@ -0,0 +1,63 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/29. + */ +package com.highcapable.sweetdependency.gradle.delegate + +import org.gradle.api.Project +import kotlin.properties.Delegates + +/** + * 项目事务实例实现类 + */ +internal class ProjectTransaction { + + internal companion object { + + /** 当前项目 (当前生命周期静态) */ + internal var current by Delegates.notNull() + + /** 是否为根项目 (当前生命周期静态) */ + internal var isRoot by Delegates.notNull() + } + + /** 当前装载实例方法体数组 */ + internal val evaluateCallbacks = mutableSetOf<((Project, Boolean) -> Unit)>() + + /** + * 获取当前项目 + * @return [Project] + */ + internal val current get() = Companion.current + + /** + * 获取是否为根项目 + * @return [Boolean] + */ + internal val isRoot get() = Companion.isRoot + + /** + * 创建装载实例监听 + * @param evaluate 回调装载监听 - ([Project] 当前项目,[Boolean] 师傅为根项目) + */ + internal fun evaluation(evaluate: (project: Project, isRoot: Boolean) -> Unit) { + evaluateCallbacks.add(evaluate) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/entity/ExternalDependencyDelegate.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/entity/ExternalDependencyDelegate.kt new file mode 100644 index 0000000..1b64f2f --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/delegate/entity/ExternalDependencyDelegate.kt @@ -0,0 +1,67 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/25. + */ +@file:Suppress("USELESS_ELVIS", "KotlinRedundantDiagnosticSuppress") + +package com.highcapable.sweetdependency.gradle.delegate.entity + +import com.highcapable.sweetdependency.document.factory.spliceToDependencyNotation +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.manager.GradleTaskManager +import com.highcapable.sweetdependency.utils.debug.SError +import org.gradle.api.internal.artifacts.dependencies.DefaultExternalModuleDependency + +/** + * 外部存储库依赖实体代理类 + * + * 代理 [DefaultExternalModuleDependency] + * @param groupId Group ID + * @param artifactId Artifact ID + * @param version 版本 + */ +internal open class ExternalDependencyDelegate internal constructor( + @get:JvmName("getDelegateGroupId") + @set:JvmName("setDelegateGroupId") + var groupId: String, + @get:JvmName("getDelegateArtifactId") + @set:JvmName("setDelegateArtifactId") + var artifactId: String, + @get:JvmName("getDelegateVersion") + @set:JvmName("setDelegateVersion") + var version: String +) : DefaultExternalModuleDependency(groupId, artifactId, version) { + + override fun getVersion(): String { + val notation = spliceToDependencyNotation(groupId, artifactId) + if (version == DependencyVersion.AUTOWIRE_VERSION_NAME && GradleTaskManager.isInternalRunningTask.not()) SError.make( + """ + This library "$notation" is not autowired and cannot be deployed + You can try the following solutions to resolve this problem: + 1. Manually re-run Gradle Sync (make sure "autowire-on-sync-mode" not be "OFF") + 2. Manually run "${GradleTaskManager.AUTOWIRE_LIBRARIES_TASK_NAME}" task and re-run Gradle Sync + 3. Fill an existing version for dependency "$notation" and re-run Gradle Sync + If you get this error again after doing the above, maybe the currently set repositories cannot find this library + """.trimIndent() + ); return super.getVersion() ?: version + } + + override fun toString() = "ExternalDependencyDelegate(groupId = $groupId, artifactId = $artifactId, version = $version)" +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyName.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyName.kt new file mode 100644 index 0000000..d7bb14a --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyName.kt @@ -0,0 +1,127 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/16. + */ +@file:Suppress("unused", "MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.gradle.entity + +import com.highcapable.sweetdependency.document.factory.convertToDependencyAmbiguousName +import com.highcapable.sweetdependency.document.factory.convertToDependencyUrlName +import com.highcapable.sweetdependency.document.factory.spliceToDependencyNotation +import com.highcapable.sweetdependency.document.factory.splitToDependencyNames +import com.highcapable.sweetdependency.utils.firstNumberToLetter + +/** + * 依赖名称实体类 + * @param type 名称类型 + * @param groupId Group ID + * @param artifactId Artifact ID + */ +internal class DependencyName private constructor(internal val type: Type, internal val groupId: String, internal val artifactId: String) { + + internal companion object { + + /** 标识 Gradle 插件后缀名称 */ + private const val GRADLE_PLUGIN_SUFFIX = "gradle.plugin" + + /** + * 创建为插件依赖名称 + * @param notation 完整名称 + */ + internal fun plugin(notation: String) = DependencyName(Type.PLUGIN, notation, "$notation.$GRADLE_PLUGIN_SUFFIX") + + /** + * 创建为库依赖名称 + * @param notation 完整名称 + */ + internal fun library(notation: String) = notation.splitToDependencyNames().let { names -> DependencyName(Type.LIBRARY, names[0], names[1]) } + + /** + * 创建为库依赖名称 + * @param groupId Group ID + * @param artifactId Artifact ID + */ + internal fun library(groupId: String, artifactId: String) = DependencyName(Type.LIBRARY, groupId, artifactId) + } + + /** + * 获取当前模糊分离名称 (使用 [symbol] 进行分离) + * @param symbol 分隔符 - 默认 "." + * @param isReplaceFirstChar 是否使用 [firstNumberToLetter] 替换每一段第一个字符 - 默认否 + * @param isLowerCase 是否全部转换为小写 - 默认是 + * @return [String] + */ + internal fun ambiguousName(symbol: String = ".", isReplaceFirstChar: Boolean = false, isLowerCase: Boolean = true) = + current.convertToDependencyAmbiguousName(symbol, isReplaceFirstChar, isLowerCase) + + /** + * 获取当前 URL 名称 + * @return [String] + */ + internal val urlName get() = notation.convertToDependencyUrlName() + + /** + * 获取当前描述内容 + * @return [String] + */ + internal val description get() = "$typeName \"$current\"" + + /** + * 获取当前类型名称 + * @return [String] + */ + internal val typeName get() = when (type) { + Type.PLUGIN -> "Plugin" + Type.LIBRARY -> "Library" + } + + /** + * 获取当前名称 + * @return [String] + */ + internal val current get() = when (type) { + Type.PLUGIN -> groupId + Type.LIBRARY -> notation + } + + /** + * 获取当前完整名称 + * @return [String] + */ + internal val notation get() = spliceToDependencyNotation(groupId, artifactId) + + override fun equals(other: Any?) = other.toString() == toString() + + override fun hashCode() = toString().hashCode() + + override fun toString() = current + + /** + * 名称类型定义类 + */ + internal enum class Type { + /** 插件依赖 */ + PLUGIN, + + /** 库依赖 */ + LIBRARY + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyUpdateMode.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyUpdateMode.kt new file mode 100644 index 0000000..b93d361 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyUpdateMode.kt @@ -0,0 +1,58 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/18. + */ +package com.highcapable.sweetdependency.gradle.entity + +/** + * 依赖更新模式实体类 + * @param dependencyType 依赖类型 + * @param updateType 依赖更新模式 + */ +internal data class DependencyUpdateMode(internal var dependencyType: DependencyType, internal var updateType: UpdateType) { + + /** + * 依赖类型定义类 + */ + internal enum class DependencyType { + /** 全部类型 */ + ALL, + + /** 插件依赖 */ + PLUGINS, + + /** 库依赖 */ + LIBRARIES, + } + + /** + * 依赖更新模式类型定义类 + */ + internal enum class UpdateType { + /** 可选更新 */ + UPDATE_OPTIONAL, + + /** 全部更新 */ + UPDATE_ALL, + + /** 仅自动装配 */ + ONLY_AUTOWIRE, + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyVersion.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyVersion.kt new file mode 100644 index 0000000..e57a2b1 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/DependencyVersion.kt @@ -0,0 +1,157 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/16. + */ +@file:Suppress("MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.gradle.entity + +import com.highcapable.sweetdependency.utils.debug.SError + +/** + * 依赖版本实体类 + * @param actual 当前实际版本 - 如果为 [DependencyVersion.isOptional] 则会显示在第一位 + * @param optionalType 可选更新类型 - 默认为 [DependencyVersion.OptionalUpdateType.NONE] + */ +internal class DependencyVersion(internal var actual: String, optionalType: OptionalUpdateType = OptionalUpdateType.NONE) { + + internal companion object { + + /** 标识自动装配版本的名称 */ + const val AUTOWIRE_VERSION_NAME = "+" + + /** 标识不指定版本的名称 */ + const val NO_SPECIFIC_VERSION_NAME = "" + + /** 标识当前最新版本的名称 */ + const val LATEST_VERSION_NAME = "" + + /** 标识常规可选更新版本前缀名称 */ + private const val OPTIONAL_VERSION_NORMAL_PREFIX = "^" + + /** 标识常驻可选更新版本前缀名称 */ + private const val OPTIONAL_VERSION_PERMANENT_PREFIX = "^^" + } + + init { + if (current.startsWith("<") && current.endsWith(">")) + if (current != NO_SPECIFIC_VERSION_NAME && current != LATEST_VERSION_NAME) + SError.make("The parameter \"$current\" is not recognized as any available function") + if (isOptional.not()) when (optionalType) { + OptionalUpdateType.NONE -> {} + OptionalUpdateType.NORMAL -> actual = "$OPTIONAL_VERSION_NORMAL_PREFIX$actual" + OptionalUpdateType.PERMANENT -> actual = "$OPTIONAL_VERSION_PERMANENT_PREFIX$actual" + } + } + + /** + * 获取当前版本 + * @return [String] + */ + internal val current get() = actual.replace(OPTIONAL_VERSION_PERMANENT_PREFIX, "").replace(OPTIONAL_VERSION_NORMAL_PREFIX, "") + + /** + * 获取当前测绘数据使用的版本 + * + * 它会自动识别 [optionalType] 决定是否继续保留可选更新的符号 + * @return [String] + */ + internal val mapped get() = when (optionalType) { + OptionalUpdateType.PERMANENT -> actual + else -> current + } + + /** + * 获取部署版本 + * + * 如果为 [isNoSpecific] 则会返回空 + * @return [String] + */ + internal val deployed get() = current.takeIf { isNoSpecific.not() } ?: "" + + /** + * 获取存在版本 + * + * 如果为空则会返回 [NO_SPECIFIC_VERSION_NAME] + * @return [String] + */ + internal val existed get() = current.ifBlank { NO_SPECIFIC_VERSION_NAME } + + /** + * 是否为空白 + * @return [Boolean] + */ + internal val isBlank get() = current.isBlank() + + /** + * 是否为自动装配版本 + * @return [Boolean] + */ + internal val isAutowire get() = current == AUTOWIRE_VERSION_NAME + + /** + * 是否为不指定版本 + * @return [Boolean] + */ + internal val isNoSpecific get() = current == NO_SPECIFIC_VERSION_NAME + + /** + * 是否为可选更新版本 + * @return [Boolean] + */ + internal val isOptional get() = optionalType != OptionalUpdateType.NONE + + /** + * 获取当前可选更新类型 + * @return [OptionalUpdateType] + */ + internal val optionalType get() = when { + actual.startsWith(OPTIONAL_VERSION_PERMANENT_PREFIX) -> OptionalUpdateType.PERMANENT + actual.startsWith(OPTIONAL_VERSION_NORMAL_PREFIX) -> OptionalUpdateType.NORMAL + else -> OptionalUpdateType.NONE + } + + /** + * 克隆为新的 [DependencyVersion] 实体 + * @param version 当前版本 + * @return [DependencyVersion] + */ + internal fun clone(version: String) = DependencyVersion(version, optionalType) + + override fun equals(other: Any?) = other.toString() == toString() + + override fun hashCode() = toString().hashCode() + + override fun toString() = current + + /** + * 可选更新类型定义类 + */ + internal enum class OptionalUpdateType { + /** 无 */ + NONE, + + /** 常规 */ + NORMAL, + + /** 常驻 */ + PERMANENT, + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/ExternalDependency.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/ExternalDependency.kt new file mode 100644 index 0000000..7432a19 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/entity/ExternalDependency.kt @@ -0,0 +1,44 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/23. + */ +package com.highcapable.sweetdependency.gradle.entity + +/** + * 外部存储库依赖实体类 + * @param dependencyName 依赖名称 + * @param version 版本 + */ +internal data class ExternalDependency(private val dependencyName: DependencyName, internal val version: DependencyVersion) { + + /** + * 获取 Group ID + * @return [String] + */ + internal val groupId get() = dependencyName.groupId + + /** + * 获取 Artifact ID + * @return [String] + */ + internal val artifactId get() = dependencyName.artifactId + + override fun toString() = dependencyName.current +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/ExtensionAwareFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/ExtensionAwareFactory.kt new file mode 100644 index 0000000..fa08a78 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/ExtensionAwareFactory.kt @@ -0,0 +1,117 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/27. + */ +@file:Suppress("unused", "USELESS_CAST", "KotlinRedundantDiagnosticSuppress") + +package com.highcapable.sweetdependency.gradle.factory + +import com.highcapable.sweetdependency.exception.SweetDependencyUnresolvedException +import com.highcapable.sweetdependency.utils.camelcase +import com.highcapable.sweetdependency.utils.debug.SError +import org.gradle.api.Action +import org.gradle.api.plugins.ExtensionAware + +/** + * 创建、获取扩展方法 + * @param name 方法名称 - 自动调用 [toSafeExtName] + * @param clazz 目标对象 [Class] + * @param args 方法参数 + * @return [ExtensionAware] + */ +internal fun ExtensionAware.getOrCreate(name: String, clazz: Class<*>, vararg args: Any?) = name.toSafeExtName().let { sName -> + runCatching { extensions.create(sName, clazz, *args).asExtension() }.getOrElse { + if ((it is IllegalArgumentException && it.message?.startsWith("Cannot add extension with name") == true).not()) throw it + runCatching { extensions.getByName(sName).asExtension() }.getOrNull() ?: SError.make("Create or get extension failed with name \"$sName\"") + } +} + +/** + * 创建、获取扩展方法 - 目标对象 [T] + * @param name 方法名称 - 自动调用 [toSafeExtName] + * @param args 方法参数 + * @return [T] + */ +internal inline fun ExtensionAware.getOrCreate(name: String, vararg args: Any?) = name.toSafeExtName().let { sName -> + runCatching { extensions.create(sName, T::class.java, *args) as T }.getOrElse { + if ((it is IllegalArgumentException && it.message?.startsWith("Cannot add extension with name") == true).not()) throw it + runCatching { extensions.getByName(sName) as? T? }.getOrNull() ?: SError.make("Create or get extension failed with name \"$sName\"") + } +} + +/** + * 获取扩展方法 + * @param name 方法名称 + * @return [ExtensionAware] + */ +internal fun ExtensionAware.get(name: String) = + runCatching { extensions.getByName(name).asExtension() }.getOrNull() ?: SError.make("Could not get extension with name \"$name\"") + +/** + * 获取扩展方法 - 目标对象 [T] + * @param name 方法名称 + * @return [T] + */ +internal inline fun ExtensionAware.get(name: String) = + runCatching { extensions.getByName(name) as T }.getOrNull() ?: SError.make("Could not get extension with name \"$name\"") + +/** + * 获取扩展方法 - 目标对象 [T] + * @return [T] + */ +internal inline fun ExtensionAware.get() = + runCatching { extensions.getByType(T::class.java) as T }.getOrNull() ?: SError.make("Could not get extension with type ${T::class.java}") + +/** + * 配置扩展方法 - 目标对象 [T] + * @param name 方法名称 + * @param configure 配置方法体 + */ +internal inline fun ExtensionAware.configure(name: String, configure: Action) = extensions.configure(name, configure) + +/** + * 是否存在扩展方法 + * @param name 方法名称 + * @return [Boolean] + */ +internal fun ExtensionAware.hasExtension(name: String) = runCatching { extensions.getByName(name); true }.getOrNull() ?: false + +/** + * 转换到扩展方法类型 [ExtensionAware] + * @return [ExtensionAware] + * @throws SweetDependencyUnresolvedException 如果类型不是 [ExtensionAware] + */ +internal fun Any.asExtension() = this as? ExtensionAware? ?: SError.make("This instance \"$this\" is not a valid Extension") + +/** + * 由于 Gradle 存在一个 [ExtensionAware] 的扩展 + * + * 此功能用于检测当前字符串是否为 Gradle 使用的关键字名称 + * @return [Boolean] + */ +internal fun String.isUnSafeExtName() = camelcase().let { it == "ext" || it == "extra" || it == "extraProperties" || it == "extensions" } + +/** + * 由于 Gradle 存在一个 [ExtensionAware] 的扩展 + * + * 此功能用于转换不符合规定的字符串到 "{字符串}s" + * @return [String] + */ +internal fun String.toSafeExtName() = if (isUnSafeExtName()) "${this}s" else this \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/GradleProjectFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/GradleProjectFactory.kt new file mode 100644 index 0000000..d0f82e8 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/factory/GradleProjectFactory.kt @@ -0,0 +1,190 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/2. + */ +@file:Suppress("USELESS_ELVIS", "KotlinRedundantDiagnosticSuppress", "UselessCallOnNotNull") + +package com.highcapable.sweetdependency.gradle.factory + +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.gradle.wrapper.LibraryDependencyWrapper +import com.highcapable.sweetdependency.gradle.wrapper.PluginDependencyWrapper +import com.highcapable.sweetdependency.plugin.task.base.BaseTask +import com.highcapable.sweetdependency.utils.code.entity.MavenPomData +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.noBlank +import com.highcapable.sweetdependency.utils.orEmpty +import com.highcapable.sweetdependency.utils.toFile +import org.gradle.api.Plugin +import org.gradle.api.Project +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.ExternalDependency +import org.gradle.api.artifacts.FileCollectionDependency +import org.gradle.api.internal.GeneratedSubclasses +import org.gradle.api.internal.plugins.PluginManagerInternal +import org.gradle.api.plugins.PluginManager +import org.gradle.api.provider.Provider +import org.gradle.api.provider.ProviderConvertible +import org.gradle.kotlin.dsl.buildscript +import org.gradle.kotlin.dsl.repositories +import org.gradle.plugin.use.PluginDependenciesSpec +import org.gradle.plugin.use.PluginDependency + +/** + * 获取指定项目的完整名称 + * @return [String] + */ +internal val Project.fullName + get(): String { + val baseNames = mutableListOf() + + /** + * 递归子项目 + * @param project 当前项目 + */ + fun fetchChild(project: Project) { + project.parent?.also { if (it != it.rootProject) fetchChild(it) } + baseNames.add(project.name) + } + fetchChild(project = this) + return buildString { baseNames.onEach { append(":$it") }.clear() }.drop(1) + } + +/** + * 向构建脚本添加自定义依赖 + * @param repositoryPath 存储库路径 + * @param pomData Maven POM 实体 + */ +internal fun Project.addDependencyToBuildScript(repositoryPath: String, pomData: MavenPomData) = + buildscript { + repositories { + maven { + url = repositoryPath.toFile().toURI() + mavenContent { includeGroup(pomData.groupId) } + } + }; dependencies { classpath("${pomData.groupId}:${pomData.artifactId}:${pomData.version}") } + } + +/** + * 装载构建脚本的 [Class] + * @param name [Class] 完整名称 + * @return [Class] + */ +internal fun Project.loadBuildScriptClass(name: String) = buildscript.classLoader.loadClass(name) + +/** + * 获取指定项目部署的插件依赖数组 (实时) + * + * @param isUseCache 是否使用缓存 - 默认启用 - 启用后将使用 [GradleHelper.projectPlugins] 进行获取 + * @return [MutableList]<[PluginDependencyWrapper]> + */ +internal fun Project.plugins(isUseCache: Boolean = true) = + if (isUseCache) GradleHelper.projectPlugins[this].orEmpty() else mutableListOf().apply { + plugins.configureEach { + pluginManager.findPluginId(this).noBlank()?.also { add(PluginDependencyWrapper(instance = this, it)) } + } + } + +/** + * 获取指定项目部署的库依赖数组 (实时) + * + * @param isUseCache 是否使用缓存 - 默认启用 - 启用后将使用 [GradleHelper.projectLibraries] 进行获取 + * @return [MutableList]<[LibraryDependencyWrapper]> + */ +internal fun Project.libraries(isUseCache: Boolean = true) = + if (isUseCache) GradleHelper.projectLibraries[this].orEmpty() else mutableListOf().apply { + /** + * 检查依赖是否有效 + * @return [Boolean] + */ + fun Dependency.checkingValid() = when (this) { + is ExternalDependency -> group.isNullOrBlank().not() && name.isNullOrBlank().not() + is FileCollectionDependency -> runCatching { files.files.isNotEmpty() }.getOrNull() ?: false + else -> true + } + /** 在一些项目 (例如 Kotlin Multiplatform 中会发生异常 [java.util.ConcurrentModificationException] - 这里直接做拦截处理 */ + runCatching { + configurations.forEach { config -> + config.dependencies.forEach { if (it.checkingValid()) add(LibraryDependencyWrapper(it, config.name ?: "")) } + } + } + } + +/** + * 等待并监听当指定插件被添加时回调 + * @param id 插件 ID + * @param action 回调插件实例 + */ +internal fun Project.waitForPluginAdded(id: String, action: (Plugin<*>) -> Unit) { + plugins.whenPluginAdded { if (pluginManager.findPluginId(this) == id) action(this) } +} + +/** + * 创建 Gradle Task [T] + * @param group Task 分组 + * @param name Task 名称 + * @return [T] + */ +internal inline fun Project.createTask(group: String, name: String) = runCatching { + T::class.java.getConstructor().newInstance().also { instance -> + task(name) { + this.group = group + outputs.upToDateWhen { false } + doFirst { instance.onTransaction() } + } + } +}.getOrNull() ?: SError.make("Gradle task \"$name\" with group \"$group\" create failed") + +/** + * 应用插件 + * @param id 插件 ID + * @param version 版本 + */ +internal fun PluginDependenciesSpec.applyPlugin(id: String, version: String) = + id(id).apply { if (version.isNotBlank()) version(version) } ?: SError.make("Plugin \"$id\" not apply") + +/** + * 应用插件 + * @param alias 别名实例 + */ +internal fun PluginDependenciesSpec.applyPlugin(alias: Any) = when (alias) { + is Provider<*> -> + @Suppress("UNCHECKED_CAST") + alias(alias as? Provider ?: SError.make("The $alias is not a valid plugin")) + ?: SError.make("Plugin $alias not apply") + is ProviderConvertible<*> -> + @Suppress("UNCHECKED_CAST") + alias(alias as? ProviderConvertible ?: SError.make("The $alias is not a valid plugin")) + ?: SError.make("Plugin $alias not apply") + else -> SError.make("The $alias is not a valid plugin (unknown type)") +} + +/** + * 通过 [PluginManager] 查找 [Plugin] 真实 ID + * + * 如果找不到会返回空字符串 + * @param plugin 当前实例 + * @return [String] + */ +private fun PluginManager.findPluginId(plugin: Plugin<*>) = runCatching { + @Suppress("UNCHECKED_CAST") + val pluginIds = (this as PluginManagerInternal).findPluginIdForClass(GeneratedSubclasses.unpackType(plugin) as Class>) + if (pluginIds.isEmpty.not()) pluginIds.get() else null +}.getOrNull()?.id ?: "" \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/helper/GradleHelper.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/helper/GradleHelper.kt new file mode 100644 index 0000000..57b3f83 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/helper/GradleHelper.kt @@ -0,0 +1,155 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/19. + */ +@file:Suppress("MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.gradle.helper + +import com.highcapable.sweetdependency.gradle.factory.libraries +import com.highcapable.sweetdependency.gradle.factory.plugins +import com.highcapable.sweetdependency.gradle.wrapper.LibraryDependencyWrapper +import com.highcapable.sweetdependency.gradle.wrapper.PluginDependencyWrapper +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.parseFileSeparator +import org.gradle.api.Project +import org.gradle.api.initialization.Settings +import org.gradle.api.invocation.Gradle +import java.io.File +import java.io.FileReader +import java.util.* + +/** + * Gradle 工具类 + */ +internal object GradleHelper { + + /** Gradle 配置文件名称 */ + private const val GRADLE_PROPERTIES_FILE_NAME = "gradle.properties" + + /** 当前 [Gradle] 静态实例 */ + private var instance: Gradle? = null + + /** 当前 [Settings] 静态实例 */ + private var settings: Settings? = null + + /** 当前装载的所有项目 */ + internal val allProjects = mutableSetOf() + + /** 当前装载的项目插件依赖数组 */ + internal val projectPlugins = mutableMapOf>() + + /** 当前装载的项目库依赖数组 */ + internal val projectLibraries = mutableMapOf>() + + /** + * 绑定当前使用的 [Settings] 静态实例 + * @param settings 当前设置 + */ + internal fun attach(settings: Settings) { + instance = settings.also { this.settings = it }.gradle + } + + /** + * 缓存所有项目列表 + * @param rootProject 当前根项目 + */ + internal fun cachingProjectList(rootProject: Project) { + allProjects.clear() + allProjects.addAll(rootProject.allprojects) + } + + /** + * 缓存所有依赖列表 + * @param project 当前项目 + * @param isRoot 是否为根项目 + */ + internal fun cachingDependencyList(project: Project, isRoot: Boolean) { + if (isRoot) { + projectPlugins.clear() + projectLibraries.clear() + } + project.plugins(isUseCache = false).forEach { + if (projectPlugins[project] == null) projectPlugins[project] = mutableListOf() + projectPlugins[project]?.add(it) + } + project.libraries(isUseCache = false).forEach { + if (projectLibraries[project] == null) projectLibraries[project] = mutableListOf() + projectLibraries[project]?.add(it) + } + } + + /** + * 获取用户目录的 [Properties] + * @return [Properties] or null + */ + internal val userProperties get() = createProperties(instance?.gradleUserHomeDir) + + /** + * 获取当前项目的 [Properties] + * @return [Properties] or null + */ + internal val projectProperties get() = createProperties(settings?.rootDir) + + /** + * 获取当前 Gradle 项目的根目录 + * @return [File] + */ + internal val rootDir get() = rootProject?.projectDir ?: settings?.rootDir ?: SError.make("Gradle is unavailable") + + /** + * 获取当前 Gradle 项目的根项目 (Root Project) + * @return [Project] or null + */ + internal val rootProject get() = runCatching { instance?.rootProject }.getOrNull() + + /** + * 获取当前 Gradle 版本 + * @return [String] + */ + internal val version get() = instance?.gradle?.gradleVersion ?: "" + + /** + * 获取当前 Gradle 是否处于离线模式 + * @return [Boolean] + */ + internal val isOfflineMode get() = instance?.startParameter?.isOffline == true + + /** + * 获取当前 Gradle 是否处于同步模式 + * @return [Boolean] + */ + internal val isSyncMode get() = runningTaskNames.isNullOrEmpty() + + /** + * 获取当前正在运行的 Task 名称数组 + * @return [MutableList]<[String]> or null + */ + internal val runningTaskNames get() = instance?.startParameter?.taskRequests?.getOrNull(0)?.args + + /** + * 创建新的 [Properties] + * @param dir 当前目录 + * @return [Properties] or null + */ + private fun createProperties(dir: File?) = runCatching { + Properties().apply { load(FileReader(dir?.resolve(GRADLE_PROPERTIES_FILE_NAME)?.absolutePath?.parseFileSeparator() ?: "")) } + }.getOrNull() +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/proxy/IGradleLifecycle.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/proxy/IGradleLifecycle.kt new file mode 100644 index 0000000..d101885 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/proxy/IGradleLifecycle.kt @@ -0,0 +1,57 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/26. + */ +package com.highcapable.sweetdependency.gradle.proxy + +import org.gradle.api.Project +import org.gradle.api.initialization.Settings + +/** + * Gradle 生命周期接口 + */ +internal interface IGradleLifecycle { + + /** + * 当 Gradle 开始装载时回调 + * @param settings 当前设置 + */ + fun onSettingsLoaded(settings: Settings) + + /** + * 当 Gradle 装载完成时回调 + * @param settings 当前设置 + */ + fun onSettingsEvaluate(settings: Settings) + + /** + * 当 Gradle 开始装载项目时回调 + * @param project 当前项目 + * @param isRoot 是否为根项目 + */ + fun onProjectLoaded(project: Project, isRoot: Boolean) + + /** + * 当 Gradle 项目装载完成时回调 + * @param project 当前项目 + * @param isRoot 是否为根项目 + */ + fun onProjectEvaluate(project: Project, isRoot: Boolean) +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/LibraryDependencyWrapper.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/LibraryDependencyWrapper.kt new file mode 100644 index 0000000..6c19cb4 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/LibraryDependencyWrapper.kt @@ -0,0 +1,92 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/28. + */ +@file:Suppress("USELESS_ELVIS", "KotlinRedundantDiagnosticSuppress") + +package com.highcapable.sweetdependency.gradle.wrapper + +import com.highcapable.sweetdependency.document.factory.spliceToDependencyNotation +import com.highcapable.sweetdependency.gradle.delegate.entity.ExternalDependencyDelegate +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.gradle.wrapper.type.LibraryDependencyType +import org.gradle.api.Project +import org.gradle.api.artifacts.Dependency +import org.gradle.api.artifacts.ExternalDependency +import org.gradle.api.artifacts.FileCollectionDependency +import org.gradle.api.artifacts.ProjectDependency +import java.io.File + +/** + * 库依赖包装实例实现类 + * @param instance 当前实例 + * @param configurationName 配置名称 + */ +internal data class LibraryDependencyWrapper internal constructor(private val instance: Dependency, internal val configurationName: String) { + + /** + * 获取当前依赖类型 + * @return [LibraryDependencyType] + */ + val type + get() = when (instance) { + is ExternalDependencyDelegate -> LibraryDependencyType.EXTERNAL_DELEGATE + is ExternalDependency -> LibraryDependencyType.EXTERNAL + is ProjectDependency -> LibraryDependencyType.PROJECT + is FileCollectionDependency -> LibraryDependencyType.FILES + else -> LibraryDependencyType.OTHERS + } + + /** + * 依赖的文件数组 + * + * - [type] 需要为 [LibraryDependencyType.FILES] 否则始终为 null + * @return [MutableSet]<[File]> or null + */ + val files get() = runCatching { (instance as? FileCollectionDependency?)?.files?.files?.toMutableSet() }.getOrNull() + + /** + * 依赖的项目 + * + * - [type] 需要为 [LibraryDependencyType.PROJECT] 否则始终为 null + * @return [Project] or null + */ + val project get() = runCatching { (instance as? ProjectDependency?)?.dependencyProject }.getOrNull() + + /** + * Group ID + * @return [String] + */ + val groupId get() = instance.group ?: "" + + /** + * Artifact ID + * @return [String] + */ + val artifactId get() = instance.name ?: "" + + /** + * 版本 + * @return [DependencyVersion] + */ + val version get() = DependencyVersion(instance.version ?: "") + + override fun toString() = spliceToDependencyNotation(groupId, artifactId) +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/PluginDependencyWrapper.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/PluginDependencyWrapper.kt new file mode 100644 index 0000000..53a32f8 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/PluginDependencyWrapper.kt @@ -0,0 +1,34 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/17. + */ +package com.highcapable.sweetdependency.gradle.wrapper + +import org.gradle.api.Plugin + +/** + * 插件依赖包装实例实现类 + * @param instance 当前实例 + * @param id 插件 ID + */ +internal data class PluginDependencyWrapper internal constructor(private val instance: Plugin<*>, internal val id: String) { + + override fun toString() = id +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/type/LibraryDependencyType.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/type/LibraryDependencyType.kt new file mode 100644 index 0000000..68a9bc8 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/gradle/wrapper/type/LibraryDependencyType.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/10. + */ +package com.highcapable.sweetdependency.gradle.wrapper.type + +/** + * 库依赖类型定义类 + */ +internal enum class LibraryDependencyType { + /** 其它类型 */ + OTHERS, + + /** 外部存储库 */ + EXTERNAL, + + /** 外部存储库 (代理) */ + EXTERNAL_DELEGATE, + + /** 项目 */ + PROJECT, + + /** 文件 */ + FILES +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/DependencyManager.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/DependencyManager.kt new file mode 100644 index 0000000..8a9ea4e --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/DependencyManager.kt @@ -0,0 +1,335 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/16. + */ +package com.highcapable.sweetdependency.manager + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.document.PreferencesDocument +import com.highcapable.sweetdependency.document.VersionFilterDocument +import com.highcapable.sweetdependency.document.factory.DependenciesCondition +import com.highcapable.sweetdependency.document.factory.DependencyMap +import com.highcapable.sweetdependency.document.factory.RepositoryList +import com.highcapable.sweetdependency.gradle.entity.DependencyName +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.gradle.factory.get +import com.highcapable.sweetdependency.gradle.factory.getOrCreate +import com.highcapable.sweetdependency.gradle.factory.waitForPluginAdded +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.manager.content.Dependencies +import com.highcapable.sweetdependency.manager.content.Repositories +import com.highcapable.sweetdependency.manager.helper.DependencyAutowireLogHelper +import com.highcapable.sweetdependency.manager.helper.DependencyDeployHelper +import com.highcapable.sweetdependency.manager.maven.MavenParser +import com.highcapable.sweetdependency.manager.maven.entity.MavenMetadata +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.extension.dsl.manager.SweetDependencyAutowireExtension +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.noEmpty +import com.highcapable.sweetdependency.utils.single +import org.gradle.api.Project +import org.gradle.api.initialization.Settings +import org.gradle.api.plugins.ExtensionAware + +/** + * 依赖部署、自动装配、更新管理类 + */ +internal object DependencyManager { + + /** 生成并应用依赖数组 */ + internal fun generateAndApply() { + Dependencies.generate(SweetDependencyConfigs.document.plugins(), SweetDependencyConfigs.document.libraries()) + val pluginsSize = Dependencies.plugins().size + val librariesSize = Dependencies.libraries().size + if (Dependencies.isNotEmpty()) SLog.verbose( + "${SweetDependency.TAG} help you autowired ${pluginsSize + librariesSize} dependencies" + + " (plugins: $pluginsSize, libraries: $librariesSize)", SLog.STRNG + ) + } + + /** + * 生成并应用依赖数组 + * @param settings 当前设置 + */ + internal fun generateAndApply(settings: Settings) { + val isDisableOnSync = SweetDependencyConfigs.document.preferences().autowireOnSyncMode == PreferencesDocument.AutowireOnSyncMode.OFF + var requiresAutowiringLibrariesSize = 0 + Dependencies.all().forEach { (_, artifact) -> if (artifact.version().isAutowire) requiresAutowiringLibrariesSize++ } + if (requiresAutowiringLibrariesSize > 0 && GradleHelper.isSyncMode && isDisableOnSync) SLog.warn( + "Found $requiresAutowiringLibrariesSize dependencies need to be autowired, " + + "please manually run \"${GradleTaskManager.AUTOWIRE_DEPENDENCIES_TASK_NAME}\" task and re-run Gradle Sync" + ) + DependencyDeployHelper.generateVersionCatalogs(settings) + } + + /** + * 初始化库依赖可访问类 + * @param rootProject 当前根项目 + */ + internal fun resolve(rootProject: Project) = DependencyDeployHelper.resolveAccessors(rootProject) + + /** + * 部署依赖 + * @param rootProject 当前根项目 + */ + internal fun deploy(rootProject: Project) { + /** + * 为 Groovy 创建扩展方法 + * @param extension 当前扩展实例 + */ + fun Project.deployForGroovy(extension: ExtensionAware) { + if (buildFile.name.endsWith(".gradle")) + extension.getOrCreate(SweetDependencyAutowireExtension.NAME, this) + } + + /** + * 部署到当前项目 + * @param extension 当前扩展实例 + */ + fun Project.deployEach(extension: ExtensionAware) = DependencyDeployHelper.deployAccessors(project = this, extension) + + /** 适配 Kotlin Multiplatform */ + fun Project.deployForKotlinMultiplatform() = + waitForPluginAdded("org.jetbrains.kotlin.multiplatform") { + get("kotlin").also { extension -> + deployForGroovy(extension) + deployEach(extension) + } + } + + /** 部署到当前项目 */ + fun Project.deploy() { + deployForGroovy(dependencies) + deployEach(dependencies) + deployForKotlinMultiplatform() + } + rootProject.deploy() + rootProject.subprojects.forEach { it.deploy() } + } + + /** + * 自动装配、更新依赖 + * @param updateMode 更新模式 + * @param isRunningOnSync 是否在 Gradle Sync 时运行 - 默认是 + */ + internal fun autowireAndUpdate(updateMode: DependencyUpdateMode, isRunningOnSync: Boolean = true) { + /** + * 在适当时候打印 Log + * @param msg 消息内容 + * @param symbol 前缀符号 + */ + fun logIfNeeded(msg: String, symbol: String) = if (isRunningOnSync) SLog.verbose(msg, symbol) else SLog.info(msg, symbol) + + /** + * 通过指定类型和条件查找依赖数组 + * @param condition 条件方法体 + * @return [DependencyMap] + */ + fun findByType(condition: DependenciesCondition) = when (updateMode.dependencyType) { + DependencyUpdateMode.DependencyType.ALL -> Dependencies.findAll(condition) + DependencyUpdateMode.DependencyType.PLUGINS -> Dependencies.findPlugins(condition) + DependencyUpdateMode.DependencyType.LIBRARIES -> Dependencies.findLibraries(condition) + } + if (Repositories.isEmpty()) return SLog.warn( + """ + Repositories is empty, ${SweetDependency.TAG} will stop auto update dependencies + This will cause Gradle fail to load dependencies, you must add some repositories and enable them + """.trimIndent() + ) + if (GradleHelper.isOfflineMode) SLog.warn("Gradle is in offline mode, some dependencies on online repositories will be ignored") + val isOnlyAutowireMode = updateMode.updateType == DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE + var currentIndex = 0 + var updPluginsCount = 0 + var updLbrariesCount = 0 + val needUpdateDependencies = mutableMapOf>() + findByType { _, artifact -> + artifact.version().isNoSpecific.not() && (artifact.versionRef.isBlank() && + ((updateMode.updateType == DependencyUpdateMode.UpdateType.UPDATE_ALL || + (updateMode.updateType == DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL && + (artifact.version().isOptional || artifact.version().isAutowire)) || + (updateMode.updateType == DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE && artifact.version().isAutowire)))) + }.apply { + if (isNotEmpty()) SLog.info("Starting ${when (updateMode.updateType) { + DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL -> "autowire and update $size optional dependencies" + DependencyUpdateMode.UpdateType.UPDATE_ALL -> "autowire and update all $size dependencies" + DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE -> "autowire $size dependencies" + }}", SLog.ANLZE) + forEach { (dependencyName, artifact) -> + val versionFilterExclusionList = artifact.versionFilter?.exclusionList() + ?: SweetDependencyConfigs.document.preferences().versionFilter.exclusionList() + fetchUpdate( + positionTagName = "${++currentIndex}/$size", + dependencyName = dependencyName, + currentVersion = artifact.version(), + alternateVersions = artifact.versions().values.toMutableList(), + isAutoUpdate = artifact.isAutoUpdate, + versionFilterExclusionList = versionFilterExclusionList, + repositories = artifact.repositories() + ) { newVersion -> + DependencyAutowireLogHelper.record(dependencyName, artifact.version(), newVersion) + artifact.updateVersion(newVersion) + needUpdateDependencies[dependencyName.current] = dependencyName to newVersion + when (dependencyName.type) { + DependencyName.Type.PLUGIN -> updPluginsCount++ + DependencyName.Type.LIBRARY -> updLbrariesCount++ + } + } + } + } + /** 找出所有版本引用依赖 - 为其设置版本 */ + needUpdateDependencies.forEach { (notation, dependencyData) -> + val alias = findByType { key, _ -> dependencyData.first == key }.single()?.value?.alias ?: "" + findByType { _, artifact -> + artifact.versionRef.isNotBlank() && (artifact.versionRef == notation || artifact.versionRef == alias) + }.forEach { (dependencyName, artifact) -> + artifact.updateVersion(dependencyData.second) + SLog.info("Link ${dependencyName.description} to ${dependencyData.first.description} version ${dependencyData.second}", SLog.LINK) + } + } + if (needUpdateDependencies.isNotEmpty()) { + SLog.info( + (if (isOnlyAutowireMode) "Autowired" else "Autowired and updated") + + " ${needUpdateDependencies.size} dependencies (plugins: $updPluginsCount, libraries: $updLbrariesCount)", SLog.DONE + ) + if (SweetDependencyConfigs.configs.isEnableDependenciesAutowireLog) + logIfNeeded(msg = "Autowiring logs have been automatically written to: ${DependencyAutowireLogHelper.logFile}", SLog.LINK) + SweetDependencyConfigs.documentMapping.updateDependencies(needUpdateDependencies) + if (isRunningOnSync.not()) SLog.warn( + """ + **************************** NOTICE **************************** + ${needUpdateDependencies.size} dependencies (plugins: $updPluginsCount, libraries: $updLbrariesCount) has been changed + You must to manually re-run Gradle Sync to apply those changes + **************************** NOTICE **************************** + """.trimIndent(), noTag = true + ) + Dependencies.refreshState(isOutdate = true) + } else logIfNeeded(msg = "No dependencies need to ${if (isOnlyAutowireMode) "autowire" else "autowire and update"}", SLog.DONE) + } + + /** + * 自动装配或更新当前依赖 + * @param positionTagName 当前位置标签名称 + * @param dependencyName 依赖名称 + * @param currentVersion 当前依赖版本 + * @param alternateVersions 备选依赖版本数组 + * @param isAutoUpdate 是否自动更新 + * @param versionFilterExclusionList 版本管理器排除列表 + * @param repositories 使用的存储库数组 + * @param result 回调新版本 + */ + private inline fun fetchUpdate( + positionTagName: String, + dependencyName: DependencyName, + currentVersion: DependencyVersion, + alternateVersions: MutableList, + isAutoUpdate: Boolean, + versionFilterExclusionList: VersionFilterDocument.ExclusionList, + repositories: RepositoryList, + result: (newVersion: DependencyVersion) -> Unit + ) { + val poms = mutableListOf() + val headerInfo = if (GradleHelper.isOfflineMode) "$positionTagName > OFFLINE" else "$positionTagName > NOT-FOUND" + val displayInfo = "${dependencyName.description} ${currentVersion.let{ if (it.isAutowire) "" else "version $it" }}" + (repositories.noEmpty() ?: Repositories.all()).apply { + forEachIndexed { index, entry -> + val currentVersionFilterExclusionList = versionFilterExclusionList.depends(currentVersion) + val availableVersions = mutableListOf() + poms.add(MavenParser.acquire(dependencyName, entry, currentVersion)) + if (index == lastIndex) poms.noEmpty() + ?.sortedByDescending { it.lastUpdated } + ?.let { if (it.all { e -> e.lastUpdated <= 0L }) it.sortedByDescending { e -> e.versions.size } else it } + ?.filter { it.versions.isNotEmpty() } + ?.let { linkedSetOf().apply { it.forEach { entity -> addAll(entity.versions) } }.toMutableList() } + ?.let { availableVersions.addAll(it); currentVersionFilterExclusionList.filter(it) } + ?.also { + if (currentVersionFilterExclusionList.isNotEmpty() && availableVersions.isNotEmpty() && it.isEmpty()) SLog.warn( + """ + ${dependencyName.description} available versions exclusion to nothing by version filter + All available versions have been filtered, if this is wrong, please reconfigure your version filter + You can disable internal version filter like following: + """.trimIndent() + "\n" + when (dependencyName.type) { + DependencyName.Type.PLUGIN -> """ + ${dependencyName.groupId}: + version-filter: + use-internal: false + ... + """.trimIndent() + DependencyName.Type.LIBRARY -> """ + ${dependencyName.groupId}: + ${dependencyName.artifactId}: + version-filter: + use-internal: false + ... + """.trimIndent() + } + "\n" + """ + Available versions: $availableVersions + Version filter: $currentVersionFilterExclusionList + """.trimIndent() + ) + }?.noEmpty()?.also { versions -> + resolveEachUpdate( + positionTagName, dependencyName, versions, currentVersion, + versions.first(), alternateVersions, isAutoUpdate, result + ) + } ?: if (GradleHelper.isOfflineMode) SLog.warn("$headerInfo $displayInfo") else SLog.error("$headerInfo $displayInfo") + } + } + } + + /** + * 自动装配或更新每项依赖 + * @param positionTagName 当前位置标签名称 + * @param dependencyName 依赖名称 + * @param versions 全部可用依赖版本数组 + * @param currentVersion 当前依赖版本 + * @param latestVersion 最新依赖版本 + * @param alternateVersions 备选依赖版本数组 + * @param isAutoUpdate 是否自动更新 + * @param result 回调新版本 + */ + private inline fun resolveEachUpdate( + positionTagName: String, + dependencyName: DependencyName, + versions: MutableList, + currentVersion: DependencyVersion, + latestVersion: DependencyVersion, + alternateVersions: MutableList, + isAutoUpdate: Boolean, + result: (newVersion: DependencyVersion) -> Unit + ) = when { + currentVersion.isAutowire.not() && versions.contains(currentVersion).not() -> + SLog.warn("$positionTagName > MISSING ${dependencyName.description} version $currentVersion, available are $versions") + currentVersion.isAutowire.not() && alternateVersions.isNotEmpty() && alternateVersions.all { versions.contains(it) }.not() -> + SLog.warn("$positionTagName > MISSING ${dependencyName.description} version alias $alternateVersions, available are $versions") + latestVersion != currentVersion -> when { + currentVersion.isAutowire -> { + SLog.info("$positionTagName > AUTOWIRE ${dependencyName.description} version $latestVersion", SLog.WIRE) + result(latestVersion) + } + isAutoUpdate -> { + SLog.info("$positionTagName > AUTO-UPDATE ${dependencyName.description} version $currentVersion -> $latestVersion", SLog.UP) + result(latestVersion) + } + else -> SLog.note("$positionTagName > UPDATE-AVAILABLE ${dependencyName.description} version $currentVersion -> $latestVersion", SLog.ROTATE) + } + else -> SLog.info("$positionTagName > UP-TO-DATE ${dependencyName.description} version $currentVersion", SLog.DONE) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/GradleTaskManager.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/GradleTaskManager.kt new file mode 100644 index 0000000..8af11bc --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/GradleTaskManager.kt @@ -0,0 +1,120 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/29. + */ +@file:Suppress("MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.manager + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.generated.SweetDependencyProperties +import com.highcapable.sweetdependency.gradle.factory.createTask +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.plugin.task.AutowireDependenciesTask +import com.highcapable.sweetdependency.plugin.task.AutowireLibrariesTask +import com.highcapable.sweetdependency.plugin.task.AutowirePluginsTask +import com.highcapable.sweetdependency.plugin.task.CreateDependenciesMigrationTemplateTask +import com.highcapable.sweetdependency.plugin.task.SweetDependencyDebugTask +import com.highcapable.sweetdependency.plugin.task.UpdateAllDependenciesTask +import com.highcapable.sweetdependency.plugin.task.UpdateAllLibrariesTask +import com.highcapable.sweetdependency.plugin.task.UpdateAllPluginsTask +import com.highcapable.sweetdependency.plugin.task.UpdateOptionalDependenciesTask +import com.highcapable.sweetdependency.plugin.task.UpdateOptionalLibrariesTask +import com.highcapable.sweetdependency.plugin.task.UpdateOptionalPluginsTask +import org.gradle.api.Project + +/** + * Gradle Task 管理类 + */ +internal object GradleTaskManager { + + /** Gradle Task 分组名称 */ + internal const val TASK_GROUP_NAME = SweetDependencyProperties.PROJECT_MODULE_NAME + + /** 创建依赖迁移模板 Gradle Task 名称 */ + internal const val CREATE_DEPENDENCIES_MIGRATION_TEMPLATE_TASK_NAME = "createDependenciesMigrationTemplate" + + /** 依赖自动装配、更新 (可选) (插件依赖 + 库依赖) Gradle Task 名称 */ + internal const val UPDATE_OPTIONAL_DEPENDENCIES_TASK_NAME = "updateOptionalDependencies" + + /** 依赖自动装配、更新 (全部) (插件依赖 + 库依赖) Gradle Task 名称 */ + internal const val UPDATE_ALL_DEPENDENCIES_TASK_NAME = "updateAllDependencies" + + /** 依赖自动装配 (插件依赖 + 库依赖) Gradle Task 名称 */ + internal const val AUTOWIRE_DEPENDENCIES_TASK_NAME = "autowireDependencies" + + /** 依赖自动装配、更新 (可选) (插件依赖) Gradle Task 名称 */ + internal const val UPDATE_OPTIONAL_PLUGINS_TASK_NAME = "updateOptionalPlugins" + + /** 依赖自动装配、更新 (全部) (插件依赖) Gradle Task 名称 */ + internal const val UPDATE_ALL_PLUGINS_TASK_NAME = "updateAllPlugins" + + /** 插件依赖自动装配 (插件依赖) Gradle Task 名称 */ + internal const val AUTOWIRE_PLUGINS_TASK_NAME = "autowirePlugins" + + /** 依赖自动装配、更新 (可选) (库依赖) Gradle Task 名称 */ + internal const val UPDATE_OPTIONAL_LIBRARIES_TASK_NAME = "updateOptionalLibraries" + + /** 依赖自动装配、更新 (全部) (库依赖) Gradle Task 名称 */ + internal const val UPDATE_ALL_LIBRARIES_TASK_NAME = "updateAllLibraries" + + /** 依赖自动装配 (库依赖) Gradle Task 名称 */ + internal const val AUTOWIRE_LIBRARIES_TASK_NAME = "autowireLibraries" + + /** 调试 Gradle Task 名称 */ + internal const val SWEET_DEPENDENCY_DEBUG_TASK_NAME = "sweetDependencyDebug" + + /** + * 当前正在运行的是否为 [SweetDependency] 内部 Gradle Task + * @return [Boolean] + */ + internal val isInternalRunningTask + get() = GradleHelper.runningTaskNames.orEmpty().any { + it == CREATE_DEPENDENCIES_MIGRATION_TEMPLATE_TASK_NAME || + it == UPDATE_OPTIONAL_DEPENDENCIES_TASK_NAME || + it == UPDATE_ALL_DEPENDENCIES_TASK_NAME || + it == AUTOWIRE_DEPENDENCIES_TASK_NAME || + it == UPDATE_OPTIONAL_PLUGINS_TASK_NAME || + it == UPDATE_ALL_PLUGINS_TASK_NAME || + it == AUTOWIRE_PLUGINS_TASK_NAME || + it == UPDATE_OPTIONAL_LIBRARIES_TASK_NAME || + it == UPDATE_ALL_LIBRARIES_TASK_NAME || + it == AUTOWIRE_LIBRARIES_TASK_NAME || + it == SWEET_DEPENDENCY_DEBUG_TASK_NAME + } + + /** + * 注册 [SweetDependency] 全部 Gradle Task + * @param rootProject 根项目 + */ + internal fun register(rootProject: Project) { + rootProject.createTask(TASK_GROUP_NAME, CREATE_DEPENDENCIES_MIGRATION_TEMPLATE_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, UPDATE_OPTIONAL_DEPENDENCIES_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, UPDATE_ALL_DEPENDENCIES_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, AUTOWIRE_DEPENDENCIES_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, UPDATE_OPTIONAL_PLUGINS_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, UPDATE_ALL_PLUGINS_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, AUTOWIRE_PLUGINS_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, UPDATE_OPTIONAL_LIBRARIES_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, UPDATE_ALL_LIBRARIES_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, AUTOWIRE_LIBRARIES_TASK_NAME) + rootProject.createTask(TASK_GROUP_NAME, SWEET_DEPENDENCY_DEBUG_TASK_NAME) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/RepositoryManager.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/RepositoryManager.kt new file mode 100644 index 0000000..4de2125 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/RepositoryManager.kt @@ -0,0 +1,131 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/6. + */ +package com.highcapable.sweetdependency.manager + +import com.highcapable.sweetdependency.document.PreferencesDocument +import com.highcapable.sweetdependency.document.RepositoryDocument +import com.highcapable.sweetdependency.exception.SweetDependencyUnresolvedException +import com.highcapable.sweetdependency.manager.const.AdditionalRepositories +import com.highcapable.sweetdependency.manager.content.Repositories +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.noBlank +import com.highcapable.sweetdependency.utils.noEmpty +import com.highcapable.sweetdependency.utils.toFile +import org.gradle.api.artifacts.dsl.RepositoryHandler +import org.gradle.api.artifacts.repositories.ArtifactRepository +import org.gradle.api.artifacts.repositories.AuthenticationSupported +import org.gradle.api.artifacts.repositories.UrlArtifactRepository +import org.gradle.api.initialization.Settings +import java.net.URI +import org.gradle.api.initialization.resolve.RepositoriesMode as GradleRepositoriesMode + +/** + * 存储库装配管理类 + */ +internal object RepositoryManager { + + /** + * 生成并应用存储库数组 + * @param settings 当前设置 + */ + internal fun generateAndApply(settings: Settings) { + val repositories = SweetDependencyConfigs.document.repositories() + Repositories.generate(repositories) + /** + * 应用存储库数组到 Gradle + * @param isPlugins 当前应用类型是否为插件依赖 + */ + fun RepositoryHandler.apply(isPlugins: Boolean) = repositories.forEach { + if (it.isIncludeScope(isPlugins)) when (it.nodeType) { + RepositoryDocument.RepositoryType.GOOGLE -> google { applyToArtifact(it) } + RepositoryDocument.RepositoryType.MAVEN_CENTRAL -> mavenCentral { applyToArtifact(it) } + RepositoryDocument.RepositoryType.MAVEN_LOCAL -> mavenLocal { applyToArtifact(it) } + RepositoryDocument.RepositoryType.MAVEN -> maven { applyToArtifact(it) } + RepositoryDocument.RepositoryType.GRADLE_PLUGIN_PORTAL -> gradlePluginPortal { applyToArtifact(it) } + else -> {} + } + } + settings.pluginManagement { + this.repositories.clear() + this.repositories.apply(isPlugins = true) + } + settings.dependencyResolutionManagement { + this.repositoriesMode.set(when (SweetDependencyConfigs.document.preferences().repositoriesMode) { + PreferencesDocument.RepositoriesMode.PREFER_PROJECT -> GradleRepositoriesMode.PREFER_PROJECT + PreferencesDocument.RepositoriesMode.PREFER_SETTINGS -> GradleRepositoriesMode.PREFER_SETTINGS + PreferencesDocument.RepositoriesMode.FAIL_ON_PROJECT_REPOS -> GradleRepositoriesMode.FAIL_ON_PROJECT_REPOS + }) + this.repositories.clear() + this.repositories.apply(isPlugins = false) + } + } + + /** + * 应用存储库到 [ArtifactRepository] + * @param document 存储库配置项文档实体 + */ + private fun ArtifactRepository.applyToArtifact(document: RepositoryDocument) { + document.nodeName.noBlank()?.also { docName -> this.name = docName } + if (this is AuthenticationSupported && document.credentials.let { it.username.isNotBlank() || it.password.isNotBlank() }) + credentials { this.username = document.credentials.username; this.password = document.credentials.password } + if (document.content.isEmpty().not()) content { + /** + * 使用 ":" 分割字符串 + * @param size 期望的个数 + * @param result 回调每项 + * @return [List]<[String]> + * @throws SweetDependencyUnresolvedException 如果 [size] 不是期望的个数 + */ + fun List.forEachParams(size: Int, result: (List) -> Unit) = forEach { + result(it.split(":").also { e -> if (e.size != size) SError.make("Missing argument in content configuration") }) + } + document.content.exclude.also { + it.group().noEmpty()?.forEach { e -> excludeGroup(e) } + it.groupAndSubgroups().noEmpty()?.forEach { e -> excludeGroupAndSubgroups(e) } + it.groupByRegex().noEmpty()?.forEach { e -> excludeGroupByRegex(e) } + it.module().noEmpty()?.forEachParams(size = 2) { e -> excludeModule(e[0], e[1]) } + it.moduleByRegex().noEmpty()?.forEachParams(size = 2) { e -> excludeModuleByRegex(e[0], e[1]) } + it.version().noEmpty()?.forEachParams(size = 3) { e -> excludeVersion(e[0], e[1], e[2]) } + it.versionByRegex().noEmpty()?.forEachParams(size = 3) { e -> excludeVersionByRegex(e[0], e[1], e[2]) } + } + document.content.include.also { + it.group().noEmpty()?.forEach { e -> includeGroup(e) } + it.groupAndSubgroups().noEmpty()?.forEach { e -> includeGroupAndSubgroups(e) } + it.groupByRegex().noEmpty()?.forEach { e -> includeGroupByRegex(e) } + it.module().noEmpty()?.forEachParams(size = 2) { e -> includeModule(e[0], e[1]) } + it.moduleByRegex().noEmpty()?.forEachParams(size = 2) { e -> includeModuleByRegex(e[0], e[1]) } + it.version().noEmpty()?.forEachParams(size = 3) { e -> includeVersion(e[0], e[1], e[2]) } + it.versionByRegex().noEmpty()?.forEachParams(size = 3) { e -> includeVersionByRegex(e[0], e[1], e[2]) } + } + } + if (document.nodeType != RepositoryDocument.RepositoryType.MAVEN_LOCAL) + (document.url.noBlank()?.let { + /** JCenter 已经终止服务 - 不确定其镜像源是否也会同时关闭 */ + if (it == AdditionalRepositories.ALIYUN_JCENTER_MIRROR) + SLog.warn("JCenter has shut down, and its mirror server may stop soon, please transfer to other repositories") + URI.create(it) + } ?: document.path.noBlank()?.toFile()?.toURI()) + ?.also { uri -> if (this is UrlArtifactRepository) this.url = uri } + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/AdditionalRepositories.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/AdditionalRepositories.kt new file mode 100644 index 0000000..7d04de6 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/AdditionalRepositories.kt @@ -0,0 +1,82 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/16. + */ +package com.highcapable.sweetdependency.manager.const + +/** + * 附加常用第三方存储库 + */ +internal object AdditionalRepositories { + + /** 中央存储库 (分流) */ + const val MAVEN_CENTRAL_BRANCH = "https://repo1.maven.org/maven2" + + /** JitPack */ + const val JITPACK = "https://www.jitpack.io" + + /** OSS Release */ + const val SONATYPE_OSS_RELEASES = "https://s01.oss.sonatype.org/content/repositories/releases" + + /** OSS Snapshots */ + const val SONATYPE_OSS_SNAPSHOTS = "https://s01.oss.sonatype.org/content/repositories/snapshots" + + /** 阿里云 Google 存储库镜像 */ + const val ALIYUN_GOOGLE_MIRROR = "https://maven.aliyun.com/repository/google" + + /** 阿里云中央存储库镜像 */ + const val ALIYUN_MAVEN_CENTRAL_MIRROR = "https://maven.aliyun.com/repository/central" + + /** 阿里云公共存储库镜像 */ + const val ALIYUN_MAVEN_PUBLIC_MIRROR = "https://maven.aliyun.com/repository/public" + + /** 阿里云 JCenter 镜像 */ + const val ALIYUN_JCENTER_MIRROR = "https://maven.aliyun.com/nexus/content/repositories/jcenter" + + /** + * 存储库简洁名称定义类 + */ + internal object Name { + + /** 中央存储库 (分流) */ + const val MAVEN_CENTRAL_BRANCH = "maven-central-branch" + + /** JitPack */ + const val JITPACK = "jit-pack" + + /** OSS Release */ + const val SONATYPE_OSS_RELEASES = "sonatype-oss-releases" + + /** OSS Snapshots */ + const val SONATYPE_OSS_SNAPSHOTS = "sonatype-oss-snapshots" + + /** 阿里云 Google 存储库镜像 */ + const val ALIYUN_GOOGLE_MIRROR = "aliyun-google-mirror" + + /** 阿里云中央存储库镜像 */ + const val ALIYUN_MAVEN_CENTRAL_MIRROR = "aliyun-maven-central-mirror" + + /** 阿里云公共存储库镜像 */ + const val ALIYUN_MAVEN_PUBLIC_MIRROR = "aliyun-maven-public-mirror" + + /** 阿里云 JCenter 镜像 */ + const val ALIYUN_JCENTER_MIRROR = "aliyun-jcenter-mirror" + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/InternalRepositories.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/InternalRepositories.kt new file mode 100644 index 0000000..37f501b --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/const/InternalRepositories.kt @@ -0,0 +1,64 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/18. + */ +package com.highcapable.sweetdependency.manager.const + +/** + * 内置存储库 + */ +internal object InternalRepositories { + + /** 本地 Maven 存储库相对路径 */ + const val MAVEN_LOCAL_RELATIVE_PATH = ".m2/repository" + + /** Google Maven */ + const val GOOGLE = "https://dl.google.com/dl/android/maven2" + + /** 中央存储库 */ + const val MAVEN_CENTRAL = "https://repo.maven.apache.org/maven2" + + /** Gradle Plugin 存储库 */ + const val GRADLE_PLUGIN_PORTAL = "https://plugins.gradle.org/m2" + + /** + * 存储库简洁名称定义类 + */ + internal object Name { + + /** Google Maven */ + const val GOOGLE = "google" + + /** 中央存储库 */ + const val MAVEN_CENTRAL = "maven-central" + + /** 本地 Maven 存储库 */ + const val MAVEN_LOCAL = "maven-local" + + /** Maven 存储库 */ + const val MAVEN = "maven" + + /** Ivy 存储库 */ + const val IVY = "ivy" + + /** Gradle Plugin 存储库 */ + const val GRADLE_PLUGIN_PORTAL = "gradle-plugin-portal" + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Dependencies.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Dependencies.kt new file mode 100644 index 0000000..d4576c8 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Dependencies.kt @@ -0,0 +1,150 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/25. + */ +@file:Suppress("unused", "MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.manager.content + +import com.highcapable.sweetdependency.document.DependencyDocument +import com.highcapable.sweetdependency.document.factory.DependenciesCondition +import com.highcapable.sweetdependency.document.factory.DependencyMap +import com.highcapable.sweetdependency.gradle.entity.DependencyName +import com.highcapable.sweetdependency.utils.filter + +/** + * 已添加的依赖管理类 + */ +internal object Dependencies { + + /** 当前已添加的全部插件依赖数组 */ + private val pluginEntries = mutableMapOf() + + /** 当前已添加的全部库依赖数组 */ + private val libraryEntries = mutableMapOf() + + /** 标识当前是否为已过期状态 */ + private var isMarkedOutdate = true + + /** + * 获取当前过期状态 + * @return [Boolean] + */ + internal val isOutdate get() = isMarkedOutdate + + /** + * 刷新当前缓存数据状态 + * @param isOutdate 是否标识为已过期 + */ + internal fun refreshState(isOutdate: Boolean) { + isMarkedOutdate = isOutdate + } + + /** + * 获取当前全部数组 + * @return [DependencyMap] + */ + internal fun all() = (pluginEntries + libraryEntries).toMutableMap() + + /** + * 获取当前插件依赖数组 + * @return [DependencyMap] + */ + internal fun plugins() = pluginEntries + + /** + * 获取当前库依赖数组 + * @return [DependencyMap] + */ + internal fun libraries() = libraryEntries + + /** + * 当前是否存在依赖 + * @return [Boolean] + */ + internal fun isEmpty() = all().isEmpty() + + /** + * 当前是否不存在依赖 + * @return [Boolean] + */ + internal fun isNotEmpty() = isEmpty().not() + + /** + * 查找是否存在指定的依赖 + * @param condition 条件方法体 + * @return [Boolean] + */ + internal inline fun hasAll(condition: DependenciesCondition) = findAll { key, value -> condition(key, value) }.isNotEmpty() + + /** + * 查找是否存在指定的插件依赖 + * @param condition 条件方法体 + * @return [Boolean] + */ + internal inline fun hasPlugin(condition: DependenciesCondition) = findPlugins { key, value -> condition(key, value) }.isNotEmpty() + + /** + * 查找是否存在指定的库依赖 + * @param condition 条件方法体 + * @return [Boolean] + */ + internal inline fun hasLibrary(condition: DependenciesCondition) = findLibraries { key, value -> condition(key, value) }.isNotEmpty() + + /** + * 查找指定条件的依赖数组 + * @param condition 条件方法体 + * @return [DependencyMap] + */ + internal inline fun findAll(condition: DependenciesCondition) = all().filter { condition(it.key, it.value) } + + /** + * 查找指定条件的插件依赖数组 + * @param condition 条件方法体 + * @return [DependencyMap] + */ + internal inline fun findPlugins(condition: DependenciesCondition) = plugins().filter { condition(it.key, it.value) } + + /** + * 查找指定条件的库依赖数组 + * @param condition 条件方法体 + * @return [DependencyMap] + */ + internal inline fun findLibraries(condition: DependenciesCondition) = libraries().filter { condition(it.key, it.value) } + + /** + * 生成依赖数组 + * @param plugins 插件依赖数组 + * @param libraries 依赖数组 + */ + internal fun generate(plugins: DependencyMap, libraries: DependencyMap) { + if (plugins == plugins() && libraries == libraries()) return refreshState(isOutdate = false) + resetData() + plugins().putAll(plugins) + libraries().putAll(libraries) + } + + /** 重置 (清空) 当前依赖数组 */ + private fun resetData() { + pluginEntries.clear() + libraryEntries.clear() + refreshState(isOutdate = true) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Repositories.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Repositories.kt new file mode 100644 index 0000000..4e53c1f --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/content/Repositories.kt @@ -0,0 +1,93 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/16. + */ +package com.highcapable.sweetdependency.manager.content + +import com.highcapable.sweetdependency.document.RepositoryDocument +import com.highcapable.sweetdependency.document.factory.RepositoryList +import com.highcapable.sweetdependency.manager.const.AdditionalRepositories +import com.highcapable.sweetdependency.manager.const.InternalRepositories +import com.highcapable.sweetdependency.utils.parseFileSeparator + +/** + * 已添加的存储库管理类 + */ +internal object Repositories { + + /** 默认本地 Maven 存储库路径 */ + internal val defaultMavenLocalPath by lazy { + "${System.getProperty("user.home")}/${InternalRepositories.MAVEN_LOCAL_RELATIVE_PATH}".parseFileSeparator() + } + + /** 默认版本过滤器排除列表数组 */ + internal val defaultVersionFilterExclusionList = arrayOf("-beta", "-alpha", "-dev", "-canary", "-pre", "-rc", "-ga", "-snapshot") + + /** 当前已添加的全部存储库数组 */ + private val entries = mutableListOf() + + /** + * 获取当前存储库数组 + * @return [MutableList]<[RepositoryDocument]> + */ + internal fun all() = entries + + /** + * 当前是否存在存储库 + * @return [Boolean] + */ + internal fun isEmpty() = all().isEmpty() + + /** + * 当前是否不存在存储库 + * @return [Boolean] + */ + internal fun isNotEmpty() = isEmpty().not() + + /** + * 生成存储库数组 + * @param repositories 存储库数组 + */ + internal fun generate(repositories: RepositoryList) { + if (repositories == all()) return + resetData() + all().addAll(repositories) + } + + /** + * 查找可用的存储库名 URL 地址 + * @param name 存储库名 + * @return [String] + */ + internal fun findAdditional(name: String) = when (name) { + AdditionalRepositories.Name.MAVEN_CENTRAL_BRANCH -> AdditionalRepositories.MAVEN_CENTRAL_BRANCH + AdditionalRepositories.Name.JITPACK -> AdditionalRepositories.JITPACK + AdditionalRepositories.Name.SONATYPE_OSS_RELEASES -> AdditionalRepositories.SONATYPE_OSS_RELEASES + AdditionalRepositories.Name.SONATYPE_OSS_SNAPSHOTS -> AdditionalRepositories.SONATYPE_OSS_SNAPSHOTS + AdditionalRepositories.Name.ALIYUN_GOOGLE_MIRROR -> AdditionalRepositories.ALIYUN_GOOGLE_MIRROR + AdditionalRepositories.Name.ALIYUN_MAVEN_CENTRAL_MIRROR -> AdditionalRepositories.ALIYUN_MAVEN_CENTRAL_MIRROR + AdditionalRepositories.Name.ALIYUN_MAVEN_PUBLIC_MIRROR -> AdditionalRepositories.ALIYUN_MAVEN_PUBLIC_MIRROR + AdditionalRepositories.Name.ALIYUN_JCENTER_MIRROR -> AdditionalRepositories.ALIYUN_JCENTER_MIRROR + else -> "" + } + + /** 重置 (清空) 当前存储库数组 */ + private fun resetData() = entries.clear() +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyAutowireLogHelper.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyAutowireLogHelper.kt new file mode 100644 index 0000000..03435e3 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyAutowireLogHelper.kt @@ -0,0 +1,61 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/21. + */ +package com.highcapable.sweetdependency.manager.helper + +import com.highcapable.sweetdependency.environment.Environment +import com.highcapable.sweetdependency.gradle.entity.DependencyName +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.utils.debug.SLog +import java.text.SimpleDateFormat +import java.util.* + +/** + * 依赖自动装配日志工具类 + */ +internal object DependencyAutowireLogHelper { + + /** 当前日志文件名 */ + private const val LOG_FILE_NAME = "dependencies-autowire.log" + + /** + * 当前日志文件 + * @return [String] + */ + internal val logFile get() = Environment.memoryDir(LOG_FILE_NAME) + + /** + * 记录当前依赖改变 + * @param dependencyName 依赖名称 + * @param fromVersion 起始版本 + * @param toVersion 最终版本 + */ + internal fun record(dependencyName: DependencyName, fromVersion: DependencyVersion, toVersion: DependencyVersion) { + if (SweetDependencyConfigs.configs.isEnableDependenciesAutowireLog.not()) return + val versionInfo = if (fromVersion.isAutowire) + "autowire version \"$toVersion\"" + else "update version \"$fromVersion\" -> \"$toVersion\"" + logFile.runCatching { + appendText("[${SimpleDateFormat.getDateTimeInstance().format(Date())}] ${dependencyName.description} $versionInfo\n") + }.onFailure { SLog.error("Failed to written log file \"$logFile\"\n$it") } + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyDeployHelper.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyDeployHelper.kt new file mode 100644 index 0000000..803bb4d --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/helper/DependencyDeployHelper.kt @@ -0,0 +1,190 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/13. + */ +package com.highcapable.sweetdependency.manager.helper + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.environment.Environment +import com.highcapable.sweetdependency.generated.SweetDependencyProperties +import com.highcapable.sweetdependency.gradle.delegate.ProjectTransaction +import com.highcapable.sweetdependency.gradle.delegate.entity.ExternalDependencyDelegate +import com.highcapable.sweetdependency.gradle.factory.addDependencyToBuildScript +import com.highcapable.sweetdependency.gradle.factory.applyPlugin +import com.highcapable.sweetdependency.gradle.factory.getOrCreate +import com.highcapable.sweetdependency.gradle.factory.loadBuildScriptClass +import com.highcapable.sweetdependency.manager.GradleTaskManager +import com.highcapable.sweetdependency.manager.content.Dependencies +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.generator.LibrariesAccessorsGenerator +import com.highcapable.sweetdependency.utils.camelcase +import com.highcapable.sweetdependency.utils.code.entity.MavenPomData +import com.highcapable.sweetdependency.utils.code.factory.compile +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.isEmpty +import com.highcapable.sweetdependency.utils.isValidZip +import com.highcapable.sweetdependency.utils.single +import com.highcapable.sweetdependency.utils.toAbsoluteFilePaths +import com.highcapable.sweetdependency.utils.toFile +import org.gradle.api.InvalidUserDataException +import org.gradle.api.Project +import org.gradle.api.initialization.Settings +import org.gradle.api.plugins.ExtensionAware +import org.gradle.plugin.use.PluginDependenciesSpec +import org.gradle.plugin.use.PluginDependencySpec + +/** + * 依赖部署工具类 + */ +internal object DependencyDeployHelper { + + /** 库依赖可访问 [Class] 标识名称 */ + private const val ACCESSORS_NAME = "dependencies-accessors" + + /** 库依赖可访问 [Class] 生成目录 */ + private val accessorsDir = Environment.memoryDir(ACCESSORS_NAME) + + /** 库依赖可访问 [Class] 虚拟依赖数据 */ + private val accessorsPomData = MavenPomData(SweetDependencyProperties.PROJECT_GROUP_NAME, ACCESSORS_NAME, SweetDependency.VERSION) + + /** 库依赖可访问 [Class] 生成实例 */ + private val accessorsGenerator = LibrariesAccessorsGenerator() + + /** + * 生成 Version Catalogs + * + * 由于 Gradle API 限制 - 无法针对插件依赖进行自定义 - 所以间接使用 Version Catalogs 生成 + * @param settings 当前设置 + */ + internal fun generateVersionCatalogs(settings: Settings) { + val pluginsNamespace = SweetDependencyConfigs.document.preferences().dependenciesNamespace.plugins() + runCatching { + settings.dependencyResolutionManagement.versionCatalogs.create(pluginsNamespace) { + Dependencies.plugins().forEach { (dependencyName, artifact) -> + if (artifact.version().isNoSpecific) return@forEach SLog.warn( + """ + You must specific a version for plugin "$dependencyName" or use Gradle's internal plugin function instead it + This problem came from the version catalogs rules, so will not generate "$dependencyName" + You can also use "autowire("$dependencyName")" to solve this problem + You will see this warning every time, because we don't recommend declaring plugins without version + """.trimIndent() + ) + if (artifact.version().isAutowire) SError.make( + """ + This plugin "$dependencyName" is not autowired and cannot be generate + You can try the following solutions to resolve this problem: + 1. Manually re-run Gradle Sync (make sure "autowire-on-sync-mode" not be "OFF") + 2. Manually run "${GradleTaskManager.AUTOWIRE_PLUGINS_TASK_NAME}" task and re-run Gradle Sync + 3. Fill an existing version for plugin "$dependencyName" and re-run Gradle Sync + If you get this error again after doing the above, maybe the currently set repositories cannot find this plugin + """.trimIndent() + ) + val deployedName = dependencyName.ambiguousName(symbol = "-", isReplaceFirstChar = true, isLowerCase = false) + plugin(deployedName, dependencyName.current).version(artifact.version().deployed) + artifact.versions().forEach { (name, version) -> + plugin("$deployedName-${name.camelcase()}", dependencyName.current).version(version.deployed) + if (artifact.alias.isNotBlank()) + plugin("${artifact.alias}-${name.camelcase()}", dependencyName.current).version(version.deployed) + } + if (artifact.alias.isNotBlank()) plugin(artifact.alias, dependencyName.current).version(artifact.version().deployed) + } + } + }.onFailure { + when (it) { + is InvalidUserDataException -> SError.make("Illegal name called in Gradle version catalogs", it) + else -> throw it + } + } + } + + /** + * 处理库依赖可访问 [Class] 装载 + * @param rootProject 当前根项目 + */ + internal fun resolveAccessors(rootProject: Project) { + if (Dependencies.isOutdate || accessorsDir.isEmpty()) + accessorsGenerator.build().compile(accessorsPomData, accessorsDir.absolutePath, accessorsGenerator.compileStubFiles) + rootProject.addDependencyToBuildScript(accessorsDir.absolutePath, accessorsPomData) + } + + /** + * 部署库依赖可访问 [Class] + * @param project 当前项目 + * @param extension 当前扩展实例 + */ + internal fun deployAccessors(project: Project, extension: ExtensionAware) = + accessorsGenerator.librariesClasses.forEach { (name, className) -> + extension.getOrCreate(name, project.loadBuildScriptClass(className)) + } + + /** + * 处理自动装配的插件依赖 + * @param spec 当前插件依赖声明对象 + * @param params 当前参数数组 + * @return [PluginDependencySpec] + */ + internal fun resolveAutowire(spec: PluginDependenciesSpec, params: Array): PluginDependencySpec { + if (params.isEmpty()) SError.make("The autowire function need a param to resolve plugin") + if (params.size > 2) SError.make("The autowire function currently does not support more than 2 params of plugin") + return when (params[0]) { + is String -> { + val entry = Dependencies.findPlugins { key, value -> params[0] == key.current || params[0] == value.alias }.single() + ?: SError.make("Failed to resolve plugin \"${params[0]}\", also tried alias") + val version = if (params.size == 2) + entry.value.versions()[params[1]] ?: SError.make("Failed to resolve plugin \"${params[0]}\" with version alias \"${params[1]}\"") + else entry.value.version() + spec.applyPlugin(entry.key.current, version.deployed) + } + else -> spec.applyPlugin(params[0]) + } + } + + /** + * 处理自动装配的依赖 + * @param project 当前项目 - 默认为 [ProjectTransaction.current] + * @param params 当前参数数组 + * @return [Any] + */ + internal fun resolveAutowire(project: Project = ProjectTransaction.current, params: Array): Any { + if (params.isEmpty()) SError.make("The autowire function need a param to resolve library") + return if (params[0].let { it.contains("/").not() && it.contains("\\").not() && it.startsWith("(").not() && it.endsWith(")").not() }) { + if (params.size > 2) SError.make("The autowire function currently does not support more than 2 params of external dependency") + val entry = Dependencies.findLibraries { key, value -> params[0] == key.current || params[0] == value.alias }.single() + ?: SError.make("Failed to resolve library \"${params[0]}\", also tried alias") + val version = if (params.size == 2) + entry.value.versions()[params[1]] ?: SError.make("Failed to resolve library \"${params[0]}\" with version alias \"${params[1]}\"") + else entry.value.version() + ExternalDependencyDelegate(entry.key.groupId, entry.key.artifactId, version.deployed) + } else mutableListOf().let { + params.forEach { param -> + val relativePath = if (param.startsWith("(") && param.endsWith(")")) param.replace("(", "").replace(")", "") else param + it.addAll(relativePath.toAbsoluteFilePaths(project.projectDir.absolutePath).onEach { path -> + if (path.toFile().isValidZip().not()) SError.make( + """ + Invalid library at file path $path + The file collection dependency needs to be a valid zip package + """.trimIndent() + ) + }) + }; project.files(it.toTypedArray()) + } + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/MavenParser.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/MavenParser.kt new file mode 100644 index 0000000..2b797fa --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/MavenParser.kt @@ -0,0 +1,82 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/6. + */ +package com.highcapable.sweetdependency.manager.maven + +import com.highcapable.sweetdependency.document.RepositoryDocument +import com.highcapable.sweetdependency.gradle.entity.DependencyName +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.manager.maven.entity.MavenMetadata +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.executeFileBody +import com.highcapable.sweetdependency.utils.executeUrlBody +import com.highcapable.sweetdependency.utils.noEmpty +import org.xml.sax.InputSource +import java.io.StringReader +import javax.xml.parsers.DocumentBuilderFactory + +/** + * Maven 解析器工具类 + */ +internal object MavenParser { + + /** 依赖配置文件名 */ + private const val METADATA_FILE_NAME = "maven-metadata.xml" + + /** 依赖配置文件名 (本地) */ + private const val METADATA_LOCAL_FILE_NAME = "maven-metadata-local.xml" + + /** + * 通过依赖全称使用指定存储库得到 [MavenMetadata] 实体 + * @param dependencyName 依赖名称 + * @param repo 当前存储库实体 + * @param currentVersion 当前依赖版本 + * @return [MavenMetadata] + */ + internal fun acquire(dependencyName: DependencyName, repo: RepositoryDocument, currentVersion: DependencyVersion): MavenMetadata { + val headerUrlOrPath = "${repo.url.ifBlank { repo.path }}/${dependencyName.urlName}/" + val isIncludeScope = repo.isIncludeScope(dependencyName.type == DependencyName.Type.PLUGIN) + /** 离线模式下不会自动装配、更新在线依赖 */ + if (isIncludeScope && GradleHelper.isOfflineMode) return MavenMetadata() + return when { + repo.url.isNotBlank() -> "$headerUrlOrPath$METADATA_FILE_NAME".executeUrlBody(repo.credentials.username, repo.credentials.password) + repo.path.isNotBlank() -> "$headerUrlOrPath$METADATA_LOCAL_FILE_NAME".executeFileBody() + else -> SError.make("Could not resolve this repository \"${repo.nodeName}\"") + }.trim().toMetadata(currentVersion) + } + + /** + * 解析 [METADATA_FILE_NAME]、[METADATA_LOCAL_FILE_NAME] 内容到 [MavenMetadata] 实体 + * @param currentVersion 当前依赖版本 + * @return [MavenMetadata] + */ + private fun String.toMetadata(currentVersion: DependencyVersion) = runCatching { + if ((contains("")).not() || endsWith("").not()) return@runCatching MavenMetadata() + DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(InputSource(StringReader(this))).let { document -> + val lastUpdated = document.getElementsByTagName("lastUpdated").item(0)?.textContent?.toLongOrNull() ?: 0L + val versionNodeList = document.getElementsByTagName("version") + val versions = mutableListOf() + for (i in 0..versionNodeList.length) versionNodeList.item(i)?.textContent?.also { versions.add(currentVersion.clone(it)) } + MavenMetadata(versions.noEmpty()?.reversed()?.toMutableList() ?: mutableListOf(), lastUpdated) + } + }.getOrNull() ?: MavenMetadata() +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/entity/MavenMetadata.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/entity/MavenMetadata.kt new file mode 100644 index 0000000..4ebb496 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/maven/entity/MavenMetadata.kt @@ -0,0 +1,34 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/6. + */ +package com.highcapable.sweetdependency.manager.maven.entity + +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion + +/** + * Maven Metadata 实体 + * @param versions 版本数组 + * @param lastUpdated 最后更新时间戳 + */ +internal data class MavenMetadata( + internal var versions: MutableList = mutableListOf(), + internal var lastUpdated: Long = 0L +) \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/DependencyMigrationTemplateTransaction.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/DependencyMigrationTemplateTransaction.kt new file mode 100644 index 0000000..08334d1 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/DependencyMigrationTemplateTransaction.kt @@ -0,0 +1,110 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/1. + */ +package com.highcapable.sweetdependency.manager.transaction + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.document.DependencyDocument +import com.highcapable.sweetdependency.document.RootConfigDocument +import com.highcapable.sweetdependency.gradle.entity.DependencyVersion +import com.highcapable.sweetdependency.gradle.factory.fullName +import com.highcapable.sweetdependency.gradle.factory.libraries +import com.highcapable.sweetdependency.gradle.factory.plugins +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.gradle.wrapper.type.LibraryDependencyType +import com.highcapable.sweetdependency.manager.GradleTaskManager +import com.highcapable.sweetdependency.manager.content.Dependencies +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.parseFileSeparator +import com.highcapable.sweetdependency.utils.toFile +import com.highcapable.sweetdependency.utils.yaml.Yaml + +/** + * 依赖迁移模版管理类 + */ +internal object DependencyMigrationTemplateTransaction { + + /** 模板文件头部内容 */ + private const val TEMPLATE_FILE_HEADER_CONTENT = """ + # SweetDependency project configuration template file + # Template files are automatically generated using Gradle task "${GradleTaskManager.CREATE_DEPENDENCIES_MIGRATION_TEMPLATE_TASK_NAME}" + # The automatically generated configuration is determined according to your project + # Please adjust these contents at any time in actual use, the generated content is for reference only, and its availability is unknown + # You can copy the content of the corresponding node in the template file to the project configuration file, and then delete this file + # You can visit ${SweetDependency.PROJECT_URL} for more help + # + # SweetDependency 项目配置模板文件 + # 模版文件是使用 Gradle Task "${GradleTaskManager.CREATE_DEPENDENCIES_MIGRATION_TEMPLATE_TASK_NAME}" 自动生成的 + # 自动生成的配置根据你的项目决定,请在实际使用中随时调整这些内容,生成的内容仅供参考,其可用性未知 + # 你可以复制模板文件中对应节点的内容到项目配置文件,然后删除此文件 + # 你可以前往 ${SweetDependency.PROJECT_URL} 以获得更多帮助 + """ + + /** 模板文件扩展名 */ + private const val TEMPLATE_FILE_EXT_NAME = "template.yaml" + + /** 模板文件头部内容 */ + private val templateFileHeaderContent = TEMPLATE_FILE_HEADER_CONTENT.trimIndent() + + /** 排除的部分内置插件名称前缀数组 */ + private val exclusionPluginPrefixs = arrayOf("org.gradle", "com.android.internal") + + /** 生成模板使用的文档实例 */ + private val document = RootConfigDocument() + + /** 创建模版 */ + internal fun createTemplate() { + SLog.info("Starting analyze projects dependencies structure", SLog.ANLZE) + GradleHelper.allProjects.forEach { subProject -> + subProject.plugins().onEach { + if (exclusionPluginPrefixs.any { prefix -> it.id.startsWith(prefix) }) return@onEach + if (Dependencies.hasPlugin { key, _ -> key.current == it.id }) return@onEach + if (document.plugins == null) document.plugins = mutableMapOf() + val declareDocument = DependencyDocument(version = DependencyVersion.AUTOWIRE_VERSION_NAME) + document.plugins?.set(it.id, declareDocument) + }.apply { if (isNotEmpty()) SLog.info("Found $size plugins in project \"${subProject.fullName}\"", SLog.LINK) } + subProject.libraries().onEach { + if (Dependencies.hasLibrary { key, _ -> key.current == it.toString() }) return@onEach + if (document.libraries == null) document.libraries = mutableMapOf() + if (it.type == LibraryDependencyType.EXTERNAL) document.libraries?.also { entities -> + if (entities[it.groupId] == null) entities[it.groupId] = mutableMapOf() + val declareDocument = DependencyDocument(version = it.version.existed) + entities[it.groupId]?.set(it.artifactId, declareDocument) + } + }.apply { if (isNotEmpty()) SLog.info("Found $size libraries in project \"${subProject.fullName}\"", SLog.LINK) } + }; saveTemplateFile() + } + + /** 保存模版到文件 */ + private fun saveTemplateFile() { + if (document.plugins?.isEmpty() == true) document.plugins = null + if (document.libraries?.isEmpty() == true) document.libraries = null + if (document.plugins?.isNotEmpty() == true || document.libraries?.isNotEmpty() == true) { + val templateFilePath = SweetDependencyConfigs.configs.configFilePath + .let { it.toFile().let { e -> "${e.parent}/${e.name.split(".")[0]}.$TEMPLATE_FILE_EXT_NAME" } }.parseFileSeparator() + Yaml.parseToFile(document, templateFilePath) { "$templateFileHeaderContent\n\n${replace("\"", "")}" } + SLog.info("Template file is created at $templateFilePath", SLog.DONE) + document.plugins?.clear() + document.libraries?.clear() + } else SLog.info("No suitable dependencies can be found in all projects to create template file, nothing to do", SLog.IGNORE) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/RuntimeDebugTransaction.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/RuntimeDebugTransaction.kt new file mode 100644 index 0000000..c6b701e --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/manager/transaction/RuntimeDebugTransaction.kt @@ -0,0 +1,261 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/8. + */ +package com.highcapable.sweetdependency.manager.transaction + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.document.factory.DependencyMap +import com.highcapable.sweetdependency.environment.Environment +import com.highcapable.sweetdependency.gradle.factory.fullName +import com.highcapable.sweetdependency.gradle.factory.libraries +import com.highcapable.sweetdependency.gradle.factory.plugins +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.gradle.wrapper.type.LibraryDependencyType +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.noBlank +import com.highcapable.sweetdependency.utils.noEmpty + +/** + * 运行时调试管理类 + */ +internal object RuntimeDebugTransaction { + + private val configs get() = SweetDependencyConfigs.configs + private val preferences get() = SweetDependencyConfigs.document.preferences() + private val repositories get() = SweetDependencyConfigs.document.repositories() + private val plugins get() = SweetDependencyConfigs.document.plugins(duplicate = true) + private val libraries get() = SweetDependencyConfigs.document.libraries(duplicate = true) + private val vfExclusionList get() = preferences.versionFilter.exclusionList().all() + + /** 存储库内存数组 */ + private val repositoriesMap = mutableMapOf() + + /** 插件依赖内存数组 */ + private val pluginsMap = mutableMapOf() + + /** 依赖内存数组 */ + private val librariesMap = mutableMapOf() + + /** 版本过滤器内存数组 */ + private val versionFilterMap = mutableMapOf() + + /** 项目插件依赖内存数组 */ + private val projectPluginsMap = mutableMapOf() + + /** 项目库依赖内存数组 */ + private val projectLibrariesMap = mutableMapOf() + + /** 写出调试信息 */ + internal fun dump() { + configureMemoryData() + log( + """ + + +--------------------------------------+ + | SWEET DEPENDENCY MEMORY DATA DUMP | + +--------------------------------------+ + + """ + ) + log( + "System Environment" value Environment.systemInfo, + "Character Encoding" value Environment.characterEncoding, + "Java Version" value Environment.javaVersion, + "Gradle Version" value GradleHelper.version, + "Plugin Version" value SweetDependency.VERSION, + "Plugin Configuration" to mapOf( + "configFileName" with "(path) ${configs.configFilePath}" to mapOf( + "preferences" to mapOf( + "autowire-on-sync-mode" value preferences.autowireOnSyncMode, + "repositories-mode" value preferences.repositoriesMode, + "dependencies-namespace" to mapOf( + "plugins" value preferences.dependenciesNamespace.plugins().ifBlank { NONE }, + "libraries" value preferences.dependenciesNamespace.libraries().ifBlank { NONE } + ), + "version-filter" with (if (vfExclusionList.isEmpty()) "(disabled)" else "") to versionFilterMap + ), + "repositories" to repositoriesMap, + "plugins" to pluginsMap, + "libraries" to librariesMap + ), + "isEnableDependenciesAutowireLog" value configs.isEnableDependenciesAutowireLog, + "isEnableVerboseMode" value configs.isEnableVerboseMode + ), + "Project Dependencies" to mapOf( + "Plugins" with (if (projectPluginsMap.isEmpty()) "(load failed)" else "") to projectPluginsMap, + "Libraries" with (if (projectLibrariesMap.isEmpty()) "(load failed)" else "") to projectLibrariesMap + ) + ) + log( + """ + + All debug information has been dumped, if your project is not working properly, please give us feedback on this report + For details, please visit: ${SweetDependency.PROJECT_URL} + + """ + ) + } + + /** 配置内存数据 */ + private fun configureMemoryData() { + if (repositoriesMap.isNotEmpty() && + pluginsMap.isNotEmpty() && + librariesMap.isNotEmpty() && + versionFilterMap.isNotEmpty() && + projectLibrariesMap.isNotEmpty() + ) return + repositoriesMap.clear() + pluginsMap.clear() + librariesMap.clear() + versionFilterMap.clear() + projectLibrariesMap.clear() + repositories.forEach { repo -> + val hasCredentials = repo.credentials.let { it.username.isNotBlank() || it.password.isNotBlank() } + val repoMap = mutableMapOf( + "enable" value repo.isEnable, + "url" value repo.url.ifBlank { NONE }, + "path" value repo.path.ifBlank { NONE } + ) + if (hasCredentials) repoMap["credentials"] = mapOf( + "username" value repo.credentials.username, + "password" value repo.credentials.password + ) + repositoriesMap[repo.nodeName] = repoMap + } + plugins.resolveDependencies(pluginsMap) + libraries.resolveDependencies(librariesMap) + if (vfExclusionList.isNotEmpty()) versionFilterMap["exclusionList"] = mutableMapOf() + vfExclusionList.forEach { versionFilterMap["exclusionList"]?.addAsMap(it) } + GradleHelper.allProjects.forEach { subProject -> + projectPluginsMap[subProject.fullName] = mutableMapOf() + projectLibrariesMap[subProject.fullName] = mutableMapOf() + subProject.plugins().forEach { projectPluginsMap[subProject.fullName]?.addAsMap(it.id) } + subProject.libraries().forEach { + val prefix = "(${it.configurationName})" + when (it.type) { + LibraryDependencyType.EXTERNAL, LibraryDependencyType.EXTERNAL_DELEGATE -> { + val suffix = it.version.deployed.noBlank()?.let { e -> ":$e" } ?: "" + projectLibrariesMap[subProject.fullName]?.addAsMap("$prefix ${it.groupId}:${it.artifactId}$suffix") + } + LibraryDependencyType.PROJECT -> projectLibrariesMap[subProject.fullName]?.addAsMap("$prefix (project) ${it.project?.fullName}") + LibraryDependencyType.FILES -> { + val filesMap = mutableMapOf() + it.files?.noEmpty()?.forEach { e -> filesMap.addAsMap(e.absolutePath) }?.also { + projectLibrariesMap[subProject.fullName] = mapOf("$prefix (files)" to filesMap) + } ?: projectLibrariesMap[subProject.fullName]?.addAsMap("$prefix (files) not found or empty folder") + } + LibraryDependencyType.OTHERS -> projectLibrariesMap[subProject.fullName]?.addAsMap("$prefix unknown type dependency") + } + } + } + } + + /** + * 处理依赖数组 + * @param dependenciesMap 依赖内存数组 + */ + private fun DependencyMap.resolveDependencies(dependenciesMap: MutableMap) = + forEach { (dependencyName, artifact) -> + val repoMap = mutableMapOf() + val childVersionFilterMap = mutableMapOf() + val childVfExclusionList = artifact.versionFilter?.exclusionList()?.all() + if (childVfExclusionList?.isNotEmpty() == true) childVersionFilterMap["exclusionList"] = mutableMapOf() + childVfExclusionList?.forEach { childVersionFilterMap["exclusionList"]?.addAsMap(it) } + artifact.repositories().forEach { repoMap.addAsMap(it.nodeName) } + dependenciesMap[dependencyName.current] = mapOf( + "alias" value artifact.alias.ifBlank { NONE }, + "version" value artifact.version().let { if (it.isNoSpecific) "(no specific)" else it.current }, + "auto-update" value artifact.isAutoUpdate, + "version-filter" with (if (childVfExclusionList?.isEmpty() == true) "(disabled)" else "") to childVersionFilterMap, + "repositories" to repoMap, + ) + } + + /** + * 生成单边 [Pair] + * @param value 键值内容 + * @return [Pair]<[String], [String]> + */ + private infix fun String.value(value: Any) = Pair(with(value), "") + + /** + * 生成冒号键值对字符串 + * @param value 键值内容 + * @return [String] + */ + private infix fun String.with(value: Any) = if (value != NONE) "$this${if (value.toString().isBlank()) "" else ": $value"}" else "" + + /** + * 任意类型转换为 [MutableMap] 并设置空键值内容 + * @param key 键值名称 + */ + private fun Any.addAsMap(key: String) { + @Suppress("UNCHECKED_CAST") + (this as MutableMap)[key] = "" + } + + /** + * 创建 [MutableMap] + * @param pairs 键值对数组 + * @return [MutableMap]<[String], [Any]> + */ + private fun mapOf(vararg pairs: Pair) = mutableMapOf(*pairs) + + /** + * 根据 [Map] 生成键值对树图形字符串 + * @return [String] + */ + private fun Map<*, *>.genMapTree(): String { + /** + * 生成子项目 + * @param prefix 前缀 + * @return [String] + */ + fun Map<*, *>.genChild(prefix: String = ""): String { + val currentMap = filterKeys { it.toString().isNotBlank() }.filterValues { it !is Map<*, *> || it.isNotEmpty() } + val builder = StringBuilder() + currentMap.keys.forEachIndexed { index, key -> + val value = currentMap[key] + val isLast = index == currentMap.keys.size - 1 + val branch = if (isLast) "└─ " else "├─ " + val newPrefix = if (isLast) "$prefix " else "$prefix│ " + builder.append("$prefix$branch$key\n") + if (value is Map<*, *>) builder.append(value.genChild(newPrefix)) + }; return builder.toString() + }; return "${SweetDependency.TAG}\n${genChild()}" + } + + /** + * 打印日志 + * @param pairs 键值对数组 + */ + private fun log(vararg pairs: Pair) = log(mapOf(*pairs).genMapTree()) + + /** + * 打印日志 + * @param any 任意内容 + */ + private fun log(any: Any) = SLog.info(any.toString().trimIndent(), noTag = true) + + /** 标识当前值为空 */ + private const val NONE = "/*-none-*/" +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyExtension.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyExtension.kt new file mode 100644 index 0000000..ef05c60 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyExtension.kt @@ -0,0 +1,69 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/19. + */ +package com.highcapable.sweetdependency.plugin + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.gradle.delegate.ProjectTransaction +import com.highcapable.sweetdependency.gradle.factory.getOrCreate +import com.highcapable.sweetdependency.gradle.proxy.IGradleLifecycle +import com.highcapable.sweetdependency.manager.GradleTaskManager +import com.highcapable.sweetdependency.plugin.extension.dsl.configure.SweetDependencyConfigureExtension +import com.highcapable.sweetdependency.plugin.impl.SweetDependencyExtensionImpl +import com.highcapable.sweetdependency.utils.debug.SError +import org.gradle.api.Project +import org.gradle.api.initialization.Settings + +/** + * [SweetDependency] 插件扩展类 + */ +internal class SweetDependencyExtension internal constructor() : IGradleLifecycle { + + /** 当前配置方法体实例 */ + private var configure: SweetDependencyConfigureExtension? = null + + /** 当前扩展实现实例 */ + private var impl: SweetDependencyExtensionImpl? = null + + /** 当前项目事务实例 */ + private var transaction: ProjectTransaction? = null + + override fun onSettingsLoaded(settings: Settings) { + configure = settings.getOrCreate(SweetDependencyConfigureExtension.NAME) + } + + override fun onSettingsEvaluate(settings: Settings) { + impl = SweetDependencyExtensionImpl() + impl?.onInitialization(settings, configure?.build() ?: SError.make("Settings lifecycle is broken")) + } + + override fun onProjectLoaded(project: Project, isRoot: Boolean) { + ProjectTransaction.current = project + ProjectTransaction.isRoot = isRoot + if (transaction == null) transaction = ProjectTransaction() + if (isRoot) GradleTaskManager.register(project) + transaction?.also { impl?.onTransaction(it) } + } + + override fun onProjectEvaluate(project: Project, isRoot: Boolean) { + transaction?.evaluateCallbacks?.forEach { it(project, isRoot) } + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyPlugin.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyPlugin.kt new file mode 100644 index 0000000..23496d9 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/SweetDependencyPlugin.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/16. + */ +@file:Suppress("unused") + +package com.highcapable.sweetdependency.plugin + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.gradle.delegate.GradleDelegate +import com.highcapable.sweetdependency.utils.debug.SError +import org.gradle.api.Plugin +import org.gradle.api.initialization.Settings +import org.gradle.api.plugins.ExtensionAware + +/** + * [SweetDependency] 插件定义类 + */ +class SweetDependencyPlugin internal constructor() : Plugin { + + override fun apply(target: T) = when (target) { + is Settings -> GradleDelegate.create(target) + else -> SError.make("${SweetDependency.TAG} can only applied in settings.gradle/settings.gradle.kts, but current is $target") + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/content/SweetDependencyConfigs.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/content/SweetDependencyConfigs.kt new file mode 100644 index 0000000..ba93d05 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/content/SweetDependencyConfigs.kt @@ -0,0 +1,78 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/29. + */ +package com.highcapable.sweetdependency.plugin.config.content + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.document.RootConfigDocument +import com.highcapable.sweetdependency.document.mapping.RootConfigDocumentMapping +import com.highcapable.sweetdependency.exception.SweetDependencyUnresolvedException +import com.highcapable.sweetdependency.plugin.config.factory.build +import com.highcapable.sweetdependency.plugin.config.proxy.ISweetDependencyConfigs +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.yaml.factory.YamlException +import kotlin.properties.Delegates + +/** + * [SweetDependency] 配置类实现类 + */ +internal object SweetDependencyConfigs { + + /** 当前配置 */ + internal var configs by Delegates.notNull() + + /** 当前文档实体 */ + internal var document by Delegates.notNull() + + /** 当前文档测绘实例 */ + internal var documentMapping by Delegates.notNull() + + /** + * 插件启用后执行 + * @param block 方法体 + */ + internal inline fun withPluginEnable(block: () -> Unit) { + if (configs.isEnable) block() else SLog.warn("${SweetDependency.TAG} is disabled (won't do anything)", noRepeat = true) + } + + /** + * 初始化配置 (从文件) + * @param configs 当前配置 + * @param isThrowOnError 是否在发生错误的时候抛出异常 - 默认是 + * @throws SweetDependencyUnresolvedException 如果设置了 [isThrowOnError] 且发生错误 + */ + internal fun initialize(configs: ISweetDependencyConfigs, isThrowOnError: Boolean = true) { + this.configs = configs + runCatching { + configs.build().also { + document = it.first + documentMapping = it.second + } + }.onFailure { + if (isThrowOnError) when (it) { + is YamlException -> SError.make("Failed to parse config file: ${configs.configFilePath}\nPlease check if there are syntax errors", it) + is SweetDependencyUnresolvedException -> throw it + else -> SError.make("Failed to load config file: ${configs.configFilePath}", it) + } + } + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/factory/SweetDependencyConfigsFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/factory/SweetDependencyConfigsFactory.kt new file mode 100644 index 0000000..8de3053 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/factory/SweetDependencyConfigsFactory.kt @@ -0,0 +1,67 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/21. + */ +package com.highcapable.sweetdependency.plugin.config.factory + +import com.highcapable.sweetdependency.document.RootConfigDocument +import com.highcapable.sweetdependency.document.mapping.RootConfigDocumentMapping +import com.highcapable.sweetdependency.plugin.config.proxy.ISweetDependencyConfigs +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.toFile +import com.highcapable.sweetdependency.utils.yaml.Yaml +import java.io.File + +/** + * 获取并解析配置文件 [RootConfigDocument] 实体和 [RootConfigDocumentMapping] + * @return [Pair]<[RootConfigDocument], [RootConfigDocumentMapping]> + */ +internal fun ISweetDependencyConfigs.build() = configFilePath.loadOrCreateEmpty() to RootConfigDocumentMapping(this) + +/** + * 通过字符串路径获取或创建配置文件 [RootConfigDocument] 实体 + * @return [RootConfigDocument] + */ +private fun String.loadOrCreateEmpty(): RootConfigDocument { + toFile().apply { + if (name.endsWith(".yaml").not() && name.endsWith(".yml").not()) + SError.make("Config file name must be end with \".yaml\" or \".yml\"") + }.createTemplateFileOrNot() + return Yaml.loadFromFile(path = this) +} + +/** 自动创建模版配置文件 */ +private fun File.createTemplateFileOrNot() { + fun createTemplateFile() { + writeText(RootConfigDocument.defaultContent) + SLog.info("Automatically created config file: $absolutePath") + } + runCatching { + when { + exists().not() && parentFile.exists().not() -> { + parentFile.mkdirs() + createTemplateFile() + } + exists().not() -> createTemplateFile() + exists() && isDirectory -> SError.make("Tries to create file path is a directory") + } + }.onFailure { SError.make("Could not automatically created config file: $absolutePath", it) } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/proxy/ISweetDependencyConfigs.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/proxy/ISweetDependencyConfigs.kt new file mode 100644 index 0000000..f8fd522 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/config/proxy/ISweetDependencyConfigs.kt @@ -0,0 +1,52 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/18. + */ +package com.highcapable.sweetdependency.plugin.config.proxy + +import com.highcapable.sweetdependency.SweetDependency + +/** + * [SweetDependency] 配置类接口类 + */ +internal interface ISweetDependencyConfigs { + + companion object { + + /** + * 默认的配置文件名称 + * + * "sweet-dependency-config.yaml" + */ + internal const val DEFAULT_CONFIG_FILE_NAME = "sweet-dependency-config.yaml" + } + + /** 是否启用插件 */ + val isEnable: Boolean + + /** [SweetDependency] 的配置文件路径 */ + val configFilePath: String + + /** 是否启用依赖自动装配日志 */ + val isEnableDependenciesAutowireLog: Boolean + + /** 是否启用详细模式 */ + val isEnableVerboseMode: Boolean +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/accessors/proxy/IExtensionAccessors.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/accessors/proxy/IExtensionAccessors.kt new file mode 100644 index 0000000..63b6b0e --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/accessors/proxy/IExtensionAccessors.kt @@ -0,0 +1,27 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/19. + */ +package com.highcapable.sweetdependency.plugin.extension.accessors.proxy + +/** + * 扩展可访问 [Class] 定义空间接口 + */ +internal interface IExtensionAccessors \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/configure/SweetDependencyConfigureExtension.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/configure/SweetDependencyConfigureExtension.kt new file mode 100644 index 0000000..15aa1b4 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/configure/SweetDependencyConfigureExtension.kt @@ -0,0 +1,89 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/26. + */ +@file:Suppress("MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.plugin.extension.dsl.configure + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.environment.Environment +import com.highcapable.sweetdependency.plugin.config.proxy.ISweetDependencyConfigs + +/** + * [SweetDependency] 配置方法体实现类 + */ +open class SweetDependencyConfigureExtension internal constructor() { + + internal companion object { + + /** [SweetDependencyConfigureExtension] 扩展名称 */ + internal const val NAME = "sweetDependency" + } + + /** + * 是否启用插件 + * + * 默认启用 - 如果你想关闭插件 - 在这里设置就可以了 + */ + var isEnable = true + @JvmName("enable") set + + /** + * [SweetDependency] 配置文件名称 + * + * 默认为 [ISweetDependencyConfigs.DEFAULT_CONFIG_FILE_NAME] + */ + var configFileName = ISweetDependencyConfigs.DEFAULT_CONFIG_FILE_NAME + @JvmName("configFileName") set + + /** + * 是否启用依赖自动装配日志 + * + * 此功能默认启用 - 会在当前根项目 (Root Project) 的 build 目录下创建日志文件 + */ + var isEnableDependenciesAutowireLog = true + @JvmName("enableDependenciesAutowireLog") set + + /** + * 是否启用详细模式 + * + * 此功能默认启用 - 关闭后 [SweetDependency] 将会在非必要情况下保持安静 (省略非必要日志) + */ + var isEnableVerboseMode = true + @JvmName("enableVerboseMode") set + + /** + * 构造 [ISweetDependencyConfigs] + * @return [ISweetDependencyConfigs] + */ + internal fun build(): ISweetDependencyConfigs { + val currentEnable = isEnable + val currentConfigFilePath = Environment.resourcesDir(configFileName).absolutePath + val currentEnableDependenciesAutowireLog = isEnableDependenciesAutowireLog + val currentEnableVerboseMode = isEnableVerboseMode + return object : ISweetDependencyConfigs { + override val isEnable get() = currentEnable + override val configFilePath get() = currentConfigFilePath + override val isEnableDependenciesAutowireLog get() = currentEnableDependenciesAutowireLog + override val isEnableVerboseMode get() = currentEnableVerboseMode + } + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/manager/SweetDependencyAutowireExtension.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/manager/SweetDependencyAutowireExtension.kt new file mode 100644 index 0000000..5dafcb3 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/extension/dsl/manager/SweetDependencyAutowireExtension.kt @@ -0,0 +1,45 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/26. + */ +package com.highcapable.sweetdependency.plugin.extension.dsl.manager + +import com.highcapable.sweetdependency.manager.helper.DependencyDeployHelper +import org.gradle.api.Project + +/** + * 依赖扩展功能配置方法体实现类 + * @param project 当前项目 + */ +open class SweetDependencyAutowireExtension internal constructor(private val project: Project) { + + internal companion object { + + /** [SweetDependencyAutowireExtension] 扩展名称 */ + internal const val NAME = "sweet" + } + + /** + * 自动装配依赖 + * @param params 参数数组 + * @return [Any] + */ + fun autowire(vararg params: String) = DependencyDeployHelper.resolveAutowire(project, params) +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/generator/LibrariesAccessorsGenerator.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/generator/LibrariesAccessorsGenerator.kt new file mode 100644 index 0000000..e9a67a1 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/generator/LibrariesAccessorsGenerator.kt @@ -0,0 +1,433 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/13. + */ +package com.highcapable.sweetdependency.plugin.generator + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.document.DependencyDocument +import com.highcapable.sweetdependency.document.factory.splitToDependencyGenerateNames +import com.highcapable.sweetdependency.exception.SweetDependencyUnresolvedException +import com.highcapable.sweetdependency.generated.SweetDependencyProperties +import com.highcapable.sweetdependency.gradle.delegate.entity.ExternalDependencyDelegate +import com.highcapable.sweetdependency.gradle.entity.ExternalDependency +import com.highcapable.sweetdependency.manager.content.Dependencies +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.extension.accessors.proxy.IExtensionAccessors +import com.highcapable.sweetdependency.utils.camelcase +import com.highcapable.sweetdependency.utils.capitalize +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.firstNumberToLetter +import com.highcapable.sweetdependency.utils.toNonJavaName +import com.highcapable.sweetdependency.utils.uncapitalize +import com.highcapable.sweetdependency.utils.uppercamelcase +import com.squareup.javapoet.ClassName +import com.squareup.javapoet.FieldSpec +import com.squareup.javapoet.JavaFile +import com.squareup.javapoet.MethodSpec +import com.squareup.javapoet.TypeSpec +import java.text.SimpleDateFormat +import java.util.* +import javax.lang.model.element.Modifier + +/** + * 库依赖可访问 [Class] 生成实现类 + */ +internal class LibrariesAccessorsGenerator { + + private companion object { + + /** 生成的 [Class] 所在包名 */ + private const val ACCESSORS_PACKAGE_NAME = "${SweetDependencyProperties.PROJECT_GROUP_NAME}.plugin.extension.accessors.generated" + + /** 生成的 [Class] 后缀名 */ + private const val CLASS_SUFFIX_NAME = "Accessors" + + /** 生成的首位 [Class] 名称 */ + private const val TOP_CLASS_NAME = "Libraries$CLASS_SUFFIX_NAME" + + /** 标识首位生成的 [Class] TAG */ + private const val TOP_SUCCESSIVE_NAME = "_top_successive_name" + } + + /** 生成的依赖库 [Class] 构建器数组 */ + private val classSpecs = mutableMapOf() + + /** 生成的依赖库构造方法构建器数组 */ + private val constructorSpecs = mutableMapOf() + + /** 生成的依赖库预添加的构造方法名称数组 */ + private val preAddConstructorSpecNames = mutableListOf>() + + /** 生成的依赖库 [Class] 扩展类名数组 */ + private val memoryExtensionClasses = mutableListOf>() + + /** 生成的依赖库连续名称记录数组 */ + private val grandSuccessiveNames = mutableListOf() + + /** 生成的依赖库连续名称重复次数数组 */ + private val grandSuccessiveDuplicateIndexs = mutableMapOf() + + /** 生成的依赖库不重复 TAG 数组 */ + private val usedSuccessiveTags = mutableSetOf() + + /** + * 不重复调用 + * @param tags 当前 TAG 数组 + * @param block 执行的方法块 + */ + private inline fun noRepeated(vararg tags: String, block: () -> Unit) { + val allTag = tags.joinToString("-") + if (usedSuccessiveTags.contains(allTag).not()) block() + usedSuccessiveTags.add(allTag) + } + + /** + * 字符串首字母大写并添加 [CLASS_SUFFIX_NAME] 后缀 + * @return [String] + */ + private fun String.capitalized() = "${capitalize()}$CLASS_SUFFIX_NAME" + + /** + * 字符串首字母小写并添加 [CLASS_SUFFIX_NAME] 后缀 + * @return [String] + */ + private fun String.uncapitalized() = "${uncapitalize()}$CLASS_SUFFIX_NAME" + + /** + * 字符串类名转换为 [ClassName] + * @param packageName 包名 - 默认空 + * @return [ClassName] + */ + private fun String.asClassType(packageName: String = "") = ClassName.get(packageName, this) + + /** + * 通过 [TypeSpec] 创建 [JavaFile] + * @return [JavaFile] + */ + private fun TypeSpec.createJavaFile(packageName: String) = JavaFile.builder(packageName, this).build() + + /** + * 创建扩展类完整名称 (含包名) + * @param name 子类名 - 默认空 + * @return [String] + */ + private fun createAccessorsName(name: String = "") = + "$ACCESSORS_PACKAGE_NAME.$TOP_CLASS_NAME${if (name.isNotBlank()) "\$${name.capitalized()}" else ""}" + + /** + * 创建通用构建器描述类 + * @param name 名称 + * @param accessors 接续对象 - 没有默认值 + * @param isInner 是否为内部类 - 默认是 + * @return [TypeSpec.Builder] + */ + private fun createClassSpec(name: String, accessors: Any = Any(), isInner: Boolean = true) = + TypeSpec.classBuilder(if (isInner) name.capitalized() else name).apply { + if (isInner) { + val actual = when (accessors) { + is ExternalDependency -> "\"$accessors\" library" + else -> "\"$accessors\" accessors" + }; addJavadoc("The $actual") + addSuperinterface(IExtensionAccessors::class.java) + addModifiers(Modifier.PUBLIC, Modifier.STATIC) + } else { + addJavadoc( + """ + This class is generated by ${SweetDependency.TAG} at ${SimpleDateFormat.getDateTimeInstance().format(Date())} +
+ The content here is automatically generated according to the dependencies of your projects +
+ You can visit
here for more help + """.trimIndent() + ) + addModifiers(Modifier.PUBLIC) + } + } + + /** + * 创建通用构造方法构建器描述类 + * @return [MethodSpec.Builder] + */ + private fun createConstructorSpec() = MethodSpec.constructorBuilder().addModifiers(Modifier.PUBLIC) + + /** + * 向通用构建器描述类添加变量 + * @param accessors 接续对象 + * @param className 类名 + * @return [TypeSpec.Builder] + */ + private fun TypeSpec.Builder.addSuccessiveField(accessors: Any, className: String) = addField( + FieldSpec.builder(className.capitalized().asClassType(), className.uncapitalized(), Modifier.PRIVATE, Modifier.FINAL) + .apply { + val actual = when (accessors) { + is ExternalDependency -> "\"$accessors\" library" + else -> "\"$accessors\" accessors" + }; addJavadoc("Create the $actual") + }.build() + ) + + /** + * 向通用构建器描述类添加方法 + * @param accessors 接续对象 + * @param methodName 方法名 + * @param className 类名 + * @return [TypeSpec.Builder] + */ + private fun TypeSpec.Builder.addSuccessiveMethod(accessors: Any, methodName: String, className: String) = + addMethod( + MethodSpec.methodBuilder("get${methodName.capitalize()}") + .apply { + val actual = when (accessors) { + is ExternalDependency -> "\"$accessors\" library" + else -> "\"$accessors\" accessors" + }; addJavadoc("Resolve the $actual") + }.addModifiers(Modifier.PUBLIC, Modifier.FINAL) + .returns(className.capitalized().asClassType()) + .addStatement("return ${className.uncapitalized()}") + .build() + ) + + /** + * 向通用构建器描述类添加依赖描述器 + * @param dependency 外部存储库依赖实体 + * @param artifact 依赖文档实体 + * @return [TypeSpec.Builder] + */ + private fun TypeSpec.Builder.addLibraryClass(dependency: ExternalDependency, artifact: DependencyDocument) = apply { + superclass(ExternalDependencyDelegate::class.java) + artifact.versions().forEach { (alias, _) -> + addField( + FieldSpec.builder(ExternalDependencyDelegate::class.java, alias.camelcase(), Modifier.PRIVATE, Modifier.FINAL) + .addJavadoc("Create the \"$dependency\" version alias \"$alias\"") + .build() + ) + addMethod( + MethodSpec.methodBuilder("get${alias.uppercamelcase()}") + .addJavadoc("Resolve the \"$dependency\" version alias \"$alias\"") + .addModifiers(Modifier.PUBLIC, Modifier.FINAL) + .returns(ExternalDependencyDelegate::class.java) + .addStatement("return ${alias.camelcase()}") + .build() + ) + } + } + + /** + * 向通用构造方法构建器描述类添加变量实例化语句 + * @param className 类名 + * @return [MethodSpec.Builder] + */ + private fun MethodSpec.Builder.addSuccessiveStatement(className: String) = + addStatement("${className.uncapitalized()} = new ${className.capitalized()}()") + + /** + * 向通用构造方法构建器描述类添加依赖描述器 + * @param dependency 外部存储库依赖实体 + * @param artifact 依赖文档实体 + * @return [MethodSpec.Builder] + */ + private fun MethodSpec.Builder.addLibraryStatement(dependency: ExternalDependency, artifact: DependencyDocument) = apply { + addStatement("super(\"${dependency.groupId}\", \"${dependency.artifactId}\", \"${dependency.version.deployed}\")") + artifact.versions().forEach { (alias, version) -> + addStatement( + "${alias.camelcase()} = new ${ExternalDependencyDelegate::class.java.simpleName}" + + "(\"${dependency.groupId}\", \"${dependency.artifactId}\", \"$version\")" + ) + } + } + + /** + * 获取、创建通用构建器描述类 + * @param name 名称 + * @param accessors 接续对象 + * @return [TypeSpec.Builder] + */ + private fun getOrCreateClassSpec(name: String, accessors: Any) = + classSpecs[name] ?: createClassSpec(name, accessors).also { classSpecs[name] = it } + + /** + * 获取、创建通用构造方法构建器描述类 + * @param name 名称 + * @return [MethodSpec.Builder] + */ + private fun getOrCreateConstructorSpec(name: String) = constructorSpecs[name] ?: createConstructorSpec().also { constructorSpecs[name] = it } + + /** + * 解析并生成所有类的构建器 (核心方法) + * + * 解析开始前需要确保已调用 [createTopClassSpec] 并调用一次 [clearGeneratedData] 防止数据混淆 + * + * 解析完成后需要调用 [releaseParseTypeSpec] 完成解析 + * @param successiveName 连续的名称 + * @param dependency 外部存储库依赖实体 + * @param artifact 依赖文档实体 + */ + private fun parseTypeSpec(successiveName: String, dependency: ExternalDependency, artifact: DependencyDocument) { + /** + * 获取生成的依赖库连续名称重复次数 + * @return [Int] + */ + fun String.duplicateGrandSuccessiveIndex() = lowercase().let { name -> + if (grandSuccessiveDuplicateIndexs.contains(name)) { + grandSuccessiveDuplicateIndexs[name] = (grandSuccessiveDuplicateIndexs[name] ?: 1) + 1 + grandSuccessiveDuplicateIndexs[name] ?: 2 + } else 2.also { grandSuccessiveDuplicateIndexs[name] = it } + } + + /** + * 解析 (拆分) 名称到数组 + * + * 形如 "com.mytest" → "ComMytest" → "mytest" + * @return [List]<[Triple]<[String], [String], [String]>> + */ + fun String.parseSuccessiveNames(): List> { + var grandAcccessorsName = "" + var grandSuccessiveName = "" + val successiveNames = mutableListOf>() + val splitNames = splitToDependencyGenerateNames() + splitNames.forEach { eachName -> + val name = eachName.capitalize().toNonJavaName().firstNumberToLetter() + grandAcccessorsName += if (grandAcccessorsName.isNotBlank()) ".$eachName" else eachName + grandSuccessiveName += name + if (grandSuccessiveNames.any { it != grandSuccessiveName && it.lowercase() == grandSuccessiveName.lowercase() }) + grandSuccessiveName += duplicateGrandSuccessiveIndex().toString() + grandSuccessiveNames.add(grandSuccessiveName) + successiveNames.add(Triple(grandAcccessorsName, grandSuccessiveName, name)) + }; return successiveNames + } + val successiveNames = successiveName.parseSuccessiveNames() + successiveNames.forEachIndexed { index, (accessorsName, className, methodName) -> + val nextItem = successiveNames.getOrNull(index + 1) + val nextAccessorsName = nextItem?.first ?: "" + val nextClassName = nextItem?.second ?: "" + val nextMethodName = nextItem?.third ?: "" + val isPreLastIndex = index == successiveNames.lastIndex - 1 + val nextAccessors: Any = if (isPreLastIndex) dependency else nextAccessorsName + if (index == successiveNames.lastIndex) { + getOrCreateClassSpec(className, dependency)?.addLibraryClass(dependency, artifact) + getOrCreateConstructorSpec(className)?.addLibraryStatement(dependency, artifact) + } else { + if (index == 0) noRepeated(TOP_SUCCESSIVE_NAME, methodName, className) { + getOrCreateClassSpec(TOP_SUCCESSIVE_NAME, accessorsName) + .addSuccessiveField(accessorsName, className) + .addSuccessiveMethod(accessorsName, methodName, className) + getOrCreateConstructorSpec(TOP_SUCCESSIVE_NAME) + .addSuccessiveStatement(className) + memoryExtensionClasses.add(methodName.uncapitalize() to createAccessorsName(className)) + } + noRepeated(className, nextMethodName, nextClassName) { + getOrCreateClassSpec(className, accessorsName) + .addSuccessiveField(nextAccessors, nextClassName) + .addSuccessiveMethod(nextAccessors, nextMethodName, nextClassName) + preAddConstructorSpecNames.add(className to nextClassName) + } + } + } + } + + /** 完成生成所有类的构建器 (释放) */ + private fun releaseParseTypeSpec() = + preAddConstructorSpecNames.onEach { (topClassName, innerClassName) -> + getOrCreateConstructorSpec(topClassName)?.addSuccessiveStatement(innerClassName) + }.clear() + + /** + * 解析并生成所有类的构建器 + * @return [TypeSpec] + */ + private fun buildTypeSpec(): TypeSpec { + classSpecs.forEach { (name, typeSpec) -> + constructorSpecs[name]?.build()?.let { typeSpec.addMethod(it) } + if (name != TOP_SUCCESSIVE_NAME) classSpecs[TOP_SUCCESSIVE_NAME]?.addType(typeSpec.build()) + }; return classSpecs[TOP_SUCCESSIVE_NAME]?.build() ?: SError.make("Merge accessors classes failed") + } + + /** 创建首位构建器 */ + private fun createTopClassSpec() { + classSpecs[TOP_SUCCESSIVE_NAME] = createClassSpec(TOP_CLASS_NAME, isInner = false) + constructorSpecs[TOP_SUCCESSIVE_NAME] = createConstructorSpec() + } + + /** 清空所有已生成的数据 */ + private fun clearGeneratedData() { + classSpecs.clear() + constructorSpecs.clear() + preAddConstructorSpecNames.clear() + memoryExtensionClasses.clear() + grandSuccessiveNames.clear() + grandSuccessiveDuplicateIndexs.clear() + usedSuccessiveTags.clear() + } + + /** + * 生成 [JavaFile] + * @return [JavaFile] + * @throws SweetDependencyUnresolvedException 如果生成失败 + */ + internal fun build() = runCatching { + clearGeneratedData() + createTopClassSpec() + Dependencies.libraries().forEach { (dependencyName, artifact) -> + val dependency = ExternalDependency(dependencyName, artifact.version()) + parseTypeSpec(dependencyName.current, dependency, artifact) + if (artifact.alias.isNotBlank()) parseTypeSpec(artifact.alias, dependency, artifact) + releaseParseTypeSpec() + }; buildTypeSpec().createJavaFile(ACCESSORS_PACKAGE_NAME) + }.getOrElse { SError.make("Failed to generated accessors classes, please checking your config file", it) } + + /** + * 获取参与编译的 Stub [JavaFile] 数组 + * @return [List]<[JavaFile]> + */ + internal val compileStubFiles get(): List { + val stubFiles = mutableListOf() + val iExtensionAccessorsFile = + TypeSpec.interfaceBuilder(IExtensionAccessors::class.java.simpleName) + .addModifiers(Modifier.PUBLIC) + .build().createJavaFile(IExtensionAccessors::class.java.packageName) + val externalDependencyDelegateFile = + TypeSpec.classBuilder(ExternalDependencyDelegate::class.java.simpleName) + .addModifiers(Modifier.PUBLIC) + .addMethod( + MethodSpec.constructorBuilder() + .addModifiers(Modifier.PUBLIC) + .addParameter(String::class.java, "groupId") + .addParameter(String::class.java, "artifactId") + .addParameter(String::class.java, "version") + .build() + ).build().createJavaFile(ExternalDependencyDelegate::class.java.packageName) + stubFiles.add(iExtensionAccessorsFile) + stubFiles.add(externalDependencyDelegateFile) + return stubFiles + } + + /** + * 获取扩展功能预置 [Class] 数组 (依赖) + * + * 需要调用 [build] 生成后才可以使用 - 否则可能会返回空数组 + * @return [List]<[Pair]<[String], [String]>> + */ + internal val librariesClasses get() = + SweetDependencyConfigs.document.preferences().dependenciesNamespace.libraries().let { namespace -> + if (namespace.isNotBlank()) listOf(namespace to createAccessorsName()) + else memoryExtensionClasses + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/helper/PluginUpdateHelper.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/helper/PluginUpdateHelper.kt new file mode 100644 index 0000000..0378d3f --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/helper/PluginUpdateHelper.kt @@ -0,0 +1,65 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/7/30. + */ +package com.highcapable.sweetdependency.plugin.helper + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.generated.SweetDependencyProperties +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.utils.debug.SLog +import com.highcapable.sweetdependency.utils.executeUrlBody + +/** + * 插件自身检查更新工具类 + */ +internal object PluginUpdateHelper { + + private const val REPO_NAME = SweetDependencyProperties.PROJECT_NAME + private const val AUTHOR_NAME = SweetDependencyProperties.PROJECT_DEVELOPER_NAME + + /** 检查更新 URL 地址 */ + private const val RELEASE_URL = "https://github.com/$AUTHOR_NAME/$REPO_NAME" + + /** 检查更新 */ + internal fun checkingForUpdate() { + if (GradleHelper.isOfflineMode) return + val latestVersion = RELEASE_URL.executeUrlBody(isShowFailure = false).findVersionName() + if (latestVersion.isNotBlank() && latestVersion != SweetDependency.VERSION) + SLog.note( + """ + Plugin update is available, the current version is ${SweetDependency.VERSION}, please update to $latestVersion + You can modify your plugin version in your project's settings.gradle / settings.gradle.kts + plugins { + id("${SweetDependencyProperties.PROJECT_GROUP_NAME}") version "$latestVersion" + ... + } + For more information, you can visit ${SweetDependency.PROJECT_URL} + """.trimIndent(), SLog.UP + ) + } + + /** + * 解析 JSON 并查找字符串版本 "name" + * @return [String] + */ + private fun String.findVersionName() = + runCatching { trim().split("href=\"/$AUTHOR_NAME/$REPO_NAME/releases/tag/")[1].split("\"")[0] }.getOrNull() ?: "" +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/SweetDependencyExtensionImpl.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/SweetDependencyExtensionImpl.kt new file mode 100644 index 0000000..22e8d87 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/SweetDependencyExtensionImpl.kt @@ -0,0 +1,111 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/27. + */ +package com.highcapable.sweetdependency.plugin.impl + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.document.PreferencesDocument +import com.highcapable.sweetdependency.document.factory.toUpdateMode +import com.highcapable.sweetdependency.environment.Environment +import com.highcapable.sweetdependency.gradle.delegate.ProjectTransaction +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.manager.RepositoryManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.config.proxy.ISweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.helper.PluginUpdateHelper +import com.highcapable.sweetdependency.plugin.impl.base.BaseExtensionImpl +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.debug.SLog +import org.gradle.api.initialization.Settings + +/** + * [SweetDependency] 扩展实现类 + */ +internal class SweetDependencyExtensionImpl : BaseExtensionImpl() { + + private companion object { + + /** 插件是否已经装载 - 在 Gradle 守护程序启动后进程不会被结束 */ + private var isPluginLoaded = false + } + + /** + * 检查兼容性 + * + * 目前仅支持 Gradle 7.x.x and 8.x.x 版本 + */ + private fun checkingCompatibility() { + Environment.characterEncoding?.also { + if (it.lowercase() != "utf-8") SLog.warn( + """ + !!! WARNING !!! + The current character encoding is not UTF-8, it is currently $it + This will cause some characters cannot be displayed, please change the console character encoding + """.trimIndent(), noTag = true + ) + } + if (GradleHelper.version.let { it.startsWith("7.") || it.startsWith("8.") }.not()) SError.make( + "${SweetDependency.TAG} ${SweetDependency.VERSION} " + + "does not support Gradle ${GradleHelper.version}, please update Gradle or plugin version" + ) + } + + override fun onInitialization(settings: Settings, configs: ISweetDependencyConfigs) { + checkingCompatibility() + configureProject(configs) + SweetDependencyConfigs.initialize(configs) + SweetDependencyConfigs.withPluginEnable { + configureRepositoriesAndDependencies(settings) { autowireOnSyncMode -> + autowireOnSyncMode.toUpdateMode()?.also { DependencyManager.autowireAndUpdate(it) } + }; PluginUpdateHelper.checkingForUpdate() + } + } + + override fun onTransaction(transaction: ProjectTransaction) { + if (transaction.isRoot) DependencyManager.resolve(transaction.current) + transaction.evaluation { project, isRoot -> if (isRoot) DependencyManager.deploy(project) } + } + + /** + * 配置项目 + * @param configs 当前配置 + */ + private fun configureProject(configs: ISweetDependencyConfigs) { + SLog.isVerboseMode = configs.isEnableVerboseMode + if (isPluginLoaded.not() || GradleHelper.isSyncMode.not()) SLog.verbose(SweetDependency.bannerContent, noTag = true) + if (isPluginLoaded) return + isPluginLoaded = true + SLog.verbose("Welcome to ${SweetDependency.TAG} ${SweetDependency.VERSION}! Using Gradle ${GradleHelper.version}") + } + + /** + * 配置存储库和依赖 + * @param settings 当前设置 + * @param autowire 自回调动装配方法体 + */ + private inline fun configureRepositoriesAndDependencies(settings: Settings, autowire: (PreferencesDocument.AutowireOnSyncMode) -> Unit) { + RepositoryManager.generateAndApply(settings) + DependencyManager.generateAndApply() + if (GradleHelper.isSyncMode) autowire(SweetDependencyConfigs.document.preferences().autowireOnSyncMode) + DependencyManager.generateAndApply(settings) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/base/BaseExtensionImpl.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/base/BaseExtensionImpl.kt new file mode 100644 index 0000000..6868c4a --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/impl/base/BaseExtensionImpl.kt @@ -0,0 +1,45 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/27. + */ +package com.highcapable.sweetdependency.plugin.impl.base + +import com.highcapable.sweetdependency.gradle.delegate.ProjectTransaction +import com.highcapable.sweetdependency.plugin.config.proxy.ISweetDependencyConfigs +import org.gradle.api.initialization.Settings + +/** + * 扩展父类实现类 + */ +internal abstract class BaseExtensionImpl internal constructor() { + + /** + * 当初始化时回调 + * @param settings 当前设置 + * @param configs 当前配置 + */ + internal abstract fun onInitialization(settings: Settings, configs: ISweetDependencyConfigs) + + /** + * 当开始事务时回调 + * @param transaction 当前实例 + */ + internal abstract fun onTransaction(transaction: ProjectTransaction) +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireDependenciesTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireDependenciesTask.kt new file mode 100644 index 0000000..5866aeb --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireDependenciesTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/29. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配 Gradle Task + */ +internal class AutowireDependenciesTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.ALL, + DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireLibrariesTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireLibrariesTask.kt new file mode 100644 index 0000000..e9b2d3e --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowireLibrariesTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/16. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配 Gradle Task + */ +internal class AutowireLibrariesTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.LIBRARIES, + DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowirePluginsTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowirePluginsTask.kt new file mode 100644 index 0000000..56e7477 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/AutowirePluginsTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/16. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配 Gradle Task + */ +internal class AutowirePluginsTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.PLUGINS, + DependencyUpdateMode.UpdateType.ONLY_AUTOWIRE + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/CreateDependenciesMigrationTemplateTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/CreateDependenciesMigrationTemplateTask.kt new file mode 100644 index 0000000..c677a6b --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/CreateDependenciesMigrationTemplateTask.kt @@ -0,0 +1,34 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/29. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.manager.transaction.DependencyMigrationTemplateTransaction +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 创建依赖迁移模板 Gradle Task + */ +internal class CreateDependenciesMigrationTemplateTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { DependencyMigrationTemplateTransaction.createTemplate() } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/SweetDependencyDebugTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/SweetDependencyDebugTask.kt new file mode 100644 index 0000000..c05f773 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/SweetDependencyDebugTask.kt @@ -0,0 +1,34 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/29. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.manager.transaction.RuntimeDebugTransaction +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 调试 Gradle Task + */ +internal class SweetDependencyDebugTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { RuntimeDebugTransaction.dump() } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllDependenciesTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllDependenciesTask.kt new file mode 100644 index 0000000..9d8c606 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllDependenciesTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/14. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配、更新 (全部) Gradle Task + */ +internal class UpdateAllDependenciesTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.ALL, + DependencyUpdateMode.UpdateType.UPDATE_ALL + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllLibrariesTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllLibrariesTask.kt new file mode 100644 index 0000000..cf41be9 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllLibrariesTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/16. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配、更新 (全部) Gradle Task + */ +internal class UpdateAllLibrariesTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.LIBRARIES, + DependencyUpdateMode.UpdateType.UPDATE_ALL + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllPluginsTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllPluginsTask.kt new file mode 100644 index 0000000..1bd712f --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateAllPluginsTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/16. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配、更新 (全部) Gradle Task + */ +internal class UpdateAllPluginsTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.PLUGINS, + DependencyUpdateMode.UpdateType.UPDATE_ALL + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalDependenciesTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalDependenciesTask.kt new file mode 100644 index 0000000..87a56a2 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalDependenciesTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/29. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配、更新 (可选) Gradle Task + */ +internal class UpdateOptionalDependenciesTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.ALL, + DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalLibrariesTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalLibrariesTask.kt new file mode 100644 index 0000000..4a3561b --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalLibrariesTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/16. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配、更新 (可选) Gradle Task + */ +internal class UpdateOptionalLibrariesTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.LIBRARIES, + DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalPluginsTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalPluginsTask.kt new file mode 100644 index 0000000..4e2132f --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/UpdateOptionalPluginsTask.kt @@ -0,0 +1,42 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/16. + */ +package com.highcapable.sweetdependency.plugin.task + +import com.highcapable.sweetdependency.gradle.entity.DependencyUpdateMode +import com.highcapable.sweetdependency.manager.DependencyManager +import com.highcapable.sweetdependency.plugin.config.content.SweetDependencyConfigs +import com.highcapable.sweetdependency.plugin.task.base.BaseTask + +/** + * 依赖自动装配、更新 (可选) Gradle Task + */ +internal class UpdateOptionalPluginsTask : BaseTask() { + + override fun onTransaction() = SweetDependencyConfigs.withPluginEnable { + DependencyManager.autowireAndUpdate( + DependencyUpdateMode( + DependencyUpdateMode.DependencyType.PLUGINS, + DependencyUpdateMode.UpdateType.UPDATE_OPTIONAL + ), isRunningOnSync = false + ) + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/base/BaseTask.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/base/BaseTask.kt new file mode 100644 index 0000000..3a9f274 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/plugin/task/base/BaseTask.kt @@ -0,0 +1,31 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/29. + */ +package com.highcapable.sweetdependency.plugin.task.base + +/** + * Gradle Task 父类实现类 + */ +internal abstract class BaseTask internal constructor() { + + /** 当开始事务时回调 */ + internal abstract fun onTransaction() +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/FileFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/FileFactory.kt new file mode 100644 index 0000000..1a459e1 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/FileFactory.kt @@ -0,0 +1,136 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/17. + */ +@file:Suppress("unused") + +package com.highcapable.sweetdependency.utils + +import com.highcapable.sweetdependency.utils.debug.SError +import java.io.File +import java.nio.file.Paths +import java.util.zip.ZipFile + +/** + * 字符串路径转换为文件 + * + * 自动调用 [parseFileSeparator] + * @return [File] + */ +internal fun String.toFile() = File(parseFileSeparator()) + +/** + * 格式化到当前操作系统的文件分隔符 + * @return [String] + */ +internal fun String.parseFileSeparator() = replace("/", File.separator).replace("\\", File.separator) + +/** + * 格式化到 Unix 操作系统的文件分隔符 + * @return [String] + */ +internal fun String.parseUnixFileSeparator() = replace("\\", "/") + +/** + * 字符串文件路径转换到相对文件路径 + * @param basePath 基于路径 + * @param rootPath 根路径 - 不填将不校验完整路径 + * @return [String] + */ +internal fun String.toRelativeFilePath(basePath: String, rootPath: String = "") = + parseFileSeparator().runCatching { + if (rootPath.isNotBlank() && contains(rootPath).not()) return this + return Paths.get(basePath).relativize(Paths.get(this)).toString() + }.getOrNull() ?: parseFileSeparator() + +/** + * 字符串文件路径转换到绝对文件路径 + * @param basePath 基于路径 + * @return [String] + */ +internal fun String.toAbsoluteFilePath(basePath: String) = + parseFileSeparator().runCatching { + if (Paths.get(this).isAbsolute) return this + Paths.get(basePath).resolve(Paths.get(this)).normalize().toString() + }.getOrNull() ?: parseFileSeparator() + +/** + * 字符串文件路径转换到绝对文件路径数组 + * @param basePath 基于路径 + * @return [MutableList]<[String]> + */ +internal fun String.toAbsoluteFilePaths(basePath: String) = + toAbsoluteFilePath(basePath).let { path -> + mutableListOf().apply { + when { + path.toFile().let { it.exists() && it.isFile } -> add(path) + path.toFile().let { it.exists() && it.isDirectory } -> SError.make("The file path $path is a directory") + else -> { + /** + * 是否匹配文件扩展名 + * @param condition 条件 + * @return [Boolean] + */ + fun String.isMatch(condition: String) = + condition.let { if (it == "*") "*.*" else it }.replace(".", "\\.").replace("*", ".*").toRegex().matches(this) + val condition = path.split(File.separator) + if (path.contains(File.separator) && condition[condition.lastIndex].contains("*")) + path.toFile().parentFile?.listFiles()?.forEach { if (it.name.isMatch(condition[condition.lastIndex])) add(it.absolutePath) } + else SError.make("Could not resolve file path $path") + } + } + } + } + +/** + * 检查文件是否为合法的压缩包文件 + * + * - 如果不是文件 (可能是目录) - 返回 true + * - 如果文件不存在 - 返回 false + * @return [Boolean] + */ +internal fun File.isValidZip(): Boolean { + if (isFile.not()) return true + if (exists().not()) return false + return runCatching { ZipFile(this).use {}; true }.getOrNull() ?: false +} + +/** + * 检查目录是否为空 + * + * - 如果不是目录 (可能是文件) - 返回 true + * - 如果文件不存在 - 返回 true + * @return [Boolean] + */ +internal fun File.isEmpty() = exists().not() || isDirectory.not() || listFiles().isNullOrEmpty() + +/** 删除目录下的空子目录 */ +internal fun File.deleteEmptyRecursively() { + listFiles { file -> file.isDirectory }?.forEach { subDir -> + subDir.deleteEmptyRecursively() + if (subDir.listFiles()?.isEmpty() == true) subDir.delete() + } +} + +/** + * 获取当前文件内容的字符串内容 (同步) + * @return [String] + */ +internal fun String.executeFileBody() = runCatching { toFile().readText() }.getOrNull() ?: "" \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/HttpFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/HttpFactory.kt new file mode 100644 index 0000000..b335680 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/HttpFactory.kt @@ -0,0 +1,58 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/15. + */ +package com.highcapable.sweetdependency.utils + +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.debug.SLog +import okhttp3.Credentials +import okhttp3.OkHttpClient +import okhttp3.Request +import java.util.concurrent.TimeUnit + +/** + * 获取当前 URL 地址的请求体字符串内容 (GET) (同步) + * @param username 用户名 + * @param password 密码 + * @param isShowFailure 是否显示错误 - 默认是 + * @return [String] + */ +internal fun String.executeUrlBody(username: String = "", password: String = "", isShowFailure: Boolean = true) = runCatching { + OkHttpClient() + .newBuilder() + .connectTimeout(10000, TimeUnit.MILLISECONDS) + .authenticator { _, response -> + if (response.code == 400 || response.code == 401) + response.request.newBuilder() + .header("Authorization", Credentials.basic(username, password)) + .build() + else null + }.build().newCall( + Request.Builder().url(when { + startsWith("https://") -> "https://" + replace("https://", "").replace("//", "/") + startsWith("http://") -> "http://" + replace("http://", "").replace("//", "/") + else -> SError.make("Invalid URL: $this") + }).get().build() + ).execute().let { + if (it.code == 200 || it.code == 404) it.body?.string() ?: "" + else SError.make("Request failed with code ${it.code}") + } +}.onFailure { if (isShowFailure) SLog.error("Failed to connect to $this\n$it") }.getOrNull() ?: "" \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThreadPoolFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThreadPoolFactory.kt new file mode 100644 index 0000000..2fe9050 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThreadPoolFactory.kt @@ -0,0 +1,47 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/7/16. + */ +package com.highcapable.sweetdependency.utils + +import java.util.concurrent.ExecutorService +import java.util.concurrent.Executors + +/** + * 创建当前线程池服务 + * @return [ExecutorService] + */ +private val currentThreadPool get() = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors()) + +/** + * 启动 [Thread] 延迟等待 [block] 的结果 [T] + * @param delayMs 延迟毫秒 - 默认 1 ms + * @param block 方法块 + * @return [T] + */ +internal inline fun T.await(delayMs: Long = 1, crossinline block: (T) -> Unit): T { + currentThreadPool.apply { + execute { + if (delayMs > 0) Thread.sleep(delayMs) + block(this@await) + shutdown() + } + }; return this +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThrowableFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThrowableFactory.kt new file mode 100644 index 0000000..f8a5e71 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/ThrowableFactory.kt @@ -0,0 +1,31 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/19. + */ +package com.highcapable.sweetdependency.utils + +import java.io.PrintWriter +import java.io.StringWriter + +/** + * 写出异常堆栈到字符串 + * @return [String] + */ +internal fun Throwable.dumpToString() = StringWriter().apply { printStackTrace(PrintWriter(this).apply { flush() }) }.toString() \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/VariableFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/VariableFactory.kt new file mode 100644 index 0000000..c634cce --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/VariableFactory.kt @@ -0,0 +1,150 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/14. + */ +package com.highcapable.sweetdependency.utils + +/** + * 允许 [MutableList] 进行 [orEmpty] 操作后返回 [MutableList] + * @return [MutableList]<[T]> + */ +internal fun MutableList?.orEmpty() = this ?: emptyList().toMutableList() + +/** + * 允许 [MutableList] 进行 [filter] 操作后返回 [MutableList] + * @param predicate 方法体 + * @return [MutableList]<[T]> + */ +internal inline fun MutableList.filter(predicate: (T) -> Boolean) = filterTo(mutableListOf(), predicate).toMutableList() + +/** + * 允许 [MutableMap] 进行 [filter] 操作后返回 [MutableMap] + * @param predicate 方法体 + * @return [MutableMap]<[K], [V]> + */ +internal inline fun MutableMap.filter(predicate: (Map.Entry) -> Boolean) = filterTo(mutableMapOf(), predicate).toMutableMap() + +/** + * 获取 [MutableMap] 第一位元素 (数组为空返回 null) + * @return [MutableMap.MutableEntry]<[K], [V]> or null + */ +internal fun MutableMap.single() = entries.firstOrNull() + +/** + * 当数组不为空时返回非空 + * @return [T] or null + */ +internal inline fun > T.noEmpty() = takeIf { it.isNotEmpty() } + +/** + * 当字符串不为空白时返回非空 + * @return [T] or null + */ +internal inline fun T.noBlank() = takeIf { it.isNotBlank() } + +/** + * 判断数组中是否存在重复元素 + * @return [Boolean] + */ +internal fun List<*>.hasDuplicate() = distinct().size != size + +/** + * 查找数组中的重复元素 + * @return [List]<[T]> + */ +internal inline fun List.findDuplicates() = distinct().filter { e -> count { it == e } > 1 }.distinct() + +/** + * 字符串数组转换为内容字符串 + * @return [String] + */ +internal fun List.joinToContent() = joinToString("\n").trim() + +/** + * 空格字符串数组转换为 [MutableList] + * @return [MutableList]<[String]> + */ +internal fun String.toSpaceList() = when { + contains(" ") -> replace("\\s+".toRegex(), " ").split(" ").toMutableList() + isNotBlank() -> mutableListOf(this) + else -> mutableListOf() +} + +/** + * 下划线、分隔线、点、空格命名字符串转小驼峰命名字符串 + * @return [String] + */ +internal fun String.camelcase() = runCatching { + split("_", ".", "-", " ").map { it.replaceFirstChar { e -> e.titlecase() } }.let { words -> + words.first().replaceFirstChar { it.lowercase() } + words.drop(1).joinToString("") + } +}.getOrNull() ?: this + +/** + * 下划线、分隔线、点、空格命名字符串转大驼峰命名字符串 + * @return [String] + */ +internal fun String.uppercamelcase() = camelcase().capitalize() + +/** + * 字符串首字母大写 + * @return [String] + */ +internal fun String.capitalize() = replaceFirstChar { it.uppercaseChar() } + +/** + * 字符串首字母小写 + * @return [String] + */ +internal fun String.uncapitalize() = replaceFirstChar { it.lowercaseChar() } + +/** + * 转换字符串第一位数字到外观近似大写字母 + * @return [String] + */ +internal fun String.firstNumberToLetter() = + if (isNotBlank()) (mapOf( + '0' to 'O', '1' to 'I', + '2' to 'Z', '3' to 'E', + '4' to 'A', '5' to 'S', + '6' to 'G', '7' to 'T', + '8' to 'B', '9' to 'P' + )[first()] ?: first()) + substring(1) + else this + +/** + * 转换字符串为非 Java 关键方法引用名称 + * @return [String] + */ +internal fun String.toNonJavaName() = if (lowercase() == "class") replace("lass", "lazz") else this + +/** + * 字符串中是否存在插值符号 ${...} + * @return [Boolean] + */ +internal fun String.hasInterpolation() = contains("\${") && contains("}") + +/** + * 替换字符串中的插值符号 ${...} + * @param result 回调结果 + * @return [String] + */ +internal fun String.replaceInterpolation(result: (groupValue: String) -> CharSequence) = + "\\$\\{(.+?)}".toRegex().replace(this) { result(it.groupValues[1]) } \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/CodeCompiler.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/CodeCompiler.kt new file mode 100644 index 0000000..ef8a4cc --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/CodeCompiler.kt @@ -0,0 +1,193 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/6. + */ +package com.highcapable.sweetdependency.utils.code + +import com.highcapable.sweetdependency.plugin.SweetDependencyExtension +import com.highcapable.sweetdependency.utils.code.entity.MavenPomData +import com.highcapable.sweetdependency.utils.debug.SError +import com.highcapable.sweetdependency.utils.deleteEmptyRecursively +import com.highcapable.sweetdependency.utils.parseFileSeparator +import com.highcapable.sweetdependency.utils.toFile +import java.io.File +import java.util.jar.JarEntry +import java.util.jar.JarOutputStream +import javax.tools.DiagnosticCollector +import javax.tools.JavaFileObject +import javax.tools.StandardLocation +import javax.tools.ToolProvider + +/** + * 代码编译处理类 + */ +internal object CodeCompiler { + + /** Maven 模型版本 */ + private const val MAVEN_MODEL_VERSION = "4.0.0" + + /** + * 编译 [JavaFileObject] 为 Maven 依赖 + * @param pomData Maven POM 实体 + * @param outputDirPath 编译输出目录路径 + * @param files [JavaFileObject] 数组 + * @param compileOnlyFiles [JavaFileObject] 仅编译数组 - 默认空 + * @throws SweetDependencyExtension 如果编译失败 + */ + internal fun compile( + pomData: MavenPomData, + outputDirPath: String, + files: List, + compileOnlyFiles: List = mutableListOf() + ) { + val outputDir = outputDirPath.toFile() + if (files.isEmpty()) { + if (outputDir.exists()) outputDir.deleteRecursively() + return + } else outputDir.also { if (it.exists().not()) it.mkdirs() } + val outputBuildDir = "$outputDirPath/build".toFile().also { if (it.exists()) it.deleteRecursively(); it.mkdirs() } + val outputClassesDir = "${outputBuildDir.absolutePath}/classes".toFile().apply { mkdirs() } + val outputSourcesDir = "${outputBuildDir.absolutePath}/sources".toFile().apply { mkdirs() } + val compiler = ToolProvider.getSystemJavaCompiler() + val diagnostics = DiagnosticCollector() + val fileManager = compiler.getStandardFileManager(diagnostics, null, null) + fileManager.setLocation(StandardLocation.CLASS_OUTPUT, listOf(outputClassesDir)) + val task = compiler.getTask(null, fileManager, diagnostics, null, null, compileOnlyFiles + files) + val result = task.call() + var diagnosticsMessage = "" + diagnostics.diagnostics?.forEach { diagnostic -> + diagnosticsMessage += " > Error on line ${diagnostic.lineNumber} in ${diagnostic.source?.toUri()}\n" + diagnosticsMessage += " ${diagnostic.getMessage(null)}\n" + } + runCatching { fileManager.close() } + if (result) { + compileOnlyFiles.forEach { "${outputClassesDir.absolutePath}/${it.name}".replace(".java", ".class").toFile().delete() } + files.forEach { + it.toFiles(outputSourcesDir).also { (sourceDir, sourceFile) -> + sourceDir.mkdirs() + sourceFile.writeText(it.getCharContent(true).toString()) + } + }; outputClassesDir.deleteEmptyRecursively() + writeMetaInf(outputClassesDir.absolutePath) + writeMetaInf(outputSourcesDir.absolutePath) + createJarAndPom(pomData, outputDir, outputBuildDir, outputClassesDir, outputSourcesDir) + } else SError.make("Failed to compile java files into path: $outputDirPath\n$diagnosticsMessage") + } + + /** + * 打包 JAR 并写入 POM + * @param pomData Maven POM 实体 + * @param outputDir 编译输出目录 + * @param buildDir 编译目录 + * @param classesDir 编译二进制目录 + * @param sourcesDir 编译源码目录 + */ + private fun createJarAndPom(pomData: MavenPomData, outputDir: File, buildDir: File, classesDir: File, sourcesDir: File) { + val pomPath = "${pomData.groupId.toPomPathName()}/${pomData.artifactId}/${pomData.version}" + val pomDir = "${outputDir.absolutePath}/$pomPath".toFile().also { if (it.exists().not()) it.mkdirs() } + packageToJar(classesDir, pomDir, pomData, isSourcesJar = false) + packageToJar(sourcesDir, pomDir, pomData, isSourcesJar = true) + writePom(pomDir.absolutePath, pomData) + buildDir.deleteRecursively() + } + + /** + * 写入 META-INF/MANIFEST.MF + * @param dirPath 当前目录路径 + */ + private fun writeMetaInf(dirPath: String) { + val metaInfFile = "$dirPath/META-INF".toFile().apply { mkdirs() } + "${metaInfFile.absolutePath}/MANIFEST.MF".toFile().writeText("Manifest-Version: 1.0") + } + + /** + * 写入 POM + * @param dirPath 当前目录路径 + * @param pomData Maven POM 实体 + */ + private fun writePom(dirPath: String, pomData: MavenPomData) = + "$dirPath/${pomData.artifactId}-${pomData.version}.pom".toFile().writeText( + """ + + + $MAVEN_MODEL_VERSION + ${pomData.groupId} + ${pomData.artifactId} + ${pomData.version} + + """.trimIndent() + ) + + /** + * 转换到 [MavenPomData] 目录名称 + * @return [String] + */ + private fun String.toPomPathName() = trim().replace(".", "/").replace("_", "/").replace(":", "/").replace("-", "/") + + /** + * 转换到文件 + * @param outputDir 输出目录 + * @return [Pair]<[File], [File]> + */ + private fun JavaFileObject.toFiles(outputDir: File): Pair { + val outputDirPath = outputDir.absolutePath + val separator = if (name.contains("/")) "/" else "\\" + val names = name.split(separator) + val fileName = names[names.lastIndex] + val folderName = name.replace(fileName, "") + return "$outputDirPath/$folderName".toFile() to "$outputDirPath/$name".toFile() + } + + /** + * 打包编译输出目录到 JAR + * @param buildDir 编译目录 + * @param outputDir 输出目录 + * @param pomData Maven POM 实体 + * @param isSourcesJar 是否为源码 JAR + * @throws SweetDependencyExtension 如果编译输出目录不存在 + */ + private fun packageToJar(buildDir: File, outputDir: File, pomData: MavenPomData, isSourcesJar: Boolean) { + if (buildDir.exists().not()) SError.make("Jar file output path not found: ${buildDir.absolutePath}") + /** + * 添加文件到 JAR + * @param jos 当前输出流 + * @param parentPath 父级路径 + */ + fun File.addToJar(jos: JarOutputStream, parentPath: String = "") { + val currentPath = "$parentPath$name".replace("${buildDir.name}|", "").replace("|", "/").parseFileSeparator() + if (isFile) { + if (name.startsWith(".")) return + jos.putNextEntry(JarEntry(currentPath)) + inputStream().use { fis -> + val buffer = ByteArray(4096) + var bytesRead: Int + while (fis.read(buffer).also { bytesRead = it } != -1) jos.write(buffer, 0, bytesRead) + } + jos.closeEntry() + } else listFiles()?.forEach { it.addToJar(jos, parentPath = "$currentPath|") } + } + val jarFile = "${outputDir.absolutePath}/${pomData.artifactId}-${pomData.version}${if (isSourcesJar) "-sources" else ""}.jar".toFile() + if (jarFile.exists()) jarFile.delete() + jarFile.outputStream().use { fos -> JarOutputStream(fos).use { jos -> buildDir.addToJar(jos) } } + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/entity/MavenPomData.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/entity/MavenPomData.kt new file mode 100644 index 0000000..50be7e1 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/entity/MavenPomData.kt @@ -0,0 +1,30 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/24. + */ +package com.highcapable.sweetdependency.utils.code.entity + +/** + * Maven POM 实体 + * @param groupId Group ID + * @param artifactId Artifact Id + * @param version 版本 + */ +internal data class MavenPomData(internal val groupId: String, internal val artifactId: String, internal val version: String) \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/factory/CodeCompilerFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/factory/CodeCompilerFactory.kt new file mode 100644 index 0000000..96eaa93 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/code/factory/CodeCompilerFactory.kt @@ -0,0 +1,84 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/8/6. + */ +@file:Suppress("unused") + +package com.highcapable.sweetdependency.utils.code.factory + +import com.highcapable.sweetdependency.plugin.SweetDependencyExtension +import com.highcapable.sweetdependency.utils.code.CodeCompiler +import com.highcapable.sweetdependency.utils.code.entity.MavenPomData +import com.squareup.javapoet.JavaFile +import javax.tools.JavaFileObject + +/** + * 编译 [JavaFile] 为 Maven 依赖 + * @param pomData Maven POM 实体 + * @param outputDirPath 编译输出目录路径 + * @param compileOnlyFiles [JavaFile] 仅编译数组 - 默认空 + * @throws SweetDependencyExtension 如果编译失败 + */ +@JvmName("compileWithJavaFile") +internal fun JavaFile.compile(pomData: MavenPomData, outputDirPath: String, compileOnlyFiles: List = mutableListOf()) = + CodeCompiler.compile( + pomData = pomData, + outputDirPath = outputDirPath, + files = listOf(toJavaFileObject()), + compileOnlyFiles = mutableListOf().also { compileOnlyFiles.forEach { e -> it.add(e.toJavaFileObject()) } } + ) + +/** + * 编译 [JavaFile] 为 Maven 依赖 + * @param pomData Maven POM 实体 + * @param outputDirPath 编译输出目录路径 + * @param compileOnlyFiles [JavaFile] 仅编译数组 - 默认空 + * @throws SweetDependencyExtension 如果编译失败 + */ +@JvmName("compileWithJavaFile") +internal fun List.compile(pomData: MavenPomData, outputDirPath: String, compileOnlyFiles: List = mutableListOf()) = + CodeCompiler.compile( + pomData = pomData, + outputDirPath = outputDirPath, + files = mutableListOf().also { forEach { e -> it.add(e.toJavaFileObject()) } }, + compileOnlyFiles = mutableListOf().also { compileOnlyFiles.forEach { e -> it.add(e.toJavaFileObject()) } } + ) + +/** + * 编译 [JavaFileObject] 为 Maven 依赖 + * @param pomData Maven POM 实体 + * @param outputDirPath 编译输出目录路径 + * @param compileOnlyFiles [JavaFileObject] 仅编译数组 - 默认空 + * @throws SweetDependencyExtension 如果编译失败 + */ +@JvmName("compileWithJavaFileObject") +internal fun JavaFileObject.compile(pomData: MavenPomData, outputDirPath: String, compileOnlyFiles: List = mutableListOf()) = + CodeCompiler.compile(pomData, outputDirPath, listOf(this), compileOnlyFiles) + +/** + * 编译 [JavaFileObject] 为 Maven 依赖 + * @param pomData Maven POM 实体 + * @param outputDirPath 编译输出目录路径 + * @param compileOnlyFiles [JavaFileObject] 仅编译数组 - 默认空 + * @throws SweetDependencyExtension 如果编译失败 + */ +@JvmName("compileWithJavaFileObject") +internal fun List.compile(pomData: MavenPomData, outputDirPath: String, compileOnlyFiles: List = mutableListOf()) = + CodeCompiler.compile(pomData, outputDirPath, files = this, compileOnlyFiles) \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SError.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SError.kt new file mode 100644 index 0000000..2a65d5a --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SError.kt @@ -0,0 +1,38 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/31. + */ +package com.highcapable.sweetdependency.utils.debug + +import com.highcapable.sweetdependency.exception.SweetDependencyUnresolvedException + +/** + * 全局异常管理类 + */ +internal object SError { + + /** + * 抛出异常 + * @param msg 消息内容 + * @throws e 异常内容 - 默认空 + * @throws SweetDependencyUnresolvedException + */ + internal fun make(msg: String, e: Throwable? = null): Nothing = throw SweetDependencyUnresolvedException(msg, e) +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SLog.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SLog.kt new file mode 100644 index 0000000..a9f93fa --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/debug/SLog.kt @@ -0,0 +1,131 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/25. + */ +@file:Suppress("MemberVisibilityCanBePrivate") + +package com.highcapable.sweetdependency.utils.debug + +import com.highcapable.sweetdependency.SweetDependency +import com.highcapable.sweetdependency.utils.await +import org.apache.log4j.Logger + +/** + * 全局 Log 管理类 + */ +internal object SLog { + + internal const val DONE = "✅" + internal const val IGNORE = "❎" + internal const val ERROR = "❌" + internal const val WARN = "⚠️" + internal const val LINK = "➡️" + internal const val WIRE = "⚙️" + internal const val UP = "⬆️" + internal const val ROTATE = "\uD83D\uDD04" + internal const val ANLZE = "\uD83D\uDD0D" + internal const val STRNG = "\uD83D\uDCAA" + + /** 当前日志输出对象 */ + private val logger = Logger.getLogger(SLog::class.java) + + /** 短时间内不重复的日志内容 */ + private var noRepeatInThisTimeContent = "" + + /** 是否启用详细模式 */ + internal var isVerboseMode = true + + /** + * 打印 Verbose 级别 Log (无颜色) + * @param msg 消息内容 + * @param symbol 前缀符号 - 仅限非 [noTag] - 默认无 + * @param noTag 无标签 - 默认否 + * @param noRepeat 短时间内不重复输出 - 默认否 + */ + internal fun verbose(msg: Any, symbol: String = "", noTag: Boolean = false, noRepeat: Boolean = false) { + if (isVerboseMode) info(msg, symbol, noTag, noRepeat) + } + + /** + * 打印 Info (提醒) 级别 Log (绿色) + * @param msg 消息内容 + * @param symbol 前缀符号 - 仅限非 [noTag] - 默认无 + * @param noTag 无标签 - 默认否 + * @param noRepeat 短时间内不重复输出 - 默认否 + */ + internal fun note(msg: Any, symbol: String = "", noTag: Boolean = false, noRepeat: Boolean = false) = + log(if (noTag) msg else msg.createSymbolMsg(symbol), color = "38;5;10", noRepeat = noRepeat) + + /** + * 打印 Info 级别 Log (无颜色) + * @param msg 消息内容 + * @param symbol 前缀符号 - 仅限非 [noTag] - 默认无 + * @param noTag 无标签 - 默认否 + * @param noRepeat 短时间内不重复输出 - 默认否 + */ + internal fun info(msg: Any, symbol: String = "", noTag: Boolean = false, noRepeat: Boolean = false) = + log(if (noTag) msg else msg.createSymbolMsg(symbol), noRepeat = noRepeat) + + /** + * 打印 Warn 级别 Log (黄色) + * @param msg 消息内容 + * @param symbol 前缀符号 - 仅限非 [noTag] - 默认 [WARN] + * @param noTag 无标签 - 默认否 + * @param noRepeat 短时间内不重复输出 - 默认否 + */ + internal fun warn(msg: Any, symbol: String = WARN, noTag: Boolean = false, noRepeat: Boolean = false) = + log(if (noTag) msg else msg.createSymbolMsg(symbol), color = "33", noRepeat = noRepeat) + + /** + * 打印 Error 级别 Log (红色) + * @param msg 消息内容 + * @param symbol 前缀符号 - 仅限非 [noTag] - 默认 [ERROR] + * @param noTag 无标签 - 默认否 + * @param noRepeat 短时间内不重复输出 - 默认否 + */ + internal fun error(msg: Any, symbol: String = ERROR, noTag: Boolean = false, noRepeat: Boolean = false) = + log(if (noTag) msg else msg.createSymbolMsg(symbol), isError = true, noRepeat = noRepeat) + + /** + * 创建符号消息内容 + * @param symbol 前缀符号 + * @return [String] + */ + private fun Any.createSymbolMsg(symbol: String) = + if (symbol.isNotBlank()) "[${SweetDependency.TAG}] $symbol $this" else "[${SweetDependency.TAG}] $this" + + /** + * 打印 Log + * @param msg 消息内容 + * @param color 颜色代码 - 默认无颜色 + * @param isError 是否强制为错误日志 - 默认否 + * @param noRepeat 短时间内不重复输出 - 默认否 + */ + private fun log(msg: Any, color: String = "0", isError: Boolean = false, noRepeat: Boolean = false) { + if (noRepeat && noRepeatInThisTimeContent == msg.toString()) return + noRepeatInThisTimeContent = msg.toString() + when { + isError -> logger.error(msg) + color != "0" -> println("\u001B[${color}m$msg\u001B[0m") + else -> println(msg) + } + if (noRepeat) await(1500) { noRepeatInThisTimeContent = "" } else noRepeatInThisTimeContent = "" + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/Yaml.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/Yaml.kt new file mode 100644 index 0000000..edffa37 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/Yaml.kt @@ -0,0 +1,117 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/17. + */ +@file:Suppress("unused") + +package com.highcapable.sweetdependency.utils.yaml + +import com.charleskorn.kaml.YamlConfiguration +import com.charleskorn.kaml.yamlMap +import com.highcapable.sweetdependency.gradle.helper.GradleHelper +import com.highcapable.sweetdependency.utils.hasInterpolation +import com.highcapable.sweetdependency.utils.replaceInterpolation +import com.highcapable.sweetdependency.utils.toFile +import com.highcapable.sweetdependency.utils.yaml.factory.YamlMapEntries +import com.highcapable.sweetdependency.utils.yaml.proxy.IYamlDocument +import kotlinx.serialization.decodeFromString +import kotlinx.serialization.serializer +import com.charleskorn.kaml.Yaml as Kaml + +/** + * YAML 文档处理类 + */ +internal object Yaml { + + /** + * 获取 [Kaml] 对象 + * @return [Kaml] + */ + private val kaml by lazy { Kaml(configuration = YamlConfiguration(encodeDefaults = false)) } + + /** + * 从文件解析到 [IYamlDocument] + * @param path 文件路径 + * @return [T] + */ + internal inline fun loadFromFile(path: String) = loadFromString(path.toFile().readText()) + + /** + * 从字符串解析到 [IYamlDocument] + * @param string 字符串 + * @return [T] + */ + internal inline fun loadFromString(string: String) = kaml.decodeFromString(string.flattened()) + + /** + * 从文件解析到 [YamlMapEntries] + * @param path 文件路径 + * @return [YamlMapEntries] + */ + internal fun loadFromFileAsNode(path: String) = loadFromStringAsNode(path.toFile().readText()) + + /** + * 从字符串解析到 [YamlMapEntries] + * @param string 字符串 + * @return [YamlMapEntries] + */ + internal fun loadFromStringAsNode(string: String) = kaml.parseToYamlNode(string.flattened()).yamlMap.entries + + /** + * 序列化 [IYamlDocument] 到文件 + * @param path 文件路径 + * @param formatter 回调字符串格式化方式 + */ + internal inline fun parseToFile(doc: T, path: String, formatter: String.() -> String = { this }) = + path.toFile().writeText(kaml.encodeToString(serializer(), doc).let(formatter)) + + /** + * 字符串平坦化处理 + * + * - 去除字符串中以 # 开头的注释行并去除空行 + * - 调用 [interpFromEnv] 解析可被插值的字符串 + * @return [String] + */ + private fun String.flattened() = trimIndent() + .replace("(^|\\s)#.*".toRegex(), "") + .replace("(?m)^\\s*$(\\n|\\r\\n?)".toRegex(), "") + .let { if (it.hasInterpolation()) it.interpFromEnv() else it } + .trim() + + /** + * 将系统属性资源值插入到当前字符串中 + * + * 形如:${...} + * + * 会按照以下顺序进行查找 ↓ + * + * - 项目 properties + * - 用户 properties + * - 系统 properties + * - 系统环境变量 + * @return [String] + */ + private fun String.interpFromEnv() = replaceInterpolation { key -> + GradleHelper.projectProperties?.get(key)?.toString() + ?: GradleHelper.userProperties?.get(key)?.toString() + ?: runCatching { System.getProperties()[key]?.toString() }.getOrNull() + ?: runCatching { System.getenv(key) }.getOrNull() ?: "" + } +} \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/factory/YamlFactory.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/factory/YamlFactory.kt new file mode 100644 index 0000000..0da51cf --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/factory/YamlFactory.kt @@ -0,0 +1,46 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/19. + */ +package com.highcapable.sweetdependency.utils.yaml.factory + +import com.charleskorn.kaml.YamlException +import com.charleskorn.kaml.YamlMap +import com.charleskorn.kaml.YamlNode +import com.charleskorn.kaml.YamlScalar + +/** YAML 异常类型定义 */ +internal typealias YamlException = YamlException + +/** YAML 节点数组类型定义 */ +internal typealias YamlMapEntries = Map + +/** + * 转换为 YAML 节点数组 + * @return [YamlMapEntries] or null + */ +internal fun YamlNode.asMap() = (this as? YamlMap)?.entries + +/** + * 获取 YAML 节点是否存在 + * @param key 节点名称 + * @return [Boolean] + */ +internal fun YamlMapEntries.isKeyExist(key: String) = keys.singleOrNull { it.content == key } != null \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/proxy/IYamlDocument.kt b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/proxy/IYamlDocument.kt new file mode 100644 index 0000000..c3b5f3c --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/com/highcapable/sweetdependency/utils/yaml/proxy/IYamlDocument.kt @@ -0,0 +1,29 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/5/20. + */ +package com.highcapable.sweetdependency.utils.yaml.proxy + +import java.io.Serializable + +/** + * YAML 文档接口 + */ +internal interface IYamlDocument : Serializable \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencyProjectExtensionFactory.kt b/sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencyProjectExtensionFactory.kt new file mode 100644 index 0000000..23e138a --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencyProjectExtensionFactory.kt @@ -0,0 +1,51 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/25. + */ +@file:Suppress("unused", "UnusedReceiverParameter") + +package org.gradle.kotlin.dsl + +import com.highcapable.sweetdependency.manager.helper.DependencyDeployHelper +import org.gradle.api.artifacts.dsl.DependencyHandler +import org.gradle.plugin.use.PluginDependenciesSpec +import org.gradle.plugin.use.PluginDependencySpec +import org.jetbrains.kotlin.gradle.plugin.KotlinDependencyHandler + +/** + * 自动装配插件依赖 + * @param params 参数数组 + * @return [PluginDependencySpec] + */ +fun PluginDependenciesSpec.autowire(vararg params: Any) = DependencyDeployHelper.resolveAutowire(spec = this, params) + +/** + * 自动装配依赖 + * @param params 参数数组 + * @return [Any] + */ +fun DependencyHandler.autowire(vararg params: String) = DependencyDeployHelper.resolveAutowire(params = params) + +/** + * 自动装配依赖 + * @param params 参数数组 + * @return [Any] + */ +fun KotlinDependencyHandler.autowire(vararg params: String) = DependencyDeployHelper.resolveAutowire(project, params) \ No newline at end of file diff --git a/sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencySettingsExtensionFactory.kt b/sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencySettingsExtensionFactory.kt new file mode 100644 index 0000000..5504d19 --- /dev/null +++ b/sweetdependency-gradle-plugin/src/main/java/org/gradle/kotlin/dsl/SweetDependencySettingsExtensionFactory.kt @@ -0,0 +1,51 @@ +/* + * SweetDependency - An easy autowire and manage dependencies Gradle plugin + * Copyright (C) 2019-2023 HighCapable + * https://github.com/HighCapable/SweetDependency + * + * Apache License Version 2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is Created by fankes on 2023/6/3. + */ +@file:Suppress("unused") + +package org.gradle.kotlin.dsl + +import com.highcapable.sweetdependency.gradle.factory.configure +import com.highcapable.sweetdependency.gradle.factory.get +import com.highcapable.sweetdependency.plugin.extension.dsl.configure.SweetDependencyConfigureExtension +import org.gradle.api.Action +import org.gradle.api.initialization.Settings + +/** + * WORKAROUND: for some reason a type-safe accessor is not generated for the extension, + * even though it is present in the extension container where the plugin is applied. + * This seems to work fine, and the extension methods are only available when the plugin + * is actually applied. + * + * See related link [here](https://stackoverflow.com/questions/72627792/gradle-settings-plugin-extension) + */ + +/** + * Retrieves the [SweetDependencyConfigureExtension] extension. + * @return [SweetDependencyConfigureExtension] + */ +val Settings.sweetDependency get() = get(SweetDependencyConfigureExtension.NAME) + +/** + * Configures the [SweetDependencyConfigureExtension] extension. + * @param configure + */ +fun Settings.sweetDependency(configure: Action) = configure(SweetDependencyConfigureExtension.NAME, configure) \ No newline at end of file