Skip to content

Commit 0e3b74b

Browse files
committed
work on channel based waiting
1 parent 6ed6cf0 commit 0e3b74b

File tree

3 files changed

+40
-56
lines changed

3 files changed

+40
-56
lines changed

HarmonyCore/Context/BlockingPoolContextFactory.dbl

+4-2
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,16 @@ namespace Harmony.Core.Context
9292
public override method Dispose, void
9393
endparams
9494
proc
95+
_channel.Writer.Complete()
96+
9597
Monitor.Enter(_madeItems)
9698
try
9799
begin
98100
;;we can only remove items that are 'available'
99101
while(_madeItems.Count > 0)
100102
begin
101103
data target, T
102-
if(!_availableItems.TryTake(target))
104+
if(!_channel.Reader.TryRead(target))
103105
exitloop ;;no more left to remove
104106
end
105107
end
@@ -127,7 +129,7 @@ namespace Harmony.Core.Context
127129
while(_madeItems.Count > targetSize)
128130
begin
129131
data target, T
130-
if(!_availableItems.TryTake(target))
132+
if(!_channel.Reader.TryRead(target))
131133
exitloop ;;no more left to remove
132134

133135
if(Destroy != ^null)

HarmonyCore/Utility/BlockingObjectPool.dbl

+34-52
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import System.Diagnostics
55
import System.Collections.Concurrent
66
import System.Threading
77
import System.Threading.Tasks
8+
import System.Threading.Channels
89

910

1011
namespace Harmony.Core.Utility
@@ -14,7 +15,21 @@ namespace Harmony.Core.Utility
1415
public virtual method Dispose, void
1516
endparams
1617
proc
17-
throw new System.NotImplementedException()
18+
_channel.Writer.Complete()
19+
20+
;; Clear made items
21+
try
22+
begin
23+
Monitor.Enter(_madeItems)
24+
begin
25+
_madeItems.Clear()
26+
end
27+
end
28+
finally
29+
begin
30+
Monitor.Exit(_madeItems)
31+
end
32+
endtry
1833
endmethod
1934

2035
private _factory, @Func<IServiceProvider, T>
@@ -23,7 +38,7 @@ namespace Harmony.Core.Utility
2338
private _maxCreated, int
2439
private _pruneAbove, int
2540
protected _madeItems, @List<ItemPlaceHolder>
26-
protected _availableItems, @BlockingCollection<T>
41+
protected _channel, @Channel<T>
2742
private _waitDuration, TimeSpan
2843
protected readwrite property Init, @Action<T, IServiceProvider>
2944
protected readwrite property Recycle, @Func<T, Task>
@@ -48,33 +63,16 @@ namespace Harmony.Core.Utility
4863
_maxCreated = maxCreated
4964
_pruneAbove = pruneAbove
5065
_waitDuration = waitDuration
51-
_availableItems = new BlockingCollection<T>()
66+
_channel = System.Threading.Channels.Channel.CreateUnbounded<T>()
5267
_madeItems = new List<ItemPlaceHolder>()
5368
endmethod
5469

55-
private class AsyncTakeHelper
56-
public Token, @CancellationToken
57-
public Items, @BlockingCollection<T>
58-
public method Take, T
59-
proc
60-
mreturn Items.Take(Token)
61-
endmethod
62-
endclass
63-
64-
65-
protected method TakeAsync, @Task<T>
66-
token, @CancellationToken
67-
proc
68-
data helper = new AsyncTakeHelper() { Token = token, Items = _availableItems }
69-
mreturn Task.Run(helper.Take, token)
70-
endmethod
71-
7270
protected method CreateFast, T
7371
serviceProvider, @IServiceProvider
7472
proc
7573
data result, @ItemPlaceHolder, ^null
7674
data avilableResult, T
77-
if (_availableItems.TryTake(avilableResult))
75+
if (_channel.Reader.TryRead(avilableResult))
7876
begin
7977
if(this.Init != ^null)
8078
this.Init(avilableResult, serviceProvider)
@@ -154,7 +152,7 @@ namespace Harmony.Core.Utility
154152
data tokenSource = new CancellationTokenSource(_waitDuration)
155153
token = tokenSource.Token
156154
end
157-
data resultObj = await TakeAsync(token)
155+
data resultObj = await _channel.Reader.ReadAsync(token)
158156

159157
if (this.Init != ^null)
160158
this.Init(resultObj, serviceProvider)
@@ -185,42 +183,26 @@ namespace Harmony.Core.Utility
185183
obj, T
186184
endparams
187185
proc
188-
if (_availableItems.Count >= _pruneAbove) then
189-
begin
190-
try
191-
begin
192-
RemoveFromMadeItems(obj)
193-
FinalDestroyItem(obj)
194-
end
195-
catch (ex, @Exception)
196-
begin
197-
;; nothing left to try here
198-
Trace.TraceError(ex.ToString())
199-
end
200-
endtry
201-
end
202-
else
186+
try
203187
begin
204-
try
188+
if(CanRecycle == ^null || CanRecycle(obj)) then
205189
begin
206-
if(CanRecycle == ^null || CanRecycle(obj)) then
207-
begin
208-
RecycleItem(obj)
209-
end
210-
else
211-
begin
212-
RemoveFromMadeItems(obj)
213-
FinalDestroyItem(obj)
214-
end
190+
RecycleItem(obj)
215191
end
216-
catch (ex, @Exception)
192+
else
217193
begin
218194
RemoveFromMadeItems(obj)
219195
FinalDestroyItem(obj)
220-
Trace.TraceError(ex.ToString())
221196
end
222-
endtry
223197
end
198+
catch (ex, @Exception)
199+
begin
200+
RemoveFromMadeItems(obj)
201+
FinalDestroyItem(obj)
202+
Trace.TraceError(ex.ToString())
203+
end
204+
endtry
205+
224206
mreturn false
225207
endmethod
226208

@@ -234,7 +216,7 @@ namespace Harmony.Core.Utility
234216
begin
235217
await Recycle(obj)
236218
end
237-
_availableItems.Add(obj)
219+
await _channel.Writer.WriteAsync(obj)
238220
end
239221
;;async void method - gotta catch em all
240222
catch(ex, @Exception)
@@ -285,6 +267,6 @@ namespace Harmony.Core.Utility
285267
endtry
286268
endmethod
287269

288-
endclass
270+
endclass
289271

290272
endnamespace

Services/StartupCustom.dbl

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ namespace Services
8888
data testDir = findRelativeFolderForAssembly("TestDir")
8989
data contextPool, @ExternalContextPool<ExternalCallContext>
9090
if(Environment.OSVersion.Platform == PlatformID.Unix) then
91-
contextPool = new ExternalContextPool<ExternalCallContext>(Environment.GetEnvironmentVariable("DBLDIR") + "/bin/dbs", 'TraditionalBridge.Test.dbr', testDir, ^null, 4, true)
91+
contextPool = new ExternalContextPool<ExternalCallContext>(Environment.GetEnvironmentVariable("DBLDIR") + "/bin/dbs", (@string)"TraditionalBridge.Test.dbr", testDir, ^null, 4, 4, TimeSpan.FromSeconds(10), true)
9292
else
93-
contextPool = new ExternalContextPool<ExternalCallContext>(Environment.GetEnvironmentVariable("SYNERGYDE64") + "dbl\bin\dbs.exe", 'TraditionalBridge.Test.dbr', testDir, ^null, 4, true)
93+
contextPool = new ExternalContextPool<ExternalCallContext>(Environment.GetEnvironmentVariable("SYNERGYDE64") + "dbl\bin\dbs.exe", (@string)"TraditionalBridge.Test.dbr", testDir, ^null, 4, 4, TimeSpan.FromSeconds(10), true)
9494

9595
services.AddSingleton<IContextFactory<ExternalCallContext>>(contextPool)
9696
services.AddContextPool<ExternalCallContext>()

0 commit comments

Comments
 (0)