Merge branch 'master' of ssh://carlh.dyndns.org/home/carl/git/libdcp
[libdcp.git] / src / dcp_time.h
1 /*
2     Copyright (C) 2012 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/dcp_time.h
21  *  @brief A representation of time within a DCP.
22  */
23
24 #ifndef LIBDCP_TIME_H
25 #define LIBDCP_TIME_H
26
27 #include <stdint.h>
28
29 namespace libdcp {
30
31 /** @class Time
32  *  @brief A representation of time within a DCP.
33  */
34         
35 class Time
36 {
37 public:
38         Time () : h (0), m (0), s (0), t (0) {}
39
40         /** Construct a Time from a frame index (starting from 0)
41          *  and a frames per second count.
42          */
43         Time (int frame, int frames_per_second);
44
45         /** Construct a Time from hours, minutes, seconds and ticks.
46          *  @param h_ Hours.
47          *  @param m_ Minutes.
48          *  @param s_ Seconds.
49          *  @param t_ Ticks (where 1 tick is 4 milliseconds).
50          */
51         Time (int h_, int m_, int s_, int t_)
52                 : h (h_)
53                 , m (m_)
54                 , s (s_)
55                 , t (t_)
56         {}
57
58         Time (std::string time);
59
60         int h; ///< hours
61         int m; ///< minutes
62         int s; ///< seconds
63         int t; ///< `ticks', where 1 tick is 4 milliseconds
64
65         std::string to_string () const;
66         int64_t to_ticks () const;
67
68 private:
69         void set (double);
70 };
71
72 extern bool operator== (Time const & a, Time const & b);
73 extern bool operator!= (Time const & a, Time const & b);
74 extern bool operator<= (Time const & a, Time const & b);
75 extern bool operator< (Time const & a, Time const & b);
76 extern bool operator> (Time const & a, Time const & b);
77 extern std::ostream & operator<< (std::ostream & s, Time const & t);
78 extern Time operator+ (Time a, Time const & b); 
79 extern Time operator- (Time a, Time const & b);
80 extern float operator/ (Time a, Time const & b);
81
82 }
83
84 #endif