Support CPL metadata.
[libdcp.git] / src / exceptions.cc
index 5c486d09c2e05ad2270e6a7bd6900b8df2cdad10..16676e20f70ac6560096a4c74ed1aeb489158026 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2020 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
@@ -40,6 +40,7 @@
 
 using std::string;
 using std::runtime_error;
+using boost::optional;
 using namespace dcp;
 
 FileError::FileError (string message, boost::filesystem::path filename, int number)
@@ -62,18 +63,8 @@ TimeFormatError::TimeFormatError (string bad_time)
 
 }
 
-MissingAssetError::MissingAssetError (boost::filesystem::path path, AssetType type)
-       : DCPReadError (
-               type == MAIN_PICTURE    ? String::compose ("Missing asset %1 for main picture", path.string()) :
-               (type == MAIN_SOUND     ? String::compose ("Missing asset %1 for main sound", path.string()) :
-                (type == MAIN_SUBTITLE ? String::compose ("Missing asset %1 for main subtitle", path.string()) :
-                 String::compose ("Missing asset %1", path.string()))))
-{
-
-}
-
 BadContentKindError::BadContentKindError (string content_kind)
-       : DCPReadError (String::compose("Bad content kind '%1'", content_kind))
+       : ReadError (String::compose("Bad content kind '%1'", content_kind))
 {
 
 }
@@ -91,12 +82,6 @@ ProgrammingError::ProgrammingError (string file, int line)
 
 }
 
-MismatchedStandardError::MismatchedStandardError ()
-       : DCPReadError ("DCP contains both Interop and SMPTE parts")
-{
-
-}
-
 KDMDecryptionError::KDMDecryptionError (std::string message, int cipher_length, int modulus_dmax)
        : runtime_error (String::compose ("Could not decrypt KDM (%1) (%2/%3)", message, cipher_length, modulus_dmax))
 {
@@ -109,16 +94,73 @@ KDMFormatError::KDMFormatError (std::string message)
 
 }
 
-CertificateChainError::CertificateChainError (std::string message)
+CertificateChainError::CertificateChainError (string message)
        : runtime_error (message)
 {
 
 }
 
-DCPReadError::DCPReadError (string message, string detail)
+ReadError::ReadError (string message, string detail)
        : runtime_error(String::compose("%1 (%2)", message, detail))
        , _message(message)
        , _detail(detail)
 {
 
 }
+
+MissingSubtitleImageError::MissingSubtitleImageError (string id)
+       : runtime_error (String::compose("Could not load image for subtitle %1", id))
+{
+
+}
+
+BadKDMDateError::BadKDMDateError (bool starts_too_early)
+       : runtime_error (
+               starts_too_early ?
+               "KDM validity period starts before or close to the start of the signing certificate validity period" :
+               "KDM validity ends after or close to the end of the signing certificate's validity period"
+               )
+       , _starts_too_early (starts_too_early)
+{
+
+}
+
+
+StartCompressionError::StartCompressionError (optional<int> code)
+       : runtime_error (String::compose("Could not start JPEG2000 encoding%1", code ? String::compose(" (%1", *code) : ""))
+       , _code (code)
+{}
+
+
+
+CombineError::CombineError (string message)
+       : runtime_error (message)
+{}
+
+
+LanguageTagError::LanguageTagError (std::string message)
+       : runtime_error (message)
+{}
+
+
+BadSettingError::BadSettingError (std::string message)
+       : runtime_error (message)
+{
+
+}
+
+
+DuplicateIdError::DuplicateIdError (std::string message)
+       : runtime_error (message)
+{
+
+}
+
+
+MainSoundConfigurationError::MainSoundConfigurationError (std::string s)
+       : runtime_error (String::compose("Could not parse MainSoundConfiguration %1", s))
+{
+
+}
+
+>>>>>>> Support CPL metadata.