OLD | NEW |
---|---|
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library MandelIsolateTest; | 5 library MandelIsolateTest; |
6 import 'dart:async'; | 6 import 'dart:async'; |
7 import 'dart:isolate'; | 7 import 'dart:isolate'; |
8 import 'dart:math'; | 8 import 'dart:math'; |
9 import '../../pkg/unittest/lib/unittest.dart'; | 9 import '../../pkg/unittest/lib/unittest.dart'; |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... | |
30 MandelbrotState() { | 30 MandelbrotState() { |
31 _result = new List<List<int>>(N); | 31 _result = new List<List<int>>(N); |
32 _lineProcessedBy = new List<LineProcessorClient>(N); | 32 _lineProcessedBy = new List<LineProcessorClient>(N); |
33 _sent = 0; | 33 _sent = 0; |
34 _missing = N; | 34 _missing = N; |
35 _validated = new Completer<bool>(); | 35 _validated = new Completer<bool>(); |
36 } | 36 } |
37 | 37 |
38 void startClient(int id) { | 38 void startClient(int id) { |
39 assert(_sent < N); | 39 assert(_sent < N); |
40 final client = new LineProcessorClient(this, id); | 40 int line = _sent++; |
41 client.processLine(_sent++); | 41 LineProcessorClient.create(this, id).then((final client) { |
42 client.processLine(line); | |
43 }); | |
42 } | 44 } |
43 | 45 |
44 void notifyProcessedLine(LineProcessorClient client, int y, List<int> line) { | 46 void notifyProcessedLine(LineProcessorClient client, int y, List<int> line) { |
45 assert(_result[y] == null); | 47 assert(_result[y] == null); |
46 _result[y] = line; | 48 _result[y] = line; |
47 _lineProcessedBy[y] = client; | 49 _lineProcessedBy[y] = client; |
48 | 50 |
49 if (_sent != N) { | 51 if (_sent != N) { |
50 client.processLine(_sent++); | 52 client.processLine(_sent++); |
51 } else { | 53 } else { |
(...skipping 27 matching lines...) Expand all Loading... | |
79 | 81 |
80 List<List<int>> _result; | 82 List<List<int>> _result; |
81 List<LineProcessorClient> _lineProcessedBy; | 83 List<LineProcessorClient> _lineProcessedBy; |
82 int _sent; | 84 int _sent; |
83 int _missing; | 85 int _missing; |
84 Completer<bool> _validated; | 86 Completer<bool> _validated; |
85 } | 87 } |
86 | 88 |
87 | 89 |
88 class LineProcessorClient { | 90 class LineProcessorClient { |
91 MandelbrotState _state; | |
92 int _id; | |
93 SendPort _port; | |
89 | 94 |
90 LineProcessorClient(MandelbrotState this._state, int this._id) { | 95 LineProcessorClient(this._state, this._id, this._port); |
91 _port = spawnFunction(processLines); | 96 |
97 static Future<LineProcessorClient> create(MandebrotState state, int id) { | |
98 ReceivePort reply = new ReceivePort(); | |
99 Future isolateStart = Isolate.spawn(processLines, reply.sendPort); | |
floitsch
2013/10/23 13:33:24
No need for temporary variable.
Isolate.spawn(pro
Lasse Reichstein Nielsen
2013/10/24 10:26:01
I just thought the line-breaks looked better this
| |
100 return isolateStart.then((_) => | |
101 reply.first.then((port) => new LineProcessorClient(state, id, port))); | |
92 } | 102 } |
93 | 103 |
94 void processLine(int y) { | 104 void processLine(int y) { |
95 _port.call(y).then((List<int> message) { | 105 ReceivePort reply = new ReceivePort(); |
106 reply.first.then((List<int> message) { | |
96 _state.notifyProcessedLine(this, y, message); | 107 _state.notifyProcessedLine(this, y, message); |
97 }); | 108 }); |
109 _port.send([y, reply.sendPort]); | |
floitsch
2013/10/23 13:33:24
I prefer the "right" order.
ReceivePort reply = .
Lasse Reichstein Nielsen
2013/10/24 10:26:01
I actually consider that the wrong order.
The safe
| |
98 } | 110 } |
99 | 111 |
100 void shutdown() { | 112 void shutdown() { |
101 _port.send(TERMINATION_MESSAGE, null); | 113 _port.send(TERMINATION_MESSAGE); |
102 } | 114 } |
103 | |
104 MandelbrotState _state; | |
105 int _id; | |
106 SendPort _port; | |
107 } | 115 } |
108 | 116 |
109 List<int> processLine(int y) { | 117 List<int> processLine(int y) { |
110 double inverseN = 2.0 / N; | 118 double inverseN = 2.0 / N; |
111 double Civ = y * inverseN - 1.0; | 119 double Civ = y * inverseN - 1.0; |
112 List<int> result = new List<int>(N); | 120 List<int> result = new List<int>(N); |
113 for (int x = 0; x < N; x++) { | 121 for (int x = 0; x < N; x++) { |
114 double Crv = x * inverseN - 1.5; | 122 double Crv = x * inverseN - 1.5; |
115 | 123 |
116 double Zrv = Crv; | 124 double Zrv = Crv; |
117 double Ziv = Civ; | 125 double Ziv = Civ; |
118 | 126 |
119 double Trv = Crv * Crv; | 127 double Trv = Crv * Crv; |
120 double Tiv = Civ * Civ; | 128 double Tiv = Civ * Civ; |
121 | 129 |
122 int i = 49; | 130 int i = 49; |
123 do { | 131 do { |
124 Ziv = (Zrv * Ziv) + (Zrv * Ziv) + Civ; | 132 Ziv = (Zrv * Ziv) + (Zrv * Ziv) + Civ; |
125 Zrv = Trv - Tiv + Crv; | 133 Zrv = Trv - Tiv + Crv; |
126 | 134 |
127 Trv = Zrv * Zrv; | 135 Trv = Zrv * Zrv; |
128 Tiv = Ziv * Ziv; | 136 Tiv = Ziv * Ziv; |
129 } while (((Trv + Tiv) <= 4.0) && (--i > 0)); | 137 } while (((Trv + Tiv) <= 4.0) && (--i > 0)); |
130 | 138 |
131 result[x] = i; | 139 result[x] = i; |
132 } | 140 } |
133 return result; | 141 return result; |
134 } | 142 } |
135 | 143 |
136 void processLines() { | 144 void processLines(SendPort replyPort) { |
137 port.receive((message, SendPort replyTo) { | 145 ReceivePort port = new ReceivePort(); |
138 if (message == TERMINATION_MESSAGE) { | 146 port.listen((message) { |
139 assert(replyTo == null); | 147 if (message != TERMINATION_MESSAGE) { |
148 int line = message[0]; | |
149 SendPort replyTo = message[1]; | |
150 replyTo.send(processLine(line)); | |
151 } else { | |
140 port.close(); | 152 port.close(); |
141 } else { | |
142 replyTo.send(processLine(message), null); | |
143 } | 153 } |
144 }); | 154 }); |
155 replyPort.send(port.sendPort); | |
145 } | 156 } |
OLD | NEW |