ResourceLoader.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using System.IO;
  2. #if !DEBUG
  3. using System.Collections.Generic;
  4. #endif
  5. namespace Cbdx.Tests.Resources
  6. {
  7. internal static class ResourceLoader
  8. {
  9. private static readonly string MyNameSpaceFull = typeof(ResourceLoader).Namespace;
  10. //TODO: add PreRelease conf for debug conditions
  11. #if !DEBUG
  12. private static readonly Dictionary<string, byte[]> CachedBinResource;
  13. static ResourceLoader()
  14. {
  15. var assembly = Assembly.GetExecutingAssembly();
  16. CachedBinResource = assembly.GetManifestResourceNames()
  17. .Where(p => p.StartsWith(MyNameSpaceFull))
  18. .ToDictionary(p => p, p => assembly.GetManifestResourceStream(p).ToBytes());
  19. }
  20. private static byte[] ToBytes(this Stream me)
  21. {
  22. using (var tmp = new MemoryStream())
  23. {
  24. me.CopyTo(tmp);
  25. return tmp.ToArray();
  26. }
  27. }
  28. #endif
  29. public static byte[] GetBinResource(string path)
  30. {
  31. #if DEBUG
  32. var localFile = Path.Combine(DebugSupport.ResourcePath, path);
  33. return File.Exists(localFile)
  34. ? File.ReadAllBytes(localFile)
  35. : null;
  36. #else
  37. var resName = path.Replace("/", ".");
  38. return CachedBinResource.TryGetValue($"{MyNameSpaceFull}.{resName}", out var bin) ? bin : null;
  39. #endif
  40. }
  41. }
  42. }