/* Copyright (C) 2012 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /** @file src/dcp_time.cc * @brief A representation of time within a DCP. */ #include #include #include #include #include #include "dcp_time.h" #include "exceptions.h" using namespace std; using namespace boost; using namespace libdcp; Time::Time (int frame, int frames_per_second) : h (0) , m (0) , s (0) , t (0) { float sec_float = float (frame) / frames_per_second; t = (int (floor (sec_float * 1000)) % 1000) / 4; s = floor (sec_float); if (s > 60) { m = s / 60; s -= m * 60; } if (m > 60) { h = m / 60; m -= h * 60; } } Time::Time (string time) { vector b; split (b, time, is_any_of (":")); if (b.size() != 4) { boost::throw_exception (DCPReadError ("unrecognised time specification")); } h = lexical_cast (b[0]); m = lexical_cast (b[1]); s = lexical_cast (b[2]); t = lexical_cast (b[3]); } bool libdcp::operator== (Time const & a, Time const & b) { return (a.h == b.h && a.m == b.m && a.s == b.s && a.t == b.t); } bool libdcp::operator!= (Time const & a, Time const & b) { return !(a == b); } bool libdcp::operator<= (Time const & a, Time const & b) { if (a.h != b.h) { return a.h <= b.h; } if (a.m != b.m) { return a.m <= b.m; } if (a.s != b.s) { return a.s <= b.s; } if (a.t != b.t) { return a.t <= b.t; } return true; } bool libdcp::operator< (Time const & a, Time const & b) { if (a.h != b.h) { return a.h < b.h; } if (a.m != b.m) { return a.m < b.m; } if (a.s != b.s) { return a.s < b.s; } if (a.t != b.t) { return a.t < b.t; } return true; } bool libdcp::operator> (Time const & a, Time const & b) { if (a.h != b.h) { return a.h > b.h; } if (a.m != b.m) { return a.m > b.m; } if (a.s != b.s) { return a.s > b.s; } if (a.t != b.t) { return a.t > b.t; } return true; } ostream & libdcp::operator<< (ostream& s, Time const & t) { s << t.h << ":" << t.m << ":" << t.s << "." << t.t; return s; } libdcp::Time libdcp::operator+ (Time a, Time const & b) { Time r; r.t = a.t + b.t; if (r.t >= 250) { r.t -= 250; r.s++; } r.s += a.s + b.s; if (r.s >= 60) { r.s -= 60; r.m++; } r.m += a.m + b.m; if (r.m >= 60) { r.m -= 60; r.h++; } r.h += a.h + b.h; return r; } libdcp::Time libdcp::operator- (Time a, Time const & b) { Time r; r.t = a.t - b.t; if (r.t < 0) { r.t += 250; r.s--; } r.s += (a.s - b.s); if (r.s < 0) { r.s += 60; r.m--; } r.m += (a.m - b.m); if (r.m < 0) { r.m += 60; r.h--; } r.h += (a.h - b.h); return r; } float libdcp::operator/ (Time a, Time const & b) { int64_t const at = a.h * 3600 * 250 + a.m * 60 * 250 + a.s * 250 + a.t; int64_t const bt = b.h * 3600 * 250 + b.m * 60 * 250 + b.s * 250 + b.t; return float (at) / bt; } /** @return A string of the form h:m:s:t */ string Time::to_string () const { stringstream str; str << h << ":" << m << ":" << s << ":" << t; return str.str (); } /** @return This time in ticks */ int64_t Time::to_ticks () const { return t + s * 25 + m * 60 * 25 + h * 60 * 60 * 25; }