Result is specific to verify_asset().
[libdcp.git] / src / verify.h
1 /*
2     Copyright (C) 2018-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34 #ifndef LIBDCP_VERIFY_H
35 #define LIBDCP_VERIFY_H
36
37 #include <boost/filesystem.hpp>
38 #include <boost/function.hpp>
39 #include <boost/optional.hpp>
40 #include <string>
41 #include <list>
42 #include <vector>
43
44 namespace dcp {
45
46 class VerificationNote
47 {
48 public:
49         /* I've been unable to make mingw happy with ERROR as a symbol, so
50            I'm using a VERIFY_ prefix here.
51         */
52         enum Type {
53                 VERIFY_ERROR,
54                 VERIFY_WARNING
55         };
56
57         enum Code {
58                 /** An error when reading the DCP.  note contains (probably technical) details. */
59                 GENERAL_READ,
60                 /** The hash of the CPL in the PKL does not agree with the CPL file */
61                 CPL_HASH_INCORRECT,
62                 /** Frame rate given in a reel for the main picture is not 24, 25, 30, 48, 50 or 60 */
63                 INVALID_PICTURE_FRAME_RATE,
64                 /** The hash of a main picture asset does not agree with the PKL file.  file contains the picture asset filename. */
65                 PICTURE_HASH_INCORRECT,
66                 /** The hash of a main picture is different in the CPL and PKL */
67                 PKL_CPL_PICTURE_HASHES_DISAGREE,
68                 /** The hash of a main sound asset does not agree with the PKL file.  file contains the sound asset filename. */
69                 SOUND_HASH_INCORRECT,
70                 /** The hash of a main sound is different in the CPL and PKL */
71                 PKL_CPL_SOUND_HASHES_DISAGREE,
72                 /** An assetmap's <Path> entry is empty */
73                 EMPTY_ASSET_PATH,
74                 /** An file mentioned in an asset map cannot be found */
75                 MISSING_ASSET,
76                 /** The DCP contains both SMPTE and Interop-standard components */
77                 MISMATCHED_STANDARD,
78                 /** Some XML fails to validate against the XSD/DTD */
79                 XML_VALIDATION_ERROR,
80                 /** No ASSETMAP{.xml} was found */
81                 MISSING_ASSETMAP,
82                 /** An asset's IntrinsicDuration is less than 1 second */
83                 INTRINSIC_DURATION_TOO_SMALL,
84                 /** An asset's Duration is less than 1 second */
85                 DURATION_TOO_SMALL
86         };
87
88         VerificationNote (Type type, Code code)
89                 : _type (type)
90                 , _code (code)
91         {}
92
93         VerificationNote (Type type, Code code, std::string note)
94                 : _type (type)
95                 , _code (code)
96                 , _note (note)
97         {}
98
99         VerificationNote (Type type, Code code, boost::filesystem::path file)
100                 : _type (type)
101                 , _code (code)
102                 , _file (file)
103         {}
104
105         VerificationNote (Type type, Code code, std::string note, boost::filesystem::path file)
106                 : _type (type)
107                 , _code (code)
108                 , _note (note)
109                 , _file (file)
110         {}
111
112         VerificationNote (Type type, Code code, std::string note, boost::filesystem::path file, uint64_t line)
113                 : _type (type)
114                 , _code (code)
115                 , _note (note)
116                 , _file (file)
117                 , _line (line)
118         {}
119
120         Type type () const {
121                 return _type;
122         }
123
124         Code code () const {
125                 return _code;
126         }
127
128         boost::optional<std::string> note () const {
129                 return _note;
130         }
131
132         boost::optional<boost::filesystem::path> file () const {
133                 return _file;
134         }
135
136         boost::optional<uint64_t> line () const {
137                 return _line;
138         }
139
140 private:
141         Type _type;
142         Code _code;
143         /** Further information about the error, if applicable */
144         boost::optional<std::string> _note;
145         /** Path of file containing the error, if applicable */
146         boost::optional<boost::filesystem::path> _file;
147         /** Error line number within _file, if applicable */
148         uint64_t _line;
149 };
150
151 std::list<VerificationNote> verify (
152         std::vector<boost::filesystem::path> directories,
153         boost::function<void (std::string, boost::optional<boost::filesystem::path>)> stage,
154         boost::function<void (float)> progress,
155         boost::filesystem::path xsd_dtd_directory
156         );
157
158 std::string note_to_string (dcp::VerificationNote note);
159
160 }
161
162 #endif