const fix.
[dcpomatic.git] / src / lib / dcpomatic_time.h
1 /*
2     Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/lib/dcpomatic_time.h
21  *  @brief Types to describe time.
22  */
23
24 #ifndef DCPOMATIC_TIME_H
25 #define DCPOMATIC_TIME_H
26
27 #include "frame_rate_change.h"
28 #include "safe_stringstream.h"
29 #include "dcpomatic_assert.h"
30 #include <stdint.h>
31 #include <cmath>
32 #include <ostream>
33 #include <iomanip>
34
35 class dcpomatic_round_up_test;
36
37 /** A time in seconds, expressed as a number scaled up by Time::HZ.  We want two different
38  *  versions of this class, ContentTime and DCPTime, and we want it to be impossible to
39  *  convert implicitly between the two.  Hence there's this template hack.  I'm not
40  *  sure if it's the best way to do it.
41  *
42  *  S is the name of `this' class and O is its opposite (see the typedefs below).
43  */
44 template <class S, class O>
45 class Time
46 {
47 public:
48         Time ()
49                 : _t (0)
50         {}
51
52         typedef int64_t Type;
53
54         explicit Time (Type t)
55                 : _t (t)
56         {}
57
58         explicit Time (Type n, Type d)
59                 : _t (n * HZ / d)
60         {}
61
62         /* Explicit conversion from type O */
63         Time (Time<O, S> d, FrameRateChange f);
64
65         Type get () const {
66                 return _t;
67         }
68
69         bool operator< (Time<S, O> const & o) const {
70                 return _t < o._t;
71         }
72
73         bool operator<= (Time<S, O> const & o) const {
74                 return _t <= o._t;
75         }
76
77         bool operator== (Time<S, O> const & o) const {
78                 return _t == o._t;
79         }
80
81         bool operator!= (Time<S, O> const & o) const {
82                 return _t != o._t;
83         }
84
85         bool operator>= (Time<S, O> const & o) const {
86                 return _t >= o._t;
87         }
88
89         bool operator> (Time<S, O> const & o) const {
90                 return _t > o._t;
91         }
92
93         Time<S, O> operator+ (Time<S, O> const & o) const {
94                 return Time<S, O> (_t + o._t);
95         }
96
97         Time<S, O> & operator+= (Time<S, O> const & o) {
98                 _t += o._t;
99                 return *this;
100         }
101
102         Time<S, O> operator- () const {
103                 return Time<S, O> (-_t);
104         }
105
106         Time<S, O> operator- (Time<S, O> const & o) const {
107                 return Time<S, O> (_t - o._t);
108         }
109
110         Time<S, O> & operator-= (Time<S, O> const & o) {
111                 _t -= o._t;
112                 return *this;
113         }
114
115         /** Round up to the nearest sampling interval
116          *  at some sampling rate.
117          *  @param r Sampling rate.
118          */
119         Time<S, O> round_up (float r) const {
120                 Type const n = llrintf (HZ / r);
121                 Type const a = _t + n - 1;
122                 return Time<S, O> (a - (a % n));
123         }
124
125         double seconds () const {
126                 return double (_t) / HZ;
127         }
128
129         Time<S, O> abs () const {
130                 return Time<S, O> (std::abs (_t));
131         }
132
133         template <typename T>
134         int64_t frames_round (T r) const {
135                 return llrint (_t * r / HZ);
136         }
137
138         template <typename T>
139         int64_t frames_floor (T r) const {
140                 return floor (_t * r / HZ);
141         }
142
143         /** @param r Frames per second */
144         template <typename T>
145         void split (T r, int& h, int& m, int& s, int& f) const
146         {
147                 /* Do this calculation with frames so that we can round
148                    to a frame boundary at the start rather than the end.
149                 */
150                 int64_t ff = frames_round (r);
151
152                 h = ff / (3600 * r);
153                 ff -= h * 3600 * r;
154                 m = ff / (60 * r);
155                 ff -= m * 60 * r;
156                 s = ff / r;
157                 ff -= s * r;
158
159                 f = static_cast<int> (ff);
160         }
161
162         template <typename T>
163         std::string timecode (T r) const {
164                 int h;
165                 int m;
166                 int s;
167                 int f;
168                 split (r, h, m, s, f);
169
170                 SafeStringStream o;
171                 o.width (2);
172                 o.fill ('0');
173                 o << std::setw(2) << std::setfill('0') << h << ":"
174                   << std::setw(2) << std::setfill('0') << m << ":"
175                   << std::setw(2) << std::setfill('0') << s << ":"
176                   << std::setw(2) << std::setfill('0') << f;
177                 return o.str ();
178         }
179
180
181         static Time<S, O> from_seconds (double s) {
182                 return Time<S, O> (llrint (s * HZ));
183         }
184
185         template <class T>
186         static Time<S, O> from_frames (int64_t f, T r) {
187                 DCPOMATIC_ASSERT (r > 0);
188                 return Time<S, O> (f * HZ / r);
189         }
190
191         static Time<S, O> delta () {
192                 return Time<S, O> (1);
193         }
194
195         static Time<S, O> min () {
196                 return Time<S, O> (-INT64_MAX);
197         }
198
199         static Time<S, O> max () {
200                 return Time<S, O> (INT64_MAX);
201         }
202
203 private:
204         friend struct dcptime_round_up_test;
205
206         Type _t;
207         static const int HZ = 96000;
208 };
209
210 class ContentTimeDifferentiator {};
211 class DCPTimeDifferentiator {};
212
213 /* Specializations for the two allowed explicit conversions */
214
215 template<>
216 Time<ContentTimeDifferentiator, DCPTimeDifferentiator>::Time (Time<DCPTimeDifferentiator, ContentTimeDifferentiator> d, FrameRateChange f);
217
218 template<>
219 Time<DCPTimeDifferentiator, ContentTimeDifferentiator>::Time (Time<ContentTimeDifferentiator, DCPTimeDifferentiator> d, FrameRateChange f);
220
221 /** Time relative to the start or position of a piece of content in its native frame rate */
222 typedef Time<ContentTimeDifferentiator, DCPTimeDifferentiator> ContentTime;
223 /** Time relative to the start of the output DCP in its frame rate */
224 typedef Time<DCPTimeDifferentiator, ContentTimeDifferentiator> DCPTime;
225
226 class ContentTimePeriod
227 {
228 public:
229         ContentTimePeriod () {}
230
231         ContentTimePeriod (ContentTime f, ContentTime t)
232                 : from (f)
233                 , to (t)
234         {}
235
236         ContentTime from;
237         ContentTime to;
238
239         ContentTimePeriod operator+ (ContentTime const & o) const {
240                 return ContentTimePeriod (from + o, to + o);
241         }
242
243         bool overlaps (ContentTimePeriod const & o) const;
244         bool contains (ContentTime const & o) const;
245
246         bool operator== (ContentTimePeriod const & o) const {
247                 return from == o.from && to == o.to;
248         }
249 };
250
251 DCPTime min (DCPTime a, DCPTime b);
252 DCPTime max (DCPTime a, DCPTime b);
253 ContentTime min (ContentTime a, ContentTime b);
254 ContentTime max (ContentTime a, ContentTime b);
255 std::ostream& operator<< (std::ostream& s, ContentTime t);
256 std::ostream& operator<< (std::ostream& s, DCPTime t);
257
258 #endif