@@ -46,6 +46,7 @@ public class MutualExclusionClient extends BaseServer {
46
46
private Map <Integer , LinkedBlockingQueue <String >> outboundBlockingQueueMap = new HashMap <>();
47
47
private Semaphore writeCountMutex = new Semaphore (1 );
48
48
private volatile int writeResponseCount ;
49
+ private long startTimestamp ;
49
50
50
51
public MutualExclusionClient (int clientId , int clientNum , int serverNum , int fileNum , int opCount ) {
51
52
super (Constant .BASE_CLIENT_PORT + clientId , Constant .CLIENT );
@@ -152,17 +153,40 @@ public void closeConnection() {
152
153
153
154
}
154
155
156
+ public void setStartTimestamp (long timestamp ) {
157
+ startTimestamp = timestamp ;
158
+ }
159
+
155
160
/**
156
- * init mutual exclusion algorithm list
157
- * each file has its own mutual exclusion algorithm object
161
+ * set mutual exclusion algorithm object list
162
+ * @param type mutual exclusion algorithm type
158
163
*/
159
- public void initMEList () {
160
- for (int i = 0 ; i < fileNum ; i ++) {
161
- LinkedBlockingQueue <String > inboundMsgBlockingQueue = new LinkedBlockingQueue <>();
162
- blockingQueueList .add (inboundMsgBlockingQueue );
163
- MutexBase mutexBase =
164
- new LamportMutualExclusion (clientId , i , clientConnMap , this , inboundMsgBlockingQueue , outboundBlockingQueueMap );
165
- meAlgoList .add (mutexBase );
164
+ public void setMEList (String type ) {
165
+ switch (type ) {
166
+ case Constant .ALGO_LAMPORT : {
167
+ clearMEList ();
168
+ for (int i = 0 ; i < fileNum ; i ++) {
169
+ LinkedBlockingQueue <String > inboundMsgBlockingQueue = new LinkedBlockingQueue <>();
170
+ blockingQueueList .add (inboundMsgBlockingQueue );
171
+ MutexBase mutexBase =
172
+ new LamportMutualExclusion (clientId , i , clientConnMap , this , inboundMsgBlockingQueue , outboundBlockingQueueMap );
173
+ meAlgoList .add (mutexBase );
174
+ }
175
+ break ;
176
+ }
177
+ case Constant .ALGO_RA_WITH_OPTIMIZATION : {
178
+ clearMEList ();
179
+ for (int i = 0 ; i < fileNum ; i ++) {
180
+ LinkedBlockingQueue <String > inboundMsgBlockingQueue = new LinkedBlockingQueue <>();
181
+ blockingQueueList .add (inboundMsgBlockingQueue );
182
+ MutexBase mutexBase =
183
+ new RaAlgoWithCrOptimization (clientId , clientNum , i , clientConnMap , this , inboundMsgBlockingQueue , outboundBlockingQueueMap );
184
+ meAlgoList .add (mutexBase );
185
+ }
186
+ break ;
187
+ }
188
+ default :
189
+ break ;
166
190
}
167
191
}
168
192
@@ -180,6 +204,8 @@ public void executeOperation() {
180
204
if (curOpCount >= opCount ) {
181
205
curOpCount = 0 ;
182
206
System .out .println ("finish all " + opCount + " operations" );
207
+ long endTimestamp = System .currentTimeMillis ();
208
+ logger .trace ("finish running algorithm, total time: " + (endTimestamp - startTimestamp ));
183
209
return ;
184
210
}
185
211
int opId = Util .genRandom (3 );
@@ -239,6 +265,34 @@ public void checkWriteFinish() {
239
265
}
240
266
}
241
267
268
+
269
+ /**
270
+ * calculate inbound or outbound message total count
271
+ * @param type type
272
+ * @return count
273
+ */
274
+ public int allMsgCount (String type ) {
275
+ int totalCount = 0 ;
276
+ switch (type ) {
277
+ case Constant .COUNT_INBOUND_MSG : {
278
+ for (MutexBase mutexBase : meAlgoList ) {
279
+ totalCount += mutexBase .getInboundMsgCount ();
280
+ }
281
+ break ;
282
+ }
283
+ case Constant .COUNT_OUTBOUND_MSG : {
284
+ for (MutexBase mutexBase : meAlgoList ) {
285
+ totalCount += mutexBase .getOutboundMsgCount ();
286
+ }
287
+ break ;
288
+ }
289
+ default :
290
+ break ;
291
+ }
292
+
293
+ return totalCount ;
294
+ }
295
+
242
296
/**
243
297
* send different operation request
244
298
* @param type operation type
0 commit comments