-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathRepoPattern.kt
108 lines (97 loc) · 4.67 KB
/
RepoPattern.kt
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package at.hannibal2.skyhanni.utils.repopatterns
import at.hannibal2.skyhanni.SkyHanniMod
import org.intellij.lang.annotations.Language
import java.util.regex.Pattern
/**
* RepoPattern is our innovative tool to cope with the fucking game updates Hypixel deems to be important enough to brick
* our regexes over for.
*
* ## Usage
*
* RepoPattern is only available in kotlin. If you must use a regex from java code that you anticipate might need updating
* in the future, please have a kotlin wrapper from which you pull the regex using a getter method of sorts.
*
* In order to use a RepoPattern, you need to obtain a reference to that repo pattern statically during pre init. This
* means you must either be loaded by [SkyHanniMod.loadModule] directly, or must be loaded during class or object
* initialization of an object that is pre init loaded. You will then have to bind that repo pattern to a field using
* kotlin delegation syntax:
*
* ```kt
* class SomeFeatureModule {
* // Initialize your regex
* val myRegey by /* notice the by here, instead of a = */ RepoPattern.of("someUniqueKey", "^[a-z]+")
* }
* ```
*
* If used like this, nothing will break. If you do want to live a little more daring, you can also keep the original
* reference around. If you do this, make sure that you only ever create one RepoPattern per key, and only ever use that
* RepoPattern instance bound to one field like so:
* ```kt
* class SomeFeatureModule {
* // Initialize your RepoPattern
* val meta = RepoPattern.of("someUniqueKey", "^[a-z]+")
* val pattern by meta // Creating a new RepoPattern.of in here for the same key would be illegal
* }
* ```
*
* When accessing the metaobject (the RepoPattern instance itself), then you afford yourself less protection at the cost
* of slightly more options.
*/
sealed class RepoPattern : CommonPatternInfo<String, Pattern>() {
/**
* Check whether [value] has been loaded remotely or from the fallback value at [defaultPattern]. In case this is
* accessed off-thread there are no guarantees for the correctness of this value in relation to any specific call
* to [value].
*/
abstract override val isLoadedRemotely: Boolean
/**
* Check whether [value] was compiled from a value other than the [defaultPattern]. This is `false` even when
* loading remotely if the remote pattern matches the local one.
*/
abstract override val wasOverridden: Boolean
/**
* The default pattern that is specified at compile time. This local pattern will be a fallback in case there is no
* remote pattern available or the remote pattern does not compile.
*/
abstract override val defaultPattern: String
/**
* Key for this pattern. Used as an identifier when loading from the repo. Should be consistent across versions.
*/
abstract override val key: String
/**
* Should not be accessed directly. Instead, use delegation at one code location and share the regex from there.
* ```kt
* val actualValue: Pattern by pattern
* ```
*/
abstract override val value: Pattern
companion object {
/**
* Obtain a reference to a [Pattern] backed by either a local regex, or a remote regex.
* Check the documentation of [RepoPattern] for more information.
*
* This method supports "Open regex101.com" using [LivePlugin](https://plugins.jetbrains.com/plugin/7282-liveplugin).
* To use it, install LivePlugin, enable "Run plugins on IDE start" and "Run project specific plugins".
* Now you can use ALT+ENTER while hovering over a [pattern] call using your text cursor to access the "Open in regex101.com" intention.
* Add a KDoc comment to the associated variable containing lines starting with `REGEX-TEST: ` to pre-fill examples.
*/
fun pattern(key: String, @Language("RegExp") fallback: String): RepoPattern {
return RepoPatternManager.of(key, fallback)
}
fun list(key: String, @Language("RegExp") vararg fallbacks: String): RepoPatternList {
return RepoPatternManager.ofList(key, fallbacks)
}
/**
* Obtains a [RepoPatternGroup] to allow for easier defining [RepoPattern]s with common prefixes.
*/
fun group(prefix: String): RepoPatternGroup {
return RepoPatternGroup(prefix)
}
/**
* Obtains a [RepoPatternExclusiveGroup] which functions like a [RepoPatternGroup] but the key namespace can only be used via this object.
*/
fun exclusiveGroup(prefix: String): RepoPatternExclusiveGroupInfo {
return RepoPatternExclusiveGroupInfo(prefix, null)
}
}
}