Meine Implementierung des Buffers
This commit is contained in:
@@ -70,6 +70,7 @@
|
|||||||
<Compile Include="src\Online.cs" />
|
<Compile Include="src\Online.cs" />
|
||||||
<Compile Include="src\Time.cs" />
|
<Compile Include="src\Time.cs" />
|
||||||
<Compile Include="src\Buffer_Wafa.cs" />
|
<Compile Include="src\Buffer_Wafa.cs" />
|
||||||
|
<Compile Include="src\BufferManuel.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup />
|
<ItemGroup />
|
||||||
</Project>
|
</Project>
|
||||||
56
src/BufferManuel.cs
Normal file
56
src/BufferManuel.cs
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
namespace WorldOfPeacecraft
|
||||||
|
{
|
||||||
|
class BufferManuel
|
||||||
|
{
|
||||||
|
private Queue<string> Lines = new Queue<string>();
|
||||||
|
private int MaxSize;
|
||||||
|
private AutoResetEvent QueueFullLock = new AutoResetEvent(false);
|
||||||
|
private AutoResetEvent QueueEmptyLock = new AutoResetEvent(false);
|
||||||
|
|
||||||
|
public BufferManuel (int maxSize)
|
||||||
|
{
|
||||||
|
this.MaxSize = maxSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddLine (string line)
|
||||||
|
{
|
||||||
|
bool waitRequired = false;
|
||||||
|
lock (Lines) {
|
||||||
|
if (Lines.Count >= MaxSize) {
|
||||||
|
waitRequired = true;
|
||||||
|
QueueFullLock.Reset ();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (waitRequired) {
|
||||||
|
QueueFullLock.WaitOne ();
|
||||||
|
}
|
||||||
|
lock (Lines) {
|
||||||
|
Lines.Enqueue (line);
|
||||||
|
QueueEmptyLock.Set();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string NextLine ()
|
||||||
|
{
|
||||||
|
bool waitRequired = false;
|
||||||
|
string line;
|
||||||
|
lock (Lines) {
|
||||||
|
if (Lines.Count == 0) {
|
||||||
|
waitRequired = true;
|
||||||
|
QueueEmptyLock.Reset ();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (waitRequired) {
|
||||||
|
QueueEmptyLock.WaitOne ();
|
||||||
|
}
|
||||||
|
lock (Lines) {
|
||||||
|
line = Lines.Dequeue();
|
||||||
|
QueueFullLock.Set ();
|
||||||
|
}
|
||||||
|
return line;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user