diff --git a/Pulsar/Features/FileHandlerService.cs b/Pulsar/Features/FileHandlerService.cs index 2d70e84..436d92d 100644 --- a/Pulsar/Features/FileHandlerService.cs +++ b/Pulsar/Features/FileHandlerService.cs @@ -89,6 +89,6 @@ public class FileHandlerService( } logger.LogInformation("Handling file {FileName} with Type {Type}", fileName, handler.GetType().ToString()); - await handler.HandleFile(path); + Task.Run(() => handler.HandleFile(path)); } } \ No newline at end of file diff --git a/Pulsar/Features/Journal/JournalService.cs b/Pulsar/Features/Journal/JournalService.cs index e6d165d..bb9d22c 100644 --- a/Pulsar/Features/Journal/JournalService.cs +++ b/Pulsar/Features/Journal/JournalService.cs @@ -9,28 +9,42 @@ public class JournalService ( ILogger logger, IOptions options, - IEventHubContext hub + IEventHubContext hub, + PulsarContext context ) : IJournalService { public string FileName => FileHandlerService.JournalLogFileName; - public async Task HandleFile(string filePath) + public Task HandleFile(string filePath) => HandleFile(filePath, CancellationToken.None); + public async Task HandleFile(string filePath, CancellationToken token) { if (!FileHelper.ValidateFile(filePath)) { return; } - var file = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); - var journals = await JsonSerializer.DeserializeAsync>(file); + var file = await File.ReadAllLinesAsync(filePath, Encoding.UTF8, token); + var journals = file.Select(line => JsonSerializer.Deserialize(line)).ToList(); - if (journals == null) + + var newJournals = new List(); + var notBefore = DateTimeOffset.UtcNow.Subtract(TimeSpan.FromHours(6)); + foreach (var journal in journals) { - logger.LogWarning("Failed to deserialize status file {FilePath}", filePath); - return; + if (context.Journals.Any(j => j.Timestamp == journal.Timestamp && j.Event == journal.Event)) + { + continue; + } + + context.Journals.Add(journal); + + if (journal.Timestamp > notBefore) + { + newJournals.Add(journal); + } } - await hub.Clients.All.JournalUpdated(journals); + await hub.Clients.All.JournalUpdated(newJournals); } public async Task> Get() diff --git a/Pulsar/PulsarContext.cs b/Pulsar/PulsarContext.cs index e2e250f..74787a2 100644 --- a/Pulsar/PulsarContext.cs +++ b/Pulsar/PulsarContext.cs @@ -1,8 +1,25 @@ +using Microsoft.Data.Sqlite; using Microsoft.EntityFrameworkCore; +using Observatory.Framework.Files.Journal; /// /// An in-memory database context for Pulsar. /// public class PulsarContext : DbContext { + public SqliteConnection Connection { get; private set; } + + public DbSet Journals { get; set; } + + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + { + Connection = new SqliteConnection("Data Source=:memory:"); + optionsBuilder.UseSqlite(Connection); + } + + public override void Dispose() + { + Connection.Dispose(); + base.Dispose(); + } } \ No newline at end of file diff --git a/Pulsar/WebApp/src/lib/Fuel.svelte b/Pulsar/WebApp/src/lib/Fuel.svelte new file mode 100644 index 0000000..9da6223 --- /dev/null +++ b/Pulsar/WebApp/src/lib/Fuel.svelte @@ -0,0 +1,2 @@ + + diff --git a/Pulsar/WebApp/src/lib/JournalLog.svelte b/Pulsar/WebApp/src/lib/JournalLog.svelte new file mode 100644 index 0000000..d8c19fd --- /dev/null +++ b/Pulsar/WebApp/src/lib/JournalLog.svelte @@ -0,0 +1,17 @@ + + +

Journals:

+ + + diff --git a/Pulsar/WebApp/src/lib/MissionStack.svelte b/Pulsar/WebApp/src/lib/MissionStack.svelte index 58997ea..10e26aa 100644 --- a/Pulsar/WebApp/src/lib/MissionStack.svelte +++ b/Pulsar/WebApp/src/lib/MissionStack.svelte @@ -8,7 +8,7 @@ return response.json(); }; - const query = useQuery("journal", getData, { staleTime: Infinity }); + const query = useQuery("journal", getData, { staleTime: Number.POSITIVE_INFINITY });

Mission Stack

@@ -26,7 +26,7 @@ {/if} {/each} {/if} - +