2 * Copyright © 2018 Damyan Ivanov.
3 * This file is part of Mobile-Ledger.
4 * Mobile-Ledger 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.
9 * Mobile-Ledger 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.
14 * You should have received a copy of the GNU General Public License
15 * along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
18 package net.ktnx.mobileledger.model;
20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
23 import net.ktnx.mobileledger.utils.Digest;
25 import java.nio.charset.Charset;
26 import java.security.NoSuchAlgorithmException;
27 import java.util.ArrayList;
28 import java.util.Comparator;
29 import java.util.Iterator;
31 public class LedgerTransaction {
32 private static final String DIGEST_TYPE = "SHA-256";
33 public final Comparator<LedgerTransactionItem> comparator =
34 new Comparator<LedgerTransactionItem>() {
36 public int compare(LedgerTransactionItem o1, LedgerTransactionItem o2) {
37 int res = o1.getAccountName().compareTo(o2.getAccountName());
38 if (res != 0) return res;
39 res = o1.getCurrency().compareTo(o2.getCurrency());
40 if (res != 0) return res;
41 return Float.compare(o1.getAmount(), o2.getAmount());
46 private String description;
47 private ArrayList<LedgerTransactionItem> items;
48 private String dataHash;
49 private boolean dataLoaded;
50 public LedgerTransaction(String id, String date, String description) {
53 this.description = description;
54 this.items = new ArrayList<>();
58 public LedgerTransaction(int id, String date, String description) {
59 this(String.valueOf(id), date, description);
61 public LedgerTransaction(String date, String description) {
62 this(null, date, description);
64 public LedgerTransaction(int id) {
67 public void add_item(LedgerTransactionItem item) {
71 public String getDate() {
74 public void setDate(String date) {
78 public String getDescription() {
81 public void setDescription(String description) {
82 this.description = description;
85 public Iterator<LedgerTransactionItem> getItemsIterator() {
86 return new Iterator<LedgerTransactionItem>() {
87 private int pointer = 0;
89 public boolean hasNext() {
90 return pointer < items.size();
94 public LedgerTransactionItem next() {
95 return hasNext() ? items.get(pointer++) : null;
99 public String getId() {
102 public void insertInto(SQLiteDatabase db) {
104 db.execSQL("INSERT INTO transactions(id, date, description, data_hash) values(?,?,?,?)",
105 new String[]{id, date, description});
107 for (LedgerTransactionItem item : items) {
108 db.execSQL("INSERT INTO transaction_accounts(transaction_id, account_name, amount, " +
109 "currency) values(?, ?, ?, ?)",
110 new Object[]{id, item.getAccountName(), item.getAmount(), item.getCurrency()});
113 private void fillDataHash() {
114 if (dataHash != null) return;
116 Digest sha = new Digest(DIGEST_TYPE);
117 StringBuilder data = new StringBuilder();
118 data.append(getId());
120 data.append(getDescription());
122 for (LedgerTransactionItem item : items) {
123 data.append(item.getAccountName());
125 data.append(item.getCurrency());
127 data.append(item.getAmount());
129 sha.update(data.toString().getBytes(Charset.forName("UTF-8")));
130 dataHash = sha.digestToHexString();
132 catch (NoSuchAlgorithmException e) {
133 throw new RuntimeException(
134 String.format("Unable to get instance of %s digest", DIGEST_TYPE), e);
137 public void loadData(SQLiteDatabase db) {
138 if (dataLoaded) return;
140 try (Cursor cTr = db.rawQuery("SELECT date, description from transactions WHERE " +
141 "id=?",new String[]{id})) {
142 if (cTr.moveToFirst()) {
143 date = cTr.getString(0);
144 description = cTr.getString(1);
146 try (Cursor cAcc = db.rawQuery("SELECT account_name, amount, currency FROM " +
147 "transaction_accounts WHERE transaction_id = ?",
150 while (cAcc.moveToNext()) {
152 new LedgerTransactionItem(cAcc.getString(0), cAcc.getFloat(1),