Merge with 2.0-ongoing R2885.
[ardour.git] / libs / vamp-sdk / vamp-sdk / RealTime.h
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
2
3 /*
4     Vamp
5
6     An API for audio analysis and feature extraction plugins.
7
8     Centre for Digital Music, Queen Mary, University of London.
9     Copyright 2006 Chris Cannam.
10   
11     Permission is hereby granted, free of charge, to any person
12     obtaining a copy of this software and associated documentation
13     files (the "Software"), to deal in the Software without
14     restriction, including without limitation the rights to use, copy,
15     modify, merge, publish, distribute, sublicense, and/or sell copies
16     of the Software, and to permit persons to whom the Software is
17     furnished to do so, subject to the following conditions:
18
19     The above copyright notice and this permission notice shall be
20     included in all copies or substantial portions of the Software.
21
22     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
26     ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
27     CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28     WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29
30     Except as contained in this notice, the names of the Centre for
31     Digital Music; Queen Mary, University of London; and Chris Cannam
32     shall not be used in advertising or otherwise to promote the sale,
33     use or other dealings in this Software without prior written
34     authorization.
35 */
36
37 /*
38    This is a modified version of a source file from the 
39    Rosegarden MIDI and audio sequencer and notation editor.
40    This file copyright 2000-2006 Chris Cannam.
41    Relicensed by the author as detailed above.
42 */
43
44 #ifndef _VAMP_REAL_TIME_H_
45 #define _VAMP_REAL_TIME_H_
46
47 #include <iostream>
48 #include <string>
49
50 #ifndef _WIN32
51 struct timeval;
52 #endif
53
54 namespace Vamp {
55
56 /**
57  * \class RealTime RealTime.h <vamp-sdk/RealTime.h>
58  * 
59  * RealTime represents time values to nanosecond precision
60  * with accurate arithmetic and frame-rate conversion functions.
61  */
62
63 struct RealTime
64 {
65     int sec;
66     int nsec;
67
68     int usec() const { return nsec / 1000; }
69     int msec() const { return nsec / 1000000; }
70
71     RealTime(): sec(0), nsec(0) {}
72     RealTime(int s, int n);
73
74     RealTime(const RealTime &r) :
75         sec(r.sec), nsec(r.nsec) { }
76
77     static RealTime fromSeconds(double sec);
78     static RealTime fromMilliseconds(int msec);
79
80 #ifndef _WIN32
81     static RealTime fromTimeval(const struct timeval &);
82 #endif
83
84     RealTime &operator=(const RealTime &r) {
85         sec = r.sec; nsec = r.nsec; return *this;
86     }
87
88     RealTime operator+(const RealTime &r) const {
89         return RealTime(sec + r.sec, nsec + r.nsec);
90     }
91     RealTime operator-(const RealTime &r) const {
92         return RealTime(sec - r.sec, nsec - r.nsec);
93     }
94     RealTime operator-() const {
95         return RealTime(-sec, -nsec);
96     }
97
98     bool operator <(const RealTime &r) const {
99         if (sec == r.sec) return nsec < r.nsec;
100         else return sec < r.sec;
101     }
102
103     bool operator >(const RealTime &r) const {
104         if (sec == r.sec) return nsec > r.nsec;
105         else return sec > r.sec;
106     }
107
108     bool operator==(const RealTime &r) const {
109         return (sec == r.sec && nsec == r.nsec);
110     }
111  
112     bool operator!=(const RealTime &r) const {
113         return !(r == *this);
114     }
115  
116     bool operator>=(const RealTime &r) const {
117         if (sec == r.sec) return nsec >= r.nsec;
118         else return sec >= r.sec;
119     }
120
121     bool operator<=(const RealTime &r) const {
122         if (sec == r.sec) return nsec <= r.nsec;
123         else return sec <= r.sec;
124     }
125
126     RealTime operator/(int d) const;
127
128     // Find the fractional difference between times
129     //
130     double operator/(const RealTime &r) const;
131
132     // Return a human-readable debug-type string to full precision
133     // (probably not a format to show to a user directly)
134     // 
135     std::string toString() const;
136
137     // Return a user-readable string to the nearest millisecond
138     // in a form like HH:MM:SS.mmm
139     //
140     std::string toText(bool fixedDp = false) const;
141
142     // Convenience functions for handling sample frames
143     //
144     static long realTime2Frame(const RealTime &r, unsigned int sampleRate);
145     static RealTime frame2RealTime(long frame, unsigned int sampleRate);
146
147     static const RealTime zeroTime;
148 };
149
150 std::ostream &operator<<(std::ostream &out, const RealTime &rt);
151
152 }
153     
154 #endif