From c455dfa0ed6bcfd3fde0fafc74b44940e149e0cb Mon Sep 17 00:00:00 2001 From: feyris-tan Date: Thu, 23 Oct 2025 08:37:31 +0200 Subject: [PATCH] Add Method stubs in the Data Storages --- .../MySqlDataStorage.cs | 32 +++++++++++++++++++ .../PostgresqlDataStore.cs | 32 +++++++++++++++++++ .../skyscraper5.UI.WindowsForms.csproj | 1 + .../skyscraper8.AnagramViewer.csproj | 1 + 4 files changed, 66 insertions(+) diff --git a/DataTableStorages/skyscraper5.Data.MySql/MySqlDataStorage.cs b/DataTableStorages/skyscraper5.Data.MySql/MySqlDataStorage.cs index 3245388..9ea36f7 100644 --- a/DataTableStorages/skyscraper5.Data.MySql/MySqlDataStorage.cs +++ b/DataTableStorages/skyscraper5.Data.MySql/MySqlDataStorage.cs @@ -18,9 +18,11 @@ using skyscraper5.Skyscraper.IO.CrazycatStreamReader; using skyscraper5.Skyscraper.Scraper.Storage.Utilities; using skyscraper5.src.InteractionChannel.Model.Descriptors; using skyscraper5.src.InteractionChannel.Model; +using skyscraper5.src.InteractionChannel.Model2; using skyscraper5.src.Skyscraper.FrequencyListGenerator; using skyscraper5.src.Skyscraper.Scraper.Dns; using skyscraper5.Teletext; +using skyscraper8.InteractionChannel.Model2; using skyscraper8.Skyscraper.Scraper.Storage; namespace skyscraper5.Data.MySql @@ -259,6 +261,36 @@ namespace skyscraper5.Data.MySql throw new NotImplementedException(); } + public bool TestForTerminalBurstTimePlan2(ushort interactiveNetworkId, byte tbtp2GroupId, byte frameFrameNumber) + { + throw new NotImplementedException(); + } + + public void StoreTerminalBurstTimePlan2(ushort interactiveNetworkId, byte tbtp2GroupId, Tbtp2.Frame frame) + { + throw new NotImplementedException(); + } + + public bool TestForFrameComposition2(ushort networkId, Fct2.Frame fct2) + { + throw new NotImplementedException(); + } + + public void InsertFct2Frame(ushort networkId, Fct2.Frame frame) + { + throw new NotImplementedException(); + } + + public bool TestForBroadcastConfiguration(ushort networkId, byte txTypeTxType) + { + throw new NotImplementedException(); + } + + public void InsertBroadcastConfiguration(ushort networkId, Bct.BroadcastConfiguration txType) + { + throw new NotImplementedException(); + } + public IEnumerable> SelectAllPmt() { throw new NotImplementedException(); diff --git a/DataTableStorages/skyscraper5.Data.PostgreSql/PostgresqlDataStore.cs b/DataTableStorages/skyscraper5.Data.PostgreSql/PostgresqlDataStore.cs index 20ba90b..8cdbded 100644 --- a/DataTableStorages/skyscraper5.Data.PostgreSql/PostgresqlDataStore.cs +++ b/DataTableStorages/skyscraper5.Data.PostgreSql/PostgresqlDataStore.cs @@ -6,7 +6,9 @@ using NpgsqlTypes; using skyscraper5.Dvb.Psi.Model; using skyscraper5.Dvb.TvAnytime; using skyscraper5.Skyscraper.Headless; +using skyscraper5.src.InteractionChannel.Model2; using skyscraper8.DvbNip; +using skyscraper8.InteractionChannel.Model2; using skyscraper8.Skyscraper.Scraper.Storage; namespace skyscraper5.Data.PostgreSql @@ -224,6 +226,36 @@ namespace skyscraper5.Data.PostgreSql return result; } } + + public bool TestForTerminalBurstTimePlan2(ushort interactiveNetworkId, byte tbtp2GroupId, byte frameFrameNumber) + { + throw new NotImplementedException(); + } + + public void StoreTerminalBurstTimePlan2(ushort interactiveNetworkId, byte tbtp2GroupId, Tbtp2.Frame frame) + { + throw new NotImplementedException(); + } + + public bool TestForFrameComposition2(ushort networkId, Fct2.Frame fct2) + { + throw new NotImplementedException(); + } + + public void InsertFct2Frame(ushort networkId, Fct2.Frame frame) + { + throw new NotImplementedException(); + } + + public bool TestForBroadcastConfiguration(ushort networkId, byte txTypeTxType) + { + throw new NotImplementedException(); + } + + public void InsertBroadcastConfiguration(ushort networkId, Bct.BroadcastConfiguration txType) + { + throw new NotImplementedException(); + } } } diff --git a/GUIs/skyscraper5.UI/skyscraper5.UI.WindowsForms.csproj b/GUIs/skyscraper5.UI/skyscraper5.UI.WindowsForms.csproj index 90879e7..d5ce100 100644 --- a/GUIs/skyscraper5.UI/skyscraper5.UI.WindowsForms.csproj +++ b/GUIs/skyscraper5.UI/skyscraper5.UI.WindowsForms.csproj @@ -6,6 +6,7 @@ enable true enable + true diff --git a/GUIs/skyscraper8.AnagramViewer/skyscraper8.AnagramViewer.csproj b/GUIs/skyscraper8.AnagramViewer/skyscraper8.AnagramViewer.csproj index 25587da..ddc1459 100644 --- a/GUIs/skyscraper8.AnagramViewer/skyscraper8.AnagramViewer.csproj +++ b/GUIs/skyscraper8.AnagramViewer/skyscraper8.AnagramViewer.csproj @@ -6,6 +6,7 @@ enable true enable + true