-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
684e6ef
commit d1e2deb
Showing
4 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
src/main/kotlin/info/novatec/cbdg/plugin/CamundaBpmnDocumentationGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package info.novatec.cbdg.plugin | ||
|
||
import info.novatec.docu.generator.DocuGenerator | ||
import org.gradle.api.Plugin | ||
import org.gradle.api.Project | ||
import org.gradle.api.provider.Property | ||
import java.io.File | ||
|
||
interface CamundaBpmnDocumentationGeneratorConfiguration { | ||
val templateFile: Property<File> | ||
val camundaBpmnDir: Property<File> | ||
val resultOutputDir: Property<File> | ||
val bpmnDiagramImageDir: Property<File>? | ||
} | ||
|
||
class CamundaBpmnDocumentationGenerator : Plugin<Project> { | ||
|
||
override fun apply(project: Project) { | ||
// Add the 'greeting' extension object | ||
val configuration = project.extensions.create("bu", CamundaBpmnDocumentationGeneratorConfiguration::class.java) | ||
configuration.templateFile.convention(project.layout.buildDirectory.file("resources/main/templates/default.ftl").get().asFile) | ||
configuration.camundaBpmnDir.convention(File("src/main/resources/bpmn")) | ||
configuration.resultOutputDir.convention(project.layout.buildDirectory.dir("\$buildDir/cbdg/html").get().asFile) | ||
configuration.bpmnDiagramImageDir?.convention(File("src/main/resources/images")) | ||
// Add a task that uses configuration from the extension object | ||
|
||
project.task("generate").doLast { | ||
DocuGenerator.parseAndGenerate( | ||
// log, | ||
configuration.templateFile.get(), | ||
configuration.camundaBpmnDir.get(), | ||
configuration.resultOutputDir.get(), | ||
configuration.bpmnDiagramImageDir?.get() | ||
) | ||
} | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
src/main/kotlin/info/novatec/docu/generator/DocuGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package info.novatec.docu.generator | ||
|
||
import info.novatec.cbdg.FreeMarkerService | ||
import info.novatec.docu.parser.main.BpmnParser | ||
import java.io.File | ||
import java.io.FileNotFoundException | ||
import java.io.FileOutputStream | ||
import java.nio.file.Files | ||
import java.nio.file.StandardCopyOption | ||
import kotlin.io.path.Path | ||
import kotlin.io.path.createDirectories | ||
import kotlin.io.path.exists | ||
|
||
object DocuGenerator { | ||
|
||
fun parseAndGenerate( | ||
// log: Log, | ||
templateFile: File, | ||
camundaBpmnDir: File, | ||
resultOutputDir: File, | ||
bpmnDiagramImageDir: File? = null | ||
) { | ||
if (templateFile.name.equals("default.ftl")) { | ||
FileOutputStream(templateFile, false).use { | ||
javaClass.classLoader.getResourceAsStream("templates/default.ftl") | ||
?.transferTo(it) ?: throw FileNotFoundException("templates/default.ftl don't exist.") | ||
} | ||
} | ||
|
||
camundaBpmnDir.listFiles()?.forEach { | ||
// log.info("Generating documentation for file ${it.absolutePath}") | ||
// log.info("Using template ${templateFile.absolutePath}") | ||
|
||
val imageSrcPath = Path("${bpmnDiagramImageDir?.absolutePath}/${it.nameWithoutExtension}.png") | ||
val imageTargetPath = Path("${resultOutputDir.absolutePath}/images/${it.nameWithoutExtension}.png") | ||
imageTargetPath.parent.createDirectories() | ||
if (imageSrcPath.exists()) { | ||
Files.copy(imageSrcPath, imageTargetPath, StandardCopyOption.REPLACE_EXISTING) | ||
} | ||
|
||
val bpmnObject = BpmnParser.parseBpmnFile(it, "${it.nameWithoutExtension}.png") | ||
FreeMarkerService.writeTemplate( | ||
bpmnObject, | ||
templateFile.name, | ||
"${resultOutputDir.absolutePath}/${it.nameWithoutExtension}.html" | ||
) { | ||
setDirectoryForTemplateLoading(templateFile.parentFile) | ||
} | ||
// log.info("Output report into path ${resultOutputDir.absolutePath}") | ||
} ?: throw FileNotFoundException("${camundaBpmnDir.absolutePath} don't exist.") | ||
resultOutputDir.listFiles()?.forEach { | ||
// log.info("Output: " + it.absolutePath) | ||
} ?: throw FileNotFoundException("${resultOutputDir.absolutePath} don't exist.") | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/test/kotlin/info/novatec/cbdg/plugin/CamundaBpmnDocumentationGeneratorTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package info.novatec.cbdg.plugin | ||
|
||
import org.gradle.api.Project | ||
import org.gradle.testfixtures.ProjectBuilder | ||
import org.junit.jupiter.api.Assertions.assertNotNull | ||
import org.junit.jupiter.api.Assertions.assertTrue | ||
import org.junit.jupiter.api.Test | ||
|
||
class CamundaBpmnDocumentationGeneratorTest { | ||
|
||
@Test | ||
fun greetingTest() { | ||
val project: Project = ProjectBuilder.builder().build() | ||
|
||
project.getPluginManager().apply("info.novatec.cbdg") | ||
|
||
assertTrue(project.getPluginManager().hasPlugin("info.novatec.cbdg")) | ||
assertNotNull(project.getTasks().getByName("generate")) | ||
} | ||
} |