]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/async/RetrieveTransactionsTask.java
drop now unused MLDB class along with its async db routines
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / async / RetrieveTransactionsTask.java
1 /*
2  * Copyright © 2021 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe 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.
8  *
9  * MoLe 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.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.async;
19
20 import android.annotation.SuppressLint;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.os.AsyncTask;
23 import android.os.OperationCanceledException;
24
25 import androidx.annotation.NonNull;
26 import androidx.room.Transaction;
27
28 import com.fasterxml.jackson.core.JsonParseException;
29 import com.fasterxml.jackson.databind.RuntimeJsonMappingException;
30
31 import net.ktnx.mobileledger.App;
32 import net.ktnx.mobileledger.dao.AccountDAO;
33 import net.ktnx.mobileledger.dao.AccountValueDAO;
34 import net.ktnx.mobileledger.dao.TransactionAccountDAO;
35 import net.ktnx.mobileledger.dao.TransactionDAO;
36 import net.ktnx.mobileledger.db.Account;
37 import net.ktnx.mobileledger.db.AccountWithAmounts;
38 import net.ktnx.mobileledger.db.DB;
39 import net.ktnx.mobileledger.db.Option;
40 import net.ktnx.mobileledger.db.Profile;
41 import net.ktnx.mobileledger.db.TransactionAccount;
42 import net.ktnx.mobileledger.db.TransactionWithAccounts;
43 import net.ktnx.mobileledger.err.HTTPException;
44 import net.ktnx.mobileledger.json.API;
45 import net.ktnx.mobileledger.json.AccountListParser;
46 import net.ktnx.mobileledger.json.ApiNotSupportedException;
47 import net.ktnx.mobileledger.json.TransactionListParser;
48 import net.ktnx.mobileledger.model.Data;
49 import net.ktnx.mobileledger.model.LedgerAccount;
50 import net.ktnx.mobileledger.model.LedgerTransaction;
51 import net.ktnx.mobileledger.model.LedgerTransactionAccount;
52 import net.ktnx.mobileledger.ui.MainModel;
53 import net.ktnx.mobileledger.utils.Logger;
54 import net.ktnx.mobileledger.utils.NetworkUtil;
55
56 import java.io.BufferedReader;
57 import java.io.IOException;
58 import java.io.InputStream;
59 import java.io.InputStreamReader;
60 import java.net.HttpURLConnection;
61 import java.net.MalformedURLException;
62 import java.net.URLDecoder;
63 import java.nio.charset.StandardCharsets;
64 import java.text.ParseException;
65 import java.util.ArrayList;
66 import java.util.Collections;
67 import java.util.Date;
68 import java.util.HashMap;
69 import java.util.List;
70 import java.util.Locale;
71 import java.util.Objects;
72 import java.util.regex.Matcher;
73 import java.util.regex.Pattern;
74
75
76 public class RetrieveTransactionsTask extends
77         AsyncTask<Void, RetrieveTransactionsTask.Progress, RetrieveTransactionsTask.Result> {
78     private static final int MATCHING_TRANSACTIONS_LIMIT = 150;
79     private static final Pattern reComment = Pattern.compile("^\\s*;");
80     private static final Pattern reTransactionStart = Pattern.compile(
81             "<tr class=\"title\" " + "id=\"transaction-(\\d+)" + "\"><td class=\"date" +
82             "\"[^\"]*>([\\d.-]+)</td>");
83     private static final Pattern reTransactionDescription =
84             Pattern.compile("<tr class=\"posting\" title=\"(\\S+)\\s(.+)");
85     private static final Pattern reTransactionDetails = Pattern.compile(
86             "^\\s+" + "([!*]\\s+)?" + "(\\S[\\S\\s]+\\S)\\s\\s+" + "(?:([^\\d\\s+\\-]+)\\s*)?" +
87             "([-+]?\\d[\\d,.]*)" + "(?:\\s*([^\\d\\s+\\-]+)\\s*$)?");
88     private static final Pattern reEnd = Pattern.compile("\\bid=\"addmodal\"");
89     private static final Pattern reDecimalPoint = Pattern.compile("\\.\\d\\d?$");
90     private static final Pattern reDecimalComma = Pattern.compile(",\\d\\d?$");
91     // %3A is '='
92     private final Pattern reAccountName =
93             Pattern.compile("/register\\?q=inacct%3A([a-zA-Z0-9%]+)\"");
94     private final Pattern reAccountValue = Pattern.compile(
95             "<span class=\"[^\"]*\\bamount\\b[^\"]*\">\\s*([-+]?[\\d.,]+)(?:\\s+(\\S+))?</span>");
96     private final MainModel mainModel;
97     private final Profile profile;
98     private int expectedPostingsCount = -1;
99     public RetrieveTransactionsTask(@NonNull MainModel mainModel, @NonNull Profile profile) {
100         this.mainModel = mainModel;
101         this.profile = profile;
102     }
103     private static void L(String msg) {
104         //debug("transaction-parser", msg);
105     }
106     static LedgerTransactionAccount parseTransactionAccountLine(String line) {
107         Matcher m = reTransactionDetails.matcher(line);
108         if (m.find()) {
109             String postingStatus = m.group(1);
110             String acc_name = m.group(2);
111             String currencyPre = m.group(3);
112             String amount = Objects.requireNonNull(m.group(4));
113             String currencyPost = m.group(5);
114
115             String currency = null;
116             if ((currencyPre != null) && (currencyPre.length() > 0)) {
117                 if ((currencyPost != null) && (currencyPost.length() > 0))
118                     return null;
119                 currency = currencyPre;
120             }
121             else if ((currencyPost != null) && (currencyPost.length() > 0)) {
122                 currency = currencyPost;
123             }
124
125             amount = amount.replace(',', '.');
126
127             return new LedgerTransactionAccount(acc_name, Float.parseFloat(amount), currency, null);
128         }
129         else {
130             return null;
131         }
132     }
133     @Override
134     protected void onProgressUpdate(Progress... values) {
135         super.onProgressUpdate(values);
136         Data.backgroundTaskProgress.postValue(values[0]);
137     }
138     @Override
139     protected void onPostExecute(Result result) {
140         super.onPostExecute(result);
141         Progress progress = new Progress();
142         progress.setState(ProgressState.FINISHED);
143         progress.setError(result.error);
144         onProgressUpdate(progress);
145     }
146     @Override
147     protected void onCancelled() {
148         super.onCancelled();
149         Progress progress = new Progress();
150         progress.setState(ProgressState.FINISHED);
151         onProgressUpdate(progress);
152     }
153     private void retrieveTransactionListLegacy(List<LedgerAccount> accounts,
154                                                List<LedgerTransaction> transactions)
155             throws IOException, HTTPException {
156         Progress progress = Progress.indeterminate();
157         progress.setState(ProgressState.RUNNING);
158         progress.setTotal(expectedPostingsCount);
159         int maxTransactionId = -1;
160         HashMap<String, LedgerAccount> map = new HashMap<>();
161         LedgerAccount lastAccount = null;
162         ArrayList<LedgerAccount> syntheticAccounts = new ArrayList<>();
163
164         HttpURLConnection http = NetworkUtil.prepareConnection(profile, "journal");
165         http.setAllowUserInteraction(false);
166         publishProgress(progress);
167         if (http.getResponseCode() != 200)
168             throw new HTTPException(http.getResponseCode(), http.getResponseMessage());
169
170         try (InputStream resp = http.getInputStream()) {
171             if (http.getResponseCode() != 200)
172                 throw new IOException(String.format("HTTP error %d", http.getResponseCode()));
173
174             int matchedTransactionsCount = 0;
175
176             ParserState state = ParserState.EXPECTING_ACCOUNT;
177             String line;
178             BufferedReader buf =
179                     new BufferedReader(new InputStreamReader(resp, StandardCharsets.UTF_8));
180
181             int processedTransactionCount = 0;
182             int transactionId = 0;
183             LedgerTransaction transaction = null;
184             LINES:
185             while ((line = buf.readLine()) != null) {
186                 throwIfCancelled();
187                 Matcher m;
188                 m = reComment.matcher(line);
189                 if (m.find()) {
190                     // TODO: comments are ignored for now
191 //                            Log.v("transaction-parser", "Ignoring comment");
192                     continue;
193                 }
194                 //L(String.format("State is %d", updating));
195                 switch (state) {
196                     case EXPECTING_ACCOUNT:
197                         if (line.equals("<h2>General Journal</h2>")) {
198                             state = ParserState.EXPECTING_TRANSACTION;
199                             L("→ expecting transaction");
200                             continue;
201                         }
202                         m = reAccountName.matcher(line);
203                         if (m.find()) {
204                             String acct_encoded = m.group(1);
205                             String accName = URLDecoder.decode(acct_encoded, "UTF-8");
206                             accName = accName.replace("\"", "");
207                             L(String.format("found account: %s", accName));
208
209                             lastAccount = map.get(accName);
210                             if (lastAccount != null) {
211                                 L(String.format("ignoring duplicate account '%s'", accName));
212                                 continue;
213                             }
214                             String parentAccountName = LedgerAccount.extractParentName(accName);
215                             LedgerAccount parentAccount;
216                             if (parentAccountName != null) {
217                                 parentAccount = ensureAccountExists(parentAccountName, map,
218                                         syntheticAccounts);
219                             }
220                             else {
221                                 parentAccount = null;
222                             }
223                             lastAccount = new LedgerAccount(accName, parentAccount);
224
225                             accounts.add(lastAccount);
226                             map.put(accName, lastAccount);
227
228                             state = ParserState.EXPECTING_ACCOUNT_AMOUNT;
229                             L("→ expecting account amount");
230                         }
231                         break;
232
233                     case EXPECTING_ACCOUNT_AMOUNT:
234                         m = reAccountValue.matcher(line);
235                         boolean match_found = false;
236                         while (m.find()) {
237                             throwIfCancelled();
238
239                             match_found = true;
240                             String value = Objects.requireNonNull(m.group(1));
241                             String currency = m.group(2);
242                             if (currency == null)
243                                 currency = "";
244
245                             {
246                                 Matcher tmpM = reDecimalComma.matcher(value);
247                                 if (tmpM.find()) {
248                                     value = value.replace(".", "");
249                                     value = value.replace(',', '.');
250                                 }
251
252                                 tmpM = reDecimalPoint.matcher(value);
253                                 if (tmpM.find()) {
254                                     value = value.replace(",", "");
255                                     value = value.replace(" ", "");
256                                 }
257                             }
258                             L("curr=" + currency + ", value=" + value);
259                             final float val = Float.parseFloat(value);
260                             lastAccount.addAmount(val, currency);
261                             for (LedgerAccount syn : syntheticAccounts) {
262                                 L(String.format(Locale.ENGLISH, "propagating %s %1.2f to %s",
263                                         currency, val, syn.getName()));
264                                 syn.addAmount(val, currency);
265                             }
266                         }
267
268                         if (match_found) {
269                             syntheticAccounts.clear();
270                             state = ParserState.EXPECTING_ACCOUNT;
271                             L("→ expecting account");
272                         }
273
274                         break;
275
276                     case EXPECTING_TRANSACTION:
277                         if (!line.isEmpty() && (line.charAt(0) == ' '))
278                             continue;
279                         m = reTransactionStart.matcher(line);
280                         if (m.find()) {
281                             transactionId = Integer.parseInt(Objects.requireNonNull(m.group(1)));
282                             state = ParserState.EXPECTING_TRANSACTION_DESCRIPTION;
283                             L(String.format(Locale.ENGLISH,
284                                     "found transaction %d → expecting description", transactionId));
285                             progress.setProgress(++processedTransactionCount);
286                             if (maxTransactionId < transactionId)
287                                 maxTransactionId = transactionId;
288                             if ((progress.isIndeterminate()) ||
289                                 (progress.getTotal() < transactionId))
290                                 progress.setTotal(transactionId);
291                             publishProgress(progress);
292                         }
293                         m = reEnd.matcher(line);
294                         if (m.find()) {
295                             L("--- transaction value complete ---");
296                             break LINES;
297                         }
298                         break;
299
300                     case EXPECTING_TRANSACTION_DESCRIPTION:
301                         if (!line.isEmpty() && (line.charAt(0) == ' '))
302                             continue;
303                         m = reTransactionDescription.matcher(line);
304                         if (m.find()) {
305                             if (transactionId == 0)
306                                 throw new TransactionParserException(
307                                         "Transaction Id is 0 while expecting description");
308
309                             String date = Objects.requireNonNull(m.group(1));
310                             try {
311                                 int equalsIndex = date.indexOf('=');
312                                 if (equalsIndex >= 0)
313                                     date = date.substring(equalsIndex + 1);
314                                 transaction =
315                                         new LedgerTransaction(transactionId, date, m.group(2));
316                             }
317                             catch (ParseException e) {
318                                 throw new TransactionParserException(
319                                         String.format("Error parsing date '%s'", date));
320                             }
321                             state = ParserState.EXPECTING_TRANSACTION_DETAILS;
322                             L(String.format(Locale.ENGLISH,
323                                     "transaction %d created for %s (%s) →" + " expecting details",
324                                     transactionId, date, m.group(2)));
325                         }
326                         break;
327
328                     case EXPECTING_TRANSACTION_DETAILS:
329                         if (line.isEmpty()) {
330                             // transaction data collected
331
332                             transaction.finishLoading();
333                             transactions.add(transaction);
334
335                             state = ParserState.EXPECTING_TRANSACTION;
336                             L(String.format("transaction %s parsed → expecting transaction",
337                                     transaction.getLedgerId()));
338
339 // sounds like a good idea, but transaction-1 may not be the first one chronologically
340 // for example, when you add the initial seeding transaction after entering some others
341 //                                            if (transactionId == 1) {
342 //                                                L("This was the initial transaction.
343 //                                                Terminating " +
344 //                                                  "parser");
345 //                                                break LINES;
346 //                                            }
347                         }
348                         else {
349                             LedgerTransactionAccount lta = parseTransactionAccountLine(line);
350                             if (lta != null) {
351                                 transaction.addAccount(lta);
352                                 L(String.format(Locale.ENGLISH, "%d: %s = %s",
353                                         transaction.getLedgerId(), lta.getAccountName(),
354                                         lta.getAmount()));
355                             }
356                             else
357                                 throw new IllegalStateException(
358                                         String.format("Can't parse transaction %d details: %s",
359                                                 transactionId, line));
360                         }
361                         break;
362                     default:
363                         throw new RuntimeException(
364                                 String.format("Unknown parser updating %s", state.name()));
365                 }
366             }
367
368             throwIfCancelled();
369         }
370     }
371     @NonNull
372     public LedgerAccount ensureAccountExists(String accountName, HashMap<String, LedgerAccount> map,
373                                              ArrayList<LedgerAccount> createdAccounts) {
374         LedgerAccount acc = map.get(accountName);
375
376         if (acc != null)
377             return acc;
378
379         String parentName = LedgerAccount.extractParentName(accountName);
380         LedgerAccount parentAccount;
381         if (parentName != null) {
382             parentAccount = ensureAccountExists(parentName, map, createdAccounts);
383         }
384         else {
385             parentAccount = null;
386         }
387
388         acc = new LedgerAccount(accountName, parentAccount);
389         createdAccounts.add(acc);
390         return acc;
391     }
392     public void addNumberOfPostings(int number) {
393         expectedPostingsCount += number;
394     }
395     private List<LedgerAccount> retrieveAccountList()
396             throws IOException, HTTPException, ApiNotSupportedException {
397         final API apiVersion = API.valueOf(profile.getApiVersion());
398         if (apiVersion.equals(API.auto)) {
399             return retrieveAccountListAnyVersion();
400         }
401         else if (apiVersion.equals(API.html)) {
402             Logger.debug("json",
403                     "Declining using JSON API for /accounts with configured legacy API version");
404             return null;
405         }
406         else {
407             return retrieveAccountListForVersion(apiVersion);
408         }
409     }
410     private List<LedgerAccount> retrieveAccountListAnyVersion()
411             throws ApiNotSupportedException, IOException, HTTPException {
412         for (API ver : API.allVersions) {
413             try {
414                 return retrieveAccountListForVersion(ver);
415             }
416             catch (JsonParseException | RuntimeJsonMappingException e) {
417                 Logger.debug("json",
418                         String.format(Locale.US, "Error during account list retrieval using API %s",
419                                 ver.getDescription()), e);
420             }
421
422         }
423
424         throw new ApiNotSupportedException();
425     }
426     private List<LedgerAccount> retrieveAccountListForVersion(API version)
427             throws IOException, HTTPException {
428         HttpURLConnection http = NetworkUtil.prepareConnection(profile, "accounts");
429         http.setAllowUserInteraction(false);
430         switch (http.getResponseCode()) {
431             case 200:
432                 break;
433             case 404:
434                 return null;
435             default:
436                 throw new HTTPException(http.getResponseCode(), http.getResponseMessage());
437         }
438         publishProgress(Progress.indeterminate());
439         SQLiteDatabase db = App.getDatabase();
440         ArrayList<LedgerAccount> list = new ArrayList<>();
441         HashMap<String, LedgerAccount> map = new HashMap<>();
442         throwIfCancelled();
443         try (InputStream resp = http.getInputStream()) {
444             throwIfCancelled();
445             if (http.getResponseCode() != 200)
446                 throw new IOException(String.format("HTTP error %d", http.getResponseCode()));
447
448             AccountListParser parser = AccountListParser.forApiVersion(version, resp);
449             expectedPostingsCount = 0;
450
451             while (true) {
452                 throwIfCancelled();
453                 LedgerAccount acc = parser.nextAccount(this, map);
454                 if (acc == null)
455                     break;
456                 list.add(acc);
457             }
458             throwIfCancelled();
459         }
460
461         return list;
462     }
463     private List<LedgerTransaction> retrieveTransactionList()
464             throws ParseException, HTTPException, IOException, ApiNotSupportedException {
465         final API apiVersion = API.valueOf(profile.getApiVersion());
466         if (apiVersion.equals(API.auto)) {
467             return retrieveTransactionListAnyVersion();
468         }
469         else if (apiVersion.equals(API.html)) {
470             Logger.debug("json",
471                     "Declining using JSON API for /accounts with configured legacy API version");
472             return null;
473         }
474         else {
475             return retrieveTransactionListForVersion(apiVersion);
476         }
477
478     }
479     private List<LedgerTransaction> retrieveTransactionListAnyVersion()
480             throws ApiNotSupportedException {
481         for (API ver : API.allVersions) {
482             try {
483                 return retrieveTransactionListForVersion(ver);
484             }
485             catch (Exception e) {
486                 Logger.debug("json",
487                         String.format(Locale.US, "Error during account list retrieval using API %s",
488                                 ver.getDescription()));
489             }
490
491         }
492
493         throw new ApiNotSupportedException();
494     }
495     private List<LedgerTransaction> retrieveTransactionListForVersion(API apiVersion)
496             throws IOException, ParseException, HTTPException {
497         Progress progress = new Progress();
498         progress.setTotal(expectedPostingsCount);
499
500         HttpURLConnection http = NetworkUtil.prepareConnection(profile, "transactions");
501         http.setAllowUserInteraction(false);
502         publishProgress(progress);
503         switch (http.getResponseCode()) {
504             case 200:
505                 break;
506             case 404:
507                 return null;
508             default:
509                 throw new HTTPException(http.getResponseCode(), http.getResponseMessage());
510         }
511         ArrayList<LedgerTransaction> trList = new ArrayList<>();
512         try (InputStream resp = http.getInputStream()) {
513             throwIfCancelled();
514
515             TransactionListParser parser = TransactionListParser.forApiVersion(apiVersion, resp);
516
517             int processedPostings = 0;
518
519             while (true) {
520                 throwIfCancelled();
521                 LedgerTransaction transaction = parser.nextTransaction();
522                 throwIfCancelled();
523                 if (transaction == null)
524                     break;
525
526                 trList.add(transaction);
527
528                 progress.setProgress(processedPostings += transaction.getAccounts()
529                                                                      .size());
530 //                Logger.debug("trParser",
531 //                        String.format(Locale.US, "Parsed transaction %d - %s", transaction
532 //                        .getId(),
533 //                                transaction.getDescription()));
534 //                for (LedgerTransactionAccount acc : transaction.getAccounts()) {
535 //                    Logger.debug("trParser",
536 //                            String.format(Locale.US, "  %s", acc.getAccountName()));
537 //                }
538                 publishProgress(progress);
539             }
540
541             throwIfCancelled();
542         }
543
544         // json interface returns transactions if file order and the rest of the machinery
545         // expects them in reverse chronological order
546         Collections.sort(trList, (o1, o2) -> {
547             int res = o2.getDate()
548                         .compareTo(o1.getDate());
549             if (res != 0)
550                 return res;
551             return Long.compare(o2.getLedgerId(), o1.getLedgerId());
552         });
553         return trList;
554     }
555
556     @SuppressLint("DefaultLocale")
557     @Override
558     protected Result doInBackground(Void... params) {
559         Data.backgroundTaskStarted();
560         List<LedgerAccount> accounts;
561         List<LedgerTransaction> transactions;
562         try {
563             accounts = retrieveAccountList();
564             // accounts is null in API-version auto-detection and means
565             // requesting 'html' API version via the JSON classes
566             // this can't work, and the null results in the legacy code below
567             // being called
568             if (accounts == null)
569                 transactions = null;
570             else
571                 transactions = retrieveTransactionList();
572
573             if (accounts == null || transactions == null) {
574                 accounts = new ArrayList<>();
575                 transactions = new ArrayList<>();
576                 retrieveTransactionListLegacy(accounts, transactions);
577             }
578
579             storeAccountsAndTransactions(accounts, transactions);
580
581             mainModel.updateDisplayedTransactionsFromWeb(transactions);
582
583             return new Result(accounts, transactions);
584         }
585         catch (MalformedURLException e) {
586             e.printStackTrace();
587             return new Result("Invalid server URL");
588         }
589         catch (HTTPException e) {
590             e.printStackTrace();
591             return new Result(
592                     String.format("HTTP error %d: %s", e.getResponseCode(), e.getMessage()));
593         }
594         catch (IOException e) {
595             e.printStackTrace();
596             return new Result(e.getLocalizedMessage());
597         }
598         catch (RuntimeJsonMappingException e) {
599             e.printStackTrace();
600             return new Result(Result.ERR_JSON_PARSER_ERROR);
601         }
602         catch (ParseException e) {
603             e.printStackTrace();
604             return new Result("Network error");
605         }
606         catch (OperationCanceledException e) {
607             e.printStackTrace();
608             return new Result("Operation cancelled");
609         }
610         catch (ApiNotSupportedException e) {
611             e.printStackTrace();
612             return new Result("Server version not supported");
613         }
614         finally {
615             Data.backgroundTaskFinished();
616         }
617     }
618     @Transaction
619     private void storeAccountsAndTransactions(List<LedgerAccount> accounts,
620                                               List<LedgerTransaction> transactions) {
621         AccountDAO accDao = DB.get()
622                               .getAccountDAO();
623         TransactionDAO trDao = DB.get()
624                                  .getTransactionDAO();
625         TransactionAccountDAO trAccDao = DB.get()
626                                            .getTransactionAccountDAO();
627         AccountValueDAO valDao = DB.get()
628                                    .getAccountValueDAO();
629
630         final List<AccountWithAmounts> list = new ArrayList<>();
631         for (LedgerAccount acc : accounts) {
632             final AccountWithAmounts a = acc.toDBOWithAmounts();
633             Account existing = accDao.getByNameSync(profile.getId(), acc.getName());
634             if (existing != null) {
635                 a.account.setExpanded(existing.isExpanded());
636                 a.account.setAmountsExpanded(existing.isAmountsExpanded());
637                 a.account.setId(
638                         existing.getId()); // not strictly needed, but since we have it anyway...
639             }
640
641             list.add(a);
642         }
643         accDao.storeAccountsSync(list, profile.getId());
644
645         long trGen = trDao.getGenerationSync(profile.getId());
646         for (LedgerTransaction tr : transactions) {
647             TransactionWithAccounts tran = tr.toDBO();
648             tran.transaction.setGeneration(trGen);
649             tran.transaction.setProfileId(profile.getId());
650
651             tran.transaction.setId(trDao.insertSync(tran.transaction));
652
653             for (TransactionAccount trAcc : tran.accounts) {
654                 trAcc.setGeneration(trGen);
655                 trAcc.setTransactionId(tran.transaction.getId());
656                 trAcc.setId(trAccDao.insertSync(trAcc));
657             }
658         }
659
660         trDao.purgeOldTransactionsSync(profile.getId(), trGen);
661
662         DB.get()
663           .getOptionDAO()
664           .insertSync(new Option(profile.getId(), Option.OPT_LAST_SCRAPE,
665                   String.valueOf((new Date()).getTime())));
666     }
667     public void throwIfCancelled() {
668         if (isCancelled())
669             throw new OperationCanceledException(null);
670     }
671     private enum ParserState {
672         EXPECTING_ACCOUNT, EXPECTING_ACCOUNT_AMOUNT, EXPECTING_TRANSACTION,
673         EXPECTING_TRANSACTION_DESCRIPTION, EXPECTING_TRANSACTION_DETAILS
674     }
675
676     public enum ProgressState {STARTING, RUNNING, FINISHED}
677
678     public static class Progress {
679         private int progress;
680         private int total;
681         private ProgressState state = ProgressState.RUNNING;
682         private String error = null;
683         private boolean indeterminate;
684         Progress() {
685             indeterminate = true;
686         }
687         Progress(int progress, int total) {
688             this.indeterminate = false;
689             this.progress = progress;
690             this.total = total;
691         }
692         public static Progress indeterminate() {
693             return new Progress();
694         }
695         public static Progress finished(String error) {
696             Progress p = new Progress();
697             p.setState(ProgressState.FINISHED);
698             p.setError(error);
699             return p;
700         }
701         public int getProgress() {
702             ensureState(ProgressState.RUNNING);
703             return progress;
704         }
705         protected void setProgress(int progress) {
706             this.progress = progress;
707             this.state = ProgressState.RUNNING;
708         }
709         public int getTotal() {
710             ensureState(ProgressState.RUNNING);
711             return total;
712         }
713         protected void setTotal(int total) {
714             this.total = total;
715             state = ProgressState.RUNNING;
716             indeterminate = total == -1;
717         }
718         private void ensureState(ProgressState wanted) {
719             if (state != wanted)
720                 throw new IllegalStateException(
721                         String.format("Bad state: %s, expected %s", state, wanted));
722         }
723         public ProgressState getState() {
724             return state;
725         }
726         public void setState(ProgressState state) {
727             this.state = state;
728         }
729         public String getError() {
730             ensureState(ProgressState.FINISHED);
731             return error;
732         }
733         public void setError(String error) {
734             this.error = error;
735             state = ProgressState.FINISHED;
736         }
737         public boolean isIndeterminate() {
738             return indeterminate;
739         }
740         public void setIndeterminate(boolean indeterminate) {
741             this.indeterminate = indeterminate;
742         }
743     }
744
745     private static class TransactionParserException extends IllegalStateException {
746         TransactionParserException(String message) {
747             super(message);
748         }
749     }
750
751     public static class Result {
752         public static String ERR_JSON_PARSER_ERROR = "err_json_parser";
753         public String error;
754         public List<LedgerAccount> accounts;
755         public List<LedgerTransaction> transactions;
756         Result(String error) {
757             this.error = error;
758         }
759         Result(List<LedgerAccount> accounts, List<LedgerTransaction> transactions) {
760             this.accounts = accounts;
761             this.transactions = transactions;
762         }
763     }
764 }