aboutsummaryrefslogtreecommitdiffstats
path: root/ui-desktop/src/main/java/market/guess/ui/desktop/task/InitialLoadTask.java
blob: e49b0c47c0cb5d6b67535584c0caad3075c718ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package market.guess.ui.desktop.task;

import java.nio.file.Path;
import javafx.concurrent.Task;
import market.guess.api.CatalogContext;
import market.guess.api.LoadResult;

public final class InitialLoadTask extends Task<LoadResult> {
  private final CatalogContext catalog;
  private final Path path;

  public InitialLoadTask(CatalogContext catalog, Path path) {
    this.catalog = catalog;
    this.path = path;
  }

  @Override
  protected LoadResult call() throws Exception {
    updateProgress(0, 100);
    if (isCancelled()) {
      return null;
    }

    for (int i = 0; i < 20; i++) {
      if (isCancelled()) {
        return null;
      }
      try {
        Thread.sleep(100);
      } catch (InterruptedException e) {
        if (isCancelled()) {
          return null;
        }
        Thread.currentThread().interrupt();
        break;
      }
      updateProgress((i + 1) * 5, 100);
    }

    if (isCancelled()) {
      return null;
    }

    var result = catalog.loadEvents(path);

    if (isCancelled()) {
      return null;
    }

    if (!result.isSuccess()) {
      throw new RuntimeException(result.getDetails());
    }

    updateProgress(100, 100);
    return result.getData();
  }
}