]> git.ktnx.net Git - mobile-ledger-staging.git/blob - app/src/main/java/net/ktnx/mobileledger/json/AccountListParser.java
finish support for multiple server APIs when retrieving data
[mobile-ledger-staging.git] / app / src / main / java / net / ktnx / mobileledger / json / AccountListParser.java
1 /*
2  * Copyright © 2020 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.json;
19
20 import com.fasterxml.jackson.databind.MappingIterator;
21
22 import net.ktnx.mobileledger.async.RetrieveTransactionsTask;
23 import net.ktnx.mobileledger.async.SendTransactionTask;
24 import net.ktnx.mobileledger.model.LedgerAccount;
25
26 import java.io.IOException;
27 import java.io.InputStream;
28 import java.util.HashMap;
29
30 import static net.ktnx.mobileledger.utils.Logger.debug;
31
32 abstract public class AccountListParser {
33     protected MappingIterator<net.ktnx.mobileledger.json.ParsedLedgerAccount> iterator;
34     public static AccountListParser forApiVersion(SendTransactionTask.API version,
35                                                   InputStream input) throws IOException {
36         switch (version) {
37             case v1_14:
38                 return new net.ktnx.mobileledger.json.v1_14.AccountListParser(input);
39             case v1_15:
40                 return new net.ktnx.mobileledger.json.v1_15.AccountListParser(input);
41             case v1_19_1:
42                 return new net.ktnx.mobileledger.json.v1_19_1.AccountListParser(input);
43             default:
44                 throw new RuntimeException("Unsupported version " + version.toString());
45         }
46
47     }
48     public abstract SendTransactionTask.API getApiVersion();
49     public LedgerAccount nextAccount(RetrieveTransactionsTask task,
50                                      HashMap<String, LedgerAccount> map) {
51         if (!iterator.hasNext())
52             return null;
53
54         LedgerAccount next = iterator.next()
55                                      .toLedgerAccount(task, map);
56
57         if (next.getName()
58                 .equalsIgnoreCase("root"))
59             return nextAccount(task, map);
60
61         debug("accounts", String.format("Got account '%s' [%s]", next.getName(),
62                 getApiVersion().getDescription()));
63         return next;
64     }
65
66 }