Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ContinuationsTest.cs « Mono.Tasklets « Test « Mono.Tasklets « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0b2de6542978b53e0914d753b927fddb64a709d (plain)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
using NUnit.Framework;

using System;
using Mono.Tasklets;

namespace MonoTests.System
{
    [TestFixture]
	public class ContinuationsTest {

		private Continuation _contA = new Continuation();

		private int total = 0;

		[Test]
		public void TestContinuationsLoop() {
			_contA.Mark();
			int value = 0;
			int ret = _contA.Store(0);
			for(int i = ret; i < 10; i++) {
				value += i;
			}

			if(value > 0) {
				total += value;
				_contA.Restore(ret + 1);
			}

			Assert.AreEqual(total,330);
		}

		private int yields = 0;

		[Test]
		public void Yielding() {
			Continuation baseCont = new Continuation();
			Continuation taskCont = new Continuation();
			
			baseCont.Mark();
			taskCont.Mark();
			
			// Store the base continuation to start the task
			if (baseCont.Store(0) == 0) {
				bool done = false;
				int count = 0;

				while (!done) {
					// Do stuff for the task.
					++count;
					
					// This task is counting to 100.
					if (count == 100) {
						done = true;
					}

					// Yield every 10 loops
					else if (count % 10 == 0) {

						// To yield, store the task continuation then restore
						// the base continuation.
						if (taskCont.Store(0) == 0) {
							baseCont.Restore(1);
						}
					}
				}
			}
			// When restored, 'Store' will return what was passed to Restore, in this case 1 so fall here.
			else {
				// Count the yields, then go back to the task.
				++yields;
				taskCont.Restore(1);
			}

			Assert.AreEqual(9, yields);
		}


		public class MicroThread {
			
			public void Yield() {
				if (MyThread.Store(0) == 0) {
					MainThread.Restore(1);
				}
			}

			public void Resume() {
				if (MainThread.Store(0) == 0) {
					MyThread.Restore(1);
				}
			}

			public void DoWork(Action action) {
				if (MainThread.Store(0) == 0) {
					action();
					Done = true;
					MainThread.Restore(1);
				}
			}

			public bool Done = false;
			public Continuation MainThread = new Continuation();
			public Continuation MyThread = new Continuation();
		}
		
		public class MicroBJob {
			private int _Count = 0;
			public int Count { 
				get { return _Count; }
				set { _Count = value;}
			}

			public MicroThread MicroThread;
			public void Work() {
				while (Count < 100) {
					++Count;
					if (Count % 10 == 0) {
						MicroThread.Yield();
					}
				}
			}
		}

		[Test]
		public void MicroThreadTest() {
			MicroThread microA = new MicroThread();
			MicroThread microB = new MicroThread();

			microA.MainThread.Mark();
			microA.MyThread.Mark();
			microB.MainThread.Mark();
			microB.MyThread.Mark();

			Assert.AreEqual(false,microA.Done);
			Assert.AreEqual(false,microB.Done);
			
			microA.DoWork( () => {
				int count = 0;
				while (count < 100) {
					++count;
					if (count % 10 == 0) {
						microA.Yield();
					}
				}
			});
		
			MicroBJob jobB = new MicroBJob();
			jobB.MicroThread = microB;

			microB.DoWork(jobB.Work);

			Assert.AreEqual(false,microA.Done);
			Assert.AreEqual(false,microB.Done);

			int yields = 0;
			while (yields < 20) {
				if (!microA.Done) microA.Resume();
				if (!microB.Done) microB.Resume();
				if (microA.Done && microB.Done) break;
				++yields;
			}

			Assert.AreEqual(true,microA.Done);
			Assert.AreEqual(true,microB.Done);
			Assert.AreEqual(100,jobB.Count);
			Assert.AreEqual(9,yields);
		}
	}
}

// vim: noexpandtab
// Local Variables:
// tab-width: 4
// c-basic-offset: 4
// indent-tabs-mode: t
// End: