aboutsummaryrefslogtreecommitdiffstats
path: root/examples/VotingApp/src/main/java/main/VotingApp.java
blob: e58c324d53d19120ca0b1512fd5f83ef7e2cbb80 (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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
/*
 * 
This licence applies to all files in this repository unless otherwise specifically
stated inside of the file. 

 ---------------------------------------------------------------------------
   Copyright (c) 2016 AT&T Intellectual Property

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at:

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 ---------------------------------------------------------------------------

 */
package main;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

import javax.ws.rs.core.MediaType;

import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.WebResource.Builder;
import com.sun.jersey.api.client.config.ClientConfig;
import com.sun.jersey.api.client.config.DefaultClientConfig;
import com.sun.jersey.api.json.JSONConfiguration;

public class VotingApp {
	String keyspaceName;
	ArrayList<String> lockNames;
	MusicConnector musicHandle;
	private final String version="1.0.0";
	
	//UPDATE your onboarding information here
	String namespace = "votingapp";
	String userId = "abc123d";
	String password = "password";
	
	public VotingApp(String[] musicIps){
		lockNames = new ArrayList<String>();	
		musicHandle = new MusicConnector(musicIps);
		bootStrap();
	}
	
	/**
	 * Adds MUSIC's authentication headers into the webresource
	 * @param webResource
	 */
	private Builder addMusicHeaders(WebResource webResource) {
		Builder builder = webResource.accept(MediaType.APPLICATION_JSON).type(MediaType.APPLICATION_JSON);
		if (!namespace.equals("")) {
			builder.header("ns", namespace);
		}
		if (!userId.equals("")) {
			builder.header("userId", userId);
		}
		if (!password.equals("")) {
			builder.header("password", password);
		}
		
		return builder;
	}
	
	public void createVotingKeyspace(){
		keyspaceName = "VotingAppForMusic";
		System.out.println("Voting app version "+ version+" .....");
		Map<String,Object> replicationInfo = new HashMap<String, Object>();
		replicationInfo.put("class", "SimpleStrategy");
		replicationInfo.put("replication_factor", 1);
		String durabilityOfWrites="false";
		Map<String,String> consistencyInfo= new HashMap<String, String>();
		consistencyInfo.put("type", "eventual");
		JsonKeySpace jsonKp = new JsonKeySpace();
		jsonKp.setConsistencyInfo(consistencyInfo);
		jsonKp.setDurabilityOfWrites(durabilityOfWrites);
		jsonKp.setReplicationInfo(replicationInfo);

		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);

		WebResource webResource = client
				.resource(musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName);

		ClientResponse response = addMusicHeaders(webResource).accept("application/json")
				.type("application/json").post(ClientResponse.class, jsonKp);
		if (response.getStatus() < 200 || (response.getStatus() > 299 && response.getStatus()!=400)) { //supress keyspace already exists
			Map<String, String> map = response.getEntity(Map.class);
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus() + "- " + map);
		}

	}

	public void createVotingTable(){
		Map<String,String> fields = new HashMap<String,String>();
		fields.put("name", "text");
		fields.put("count", "varint");
		fields.put("PRIMARY KEY", "(name)");


		Map<String,String> consistencyInfo= new HashMap<String, String>();
		consistencyInfo.put("type", "eventual");

		JsonTable jtab = new JsonTable();
		jtab.setFields(fields);
		jtab.setConsistencyInfo(consistencyInfo);

		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);
		String url = musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName+"/tables/votecount";
		System.out.println("create url:"+url);
		WebResource webResource = client
				.resource(url);

		ClientResponse response = addMusicHeaders(webResource).accept("application/json")
				.type("application/json").post(ClientResponse.class, jtab);

		System.out.println(response.getEntity(Map.class));
		if (response.getStatus() < 200 || (response.getStatus() > 299 && response.getStatus()!=400)) 
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus());

	}
	private void checkMusicVersion(){
		Client client = Client.create();
		System.out.println(musicHandle.getMusicNodeURL()+"/version");
		

//		System.setProperty("sun.net.http.allowRestrictedHeaders", "true");
		WebResource webResource = client
				.resource(musicHandle.getMusicNodeURL()+"/version");
		

		ClientResponse response = addMusicHeaders(webResource)
				.accept(MediaType.APPLICATION_JSON).header("Connection", "close").get(ClientResponse.class);
		
		if (response.getStatus() != 200) {
			throw new RuntimeException("Failed : HTTP error code : "
					+ response.getStatus());
		}

		String output = response.getEntity(Map.class).toString();

		System.out.println(output);

	}

	private  void createEntryForCandidate(String candidateName){
		Map<String,Object> values = new HashMap<String,Object>();
		values.put("name",candidateName );
		values.put("count",0);

		Map<String,String> consistencyInfo= new HashMap<String, String>();
		consistencyInfo.put("type", "eventual");

		JsonInsert jIns = new JsonInsert();
		jIns.setValues(values);
		jIns.setConsistencyInfo(consistencyInfo);
		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);

		String url = musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName+"/tables/votecount/rows";
		WebResource webResource = client
				.resource(url);

		ClientResponse response = addMusicHeaders(webResource).accept("application/json")
				.type("application/json").post(ClientResponse.class, jIns);

		if (response.getStatus() < 200 || response.getStatus() > 299) 
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus()+"url:"+url+" candidate name:"+ candidateName);


	}

	private  String createLock(String lockName){
		Client client = Client.create();
		String msg = musicHandle.getMusicNodeURL()+"/locks/create/"+lockName;
		WebResource webResource = client.resource(msg);
		System.out.println(msg);
		WebResource.Builder wb = addMusicHeaders(webResource).accept(MediaType.APPLICATION_JSON);

		ClientResponse response = wb.post(ClientResponse.class);

		if (response.getStatus() != 200) {
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus()+"url:"+msg);
		}

		Map<String,Object> responseMap = response.getEntity(Map.class);

		String lockid = ((Map<String,String>) responseMap.get("lock")).get("lock");
//		System.out.println("Server response .... \n");
//		System.out.println(output);
		return lockid;
	}

	private  boolean acquireLock(String lockId){
		Client client = Client.create();
		String msg = musicHandle.getMusicNodeURL()+"/locks/acquire/"+lockId;
		System.out.println(msg);
		WebResource webResource = client.resource(msg);


		WebResource.Builder wb = addMusicHeaders(webResource).accept(MediaType.APPLICATION_JSON);

		ClientResponse response = wb.get(ClientResponse.class);

		Map<String, Object> responseMap = response.getEntity(Map.class);
		
		if (response.getStatus() != 200) {
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus()+ ":" + responseMap);
		}

		System.out.println(responseMap);
		Boolean status = responseMap.get("status").equals("SUCCESS");
		System.out.println("Server response .... " + status);
		return status;
	}

	private  void unlock(String lockId){
		Client client = Client.create();
		WebResource webResource = client.resource(musicHandle.getMusicNodeURL()+"/locks/release/"+lockId);

		ClientResponse response = addMusicHeaders(webResource).delete(ClientResponse.class);


		if (response.getStatus() < 200 || response.getStatus()>299) {
			throw new RuntimeException("Failed : HTTP error code : "
					+ response.getStatus());
		}
	}

	private  void updateVoteCountAtomically(String candidateName,int count){
		/*create lock for the candidate. The music API dictates that
		 * the lock name must be of the form keyspacename.tableName.primaryKeyName
		 * */
		System.out.println("trying to acquire lock!");

		String lockName = keyspaceName+".votecount."+candidateName;
		lockNames.add(lockName);
		String lockId = createLock(lockName);
		while(acquireLock(lockId) != true);
		
		System.out.println("acquired lock!");
		//update candidate entry if you have the lock
		Map<String,Object> values = new HashMap<String,Object>();
		values.put("count",count);

		Map<String,String> consistencyInfo= new HashMap<String, String>();
		consistencyInfo.put("type", "critical");
		consistencyInfo.put("lockId", lockId);

		JsonInsert jIns = new JsonInsert();
		jIns.setValues(values);
		jIns.setConsistencyInfo(consistencyInfo);
		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);
		String url = musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName+"/tables/votecount/rows?name="+candidateName;
		System.out.println(url);
		WebResource webResource = client
				.resource(url);

		ClientResponse response = addMusicHeaders(webResource).accept("application/json")
				.type("application/json").put(ClientResponse.class, jIns);

		Map<String,String> map = response.getEntity(Map.class);
		
		if (response.getStatus() < 200 || response.getStatus() > 299) 
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus()+":"+map);

		//release lock now that the operation is done
		unlock(lockId);

	}

	private  void deleteCandidateEntryEventually(String candidateName){
		Map<String,String> consistencyInfo= new HashMap<String, String>();
		consistencyInfo.put("type", "eventual");

		JsonDelete jDel = new JsonDelete();
		jDel.setConsistencyInfo(consistencyInfo);
		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);
		String url = musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName+"/tables/votecount/rows?name="+candidateName;
		System.out.println(url);
		WebResource webResource = client
				.resource(url);

		ClientResponse response = addMusicHeaders(webResource).accept("application/json")
				.type("application/json").delete(ClientResponse.class, jDel);

		if (response.getStatus() < 200 || response.getStatus() > 299) 
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus()+"url:"+url);

	}

	public  Map<String,Object> readVoteCountForCandidate(String candidateName){
		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);
		String url = musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName+"/tables/votecount/rows?name="+candidateName;
		WebResource webResource = client
				.resource(url);

		ClientResponse response = addMusicHeaders(webResource).accept("application/json").get(ClientResponse.class);

		if (response.getStatus() < 200 || response.getStatus() > 299) 
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus());
		
		Map<String,Object> output = response.getEntity(Map.class);
		return output;	
	}

	public  Map<String,Object> readAllVotes(){
		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);
		String url = musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName+"/tables/votecount/rows";
		WebResource webResource = client
				.resource(url);

		ClientResponse response = addMusicHeaders(webResource).accept("application/json").get(ClientResponse.class);

		if (response.getStatus() < 200 || response.getStatus() > 299) 
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus());
		
		Map<String,Object> output = response.getEntity(Map.class);
		return output;	
	}
	
	
	/*
	 * Unable to use this because of the error: 
	 * Exception in thread "main" com.sun.jersey.api.client.ClientHandlerException: java.net.ProtocolException: 
	 * HTTP method DELETE doesn't support output. Seems to be a error in the rest java combination according to the interwebs
	 */
	private void dropKeySpace(){
		Map<String,String> consistencyInfo= new HashMap<String, String>();
		consistencyInfo.put("type", "eventual");

		JsonKeySpace jsonKp = new JsonKeySpace();
		jsonKp.setConsistencyInfo(consistencyInfo);

		ClientConfig clientConfig = new DefaultClientConfig();

		clientConfig.getFeatures().put(
				JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

		Client client = Client.create(clientConfig);

		WebResource webResource = client
				.resource(musicHandle.getMusicNodeURL()+"/keyspaces/"+keyspaceName);

		ClientResponse response = addMusicHeaders(webResource).type("application/json")
				.delete(ClientResponse.class, jsonKp);

		if (response.getStatus() < 200 || response.getStatus() > 299) 
			throw new RuntimeException("Failed : HTTP error code : "+ response.getStatus());
	}
	
	private void deleteLock(String lockName){
		Client client = Client.create();
		WebResource webResource = client.resource(musicHandle.getMusicNodeURL()+"/locks/delete/"+lockName);

		ClientResponse response = addMusicHeaders(webResource).delete(ClientResponse.class);


		if (response.getStatus() <200 || response.getStatus()>299) {
			throw new RuntimeException("Failed : HTTP error code : "
					+ response.getStatus());
		}
	}

	private void resetMusic(){
		Client client = Client.create();
		WebResource webResource = client.resource(musicHandle.getMusicNodeURL()+"/reset");

		ClientResponse response = addMusicHeaders(webResource).delete(ClientResponse.class);


		if (response.getStatus() != 204) {
			throw new RuntimeException("Failed : HTTP error code : "
					+ response.getStatus());
		}
		
	}
	public void deleteAllLocks(){
		for (String lockName : lockNames) {
			deleteLock(lockName);
		}
	}
	
	
	public void bootStrap(){
		checkMusicVersion();
		createVotingKeyspace();


		createVotingTable();
		

		//the next few lines just create an entry in the voting table for all these candidates with vote count as 0
		createEntryForCandidate("Popeye");

		createEntryForCandidate("Judy");

		createEntryForCandidate("Flash");

		createEntryForCandidate("Mickey");

	}
	
	public void overAllTests(){
		//update the count atomically
		updateVoteCountAtomically("Popeye",5);

		updateVoteCountAtomically("Judy",7);
		
		updateVoteCountAtomically("Mickey",8);

		updateVoteCountAtomically("Flash",2);

		
		//read votecount 		
		System.out.println(readAllVotes());
		
		System.out.println(readVoteCountForCandidate("Popeye"));
		
		System.out.println(readVoteCountForCandidate("Flash"));

		deleteCandidateEntryEventually("Mickey");

		System.out.println(readAllVotes());

//		dropKeySpace();

		deleteAllLocks();
	}
	
	public void flipTest(){
		checkMusicVersion();
	}
	
	public static String executeBashScript(String pathToScript, String arg1, String arg2){
		try {
			ProcessBuilder pb = new ProcessBuilder(pathToScript,arg1, arg2);
			final Process process = pb.start();
			InputStream is = process.getInputStream();
			InputStreamReader isr = new InputStreamReader(is);
			BufferedReader br = new BufferedReader(isr);
			return br.readLine();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return null;	
	}
	
	public static void main(String[] args) {	
		long start = System.currentTimeMillis();

		if (args.length==0) {
			args = new String[]{"localhost"};
		}
		for(int i =0; i < 2;++i){
			VotingApp vHandle = new VotingApp(args);
			vHandle.overAllTests();

			System.out.println("=====================================");
			System.out.println("Test no."+i+" completed:");
		}
		long diff = 	System.currentTimeMillis() - start;
		System.out.println(diff);
	}
			

}