Java tutorial
/* * Copyright 2014 Omricat Software * * 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 com.omricat.yacc.backend.servlets; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.type.MapType; import com.google.common.base.Optional; import com.omricat.yacc.backend.api.CurrencyService; import com.omricat.yacc.backend.api.NamesService; import com.omricat.yacc.backend.datastore.DataStore; import com.omricat.yacc.data.model.Currency; import com.omricat.yacc.data.model.CurrencyCode; import com.omricat.yacc.data.model.CurrencyDataset; import org.jetbrains.annotations.NotNull; import java.io.FileNotFoundException; import java.io.IOException; import java.io.Reader; import java.io.Writer; import java.util.HashSet; import java.util.Map; import java.util.Set; import static com.google.common.base.Preconditions.checkNotNull; class CurrenciesProcessor { private final ObjectMapper mapper; private final CurrencyService currencyService; private final NamesService namesService; private final MapType mapType; private final DataStore namesStore; private final DataStore currenciesStore; CurrenciesProcessor(@NotNull final CurrencyService currencyService, @NotNull final NamesService namesService, @NotNull final ObjectMapper mapper, @NotNull final DataStore currenciesStore, @NotNull final DataStore namesStore) { this.namesService = checkNotNull(namesService); this.currenciesStore = checkNotNull(currenciesStore); this.namesStore = checkNotNull(namesStore); this.currencyService = checkNotNull(currencyService); this.mapper = checkNotNull(mapper); mapType = mapper.getTypeFactory().constructMapType(Map.class, String.class, String.class); } @NotNull CurrencyDataset download() throws IOException { final Map<String, String> rawDataMap = currencyService.getLatestCurrencies().get(0); // Should only be one element in the array final long timeStamp = Long.parseLong(rawDataMap.remove("DateTime")); final Set<Currency> currencySet = new HashSet<>(); Map<CurrencyCode, String> names; try (Reader in = namesStore.getReader()) { names = mapper.readValue(in, mapType); } catch (FileNotFoundException e) { names = NamesHelper.getInstance(mapper, namesService).getAndStoreCurrencyNames(namesStore); } DataConsistencyProcessor dataConsistencyProcessor = new DataConsistencyProcessor(names); for (Map.Entry<String, String> entry : rawDataMap.entrySet()) { // The currency service gives currency values which end // with "\r" so we remove it from each String currencyValue = entry.getValue().replace("\r", ""); String name = names.get(new CurrencyCode(entry.getKey())); if (name == null) { name = ""; } final Optional<Currency> currency = dataConsistencyProcessor .fixData(new Currency(currencyValue, entry.getKey(), name)); if (currency.isPresent()) { currencySet.add(currency.get()); } } return new CurrencyDataset(currencySet, timeStamp); } // Note close is not called in a finally block because files aren't // written until they are closed. So if an exception is thrown, // the file will remain as it was before this method was called public void writeToStore(@NotNull final CurrencyDataset currencyDataset) throws IOException { final Writer stream = currenciesStore.getWriter(); mapper.writeValue(stream, currencyDataset); stream.close(); } }