Missed update to private test repo version.
[dcpomatic.git] / src / lib / dcp_content_type.h
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #ifndef DCPOMATIC_DCP_CONTENT_TYPE_H
23 #define DCPOMATIC_DCP_CONTENT_TYPE_H
24
25
26 /** @file src/dcp_content_type.h
27  *  @brief DCPContentType class.
28  */
29
30
31 #include <dcp/content_kind.h>
32 #include <dcp/dcp.h>
33 #include <string>
34 #include <vector>
35
36
37 /** @class DCPContentType
38  *  @brief A description of the type of content for a DCP (e.g. feature, trailer etc.)
39  */
40 class DCPContentType
41 {
42 public:
43         DCPContentType (std::string, dcp::ContentKind, std::string);
44
45         /** @return user-visible `pretty' name */
46         std::string pretty_name () const {
47                 return _pretty_name;
48         }
49
50         dcp::ContentKind libdcp_kind () const {
51                 return _libdcp_kind;
52         }
53
54         std::string isdcf_name () const {
55                 return _isdcf_name;
56         }
57
58         static DCPContentType const * from_isdcf_name (std::string);
59         static DCPContentType const * from_libdcp_kind (dcp::ContentKind);
60         static DCPContentType const * from_index (int);
61         static boost::optional<int> as_index (DCPContentType const *);
62         static std::vector<DCPContentType const *> all ();
63         static void setup_dcp_content_types ();
64
65 private:
66         std::string _pretty_name;
67         dcp::ContentKind _libdcp_kind;
68         std::string _isdcf_name;
69
70         /** All available DCP content types */
71         static std::vector<DCPContentType> _dcp_content_types;
72 };
73
74
75 #endif