summaryrefslogtreecommitdiff
path: root/src/lib/dcp_content_type.h
blob: f08db883a867ba17ff2772e389ce7761389200d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>

    This file is part of DCP-o-matic.

    DCP-o-matic 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.

    DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.

*/


#ifndef DCPOMATIC_DCP_CONTENT_TYPE_H
#define DCPOMATIC_DCP_CONTENT_TYPE_H


/** @file src/dcp_content_type.h
 *  @brief DCPContentType class.
 */


#include <dcp/content_kind.h>
#include <dcp/dcp.h>
#include <string>
#include <vector>


/** @class DCPContentType
 *  @brief A description of the type of content for a DCP (e.g. feature, trailer etc.)
 */
class DCPContentType
{
public:
	DCPContentType (std::string, dcp::ContentKind, std::string);

	/** @return user-visible `pretty' name */
	std::string pretty_name () const {
		return _pretty_name;
	}

	dcp::ContentKind libdcp_kind () const {
		return _libdcp_kind;
	}

	std::string isdcf_name () const {
		return _isdcf_name;
	}

	static DCPContentType const * from_isdcf_name (std::string);
	static DCPContentType const * from_libdcp_kind (dcp::ContentKind);
	static DCPContentType const * from_index (int);
	static boost::optional<int> as_index (DCPContentType const *);
	static std::vector<DCPContentType const *> all ();
	static void setup_dcp_content_types ();

private:
	std::string _pretty_name;
	dcp::ContentKind _libdcp_kind;
	std::string _isdcf_name;

	/** All available DCP content types */
	static std::vector<DCPContentType> _dcp_content_types;
};


#endif