X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FLedgerTransaction.java;h=001c107e0193b2a5c5a272bb6c60ec232a1a5e74;hb=2de3d8a8c96e78f4ab89880be9fab05735acc910;hp=638a692cff56d21417e15786183c2bb0a14109a2;hpb=0a73337c99e2074aa7e7228204289896342ec636;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 638a692c..001c107e 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 © 2020 Damyan Ivanov. + * Copyright © 2021 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 @@ -33,43 +33,39 @@ import java.security.NoSuchAlgorithmException; import java.text.ParseException; import java.util.ArrayList; import java.util.Comparator; +import java.util.List; public class LedgerTransaction { private static final String DIGEST_TYPE = "SHA-256"; - public final Comparator comparator = - new Comparator() { - @Override - public int compare(LedgerTransactionAccount o1, LedgerTransactionAccount o2) { - int res = o1.getAccountName() - .compareTo(o2.getAccountName()); - if (res != 0) - return res; - res = o1.getCurrency() - .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; + public final Comparator comparator = (o1, o2) -> { + int res = o1.getAccountName() + .compareTo(o2.getAccountName()); + if (res != 0) + return res; + res = o1.getCurrency() + .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 final long profile; + private final long id; + private final List accounts; private SimpleDate date; private String description; private String comment; - private ArrayList accounts; private String dataHash; private boolean dataLoaded; - public LedgerTransaction(Integer id, String dateString, String description) - throws ParseException { + public LedgerTransaction(long id, String dateString, String description) throws ParseException { this(id, Globals.parseLedgerDate(dateString), description); } - public LedgerTransaction(Integer id, SimpleDate date, String description, + public LedgerTransaction(long id, SimpleDate date, String description, MobileLedgerProfile profile) { - this.profile = profile.getUuid(); + this.profile = profile.getId(); this.id = id; this.date = date; this.description = description; @@ -77,17 +73,17 @@ public class LedgerTransaction { this.dataHash = null; dataLoaded = false; } - public LedgerTransaction(Integer id, SimpleDate date, String description) { - this(id, date, description, Data.profile.getValue()); + public LedgerTransaction(long id, SimpleDate date, String description) { + this(id, date, description, Data.getProfile()); } public LedgerTransaction(SimpleDate date, String description) { - this(null, date, description); + this(0, date, description); } public LedgerTransaction(int id) { this(id, (SimpleDate) null, null); } - public LedgerTransaction(int id, String profileUUID) { - this.profile = profileUUID; + public LedgerTransaction(int id, long profileId) { + this.profile = profileId; this.id = id; this.date = null; this.description = null; @@ -95,7 +91,7 @@ public class LedgerTransaction { this.dataHash = null; this.dataLoaded = false; } - public ArrayList getAccounts() { + public List getAccounts() { return accounts; } public void addAccount(LedgerTransactionAccount item) { @@ -108,7 +104,6 @@ public class LedgerTransaction { } @NonNull public SimpleDate getDate() { - loadData(App.getDatabase()); if (date == null) throw new IllegalStateException("Transaction has no date"); return date; @@ -130,10 +125,11 @@ public class LedgerTransaction { public void setComment(String comment) { this.comment = comment; } - public int getId() { + public long getId() { return id; } protected void fillDataHash() { + loadData(App.getDatabase()); if (dataHash != null) return; try { @@ -167,24 +163,13 @@ public class LedgerTransaction { String.format("Unable to get instance of %s digest", DIGEST_TYPE), e); } } - public boolean existsInDb(SQLiteDatabase db) { - fillDataHash(); - try (Cursor c = db.rawQuery("SELECT 1 from transactions where data_hash = ?", - new String[]{dataHash})) - { - boolean result = c.moveToFirst(); -// debug("db", String.format("Transaction %d (%s) %s", id, dataHash, -// result ? "already present" : "not present")); - return result; - } - } - public void loadData(SQLiteDatabase db) { + public synchronized void loadData(SQLiteDatabase db) { if (dataLoaded) return; try (Cursor cTr = db.rawQuery( - "SELECT year, month, day, description, comment from transactions WHERE profile=? " + - "AND id=?", new String[]{profile, String.valueOf(id)})) + "SELECT year, month, day, description, comment from transactions WHERE id=?", + new String[]{String.valueOf(id)})) { if (cTr.moveToFirst()) { date = new SimpleDate(cTr.getInt(0), cTr.getInt(1), cTr.getInt(2)); @@ -195,8 +180,8 @@ public class LedgerTransaction { 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)})) + "transaction_accounts WHERE transaction_id = ?", + new String[]{String.valueOf(id)})) { while (cAcc.moveToNext()) { // debug("transactions", @@ -242,4 +227,7 @@ public class LedgerTransaction { return false; } + public void markDataAsLoaded() { + dataLoaded = true; + } }