mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-12-26 04:47:59 +01:00
Pour comments onto Path
This commit is contained in:
parent
13dc66f8e3
commit
38d9351620
1 changed files with 10 additions and 7 deletions
|
@ -38,7 +38,7 @@ class Path(
|
||||||
return if (edges.isEmpty()) {
|
return if (edges.isEmpty()) {
|
||||||
root
|
root
|
||||||
} else {
|
} else {
|
||||||
edges[edges.size - 1].target
|
edges.last().target
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,8 +48,7 @@ class Path(
|
||||||
*/
|
*/
|
||||||
val certificates: List<CertSynopsis>
|
val certificates: List<CertSynopsis>
|
||||||
get() {
|
get() {
|
||||||
val certs: MutableList<CertSynopsis> = ArrayList()
|
val certs: MutableList<CertSynopsis> = mutableListOf(root)
|
||||||
certs.add(root)
|
|
||||||
for (certification in edges) {
|
for (certification in edges) {
|
||||||
certs.add(certification.target)
|
certs.add(certification.target)
|
||||||
}
|
}
|
||||||
|
@ -67,7 +66,7 @@ class Path(
|
||||||
* List of edges.
|
* List of edges.
|
||||||
*/
|
*/
|
||||||
val certifications: List<Certification>
|
val certifications: List<Certification>
|
||||||
get() = ArrayList(edges)
|
get() = edges.toList()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Trust amount of the path.
|
* Trust amount of the path.
|
||||||
|
@ -99,16 +98,20 @@ class Path(
|
||||||
"Not enough depth."
|
"Not enough depth."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// root is c's target -> illegal cycle
|
||||||
var cyclic = root.fingerprint == certification.target.fingerprint
|
var cyclic = root.fingerprint == certification.target.fingerprint
|
||||||
for ((i, edge) in edges.withIndex()) {
|
for ((i, edge) in edges.withIndex()) {
|
||||||
if (cyclic) {
|
if (cyclic) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
// existing edge points to c's target -> illegal cycle
|
||||||
if (edge.target.fingerprint == certification.target.fingerprint) {
|
if (edge.target.fingerprint == certification.target.fingerprint) {
|
||||||
cyclic = if (i == edges.size - 1) {
|
cyclic = if (edges.lastIndex != i) {
|
||||||
edge.userId == certification.userId
|
// Cycle in the middle of the ~~street~~ path
|
||||||
} else {
|
|
||||||
true
|
true
|
||||||
|
} else {
|
||||||
|
// Not a cycle, if we point to a different user-id
|
||||||
|
edge.userId == certification.userId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue