javadoc
Test Workflow / Lint and test library (pull_request) Successful in 7m41s
Details
Test Workflow / Lint and test library (pull_request) Successful in 7m41s
Details
This commit is contained in:
parent
6d8c6008e1
commit
57182cf748
|
@ -1,6 +1,7 @@
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.9.21"
|
kotlin("jvm") version "1.9.21"
|
||||||
id("org.jmailen.kotlinter") version "4.1.0"
|
id("org.jmailen.kotlinter") version "4.1.0"
|
||||||
|
id("org.jetbrains.dokka") version "1.9.10"
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,10 +24,18 @@ kotlin {
|
||||||
jvmToolchain(17)
|
jvmToolchain(17)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val dokkaHtml by tasks.getting(org.jetbrains.dokka.gradle.DokkaTask::class)
|
||||||
|
val javadocJar: TaskProvider<Jar> by tasks.registering(Jar::class) {
|
||||||
|
dependsOn(dokkaHtml)
|
||||||
|
archiveClassifier.set("javadoc")
|
||||||
|
from(dokkaHtml.outputDirectory)
|
||||||
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications.register<MavenPublication>("gpr") {
|
publications.register<MavenPublication>("gpr") {
|
||||||
artifactId = "tinyvm"
|
artifactId = "tinyvm"
|
||||||
from(components["java"])
|
from(components["java"])
|
||||||
|
artifact(javadocJar)
|
||||||
pom {
|
pom {
|
||||||
name.set("TeamCity support for Gitea - Test Task - tiny version manager")
|
name.set("TeamCity support for Gitea - Test Task - tiny version manager")
|
||||||
description.set("This is a small project to implement a subset of git's functionality in Kotlin and was " +
|
description.set("This is a small project to implement a subset of git's functionality in Kotlin and was " +
|
||||||
|
|
|
@ -2,28 +2,36 @@ package tinyvm
|
||||||
|
|
||||||
import java.security.MessageDigest
|
import java.security.MessageDigest
|
||||||
import java.time.Instant
|
import java.time.Instant
|
||||||
|
import java.util.HexFormat
|
||||||
|
|
||||||
abstract class Object(
|
/**
|
||||||
val type: String,
|
* Represents an arbitrary version manager object.
|
||||||
) {
|
*/
|
||||||
|
abstract class Object(val type: String) {
|
||||||
abstract val data: String
|
abstract val data: String
|
||||||
|
|
||||||
fun hash(): String =
|
fun hash(): String =
|
||||||
MessageDigest
|
HexFormat.of().formatHex(
|
||||||
.getInstance("SHA-1")
|
MessageDigest
|
||||||
.digest("$type ${data.length}\u0000$data".toByteArray())
|
.getInstance("SHA-1")
|
||||||
.toHex()
|
.digest("$type ${data.length}\u0000$data".toByteArray()),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Commits are a pointer to a 'head' tree with some metadata.
|
||||||
|
*/
|
||||||
class Commit(
|
class Commit(
|
||||||
val tree: Tree,
|
val tree: Tree,
|
||||||
val author: Author,
|
val author: Author,
|
||||||
val message: String,
|
val message: String,
|
||||||
val timestamp: Instant,
|
val timestamp: Instant,
|
||||||
) : Object("commit") {
|
) : Object("commit") {
|
||||||
// Use \n\n for end of header in-case additional metadata is implemented in the future.
|
|
||||||
override val data: String
|
override val data: String
|
||||||
|
// Use \n\n for end of header in-case additional metadata is implemented in the future.
|
||||||
get() = "tree ${tree.hash()}\nauthor $author\ntimestamp ${timestamp.epochSecond}\n\n$message"
|
get() = "tree ${tree.hash()}\nauthor $author\ntimestamp ${timestamp.epochSecond}\n\n$message"
|
||||||
|
|
||||||
|
override fun toString(): String = "commit ${hash()}\n$data"
|
||||||
}
|
}
|
||||||
|
|
||||||
data class Author(
|
data class Author(
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
package tinyvm
|
|
||||||
|
|
||||||
import java.util.HexFormat
|
|
||||||
|
|
||||||
fun ByteArray.toHex(): String = HexFormat.of().formatHex(this)
|
|
|
@ -1,7 +1,13 @@
|
||||||
package tinyvm
|
package tinyvm
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tree nodes are either trees or blobs, represented by this sealed class.
|
||||||
|
*/
|
||||||
sealed class Node(type: String) : Object(type)
|
sealed class Node(type: String) : Object(type)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A tree is a set of named nodes.
|
||||||
|
*/
|
||||||
class Tree(val nodes: Map<String, Node>) : Node("tree") {
|
class Tree(val nodes: Map<String, Node>) : Node("tree") {
|
||||||
// For simplicity just use the hex-formatted hash, not the actual value like git does.
|
// For simplicity just use the hex-formatted hash, not the actual value like git does.
|
||||||
override val data: String
|
override val data: String
|
||||||
|
@ -11,4 +17,7 @@ class Tree(val nodes: Map<String, Node>) : Node("tree") {
|
||||||
}.sorted().joinToString()
|
}.sorted().joinToString()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A blob is a data container.
|
||||||
|
*/
|
||||||
class Blob(override val data: String) : Node("blob")
|
class Blob(override val data: String) : Node("blob")
|
Reference in New Issue