mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
302 lines
10 KiB
C#
302 lines
10 KiB
C#
/******************************************************************************
|
|
// RomRepoMgr - ROM repository manager
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// --[ License ] --------------------------------------------------------------
|
|
//
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2020-2024 Natalia Portillo
|
|
*******************************************************************************/
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
using Avalonia;
|
|
using Avalonia.Controls.ApplicationLifetimes;
|
|
using Avalonia.Threading;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using RomRepoMgr.Core.EventArgs;
|
|
using RomRepoMgr.Core.Models;
|
|
using RomRepoMgr.Core.Workers;
|
|
using RomRepoMgr.Database;
|
|
using Serilog;
|
|
using Serilog.Extensions.Logging;
|
|
|
|
namespace RomRepoMgr.ViewModels;
|
|
|
|
public sealed partial class SplashWindowViewModel : ViewModelBase
|
|
{
|
|
[ObservableProperty]
|
|
bool _checkingUnArError;
|
|
[ObservableProperty]
|
|
bool _checkingUnArOk;
|
|
[ObservableProperty]
|
|
bool _checkingUnArUnknown;
|
|
[ObservableProperty]
|
|
bool _exitVisible;
|
|
[ObservableProperty]
|
|
bool _loadingDatabaseError;
|
|
[ObservableProperty]
|
|
bool _loadingDatabaseOk;
|
|
[ObservableProperty]
|
|
bool _loadingDatabaseUnknown;
|
|
[ObservableProperty]
|
|
bool _loadingRomSetsError;
|
|
[ObservableProperty]
|
|
bool _loadingRomSetsOk;
|
|
[ObservableProperty]
|
|
bool _loadingRomSetsUnknown;
|
|
[ObservableProperty]
|
|
bool _loadingSettingsError;
|
|
[ObservableProperty]
|
|
bool _loadingSettingsOk;
|
|
[ObservableProperty]
|
|
bool _loadingSettingsUnknown;
|
|
[ObservableProperty]
|
|
bool _migratingDatabaseError;
|
|
[ObservableProperty]
|
|
bool _migratingDatabaseOk;
|
|
[ObservableProperty]
|
|
bool _migratingDatabaseUnknown;
|
|
|
|
public SplashWindowViewModel()
|
|
{
|
|
ExitCommand = new RelayCommand(ExecuteExitCommand);
|
|
|
|
LoadingSettingsOk = false;
|
|
LoadingSettingsError = false;
|
|
LoadingSettingsUnknown = true;
|
|
CheckingUnArOk = false;
|
|
CheckingUnArError = false;
|
|
CheckingUnArUnknown = true;
|
|
LoadingDatabaseOk = false;
|
|
LoadingDatabaseError = false;
|
|
LoadingDatabaseUnknown = true;
|
|
MigratingDatabaseOk = false;
|
|
MigratingDatabaseError = false;
|
|
MigratingDatabaseUnknown = true;
|
|
LoadingRomSetsOk = false;
|
|
LoadingRomSetsError = false;
|
|
LoadingRomSetsUnknown = true;
|
|
ExitVisible = false;
|
|
}
|
|
|
|
public ICommand ExitCommand { get; }
|
|
|
|
public string LoadingText => "ROM Repository Manager";
|
|
|
|
void ExecuteExitCommand() =>
|
|
(Application.Current.ApplicationLifetime as ClassicDesktopStyleApplicationLifetime)?.Shutdown();
|
|
|
|
internal void OnOpened() => Dispatcher.UIThread.Post(LoadSettings);
|
|
|
|
void LoadSettings()
|
|
{
|
|
_ = Task.Run(() =>
|
|
{
|
|
try
|
|
{
|
|
Settings.Settings.LoadSettings();
|
|
|
|
Dispatcher.UIThread.Post(CheckUnAr);
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
Log.Error(e, "Error loading settings");
|
|
Dispatcher.UIThread.Post(FailedLoadingSettings);
|
|
}
|
|
});
|
|
}
|
|
|
|
void FailedLoadingSettings()
|
|
{
|
|
LoadingSettingsUnknown = false;
|
|
LoadingSettingsError = true;
|
|
ExitVisible = true;
|
|
}
|
|
|
|
void CheckUnAr()
|
|
{
|
|
_ = Task.Run(() =>
|
|
{
|
|
LoadingSettingsUnknown = false;
|
|
LoadingSettingsOk = true;
|
|
|
|
try
|
|
{
|
|
var worker = new Compression();
|
|
Settings.Settings.UnArUsable = worker.CheckUnAr(Settings.Settings.Current.UnArchiverPath);
|
|
|
|
Dispatcher.UIThread.Post(LoadDatabase);
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
Log.Error(e, "Error checking unar");
|
|
Dispatcher.UIThread.Post(FailedCheckUnAr);
|
|
}
|
|
});
|
|
}
|
|
|
|
void FailedCheckUnAr()
|
|
{
|
|
CheckingUnArUnknown = false;
|
|
CheckingUnArError = true;
|
|
ExitVisible = true;
|
|
}
|
|
|
|
void LoadDatabase()
|
|
{
|
|
CheckingUnArUnknown = false;
|
|
CheckingUnArOk = true;
|
|
|
|
_ = Task.Run(() =>
|
|
{
|
|
try
|
|
{
|
|
string dbPathFolder = Path.GetDirectoryName(Settings.Settings.Current.DatabasePath);
|
|
|
|
if(!Directory.Exists(dbPathFolder)) Directory.CreateDirectory(dbPathFolder);
|
|
|
|
using var ctx = Context.Create(Settings.Settings.Current.DatabasePath,
|
|
new SerilogLoggerFactory(Log.Logger));
|
|
|
|
Dispatcher.UIThread.Post(MigrateDatabase);
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
Log.Error(e, "Error loading database");
|
|
Dispatcher.UIThread.Post(FailedLoadingDatabase);
|
|
}
|
|
});
|
|
}
|
|
|
|
void FailedLoadingDatabase()
|
|
{
|
|
LoadingDatabaseUnknown = false;
|
|
LoadingDatabaseError = true;
|
|
ExitVisible = true;
|
|
}
|
|
|
|
void MigrateDatabase()
|
|
{
|
|
LoadingDatabaseUnknown = false;
|
|
LoadingDatabaseOk = true;
|
|
|
|
_ = Task.Run(() =>
|
|
{
|
|
try
|
|
{
|
|
using var ctx = Context.Create(Settings.Settings.Current.DatabasePath,
|
|
new SerilogLoggerFactory(Log.Logger));
|
|
|
|
ctx.Database.Migrate();
|
|
|
|
Dispatcher.UIThread.Post(LoadRomSets);
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
Log.Error(e, "Error migrating database");
|
|
Dispatcher.UIThread.Post(FailedMigratingDatabase);
|
|
}
|
|
});
|
|
}
|
|
|
|
void FailedMigratingDatabase()
|
|
{
|
|
MigratingDatabaseUnknown = false;
|
|
MigratingDatabaseError = true;
|
|
ExitVisible = true;
|
|
}
|
|
|
|
void LoadRomSets()
|
|
{
|
|
MigratingDatabaseUnknown = false;
|
|
MigratingDatabaseOk = true;
|
|
|
|
_ = Task.Run(() =>
|
|
{
|
|
try
|
|
{
|
|
using var ctx = Context.Create(Settings.Settings.Current.DatabasePath,
|
|
new SerilogLoggerFactory(Log.Logger));
|
|
|
|
GotRomSets?.Invoke(this,
|
|
new RomSetsEventArgs
|
|
{
|
|
RomSets = ctx.RomSets.OrderBy(r => r.Name)
|
|
.ThenBy(r => r.Version)
|
|
.ThenBy(r => r.Date)
|
|
.ThenBy(r => r.Description)
|
|
.ThenBy(r => r.Comment)
|
|
.ThenBy(r => r.Filename)
|
|
.Select(r => new RomSetModel
|
|
{
|
|
Id = r.Id,
|
|
Author = r.Author,
|
|
Comment = r.Comment,
|
|
Date = r.Date,
|
|
Description = r.Description,
|
|
Filename = r.Filename,
|
|
Homepage = r.Homepage,
|
|
Name = r.Name,
|
|
Sha384 = r.Sha384,
|
|
Version = r.Version,
|
|
TotalMachines = r.Statistics.TotalMachines,
|
|
CompleteMachines = r.Statistics.CompleteMachines,
|
|
IncompleteMachines = r.Statistics.IncompleteMachines,
|
|
TotalRoms = r.Statistics.TotalRoms,
|
|
HaveRoms = r.Statistics.HaveRoms,
|
|
MissRoms = r.Statistics.MissRoms,
|
|
Category = r.Category
|
|
})
|
|
.ToList()
|
|
});
|
|
|
|
Dispatcher.UIThread.Post(LoadMainWindow);
|
|
}
|
|
catch(Exception e)
|
|
{
|
|
Log.Error(e, "Error loading ROM sets");
|
|
Dispatcher.UIThread.Post(FailedLoadingRomSets);
|
|
}
|
|
});
|
|
}
|
|
|
|
void FailedLoadingRomSets()
|
|
{
|
|
LoadingRomSetsUnknown = false;
|
|
LoadingRomSetsError = true;
|
|
ExitVisible = true;
|
|
}
|
|
|
|
void LoadMainWindow()
|
|
{
|
|
LoadingRomSetsUnknown = false;
|
|
LoadingRomSetsOk = true;
|
|
|
|
WorkFinished?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
|
|
internal event EventHandler WorkFinished;
|
|
|
|
internal event EventHandler<RomSetsEventArgs> GotRomSets;
|
|
} |