1
1
import type * as Cause from "../Cause.js"
2
- import type { Clock } from "../Clock.js"
3
2
import * as Context from "../Context.js"
4
3
import type * as Deferred from "../Deferred.js"
5
4
import * as Duration from "../Duration.js"
@@ -139,7 +138,6 @@ const getImpl = core.fnUntraced(function*<K, A, E>(self: RcMapImpl<K, A, E>, key
139
138
if ( o . _tag === "Some" ) {
140
139
entry = o . value
141
140
entry . refCount ++
142
- if ( entry . fiber ) yield * core . interruptFiber ( entry . fiber )
143
141
} else if ( Number . isFinite ( self . capacity ) && MutableHashMap . size ( self . state . map ) >= self . capacity ) {
144
142
return yield * core . fail (
145
143
new core . ExceededCapacityException ( `RcMap attempted to exceed capacity of ${ self . capacity } ` )
@@ -197,17 +195,18 @@ const release = <K, A, E>(self: RcMapImpl<K, A, E>, key: K, entry: State.Entry<A
197
195
}
198
196
199
197
entry . expiresAt = clock . unsafeCurrentTimeMillis ( ) + Duration . toMillis ( self . idleTimeToLive )
198
+ if ( entry . fiber ) return core . void
200
199
201
- return clock . sleep ( self . idleTimeToLive ) . pipe (
202
- core . zipRight ( waitUntilExpired ( entry , clock ) ) ,
203
- core . interruptible ,
204
- core . zipRight ( core . suspend ( ( ) => {
205
- if ( self . state . _tag === "Open" && entry . refCount === 0 ) {
206
- MutableHashMap . remove ( self . state . map , key )
207
- return core . scopeClose ( entry . scope , core . exitVoid )
208
- }
209
- return core . void
210
- } ) ) ,
200
+ return core . interruptibleMask ( function loop ( restore ) : Effect < void > {
201
+ const now = clock . unsafeCurrentTimeMillis ( )
202
+ const remaining = entry . expiresAt - now
203
+ if ( remaining <= 0 ) {
204
+ if ( self . state . _tag === "Closed" || entry . refCount > 0 ) return core . void
205
+ MutableHashMap . remove ( self . state . map , key )
206
+ return restore ( core . scopeClose ( entry . scope , core . exitVoid ) )
207
+ }
208
+ return core . flatMap ( clock . sleep ( Duration . millis ( remaining ) ) , ( ) => loop ( restore ) )
209
+ } ) . pipe (
211
210
fiberRuntime . ensuring ( core . sync ( ( ) => {
212
211
entry . fiber = undefined
213
212
} ) ) ,
@@ -219,16 +218,6 @@ const release = <K, A, E>(self: RcMapImpl<K, A, E>, key: K, entry: State.Entry<A
219
218
)
220
219
} )
221
220
222
- const waitUntilExpired = < A , E > ( entry : State . Entry < A , E > , clock : Clock ) =>
223
- core . suspend ( function loop ( ) : Effect < void > {
224
- const now = clock . unsafeCurrentTimeMillis ( )
225
- const remaining = entry . expiresAt - now
226
- if ( remaining <= 0 ) {
227
- return core . void
228
- }
229
- return core . flatMap ( clock . sleep ( Duration . millis ( remaining ) ) , loop )
230
- } )
231
-
232
221
/** @internal */
233
222
export const keys = < K , A , E > ( self : RcMap . RcMap < K , A , E > ) : Effect < Array < K > > => {
234
223
const impl = self as RcMapImpl < K , A , E >
0 commit comments