ArrayList<LedgerTransaction> transactionList = new ArrayList<>();
HashMap<String, Void> accountNames = new HashMap<>();
LedgerAccount lastAccount = null;
+ boolean onlyStarred = Data.optShowOnlyStarred.get();
Data.backgroundTaskCount.incrementAndGet();
try {
HttpURLConnection http = NetworkUtil.prepare_connection("journal");
acct_name = acct_name.replace("\"", "");
L(String.format("found account: %s", acct_name));
- profile.storeAccount(acct_name);
- lastAccount = new LedgerAccount(acct_name);
+ lastAccount = profile.loadAccount(acct_name);
+ if (lastAccount == null) {
+ lastAccount = new LedgerAccount(acct_name);
+ profile.storeAccount(lastAccount);
+ }
// make sure the parent account(s) are present,
// synthesising them if necessary
while (!toAppend.isEmpty()) {
String aName = toAppend.pop();
LedgerAccount acc = new LedgerAccount(aName);
- accountList.add(acc);
+ acc.setHidden(lastAccount.isHidden());
+ if (!onlyStarred || !acc.isHidden())
+ accountList.add(acc);
L(String.format("gap-filling with %s", aName));
accountNames.put(aName, null);
- profile.storeAccount(aName);
+ profile.storeAccount(acc);
}
}
- accountList.add(lastAccount);
+ if (!onlyStarred || !lastAccount.isHidden())
+ accountList.add(lastAccount);
accountNames.put(acct_name, null);
state = ParserState.EXPECTING_ACCOUNT_AMOUNT;
db.endTransaction();
}
}
- public void storeAccount(String name) {
+ public void storeAccount(LedgerAccount acc) {
SQLiteDatabase db = MLDB.getWritableDatabase();
- do {
- LedgerAccount acc = new LedgerAccount(name);
- db.execSQL("replace into accounts(profile, name, name_upper, level, keep) values(?, " +
- "?, ?, ?, 1)",
- new Object[]{this.uuid, name, name.toUpperCase(), acc.getLevel()});
- name = acc.getParentName();
- } while (name != null);
+ // replace into is a bad idea because it would reset hidden to its default value
+ // we like the default, but for new accounts only
+ db.execSQL("update accounts set level = ?, keep = 1 where profile=? and name = ?",
+ new Object[]{acc.getLevel(), uuid, acc.getName()});
+ db.execSQL("insert into accounts(profile, name, name_upper, parent_name, level) " +
+ "select ?,?,?,?,? where (select changes() = 0)",
+ new Object[]{uuid, acc.getName(), acc.getName().toUpperCase(), acc.getParentName(),
+ acc.getLevel()
+ });
}
public void storeAccountValue(String name, String currency, Float amount) {
SQLiteDatabase db = MLDB.getWritableDatabase();
Log.d("db", String.format("removing progile %s from DB", uuid));
db.execSQL("delete from profiles where uuid=?", new Object[]{uuid});
}
+ public LedgerAccount loadAccount(String name) {
+ SQLiteDatabase db = MLDB.getReadableDatabase();
+ try (Cursor cursor = db.rawQuery("SELECT hidden from accounts where profile=? and name=?",
+ new String[]{uuid, name}))
+ {
+ if (cursor.moveToFirst()) {
+ LedgerAccount acc = new LedgerAccount(name);
+ acc.setHidden(cursor.getInt(0) == 1);
+
+ return acc;
+ }
+ }
+
+ return null;
+ }
}