VideoService.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using System;
  2. using System.IO;
  3. using System.Threading;
  4. using GxPress.Service.Interface.Video;
  5. using Microsoft.Extensions.Caching.Distributed;
  6. namespace GxPress.Service.Implement.Video
  7. {
  8. public class VideoService : IVideoService
  9. {
  10. private readonly IDistributedCache _cache;
  11. public VideoService(IDistributedCache cache)
  12. {
  13. _cache = cache;
  14. }
  15. /// <summary>
  16. /// 工作线程
  17. /// </summary>
  18. /// <param name="filepath"></param>
  19. /// <param name="bytsize"></param>
  20. /// <param name="blength"></param>
  21. /// <param name="videoName"></param>
  22. public void RedisVideo(string filepath, byte[] bytsize, int blength, string videoName)
  23. {
  24. //创建后台工作线程
  25. Thread t2 = new Thread(new ParameterizedThreadStart(RedisSendAsync));
  26. t2.IsBackground = true;//设置为后台线程
  27. var redisVideoModel = new RedisVideoParameter
  28. {
  29. ByteLength = blength,
  30. FilePath = filepath,
  31. ByteSize = bytsize,
  32. VideoName = videoName
  33. };
  34. t2.Start(redisVideoModel);
  35. }
  36. public void RedisSendAsync(object data)
  37. {
  38. //转换
  39. var redisVideoModel = data as RedisVideoParameter;
  40. var byteSize = new byte[redisVideoModel.ByteLength];
  41. //获取文件流
  42. using (FileStream stream = new FileStream(redisVideoModel.FilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite))
  43. {
  44. int i = 1;
  45. while (true)
  46. {
  47. var cacheKey = redisVideoModel.VideoName + i;
  48. var result = _cache.Get(cacheKey);
  49. int r = stream.Read(redisVideoModel.ByteSize, 0, redisVideoModel.ByteLength);
  50. //如果读取到的字节数为0,说明已到达文件结尾,则退出while循
  51. if (r == 0)
  52. break;
  53. if (result == null)
  54. {
  55. _cache.Set(cacheKey, redisVideoModel.ByteSize, new DistributedCacheEntryOptions { AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(6000) });
  56. }
  57. //初始化
  58. redisVideoModel.ByteSize = new byte[redisVideoModel.ByteLength];
  59. i++;
  60. }
  61. stream.Close();
  62. }
  63. }
  64. }
  65. public class RedisVideoParameter
  66. {
  67. public string FilePath { get; set; }
  68. public byte[] ByteSize { get; set; }
  69. public int ByteLength { get; set; }
  70. public string VideoName { get; set; }
  71. }
  72. }