X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FLedgerTransaction.java;h=638a692cff56d21417e15786183c2bb0a14109a2;hb=0a73337c99e2074aa7e7228204289896342ec636;hp=071e0640b693c2f0f39f6cf8e67afaaae5f68cdb;hpb=6291644e547c813c9fd49d684c7755a7a563a10e;p=mobile-ledger.git diff --git a/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java b/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java index 071e0640..638a692c 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/LedgerTransaction.java @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Damyan Ivanov. + * Copyright © 2020 Damyan Ivanov. * This file is part of MoLe. * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by @@ -20,15 +20,19 @@ package net.ktnx.mobileledger.model; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; + +import net.ktnx.mobileledger.App; import net.ktnx.mobileledger.utils.Digest; import net.ktnx.mobileledger.utils.Globals; +import net.ktnx.mobileledger.utils.SimpleDate; -import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; import java.security.NoSuchAlgorithmException; import java.text.ParseException; import java.util.ArrayList; import java.util.Comparator; -import java.util.Date; public class LedgerTransaction { private static final String DIGEST_TYPE = "SHA-256"; @@ -44,13 +48,18 @@ public class LedgerTransaction { .compareTo(o2.getCurrency()); if (res != 0) return res; + res = o1.getComment() + .compareTo(o2.getComment()); + if (res != 0) + return res; return Float.compare(o1.getAmount(), o2.getAmount()); } }; private String profile; private Integer id; - private Date date; + private SimpleDate date; private String description; + private String comment; private ArrayList accounts; private String dataHash; private boolean dataLoaded; @@ -58,7 +67,7 @@ public class LedgerTransaction { throws ParseException { this(id, Globals.parseLedgerDate(dateString), description); } - public LedgerTransaction(Integer id, Date date, String description, + public LedgerTransaction(Integer id, SimpleDate date, String description, MobileLedgerProfile profile) { this.profile = profile.getUuid(); this.id = id; @@ -68,14 +77,14 @@ public class LedgerTransaction { this.dataHash = null; dataLoaded = false; } - public LedgerTransaction(Integer id, Date date, String description) { + public LedgerTransaction(Integer id, SimpleDate date, String description) { this(id, date, description, Data.profile.getValue()); } - public LedgerTransaction(Date date, String description) { + public LedgerTransaction(SimpleDate date, String description) { this(null, date, description); } public LedgerTransaction(int id) { - this(id, (Date) null, null); + this(id, (SimpleDate) null, null); } public LedgerTransaction(int id, String profileUUID) { this.profile = profileUUID; @@ -93,10 +102,18 @@ public class LedgerTransaction { accounts.add(item); dataHash = null; } - public Date getDate() { + @Nullable + public SimpleDate getDateIfAny() { + return date; + } + @NonNull + public SimpleDate getDate() { + loadData(App.getDatabase()); + if (date == null) + throw new IllegalStateException("Transaction has no date"); return date; } - public void setDate(Date date) { + public void setDate(SimpleDate date) { this.date = date; dataHash = null; } @@ -107,6 +124,12 @@ public class LedgerTransaction { this.description = description; dataHash = null; } + public String getComment() { + return comment; + } + public void setComment(String comment) { + this.comment = comment; + } public int getId() { return id; } @@ -116,11 +139,14 @@ public class LedgerTransaction { try { Digest sha = new Digest(DIGEST_TYPE); StringBuilder data = new StringBuilder(); + data.append("ver1"); data.append(profile); data.append(getId()); data.append('\0'); data.append(getDescription()); data.append('\0'); + data.append(getComment()); + data.append('\0'); data.append(Globals.formatLedgerDate(getDate())); data.append('\0'); for (LedgerTransactionAccount item : accounts) { @@ -133,7 +159,7 @@ public class LedgerTransaction { data.append(item.getComment()); } sha.update(data.toString() - .getBytes(Charset.forName("UTF-8"))); + .getBytes(StandardCharsets.UTF_8)); dataHash = sha.digestToHexString(); } catch (NoSuchAlgorithmException e) { @@ -157,25 +183,19 @@ public class LedgerTransaction { return; try (Cursor cTr = db.rawQuery( - "SELECT date, description from transactions WHERE profile=? AND id=?", - new String[]{profile, String.valueOf(id)})) + "SELECT year, month, day, description, comment from transactions WHERE profile=? " + + "AND id=?", new String[]{profile, String.valueOf(id)})) { if (cTr.moveToFirst()) { - String dateString = cTr.getString(0); - try { - date = Globals.parseLedgerDate(dateString); - } - catch (ParseException e) { - e.printStackTrace(); - throw new RuntimeException( - String.format("Error parsing date '%s' from " + "transaction %d", - dateString, id)); - } - description = cTr.getString(1); + date = new SimpleDate(cTr.getInt(0), cTr.getInt(1), cTr.getInt(2)); + description = cTr.getString(3); + comment = cTr.getString(4); + + accounts.clear(); - try (Cursor cAcc = db.rawQuery("SELECT account_name, amount, currency, comment FROM " + - "transaction_accounts WHERE " + - "profile=? AND transaction_id = ?", + try (Cursor cAcc = db.rawQuery( + "SELECT account_name, amount, currency, comment FROM " + + "transaction_accounts WHERE profile=? AND transaction_id = ?", new String[]{profile, String.valueOf(id)})) { while (cAcc.moveToNext()) { @@ -193,9 +213,33 @@ public class LedgerTransaction { } public String getDataHash() { + fillDataHash(); return dataHash; } public void finishLoading() { dataLoaded = true; } + @Override + public boolean equals(@Nullable Object obj) { + if (obj == null) + return false; + if (!obj.getClass() + .equals(this.getClass())) + return false; + + return ((LedgerTransaction) obj).getDataHash() + .equals(getDataHash()); + } + + public boolean hasAccountNamedLike(String name) { + name = name.toUpperCase(); + for (LedgerTransactionAccount acc : accounts) { + if (acc.getAccountName() + .toUpperCase() + .contains(name)) + return true; + } + + return false; + } }