Skip to content

Commit 3ef5349

Browse files
committed
correct thread
1 parent 9a3f317 commit 3ef5349

File tree

3 files changed

+68
-26
lines changed

3 files changed

+68
-26
lines changed

src/main/java/br/com/db1/controller/ApplicationController.java

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package br.com.db1.controller;
22

33
import br.com.db1.model.Money;
4-
import br.com.db1.model.Rate;
54
import br.com.db1.service.MoneyService;
65
import br.com.db1.service.RateService;
76
import org.springframework.beans.factory.annotation.Autowired;
@@ -26,8 +25,18 @@ public class ApplicationController {
2625
@RequestMapping(method = RequestMethod.GET)
2726
public ResponseEntity<?> classifier() {
2827
try {
29-
List<Rate> rates = rateService.getRates();
30-
List<Money> listOfMoney = moneyService.getListOfMoney(rates, rates);
28+
List<Money> listOfMoney = moneyService.getListOfMoney();
29+
return new ResponseEntity<>(listOfMoney, HttpStatus.OK);
30+
} catch (IllegalArgumentException e) {
31+
return new ResponseEntity<>(e.getMessage(), HttpStatus.BAD_REQUEST);
32+
}
33+
34+
}
35+
36+
@RequestMapping(value = "/atomic", method = RequestMethod.GET)
37+
public ResponseEntity<?> atomic() {
38+
try {
39+
List<Money> listOfMoney = moneyService.useAtomicReference();
3140
return new ResponseEntity<>(listOfMoney, HttpStatus.OK);
3241
} catch (IllegalArgumentException e) {
3342
return new ResponseEntity<>(e.getMessage(), HttpStatus.BAD_REQUEST);

src/main/java/br/com/db1/service/MoneyService.java

+42-8
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,70 @@
66
import br.com.db1.task.TaskMoneyCallable;
77
import com.google.common.collect.Lists;
88
import org.apache.log4j.Logger;
9+
import org.springframework.beans.factory.annotation.Autowired;
910
import org.springframework.stereotype.Service;
1011

12+
import java.math.BigDecimal;
1113
import java.util.ArrayList;
1214
import java.util.Collections;
1315
import java.util.List;
1416
import java.util.concurrent.CompletionService;
1517
import java.util.concurrent.ExecutionException;
1618
import java.util.concurrent.Future;
19+
import java.util.concurrent.atomic.AtomicReference;
1720

1821
@Service
1922
public class MoneyService {
2023

24+
@Autowired
25+
private RateService rateService;
26+
2127
private static Logger LOGGER = Logger.getLogger(MoneyService.class);
2228

23-
public List<Money> getListOfMoney(List<Rate> rateListOne, List<Rate> rateListTwo) {
29+
private AtomicReference<Money> moneyAtomic = new AtomicReference<>();
30+
31+
private List<Future<Money>> moeyList = Collections.synchronizedList(Lists.newLinkedList());
32+
33+
/**
34+
* obtem uma lista de dinheiro com valores aleatórios e vai somando os valores entre eles sincronizados
35+
* endpoint que cria uma lista de dinheiro com moedas próprias
36+
* o valor do dinheiro
37+
* @return
38+
*/
39+
public List<Money> useAtomicReference() {
2440
CompletionService executor = TaskExecutorPool.createCompletionService();
25-
List<Future<Money>> moeyListOne = Collections.synchronizedList(Lists.newLinkedList());
2641

27-
rateListOne.forEach(rate -> executeFuture(executor, moeyListOne, rate));
28-
rateListTwo.forEach(rate -> executeFuture(executor, moeyListOne, rate));
42+
Rate rate = new Rate("AtomicTest", "AT", 0.0);
43+
List<Money> listOfMoney = getListOfMoney();
44+
45+
46+
moneyAtomic.set(new Money(new BigDecimal(0.0), rate));
47+
listOfMoney.forEach(money -> executeFuture(executor, money, rate, moneyAtomic));
2948

3049
List<Money> moneyList = new ArrayList<>();
31-
moeyListOne.forEach(r -> mountListOfMoney(r, moneyList));
50+
moeyList.forEach(r -> mountListOfMoney(r, moneyList));
3251
return moneyList;
3352

3453
}
3554

36-
private void executeFuture(CompletionService executor, List<Future<Money>> result, Rate rate) {
37-
Future thread = executor.submit(new TaskMoneyCallable(rate));
38-
result.add(thread);
55+
/**
56+
* endpoint para ser usado no exercício de map reduce
57+
* @return
58+
*/
59+
public List<Money> getListOfMoney() {
60+
List<Money> moneyList = Lists.newLinkedList();
61+
rateService.getRates().forEach(rate -> {
62+
BigDecimal min = new BigDecimal(100.0);
63+
BigDecimal max = new BigDecimal(2000.0);
64+
BigDecimal randomBigDecimal = min.add(new BigDecimal(Math.random()).multiply(max.subtract(min)));
65+
moneyList.add(new Money(randomBigDecimal.setScale(2, BigDecimal.ROUND_HALF_UP), rate));
66+
});
67+
return moneyList;
68+
}
69+
70+
private void executeFuture(CompletionService executor, Money money, Rate rate, AtomicReference<Money> moneyAtomic) {
71+
Future thread = executor.submit(new TaskMoneyCallable(money, rate, moneyAtomic));
72+
moeyList.add(thread);
3973
}
4074

4175
private synchronized void mountListOfMoney(Future<Money> r, List<Money> moneyList) {

src/main/java/br/com/db1/task/TaskMoneyCallable.java

+14-15
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,29 @@
33
import br.com.db1.model.Money;
44
import br.com.db1.model.Rate;
55

6-
import java.math.BigDecimal;
76
import java.util.concurrent.Callable;
87
import java.util.concurrent.atomic.AtomicReference;
98

10-
public class TaskMoneyCallable implements Callable<AtomicReference<Money>> {
9+
/**
10+
* Classe para o controle da concorrência
11+
*/
12+
public class TaskMoneyCallable implements Callable<Money> {
1113

12-
private Rate rate;
14+
private Money money;
15+
16+
private AtomicReference<Money> moneyAtomic;
1317

14-
private AtomicReference<Money> money = new AtomicReference<>();
18+
private Rate rate;
1519

16-
public TaskMoneyCallable(Rate rate) {
20+
public TaskMoneyCallable(Money money, Rate rate, AtomicReference<Money> moneyAtomic) {
21+
this.money = money;
1722
this.rate = rate;
23+
this.moneyAtomic = moneyAtomic;
1824
}
1925

2026
@Override
21-
public AtomicReference<Money> call() throws Exception {
22-
money.set(new Money(generateRandomBigDecimalFromRange(), rate));
23-
return money;
24-
}
25-
26-
public static BigDecimal generateRandomBigDecimalFromRange() {
27-
BigDecimal min = new BigDecimal(100.0);
28-
BigDecimal max = new BigDecimal(2000.0);
29-
BigDecimal randomBigDecimal = min.add(new BigDecimal(Math.random()).multiply(max.subtract(min)));
30-
return randomBigDecimal.setScale(2,BigDecimal.ROUND_HALF_UP);
27+
public Money call() throws Exception {
28+
return this.moneyAtomic.accumulateAndGet(new Money(money.getValue(), rate), (money1, money2) ->
29+
new Money(money1.getValue().add(money2.getValue()), rate));
3130
}
3231
}

0 commit comments

Comments
 (0)