blob: cb0a567019b3cf06ab634b7e64c4cc0307b0f43f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
package org.jetbrains.dokka
import java.io.File
/**
* Represents locations in the documentation in the form of [path](File).
*
* Locations are provided by [LocationService.location] function.
*
* $file: [File] for this location
* $path: [String] representing path of this location
*/
public data class Location(val file: File) {
public val path : String
get() = file.path
}
/**
* Provides means of retrieving locations for [DocumentationNode](documentation nodes)
*
* `LocationService` determines where documentation for particular node should be generated
*
* * [FoldersLocationService] – represent packages and types as folders, members as files in those folders.
* * [SingleFolderLocationService] – all documentation is generated into single folder using fully qualified names
* for file names.
*/
public trait LocationService {
/**
* Calculates location for particular node in output structure
*/
fun location(node: DocumentationNode): Location
}
public fun escapeUri(path: String): String = path.replace('<', '-').replace('>', '-')
/**
* Returns relative location between two nodes. Used for relative links in documentation.
*/
fun LocationService.relativeLocation(owner: DocumentationNode, node: DocumentationNode, extension: String): Location {
return relativeLocation(location(owner), node, extension)
}
/**
* Returns relative location between base location and a node. Used for relative links in documentation.
*/
fun LocationService.relativeLocation(owner: Location, node: DocumentationNode, extension: String): Location {
val ownerFolder = owner.file.getParentFile()!!
val memberPath = location(node).file.appendExtension(extension)
return Location(ownerFolder.getRelativePath(memberPath))
}
|