LzmaProgressCallback.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* This file is part of SevenZipSharp.
  2. SevenZipSharp is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU Lesser General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. SevenZipSharp is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU Lesser General Public License for more details.
  10. You should have received a copy of the GNU Lesser General Public License
  11. along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. using System;
  14. using SevenZip.Sdk;
  15. namespace SevenZip
  16. {
  17. /// <summary>
  18. /// Callback to implement the ICodeProgress interface
  19. /// </summary>
  20. internal sealed class LzmaProgressCallback : ICodeProgress
  21. {
  22. private readonly long _inSize;
  23. private float _oldPercentDone;
  24. /// <summary>
  25. /// Initializes a new instance of the LzmaProgressCallback class
  26. /// </summary>
  27. /// <param name="inSize">The input size</param>
  28. /// <param name="working">Progress event handler</param>
  29. public LzmaProgressCallback(long inSize, EventHandler<ProgressEventArgs> working)
  30. {
  31. _inSize = inSize;
  32. Working += working;
  33. }
  34. #region ICodeProgress Members
  35. /// <summary>
  36. /// Sets the progress
  37. /// </summary>
  38. /// <param name="inSize">The processed input size</param>
  39. /// <param name="outSize">The processed output size</param>
  40. public void SetProgress(long inSize, long outSize)
  41. {
  42. if (Working != null)
  43. {
  44. float newPercentDone = (inSize + 0.0f) / _inSize;
  45. float delta = newPercentDone - _oldPercentDone;
  46. if (delta * 100 < 1.0)
  47. {
  48. delta = 0;
  49. }
  50. else
  51. {
  52. _oldPercentDone = newPercentDone;
  53. }
  54. Working(this, new ProgressEventArgs(
  55. PercentDoneEventArgs.ProducePercentDone(newPercentDone),
  56. delta > 0 ? PercentDoneEventArgs.ProducePercentDone(delta) : (byte)0));
  57. }
  58. }
  59. #endregion
  60. public event EventHandler<ProgressEventArgs> Working;
  61. }
  62. }