Possibly fix legacy dcp_trim_start tags; use DCI name for content type to be a little...
[dcpomatic.git] / src / lib / dcp_content_type.cc
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/content_type.cc
21  *  @brief A description of the type of content for a DCP (e.g. feature, trailer etc.)
22  */
23
24 #include <cassert>
25 #include "dcp_content_type.h"
26
27 using namespace std;
28
29 vector<DCPContentType const *> DCPContentType::_dcp_content_types;
30
31 DCPContentType::DCPContentType (string p, libdcp::ContentKind k, string d)
32         : _pretty_name (p)
33         , _libdcp_kind (k)
34         , _dci_name (d)
35 {
36
37 }
38
39 void
40 DCPContentType::setup_dcp_content_types ()
41 {
42         _dcp_content_types.push_back (new DCPContentType ("Feature", libdcp::FEATURE, "FTR"));
43         _dcp_content_types.push_back (new DCPContentType ("Short", libdcp::SHORT, "SHR"));
44         _dcp_content_types.push_back (new DCPContentType ("Trailer", libdcp::TRAILER, "TLR"));
45         _dcp_content_types.push_back (new DCPContentType ("Test", libdcp::TEST, "TST"));
46         _dcp_content_types.push_back (new DCPContentType ("Transitional", libdcp::TRANSITIONAL, "XSN"));
47         _dcp_content_types.push_back (new DCPContentType ("Rating", libdcp::RATING, "RTG"));
48         _dcp_content_types.push_back (new DCPContentType ("Teaser", libdcp::TEASER, "TSR"));
49         _dcp_content_types.push_back (new DCPContentType ("Policy", libdcp::POLICY, "POL"));
50         _dcp_content_types.push_back (new DCPContentType ("Public Service Announcement", libdcp::PUBLIC_SERVICE_ANNOUNCEMENT, "PSA"));
51         _dcp_content_types.push_back (new DCPContentType ("Advertisement", libdcp::ADVERTISEMENT, "ADV"));
52 }
53
54 DCPContentType const *
55 DCPContentType::from_pretty_name (string n)
56 {
57         for (vector<DCPContentType const *>::const_iterator i = _dcp_content_types.begin(); i != _dcp_content_types.end(); ++i) {
58                 if ((*i)->pretty_name() == n) {
59                         return *i;
60                 }
61         }
62
63         return 0;
64 }
65
66 DCPContentType const *
67 DCPContentType::from_dci_name (string n)
68 {
69         for (vector<DCPContentType const *>::const_iterator i = _dcp_content_types.begin(); i != _dcp_content_types.end(); ++i) {
70                 if ((*i)->dci_name() == n) {
71                         return *i;
72                 }
73         }
74
75         return 0;
76 }
77
78 DCPContentType const *
79 DCPContentType::from_index (int n)
80 {
81         assert (n >= 0 && n < int (_dcp_content_types.size ()));
82         return _dcp_content_types[n];
83 }
84
85 int
86 DCPContentType::as_index (DCPContentType const * c)
87 {
88         vector<DCPContentType*>::size_type i = 0;
89         while (i < _dcp_content_types.size() && _dcp_content_types[i] != c) {
90                 ++i;
91         }
92
93         if (i == _dcp_content_types.size ()) {
94                 return -1;
95         }
96
97         return i;
98 }
99
100 vector<DCPContentType const *>
101 DCPContentType::all ()
102 {
103         return _dcp_content_types;
104 }