X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Fmodel%2FLedgerAccount.java;h=06ac4da110f61acb3a73c1309f3da1332a88f671;hb=916547239190f7daf921f2066593637cfca877fc;hp=7fb38649a1e46571515917e59fcbabf4a2811950;hpb=20c03b7a5eb152d42fbbe9ecbaae27530563b398;p=mobile-ledger.git diff --git a/app/src/main/java/net/ktnx/mobileledger/model/LedgerAccount.java b/app/src/main/java/net/ktnx/mobileledger/model/LedgerAccount.java index 7fb38649..06ac4da1 100644 --- a/app/src/main/java/net/ktnx/mobileledger/model/LedgerAccount.java +++ b/app/src/main/java/net/ktnx/mobileledger/model/LedgerAccount.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 @@ -20,25 +20,29 @@ package net.ktnx.mobileledger.model; import androidx.annotation.NonNull; import androidx.annotation.Nullable; -import java.lang.ref.WeakReference; +import net.ktnx.mobileledger.db.Account; +import net.ktnx.mobileledger.db.AccountValue; +import net.ktnx.mobileledger.db.AccountWithAmounts; + import java.util.ArrayList; import java.util.List; import java.util.regex.Pattern; public class LedgerAccount { + private static final char ACCOUNT_DELIMITER = ':'; static Pattern reHigherAccount = Pattern.compile("^[^:]+:"); + private final LedgerAccount parent; + private long dbId; + private long profileId; private String name; private String shortName; private int level; - private final LedgerAccount parent; private boolean expanded; private List amounts; private boolean hasSubAccounts; private boolean amountsExpanded; - private final WeakReference profileWeakReference; - public LedgerAccount(MobileLedgerProfile profile, String name, @Nullable LedgerAccount parent) { - this.profileWeakReference = new WeakReference<>(profile); + public LedgerAccount(String name, @Nullable LedgerAccount parent) { this.parent = parent; if (parent != null && !name.startsWith(parent.getName() + ":")) throw new IllegalStateException( @@ -48,15 +52,36 @@ public class LedgerAccount { } @Nullable public static String extractParentName(@NonNull String accName) { - int colonPos = accName.lastIndexOf(':'); + int colonPos = accName.lastIndexOf(ACCOUNT_DELIMITER); if (colonPos < 0) return null; // no parent account -- this is a top-level account else return accName.substring(0, colonPos); } - public @Nullable - MobileLedgerProfile getProfile() { - return profileWeakReference.get(); + @NonNull + static public LedgerAccount fromDBO(AccountWithAmounts in, LedgerAccount parent) { + LedgerAccount res = new LedgerAccount(in.account.getName(), parent); + res.dbId = in.account.getId(); + res.profileId = in.account.getProfileId(); + res.setName(in.account.getName()); + res.setExpanded(in.account.isExpanded()); + res.setAmountsExpanded(in.account.isAmountsExpanded()); + + res.amounts = new ArrayList<>(); + for (AccountValue val : in.amounts) { + res.amounts.add(new LedgerAmount(val.getValue(), val.getCurrency())); + } + + return res; + } + public static int determineLevel(String accName) { + int level = 0; + int delimiterPosition = accName.indexOf(ACCOUNT_DELIMITER); + while (delimiterPosition >= 0) { + level++; + delimiterPosition = accName.indexOf(ACCOUNT_DELIMITER, delimiterPosition + 1); + } + return level; } @Override public int hashCode() { @@ -92,15 +117,9 @@ public class LedgerAccount { .startsWith(name + ":"); } private void stripName() { - if (parent == null) { - level = 0; - shortName = name; - } - else { - level = parent.level + 1; - shortName = name.substring(parent.getName() - .length() + 1); - } + String[] split = name.split(":"); + shortName = split[split.length - 1]; + level = split.length - 1; } public String getName() { return name; @@ -153,12 +172,10 @@ public class LedgerAccount { public int getLevel() { return level; } - @NonNull public String getShortName() { return shortName; } - public String getParentName() { return (parent == null) ? null : parent.getName(); } @@ -184,7 +201,6 @@ public class LedgerAccount { public boolean amountsExpanded() { return amountsExpanded; } public void setAmountsExpanded(boolean flag) { amountsExpanded = flag; } public void toggleAmountsExpanded() { amountsExpanded = !amountsExpanded; } - public void propagateAmountsTo(LedgerAccount acc) { for (LedgerAmount a : amounts) a.propagateToAccount(acc); @@ -192,4 +208,36 @@ public class LedgerAccount { public List getAmounts() { return amounts; } + @NonNull + public Account toDBO() { + Account dbo = new Account(); + dbo.setName(name); + dbo.setNameUpper(name.toUpperCase()); + dbo.setParentName(extractParentName(name)); + dbo.setLevel(level); + dbo.setId(dbId); + dbo.setProfileId(profileId); + dbo.setExpanded(expanded); + dbo.setAmountsExpanded(amountsExpanded); + + return dbo; + } + @NonNull + public AccountWithAmounts toDBOWithAmounts() { + AccountWithAmounts dbo = new AccountWithAmounts(); + dbo.account = toDBO(); + + dbo.amounts = new ArrayList<>(); + for (LedgerAmount amt : getAmounts()) { + AccountValue val = new AccountValue(); + val.setCurrency(amt.getCurrency()); + val.setValue(amt.getAmount()); + dbo.amounts.add(val); + } + + return dbo; + } + public long getId() { + return dbId; + } }