pl.koder95.eme.au.SelfUpdateTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eMetrykant Show documentation
Show all versions of eMetrykant Show documentation
Created for catholic church parishes. It is simple data browser.
/*
* Copyright (C) 2021 Kamil Jan Mularski [@koder95]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package pl.koder95.eme.au;
import javafx.concurrent.Task;
/**
* Klasa definiuje metody samoaktualizacji, które współpracują z JavaFX. Jest to szczególna implementacja
* klasy abstrakcyjnej {@link Task}, której metoda {@link #call()} zwraca zawsze {@code null} i działa
* w następujący sposób:
*
* - Usuwanie zawartości folderu tymczasowego, gdzie pobrane zostaną pliki ostatniego wydania.
* - Pobieranie najnowszego wydania programu w postaci archiwum ZIP.
* - Wypakowanie zawartości archiwum do folderu tymczasowego.
* - Usunięcie pobranego archiwum ZIP.
* - Wygenerowanie skryptu samoaktualizacji.
* - Uruchomienie skryptu i zamknięcie programu.
*
* Generator skryptu aktualizującego powinien zadbać o uruchomienie programu po skończeniu aktualizacji.
*/
public class SelfUpdateTask extends Task {
/**
* @return zawsze {@code null}
*/
@Override
protected Void call() throws Exception {
new SelfUpdate(this::updateProgress, this::updateMessage, this::updateTitle).run();
return null;
}
private void updateProgress(Number workDone, Number max) {
if (workDone instanceof Long && max instanceof Long) updateProgress(workDone.longValue(), max.longValue());
else updateProgress(workDone.doubleValue(), max.doubleValue());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy