All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.koder95.eme.au.SelfUpdateTask Maven / Gradle / Ivy

There is a newer version: 0.4.4
Show newest version
/*
 * 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:
 * 
    *
  1. Usuwanie zawartości folderu tymczasowego, gdzie pobrane zostaną pliki ostatniego wydania.
  2. *
  3. Pobieranie najnowszego wydania programu w postaci archiwum ZIP.
  4. *
  5. Wypakowanie zawartości archiwum do folderu tymczasowego.
  6. *
  7. Usunięcie pobranego archiwum ZIP.
  8. *
  9. Wygenerowanie skryptu samoaktualizacji.
  10. *
  11. Uruchomienie skryptu i zamknięcie programu.
  12. *
* 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