Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
Mirai
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Mirai
Commits
7525dc7c
Commit
7525dc7c
authored
May 10, 2020
by
Him188
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add JvmMethodListeners.kt
parent
cbdc8bb0
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
366 additions
and
27 deletions
+366
-27
mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/event/JvmMethodEvents.kt
...c/jvmMain/kotlin/net/mamoe/mirai/event/JvmMethodEvents.kt
+0
-26
mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/event/JvmMethodListeners.kt
...vmMain/kotlin/net/mamoe/mirai/event/JvmMethodListeners.kt
+248
-0
mirai-core/src/jvmTest/kotlin/net/mamoe/mirai/event/EventTests.kt
...re/src/jvmTest/kotlin/net/mamoe/mirai/event/EventTests.kt
+1
-1
mirai-core/src/jvmTest/kotlin/net/mamoe/mirai/event/JvmMethodEventsTest.kt
...mTest/kotlin/net/mamoe/mirai/event/JvmMethodEventsTest.kt
+117
-0
No files found.
mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/event/JvmMethodEvents.kt
deleted
100644 → 0
View file @
cbdc8bb0
/*
* Copyright 2020 Mamoe Technologies and contributors.
*
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
*
* https://github.com/mamoe/mirai/blob/master/LICENSE
*/
package
net.mamoe.mirai.event
/**
*
*/
@Target
(
AnnotationTarget
.
FUNCTION
)
@Retention
(
AnnotationRetention
.
RUNTIME
)
annotation
class
EventHandler
(
val
priority
:
Listener
.
EventPriority
=
Listener
.
EventPriority
.
NORMAL
,
val
ignoreCancelled
:
Boolean
=
true
)
interface
ListenerHoster
fun
ListenerHoster
.
registerEvents
()
{
}
\ No newline at end of file
mirai-core/src/jvmMain/kotlin/net/mamoe/mirai/event/JvmMethodListeners.kt
0 → 100644
View file @
7525dc7c
This diff is collapsed.
Click to expand it.
mirai-core/src/jvmTest/kotlin/net/mamoe/mirai/event/EventTests.kt
View file @
7525dc7c
...
...
@@ -19,7 +19,7 @@ import java.util.concurrent.atomic.AtomicInteger
import
kotlin.test.Test
import
kotlin.test.assertTrue
class
TestEvent
:
Event
,
AbstractEvent
()
{
class
TestEvent
:
AbstractEvent
()
{
var
triggered
=
false
}
...
...
mirai-core/src/jvmTest/kotlin/net/mamoe/mirai/event/JvmMethodEventsTest.kt
0 → 100644
View file @
7525dc7c
/*
* Copyright 2020 Mamoe Technologies and contributors.
*
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
*
* https://github.com/mamoe/mirai/blob/master/LICENSE
*/
@
file
:
Suppress
(
"RedundantSuspendModifier"
,
"unused"
)
package
net.mamoe.mirai.event
import
kotlinx.coroutines.CoroutineScope
import
net.mamoe.mirai.utils.internal.runBlocking
import
org.junit.Test
import
java.util.concurrent.atomic.AtomicInteger
import
kotlin.coroutines.EmptyCoroutineContext
import
kotlin.test.assertEquals
internal
class
JvmMethodEventsTest
{
@Test
fun
testMethodListener
()
{
class
TestClass
:
ListenerHost
,
CoroutineScope
by
CoroutineScope
(
EmptyCoroutineContext
)
{
private
var
called
=
AtomicInteger
(
0
)
fun
getCalled
()
=
called
.
get
()
@EventHandler
suspend
fun
TestEvent
.
`suspend
receiver
param
Unit`
(
event
:
TestEvent
)
{
called
.
getAndIncrement
()
}
@EventHandler
suspend
fun
TestEvent
.
`suspend
receiver
Unit`
()
{
called
.
getAndIncrement
()
}
@EventHandler
suspend
fun
`suspend
param
Unit`
(
event
:
TestEvent
)
{
called
.
getAndIncrement
()
}
@EventHandler
fun
TestEvent
.
`receiver
param
Unit`
(
event
:
TestEvent
)
{
called
.
getAndIncrement
()
}
@EventHandler
suspend
fun
TestEvent
.
`suspend
receiver
param
LS`
(
event
:
TestEvent
):
ListeningStatus
{
called
.
getAndIncrement
()
return
ListeningStatus
.
STOPPED
}
@EventHandler
suspend
fun
TestEvent
.
`suspend
receiver
LS`
():
ListeningStatus
{
called
.
getAndIncrement
()
return
ListeningStatus
.
STOPPED
}
@EventHandler
suspend
fun
`suspend
param
LS`
(
event
:
TestEvent
):
ListeningStatus
{
called
.
getAndIncrement
()
return
ListeningStatus
.
STOPPED
}
@EventHandler
fun
TestEvent
.
`receiver
param
LS`
(
event
:
TestEvent
):
ListeningStatus
{
called
.
getAndIncrement
()
return
ListeningStatus
.
STOPPED
}
}
TestClass
().
run
{
this
.
registerEvents
()
runBlocking
{
TestEvent
().
broadcast
()
}
assertEquals
(
8
,
this
.
getCalled
())
}
}
@Test
fun
testIntercept
()
{
class
TestClass
:
ListenerHost
,
CoroutineScope
by
CoroutineScope
(
EmptyCoroutineContext
)
{
private
var
called
=
AtomicInteger
(
0
)
fun
getCalled
()
=
called
.
get
()
@EventHandler
(
Listener
.
EventPriority
.
HIGHEST
)
private
suspend
fun
TestEvent
.
`suspend
receiver
param
Unit`
(
event
:
TestEvent
)
{
intercept
()
called
.
getAndIncrement
()
}
@EventHandler
(
Listener
.
EventPriority
.
MONITOR
)
private
fun
TestEvent
.
`receiver
param
LS`
(
event
:
TestEvent
):
ListeningStatus
{
called
.
getAndIncrement
()
return
ListeningStatus
.
STOPPED
}
}
TestClass
().
run
{
this
.
registerEvents
()
runBlocking
{
TestEvent
().
broadcast
()
}
assertEquals
(
1
,
this
.
getCalled
())
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment