VideoService.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. public void RedisVideo(string filepath, byte[] bytsize, int blength, string videoName)
  16. {
  17. //创建后台工作线程
  18. Thread t2 = new Thread(new ParameterizedThreadStart(RedisSendAsync));
  19. t2.IsBackground = true;//设置为后台线程
  20. var redisVideoModel = new RedisVideoParameter
  21. {
  22. ByteLength = blength,
  23. FilePath = filepath,
  24. ByteSize = bytsize,
  25. VideoName = videoName
  26. };
  27. t2.Start(redisVideoModel);
  28. }
  29. public void RedisSendAsync(object data)
  30. {
  31. //转换
  32. var redisVideoModel = data as RedisVideoParameter;
  33. var byteSize = new byte[redisVideoModel.ByteLength];
  34. //获取文件流
  35. using (FileStream stream = new FileStream(redisVideoModel.FilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite))
  36. {
  37. int i = 1;
  38. while (true)
  39. {
  40. var cacheKey = redisVideoModel.VideoName + i;
  41. var result = _cache.Get(cacheKey);
  42. int r = stream.Read(redisVideoModel.ByteSize, 0, redisVideoModel.ByteLength);
  43. //如果读取到的字节数为0,说明已到达文件结尾,则退出while循
  44. if (r == 0)
  45. break;
  46. if (result==null)
  47. {
  48. _cache.Set(cacheKey, redisVideoModel.ByteSize, new DistributedCacheEntryOptions { AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(6000) });
  49. }
  50. //初始化
  51. redisVideoModel.ByteSize = new byte[redisVideoModel.ByteLength];
  52. i++;
  53. }
  54. stream.Close();
  55. }
  56. }
  57. }
  58. public class RedisVideoParameter
  59. {
  60. public string FilePath { get; set; }
  61. public byte[] ByteSize { get; set; }
  62. public int ByteLength { get; set; }
  63. public string VideoName { get; set; }
  64. }
  65. }