-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
110 lines (91 loc) · 2.68 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System.Diagnostics;
using System;
using System.Threading;
namespace Sharing_resources
{
public class Program
{
public static void Main()
{
var bus = new SharedBus(1000);
var threads = new Thread[100];
for (int i = 0; i < threads.Length; i++)
{
threads[i] = new Thread(() =>
{
ExecuteComm(bus);
});
threads[i].Start();
}
// wait for all threads to complete
foreach (var thread in threads)
{
thread.Join();
}
Debug.WriteLine($"Account's balance is {bus.GetOperationValue()}");
// Output should be:
// Account's balance is 2000
Thread.Sleep(Timeout.Infinite);
}
static void ExecuteComm(SharedBus bus)
{
float[] operations = { 0, 2, -3, 6, -2, -1, 8, -5, 11, -6 };
foreach (var ops in operations)
{
if (ops >= 0)
{
bus.Transmit(ops);
}
else
{
bus.Receive(Math.Abs(ops));
}
}
}
}
public class SharedBus
{
private readonly object _accessLock = new object();
private float _operation;
public SharedBus(float initialValue) => _operation = initialValue;
public float Receive(float operationValue)
{
if (operationValue < 0)
{
throw new ArgumentOutOfRangeException(nameof(operationValue), "The operation value cannot be negative.");
}
float appliedAmount = 0;
lock (_accessLock)
{
if (_operation >= operationValue)
{
_operation -= operationValue;
appliedAmount = operationValue;
}
}
return appliedAmount;
}
public void Transmit(float operationValue)
{
if (operationValue < 0)
{
throw new ArgumentOutOfRangeException(nameof(operationValue), "The operation value cannot be negative.");
}
lock (_accessLock)
{
_operation += operationValue;
}
}
public float GetOperationValue()
{
lock (_accessLock)
{
return _operation;
}
}
}
}