summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Controls/RefireControl.cs
blob: e32f3b589e2441ebb5435ffd9309a93e186538dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="RefireControl.cs" company="HandBrake Project (http://handbrake.fr)">
//   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
//   The refire control.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrakeWPF.Controls
{
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Threading;
    using System.Windows;

    /// <summary>
    /// The refire control.
    /// </summary>
    public class RefireControl
    {
        #region Constants and Fields

        /// <summary>
        ///     How long stages last.
        /// </summary>
        private const int StageDurationMsec = 900;

        /// <summary>
        /// The delays. At each stage the refire rate increases.
        /// </summary>
        private static readonly List<int> Delays = new List<int> { 500, 200, 100, 50, 20 };

        /// <summary>
        /// The refire action.
        /// </summary>
        private readonly Action refireAction;

        /// <summary>
        /// The refire sync.
        /// </summary>
        private readonly object refireSync = new object();

        /// <summary>
        /// The refire timer.
        /// </summary>
        private Timer refireTimer;

        /// <summary>
        /// The running.
        /// </summary>
        private bool running;

        /// <summary>
        /// The stopwatch.
        /// </summary>
        private Stopwatch stopwatch;

        #endregion

        #region Constructors and Destructors

        /// <summary>
        /// Initializes a new instance of the <see cref="RefireControl"/> class.
        /// </summary>
        /// <param name="refireAction">
        /// The refire action.
        /// </param>
        public RefireControl(Action refireAction)
        {
            this.refireAction = refireAction;
        }

        #endregion

        #region Public Methods

        /// <summary>
        /// The begin.
        /// </summary>
        public void Begin()
        {
            lock (this.refireSync)
            {
                this.stopwatch = Stopwatch.StartNew();
                this.running = true;

                // Fire once immediately.
                this.refireAction();

                this.refireTimer = new Timer(
                    obj =>
                        {
                            lock (this.refireSync)
                            {
                                if (this.running)
                                {
                                    var stage = (int)(this.stopwatch.ElapsedMilliseconds / StageDurationMsec);

                                    int newDelay = stage >= Delays.Count ? Delays[Delays.Count - 1] : Delays[stage];

                                    Application.Current.Dispatcher.BeginInvoke(this.refireAction);

                                    this.refireTimer.Change(newDelay, newDelay);
                                }
                            }
                        }, 
                    null, 
                    Delays[0], 
                    Delays[0]);
            }
        }

        /// <summary>
        /// The stop.
        /// </summary>
        public void Stop()
        {
            lock (this.refireSync)
            {
                this.stopwatch.Stop();
                this.running = false;

                if (this.refireTimer != null)
                {
                    this.refireTimer.Dispose();
                }
            }
        }

        #endregion
    }
}