From 286727eb44041d1b8eab47e34a688319c9b6af04 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 26 Mar 2021 16:38:09 +1000 Subject: [PATCH] Make collection-typed fields readonly where possible also I widened them all to the relevant interface this was done with a naive regex replace, followed by reverting lines until all the build errors were gone; the regex was something like s@(public|internal|protected|private) ((?:List|Dictionary)<[^=\n{]+= )@$1 readonly I$2@g --- .../DisplayManager/FilterManager.cs | 4 ++-- .../movie/tasproj/StateDictionary.cs | 2 +- .../Computers/AmstradCPC/AmstradCPC.cs | 4 ++-- .../AmstradCPC/Media/Tape/CDT/CdtConverter.cs | 2 +- .../SinclairSpectrum/Media/Tape/PZX/PzxConverter.cs | 4 ++-- .../SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs | 2 +- .../Computers/SinclairSpectrum/ZXSpectrum.cs | 4 ++-- .../Consoles/Nintendo/NES/FDS/FDSInspector.cs | 4 ++-- .../Consoles/Sega/gpgx64/GenDbgHlp.cs | 2 +- .../Consoles/Sony/PSX/Octoshock.cs | 3 ++- src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/PSF.cs | 4 ++-- src/BizHawk.Emulation.Cores/FileID.cs | 2 +- .../Libretro/LibretroCore_Description.cs | 2 +- src/BizHawk.Emulation.DiscSystem/Disc.cs | 4 ++-- .../DiscFormats/Blobs/RiffMaster.cs | 2 +- .../DiscFormats/CCD_format.cs | 10 +++++----- .../DiscFormats/CUE/CUE_Compile.cs | 5 +++-- .../DiscFormats/M3U_file.cs | 2 +- .../DiscFormats/MDS_Format.cs | 6 +++--- .../DiscFormats/SBI_format.cs | 2 +- src/BizHawk.Emulation.DiscSystem/DiscStructure.cs | 4 ++-- 21 files changed, 38 insertions(+), 36 deletions(-) diff --git a/src/BizHawk.Client.Common/DisplayManager/FilterManager.cs b/src/BizHawk.Client.Common/DisplayManager/FilterManager.cs index c07839859b..7d1c5694b6 100644 --- a/src/BizHawk.Client.Common/DisplayManager/FilterManager.cs +++ b/src/BizHawk.Client.Common/DisplayManager/FilterManager.cs @@ -40,8 +40,8 @@ namespace BizHawk.Client.Common.FilterManager { private readonly Dictionary _filterNameIndex = new Dictionary(); - public List Filters = new List(); - public List Program = new List(); + public readonly IList Filters = new List(); + public readonly IList Program = new List(); public BaseFilter this[string name] { diff --git a/src/BizHawk.Client.Common/movie/tasproj/StateDictionary.cs b/src/BizHawk.Client.Common/movie/tasproj/StateDictionary.cs index 203b26c2e0..f067894c7d 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/StateDictionary.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/StateDictionary.cs @@ -9,7 +9,7 @@ namespace BizHawk.Client.Common { internal class TempFileStateDictionary : IDictionary, IDisposable { - private Dictionary _streams = new Dictionary(); + private readonly IDictionary _streams = new Dictionary(); public byte[] this[int key] { diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs index 2dc7889dba..3bd307e3ea 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.cs @@ -107,8 +107,8 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC public CPCBase _machine; public List _gameInfo; - public List _tapeInfo = new List(); - public List _diskInfo = new List(); + public readonly IList _tapeInfo = new List(); + public readonly IList _diskInfo = new List(); private SoundProviderMixer SoundMixer; diff --git a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs index 43af3d3cea..60ead4776b 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs @@ -29,7 +29,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC /// /// Working list of generated tape data blocks /// - private List _blocks = new List(); + private readonly IList _blocks = new List(); /// /// Position counter diff --git a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/PZX/PzxConverter.cs b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/PZX/PzxConverter.cs index b12c768f0f..397c089a04 100644 --- a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/PZX/PzxConverter.cs +++ b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/PZX/PzxConverter.cs @@ -30,7 +30,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum /// /// Working list of generated tape data blocks /// - private List _blocks = new List(); + private readonly IList _blocks = new List(); /// /// Position counter @@ -40,7 +40,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum /// /// Object to keep track of loops - this assumes there is only one loop at a time /// - private List> _loopCounter = new List>(); + private readonly IList> _loopCounter = new List>(); private readonly DatacorderDevice _datacorder; diff --git a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs index 27f1240e51..91c237b7e6 100644 --- a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs +++ b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/Media/Tape/TZX/TzxConverter.cs @@ -29,7 +29,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum /// /// Working list of generated tape data blocks /// - private List _blocks = new List(); + private readonly IList _blocks = new List(); /// /// Position counter diff --git a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs index 2822b4f0bd..70fb848ae8 100644 --- a/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs +++ b/src/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.cs @@ -159,8 +159,8 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum public List _gameInfo; - public List _tapeInfo = new List(); - public List _diskInfo = new List(); + public readonly IList _tapeInfo = new List(); + public readonly IList _diskInfo = new List(); private SyncSoundMixer SoundMixer; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDSInspector.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDSInspector.cs index 3c7963944b..884e65fed2 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDSInspector.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDSInspector.cs @@ -16,7 +16,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES private static readonly byte[] Check = FTXT.E.GetBytes("FDS\x1a"); private static readonly byte[] CheckAlt = FTXT.E.GetBytes("\x01*NIN"); - public List Disks = new List(); + public readonly IList Disks = new List(); public byte[] ExtraData; @@ -63,7 +63,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { private static readonly byte[] Check = FTXT.E.GetBytes("*NINTENDO-HVC*"); - public List Chunks = new List(); + public readonly IList Chunks = new List(); public byte[] HeaderData; public byte[] ExtraData; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GenDbgHlp.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GenDbgHlp.cs index 0d1eafbd47..cd553a2d42 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GenDbgHlp.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GenDbgHlp.cs @@ -43,7 +43,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx private IntPtr DllBase; private readonly List SymbolsByAddr = new List(); - private Dictionary SymbolsByName = new Dictionary(); + private readonly IDictionary SymbolsByName = new Dictionary(); private readonly byte[][] data = new byte[10][]; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index 8f9409c9c8..fbb114840b 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -22,6 +22,7 @@ using Newtonsoft.Json; using BizHawk.Emulation.Common; using BizHawk.Common; +using BizHawk.Common.CollectionExtensions; using BizHawk.Emulation.DiscSystem; #pragma warning disable 649 //adelikat: Disable dumb warnings until this file is complete @@ -480,7 +481,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSX public bool CurrentTrayOpen { get; private set; } public int CurrentDiscIndexMounted { get; private set; } - public List HackyDiscButtons = new List(); + public readonly IList HackyDiscButtons = new List(); public IEmulatorServiceProvider ServiceProvider { get; private set; } diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/PSF.cs b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/PSF.cs index 3d91a9d1a5..76d1d8d7fc 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/PSF.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sony/PSX/PSF.cs @@ -8,8 +8,8 @@ namespace BizHawk.Emulation.Cores.Sony.PSX { public class PSF { - public Dictionary TagsDictionary = new Dictionary(); - public List LooseTags = new List(); + public readonly IDictionary TagsDictionary = new Dictionary(); + public readonly IList LooseTags = new List(); public byte[] Data; public byte[] LibData; diff --git a/src/BizHawk.Emulation.Cores/FileID.cs b/src/BizHawk.Emulation.Cores/FileID.cs index e95aa19ad6..f7a4c1a360 100644 --- a/src/BizHawk.Emulation.Cores/FileID.cs +++ b/src/BizHawk.Emulation.Cores/FileID.cs @@ -83,7 +83,7 @@ namespace BizHawk.Emulation.Cores /// /// extra information which could be easily gotten during the file ID (region, suspected homebrew, CRC invalid, etc.) /// - public Dictionary ExtraInfo = new Dictionary(); + public readonly IDictionary ExtraInfo = new Dictionary(); } public class FileIDResults : List diff --git a/src/BizHawk.Emulation.Cores/Libretro/LibretroCore_Description.cs b/src/BizHawk.Emulation.Cores/Libretro/LibretroCore_Description.cs index f6828c52f0..00bcc0f89e 100644 --- a/src/BizHawk.Emulation.Cores/Libretro/LibretroCore_Description.cs +++ b/src/BizHawk.Emulation.Cores/Libretro/LibretroCore_Description.cs @@ -37,7 +37,7 @@ namespace BizHawk.Emulation.Cores.Libretro /// /// Variables defined by the core /// - public Dictionary Variables = new Dictionary(); + public readonly IDictionary Variables = new Dictionary(); } public class VariableDescription diff --git a/src/BizHawk.Emulation.DiscSystem/Disc.cs b/src/BizHawk.Emulation.DiscSystem/Disc.cs index 8b35e6a933..ffd4320f77 100644 --- a/src/BizHawk.Emulation.DiscSystem/Disc.cs +++ b/src/BizHawk.Emulation.DiscSystem/Disc.cs @@ -60,7 +60,7 @@ namespace BizHawk.Emulation.DiscSystem /// /// Free-form optional memos about the disc /// - public Dictionary Memos = new Dictionary(); + public readonly IDictionary Memos = new Dictionary(); public void Dispose() { @@ -104,7 +104,7 @@ namespace BizHawk.Emulation.DiscSystem /// /// Disposable resources (blobs, mostly) referenced by this disc /// - internal List DisposableResources = new List(); + internal readonly IList DisposableResources = new List(); /// /// The sectors on the disc. Don't use this directly! Use the SectorSynthProvider instead. diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/Blobs/RiffMaster.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/Blobs/RiffMaster.cs index da96c9d60a..b1a3732662 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/Blobs/RiffMaster.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/Blobs/RiffMaster.cs @@ -229,7 +229,7 @@ namespace BizHawk.Emulation.DiscSystem public class RiffContainer_INFO : RiffContainer { - public Dictionary dictionary = new Dictionary(); + public readonly IDictionary dictionary = new Dictionary(); public RiffContainer_INFO() { type = "INFO"; } /// . contains a chunk that does not inherit diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs index e2e1ca2294..3ed074e082 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CCD_format.cs @@ -39,22 +39,22 @@ namespace BizHawk.Emulation.DiscSystem /// /// The [Session] sections /// - public List Sessions = new List(); + public readonly IList Sessions = new List(); /// /// The [Entry] sctions /// - public List TOCEntries = new List(); + public readonly IList TOCEntries = new List(); /// /// The [TRACK] sections /// - public List Tracks = new List(); + public readonly IList Tracks = new List(); /// /// The [TRACK] sections, indexed by number /// - public Dictionary TracksByNumber = new Dictionary(); + public readonly IDictionary TracksByNumber = new Dictionary(); } /// @@ -126,7 +126,7 @@ namespace BizHawk.Emulation.DiscSystem /// /// The indexes specified for the track (these are 0-indexed) /// - public Dictionary Indexes = new Dictionary(); + public readonly IDictionary Indexes = new Dictionary(); } /// diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs index bccae5a573..3decf59340 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Compile.cs @@ -1,6 +1,7 @@ using System; using System.IO; using System.Collections.Generic; +using System.Linq; using BizHawk.Common; @@ -104,11 +105,11 @@ namespace BizHawk.Emulation.DiscSystem.CUE public CueTrackFlags Flags = CueTrackFlags.None; public CueTrackType TrackType = CueTrackType.Unknown; - public List Indexes = new List(); + public readonly IList Indexes = new List(); public override string ToString() { - var idx = Indexes.Find((i) => i.Number == 1); + var idx = Indexes.FirstOrDefault(cci => cci.Number == 1); if (idx.Number != 1) return $"T#{Number:D2} NO INDEX 1"; var indexlist = string.Join("|", Indexes); return $"T#{Number:D2} {BlobIndex}:{idx.FileMSF} ({indexlist})"; diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/M3U_file.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/M3U_file.cs index 1632415f35..c40fff7818 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/M3U_file.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/M3U_file.cs @@ -63,7 +63,7 @@ namespace BizHawk.Emulation.DiscSystem return true; } //Parse() - public List Entries = new List(); + public readonly IList Entries = new List(); public void Rebase(string basepath) { diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs index 73084532ec..fba867dc6b 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/MDS_Format.cs @@ -35,12 +35,12 @@ namespace BizHawk.Emulation.DiscSystem /// /// List of MDS session blocks /// - public List Sessions = new List(); + public readonly IList Sessions = new List(); /// /// List of track blocks /// - public List Tracks = new List(); + public readonly IList Tracks = new List(); /// /// Current parsed session objects @@ -50,7 +50,7 @@ namespace BizHawk.Emulation.DiscSystem /// /// Calculated MDS TOC entries (still to be parsed into BizHawk) /// - public List TOCEntries = new List(); + public readonly IList TOCEntries = new List(); } diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/SBI_format.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/SBI_format.cs index 3fb51a07f7..9247fad1a2 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/SBI_format.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/SBI_format.cs @@ -19,7 +19,7 @@ namespace BizHawk.Emulation.DiscSystem.SBI /// /// a list of patched ABAs /// - public List ABAs = new List(); + public readonly IList ABAs = new List(); /// /// 12 values (Q subchannel data) for every patched ABA; -1 means unpatched diff --git a/src/BizHawk.Emulation.DiscSystem/DiscStructure.cs b/src/BizHawk.Emulation.DiscSystem/DiscStructure.cs index b2fa6a87dc..175710dd09 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscStructure.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscStructure.cs @@ -13,7 +13,7 @@ namespace BizHawk.Emulation.DiscSystem /// This is a 1-indexed list of sessions (session 1 is at [1]) /// Support for multiple sessions is thoroughly not working yet /// - public List Sessions = new List(); + public readonly IList Sessions = new List(); public class Session { @@ -43,7 +43,7 @@ namespace BizHawk.Emulation.DiscSystem /// For a disc with "3 tracks", Tracks.Count will be 5: it includes that lead-in track as well as the leadout track. /// Perhaps we should turn this into a special collection type with no Count or Length, or a method to GetTrack() /// - public List Tracks = new List(); + public readonly IList Tracks = new List(); /// /// A reference to the first information track (Track 1)