3
3
package org.jetbrains.experimental.gradle.datalyzer
4
4
5
5
import com.github.ajalt.mordant.terminal.Terminal
6
- import org.jetbrains.experimental.gradle.datalyzer.utils.replaceNonAlphaNumeric
7
6
import java.io.BufferedOutputStream
8
7
import java.io.BufferedWriter
9
8
import java.io.File
@@ -13,19 +12,24 @@ import java.nio.file.StandardOpenOption.SYNC
13
12
import java.util.zip.ZipEntry
14
13
import java.util.zip.ZipOutputStream
15
14
import kotlin.io.path.*
15
+ import org.jetbrains.experimental.gradle.datalyzer.utils.replaceNonAlphaNumeric
16
16
17
17
/* *
18
18
* Gather information about the Gradle project, and save it to disk.
19
19
*/
20
20
internal class Reporter (
21
- private val reportsDir : Path ,
21
+ reportsDir : Path ,
22
22
private val terminal : Terminal ,
23
23
) {
24
- private val scripts = reportsDir.resolve(" scripts.md" )
25
- private val log = reportsDir.resolve(" output.log" )
24
+ private val reportZip = reportsDir.resolve(" ${reportsDir.name} .zip" )
25
+ private val dataDir = reportsDir.resolve(" data" )
26
+
27
+ private val scripts = dataDir.resolve(" scripts.md" )
28
+ private val log = dataDir.resolve(" output.log" )
26
29
27
30
init {
28
31
reportsDir.createDirectories()
32
+ dataDir.createDirectories()
29
33
scripts.createFile()
30
34
log.createFile()
31
35
}
@@ -67,15 +71,15 @@ internal class Reporter(
67
71
68
72
69
73
fun taskOutput (taskName : String ): BufferedOutputStream {
70
- return reportsDir
74
+ return dataDir
71
75
.resolve(" task-stdout-${taskName.replaceNonAlphaNumeric()} -${System .currentTimeMillis()} .txt" )
72
76
.createFile()
73
77
.outputStream()
74
78
.buffered()
75
79
}
76
80
77
81
fun taskData (taskName : String ): BufferedWriter {
78
- return reportsDir
82
+ return dataDir
79
83
.resolve(" task-data-${taskName.replaceNonAlphaNumeric()} -${System .currentTimeMillis()} .txt" )
80
84
.createFile()
81
85
.bufferedWriter()
@@ -100,15 +104,15 @@ internal class Reporter(
100
104
}
101
105
102
106
fun zip (): Path {
103
- val zipFile = reportsDir.parent.resolve( " ${reportsDir.name} .zip " ) .apply {
107
+ val zipFile = reportZip .apply {
104
108
if (exists()) deleteExisting()
105
109
createFile()
106
110
}
107
111
108
112
ZipOutputStream (zipFile.outputStream().buffered()).use { zip ->
109
- reportsDir .walk().forEach { src ->
113
+ dataDir .walk().forEach { src ->
110
114
val zipFileName = src.absolute().invariantSeparatorsPathString
111
- .removePrefix(reportsDir .absolute().invariantSeparatorsPathString)
115
+ .removePrefix(dataDir .absolute().invariantSeparatorsPathString)
112
116
.removePrefix(" /" )
113
117
.let { if (src.isDirectory()) " $it /" else it }
114
118
0 commit comments