2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Add Cargo Service & Controller

This commit is contained in:
Ben Parsons 2024-05-07 21:13:29 +10:00
parent f3ce62b551
commit bcc15de82b
8 changed files with 114 additions and 50 deletions

View File

@ -97,7 +97,7 @@ public class Botanist : IObservatoryWorker
set => botanistSettings = (BotanistSettings)value; set => botanistSettings = (BotanistSettings)value;
} }
public void JournalEvent<TJournal>(TJournal journal) where TJournal : IJournal public void JournalEvent<TJournal>(TJournal journal) where TJournal : JournalBase
{ {
switch (journal) switch (journal)
{ {

View File

@ -0,0 +1,13 @@
using Observatory.Framework.Files;
namespace Pulsar.Features.Cargo;
[ApiController]
[Route("api/[controller]")]
public class CargoController(ICargoService cargoService) : ControllerBase
{
public async Task<ActionResult<CargoFile>> Get()
{
return Ok(await cargoService.Get());
}
}

View File

@ -0,0 +1,46 @@
namespace Pulsar.Features.Cargo;
using Observatory.Framework.Files;
public interface ICargoService : IJournalHandler<CargoFile>;
public class CargoService(IOptions<PulsarConfiguration> options, ILogger<CargoService> logger, IEventHubContext hub) : ICargoService
{
public string FileName => "Cargo.json";
public async Task HandleFile(string filePath)
{
if (!FileHelper.ValidateFile(filePath))
{
return;
}
var file = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
var moduleInfo = await JsonSerializer.DeserializeAsync<CargoFile>(file);
if (moduleInfo == null)
{
logger.LogWarning("Failed to deserialize status file {FilePath}", filePath);
return;
}
await hub.Clients.All.CargoUpdated(moduleInfo);
}
public async Task<CargoFile> Get()
{
var cargoFile = Path.Combine(options.Value.JournalDirectory, FileName);
if (!FileHelper.ValidateFile(cargoFile))
{
return new CargoFile();
}
await using var file = File.Open(cargoFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
var cargo = await JsonSerializer.DeserializeAsync<CargoFile>(file);
if (cargo != null) return cargo;
logger.LogWarning("Failed to deserialize module info file {CargoFile}", cargoFile);
return new CargoFile();
}
}

View File

@ -1,3 +1,5 @@
using Observatory.Framework.Files;
using Observatory.Framework.Files.Journal.Odyssey;
using Pulsar.Features.ModulesInfo; using Pulsar.Features.ModulesInfo;
using Pulsar.Features.ShipLocker; using Pulsar.Features.ShipLocker;
@ -12,9 +14,7 @@ public interface IFileHandlerService : IFileHandler;
public class FileHandlerService( public class FileHandlerService(
ILogger<FileHandlerService> logger, ILogger<FileHandlerService> logger,
IStatusService statusService, IServiceProvider serviceProvider) : IFileHandlerService
IShipLockerService shipLockerService,
IModulesInfoService modulesService) : IFileHandlerService
{ {
public static readonly string MarketFileName = "Market.json"; public static readonly string MarketFileName = "Market.json";
public static readonly string StatusFileName = "Status.json"; public static readonly string StatusFileName = "Status.json";
@ -46,11 +46,13 @@ public class FileHandlerService(
NavRouteFileName NavRouteFileName
]; ];
private readonly Dictionary<string, IJournalHandler> Handlers = new() private readonly Dictionary<string, Type> Handlers = new()
{ {
{ StatusFileName, statusService }, { StatusFileName, typeof(IJournalHandler<Observatory.Framework.Files.Status>) },
{ ModulesInfoFileName, modulesService }, { ModulesInfoFileName, typeof(IJournalHandler<ModuleInfoFile>) },
{ ShipLockerFileName, shipLockerService } { ShipLockerFileName, typeof(IJournalHandler<ShipLockerMaterials>) },
{ ShipLockerFileName, typeof(IJournalHandler<ShipLockerMaterials>) },
{ CargoFileName, typeof(IJournalHandler<CargoFile>) },
}; };
public async Task HandleFile(string path) public async Task HandleFile(string path)
@ -68,10 +70,10 @@ public class FileHandlerService(
return; return;
} }
if (Handlers.TryGetValue(match, out var handler)) if (Handlers.TryGetValue(match, out var type))
{ {
logger.LogInformation("Handling file {FileName}", fileName); logger.LogInformation("Handling file {FileName} with Type {Type}", fileName);
await handler.HandleFile(fileInfo.Name); (serviceProvider.GetRequiredService(type) as IJournalHandler)?.HandleFile(path);
return; return;
} }

View File

@ -1,5 +1,3 @@
using Observatory.Framework.Files.Journal;
namespace Pulsar.Features; namespace Pulsar.Features;
/// <summary> /// <summary>
@ -8,8 +6,6 @@ namespace Pulsar.Features;
public interface IJournalHandler : IFileHandler public interface IJournalHandler : IFileHandler
{ {
string FileName { get; } string FileName { get; }
public bool ValidateFile(string filePath);
} }
/// <summary> /// <summary>

View File

@ -1,6 +1,6 @@
namespace Pulsar.Features.Journal; namespace Pulsar.Features.Journal;
using Observatory.Framework.Files; using System.Text.RegularExpressions;
using Observatory.Framework.Files.Journal; using Observatory.Framework.Files.Journal;
public interface IJournalService : IJournalHandler<List<JournalBase>>; public interface IJournalService : IJournalHandler<List<JournalBase>>;
@ -12,57 +12,41 @@ public class JournalService
IEventHubContext hub IEventHubContext hub
) : IJournalService ) : IJournalService
{ {
public string FileName => "Journal.2024-03-16T152419.01.log"; // FileHandlerService.JournalLogFileName; public string FileName => FileHandlerService.JournalLogFileName;
public bool ValidateFile(string filePath)
{
if (!File.Exists(filePath))
{
logger.LogWarning("Journal file {JournalFile} does not exist", filePath);
return false;
}
var fileInfo = new FileInfo(filePath);
if (!string.Equals(fileInfo.Name, FileName, StringComparison.InvariantCultureIgnoreCase))
{
logger.LogWarning("Journal file {name} is not valid");
return false;
}
if (fileInfo.Length == 0)
{
logger.LogWarning("Journal file {name} is empty", filePath);
return false;
}
return true;
}
public async Task HandleFile(string filePath) public async Task HandleFile(string filePath)
{ {
if (!ValidateFile(filePath)) if (!FileHelper.ValidateFile(filePath))
{ {
return; return;
} }
var file = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); var file = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
var moduleInfo = await JsonSerializer.DeserializeAsync<List<JournalBase>>(file); var journals = await JsonSerializer.DeserializeAsync<List<JournalBase>>(file);
if (moduleInfo == null) if (journals == null)
{ {
logger.LogWarning("Failed to deserialize status file {FilePath}", filePath); logger.LogWarning("Failed to deserialize status file {FilePath}", filePath);
return; return;
} }
// await hub.Clients.All.ModuleInfoUpdated(moduleInfo); await hub.Clients.All.JournalUpdated(journals);
} }
public async Task<List<JournalBase>> Get() public async Task<List<JournalBase>> Get()
{ {
var dataFileName = Path.Combine(options.Value.JournalDirectory, FileName); var folder = new DirectoryInfo(options.Value.JournalDirectory);
var regex = new Regex(FileHandlerService.JournalLogFileNameRegEx);
if (!ValidateFile(dataFileName))
if (!folder.Exists)
{
logger.LogWarning("Journal directory {JournalDirectory} does not exist", folder.FullName);
return [];
}
var dataFileName = folder.GetFiles().FirstOrDefault(f => regex.IsMatch(f.Name))?.FullName;
if (!FileHelper.ValidateFile(dataFileName))
{ {
return []; return [];
} }

View File

@ -1,6 +1,7 @@
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;
using Lamar; using Lamar;
using Pulsar.Features; using Pulsar.Features;
using Pulsar.Features.Cargo;
using Pulsar.Features.ModulesInfo; using Pulsar.Features.ModulesInfo;
using Pulsar.Features.Journal; using Pulsar.Features.Journal;
@ -14,6 +15,7 @@ public class PulsarServiceRegistry : ServiceRegistry
For<IFileHandlerService>().Use<FileHandlerService>(); For<IFileHandlerService>().Use<FileHandlerService>();
For<IStatusService>().Use<StatusService>(); For<IStatusService>().Use<StatusService>();
For<IModulesInfoService>().Use<ModulesInfoService>(); For<IModulesInfoService>().Use<ModulesInfoService>();
For<ICargoService>().Use<CargoService>();
For<IJournalService>().Use<JournalService>(); For<IJournalService>().Use<JournalService>();
} }
} }

View File

@ -0,0 +1,21 @@
namespace Pulsar.Utils;
public static class FileHelper
{
public static bool ValidateFile(string filePath)
{
if (!File.Exists(filePath))
{
return false;
}
var fileInfo = new FileInfo(filePath);
if (fileInfo.Length == 0)
{
return false;
}
return true;
}
}