KotlinPoet - 生成 Koin 模块
KotlinPoet - Generate Koin module
我是 KotlinPoet 的新手,我找不到如何创建以下 Koin 模块语句:
internal val apiModules = module {
single<Name1> { get<Retrofit>().create(Name1::class.java) }
single<Name2> { get<Retrofit>().create(Name2::class.java) }
}
直接放入 Kotlin 文件(无包装器 class)
我一直在研究 PropertySpec 和 CodeBlock,但我不知道如何导入 Koin DSL 或如何在代码生成中引用那些导入的 classes。我也无法通过纯字符串生成来生成代码。
您需要使用 FileSpec
生成文件并为模块添加一个 PropertySpec
看起来应该与此相似
val moduleClassName = ClassName("org.koin.core.module.Module", "Module") //This will take care of the import
val moduleMemberName = MemberName("org.koin.dsl.module", "module") //This will take care of the import
val moduleInitilizerCodeBlock =
CodeBlock.Builder()
.beginControlFlow("%M", moduleMemberName) //This will take care of the {} and indentations
.addStatment(ADD ANOTHER CODE BLOCK SIMNILAR TO THIS FOR THE SINGLE/FACTORY)
.endControlFlow()
.build()
val module = PropertySpec.builder("YOUR MODULE NAME", moduleClassName)
.initializer(moduleInitilizerCodeBlock)
.build()
FileSpec.Builder("FILE PACKAGE", "FILE NAME")
.addProperty(module)
.build()
这不是完整的代码,但它应该为您指明了正确的方向。
旁注:我可能对特定的命名有误,但同样应该足够
我是 KotlinPoet 的新手,我找不到如何创建以下 Koin 模块语句:
internal val apiModules = module {
single<Name1> { get<Retrofit>().create(Name1::class.java) }
single<Name2> { get<Retrofit>().create(Name2::class.java) }
}
直接放入 Kotlin 文件(无包装器 class)
我一直在研究 PropertySpec 和 CodeBlock,但我不知道如何导入 Koin DSL 或如何在代码生成中引用那些导入的 classes。我也无法通过纯字符串生成来生成代码。
您需要使用 FileSpec
生成文件并为模块添加一个 PropertySpec
看起来应该与此相似
val moduleClassName = ClassName("org.koin.core.module.Module", "Module") //This will take care of the import
val moduleMemberName = MemberName("org.koin.dsl.module", "module") //This will take care of the import
val moduleInitilizerCodeBlock =
CodeBlock.Builder()
.beginControlFlow("%M", moduleMemberName) //This will take care of the {} and indentations
.addStatment(ADD ANOTHER CODE BLOCK SIMNILAR TO THIS FOR THE SINGLE/FACTORY)
.endControlFlow()
.build()
val module = PropertySpec.builder("YOUR MODULE NAME", moduleClassName)
.initializer(moduleInitilizerCodeBlock)
.build()
FileSpec.Builder("FILE PACKAGE", "FILE NAME")
.addProperty(module)
.build()
这不是完整的代码,但它应该为您指明了正确的方向。 旁注:我可能对特定的命名有误,但同样应该足够