|
6 | 6 | import br.com.db1.task.TaskMoneyCallable;
|
7 | 7 | import com.google.common.collect.Lists;
|
8 | 8 | import org.apache.log4j.Logger;
|
| 9 | +import org.springframework.beans.factory.annotation.Autowired; |
9 | 10 | import org.springframework.stereotype.Service;
|
10 | 11 |
|
| 12 | +import java.math.BigDecimal; |
11 | 13 | import java.util.ArrayList;
|
12 | 14 | import java.util.Collections;
|
13 | 15 | import java.util.List;
|
14 | 16 | import java.util.concurrent.CompletionService;
|
15 | 17 | import java.util.concurrent.ExecutionException;
|
16 | 18 | import java.util.concurrent.Future;
|
| 19 | +import java.util.concurrent.atomic.AtomicReference; |
17 | 20 |
|
18 | 21 | @Service
|
19 | 22 | public class MoneyService {
|
20 | 23 |
|
| 24 | + @Autowired |
| 25 | + private RateService rateService; |
| 26 | + |
21 | 27 | private static Logger LOGGER = Logger.getLogger(MoneyService.class);
|
22 | 28 |
|
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() { |
24 | 40 | CompletionService executor = TaskExecutorPool.createCompletionService();
|
25 |
| - List<Future<Money>> moeyListOne = Collections.synchronizedList(Lists.newLinkedList()); |
26 | 41 |
|
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)); |
29 | 48 |
|
30 | 49 | List<Money> moneyList = new ArrayList<>();
|
31 |
| - moeyListOne.forEach(r -> mountListOfMoney(r, moneyList)); |
| 50 | + moeyList.forEach(r -> mountListOfMoney(r, moneyList)); |
32 | 51 | return moneyList;
|
33 | 52 |
|
34 | 53 | }
|
35 | 54 |
|
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); |
39 | 73 | }
|
40 | 74 |
|
41 | 75 | private synchronized void mountListOfMoney(Future<Money> r, List<Money> moneyList) {
|
|
0 commit comments