16
16
17
17
package org .scalajs .macrotaskexecutor
18
18
19
- import scala . collection . mutable
19
+ import java . util . HashMap
20
20
import scala .concurrent .{ExecutionContext , ExecutionContextExecutor }
21
21
import scala .scalajs .js
22
+ import scala .scalajs .js .annotation ._
22
23
import scala .util .Random
23
24
import scala .util .control .NonFatal
24
25
@@ -34,10 +35,18 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
34
35
def reportFailure (cause : Throwable ): Unit =
35
36
cause.printStackTrace()
36
37
38
+ @ js.native
39
+ private [this ] trait TaskMap extends js.Object {
40
+ @ JSBracketAccess
41
+ def apply (handle : Int ): js.UndefOr [Runnable ] = js.native
42
+ @ JSBracketAccess
43
+ def update (handle : Int , task : Runnable ): Unit = js.native
44
+ }
45
+
37
46
private [this ] val setImmediate : Runnable => Unit = {
38
47
if (js.typeOf(js.Dynamic .global.setImmediate) == Undefined ) {
39
48
var nextHandle = 1
40
- val tasksByHandle = mutable. Map [ Int , Runnable ]()
49
+ val tasksByHandle = ( new js. Object ). asInstanceOf [ TaskMap ]
41
50
var currentlyRunningATask = false
42
51
43
52
def canUsePostMessage (): Boolean = {
@@ -67,17 +76,15 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
67
76
if (currentlyRunningATask) {
68
77
js.Dynamic .global.setTimeout(() => runIfPresent(handle), 0 )
69
78
} else {
70
- tasksByHandle.get(handle) match {
71
- case Some (task) =>
72
- currentlyRunningATask = true
73
- try {
74
- task.run()
75
- } finally {
76
- tasksByHandle -= handle
77
- currentlyRunningATask = false
78
- }
79
-
80
- case None =>
79
+ val task = tasksByHandle(handle)
80
+ if (task.isDefined) {
81
+ currentlyRunningATask = true
82
+ try {
83
+ task.asInstanceOf [Runnable ].run()
84
+ } finally {
85
+ js.special.delete(tasksByHandle, handle)
86
+ currentlyRunningATask = false
87
+ }
81
88
}
82
89
}
83
90
@@ -129,7 +136,7 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
129
136
val handle = nextHandle
130
137
nextHandle += 1
131
138
132
- tasksByHandle += (handle -> k)
139
+ tasksByHandle(handle) = k
133
140
js.Dynamic .global.postMessage(messagePrefix + handle, " *" )
134
141
()
135
142
}
@@ -144,7 +151,7 @@ object MacrotaskExecutor extends ExecutionContextExecutor {
144
151
val handle = nextHandle
145
152
nextHandle += 1
146
153
147
- tasksByHandle += (handle -> k)
154
+ tasksByHandle(handle) = k
148
155
channel.port2.postMessage(handle)
149
156
()
150
157
}
0 commit comments