Add some more DecodeError constructors.
[dcpomatic.git] / src / lib / exceptions.h
index 5b7baf0e50fdc98d75f13608f4f558131601def3..5cbf6994154dadaeda169130cd82ac2ddaf48637 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 /** @file  src/lib/exceptions.h
  *  @brief Our exceptions.
  */
 
+
 #ifndef DCPOMATIC_EXCEPTIONS_H
 #define DCPOMATIC_EXCEPTIONS_H
 
+
 #include "compose.hpp"
 extern "C" {
 #include <libavutil/pixfmt.h>
 }
 #include <boost/filesystem.hpp>
 #include <boost/optional.hpp>
-#include <stdexcept>
 #include <cstring>
+#include <stdexcept>
+
 
 /** @class DecodeError
  *  @brief A low-level problem with the decoder (possibly due to the nature
@@ -45,15 +49,24 @@ public:
                : std::runtime_error (s)
        {}
 
-       explicit DecodeError (std::string function, std::string caller)
-               : std::runtime_error (String::compose("%1 failed [%2", function, caller))
+       DecodeError (std::string function, std::string caller)
+               : std::runtime_error (String::compose("%1 failed [%2]", function, caller))
        {}
 
-       explicit DecodeError (std::string function, std::string caller, int error)
+       DecodeError (std::string function, std::string caller, int error)
                : std::runtime_error (String::compose("%1 failed [%2] (%3)", function, caller, error))
        {}
+
+       DecodeError (std::string function, std::string caller, boost::filesystem::path file)
+               : std::runtime_error (String::compose("%1 failed [%2] (%3)", function, caller, file.string()))
+       {}
+
+       DecodeError (std::string function, std::string caller, int error, boost::filesystem::path file)
+               : std::runtime_error (String::compose("%1 failed [%2] (%3) (%4)", function, caller, error, file.string()))
+       {}
 };
 
+
 class CryptoError : public std::runtime_error
 {
 public:
@@ -109,6 +122,7 @@ private:
        boost::filesystem::path _file;
 };
 
+
 class JoinError : public std::runtime_error
 {
 public:
@@ -117,6 +131,7 @@ public:
        {}
 };
 
+
 /** @class OpenFileError.
  *  @brief Indicates that some error occurred when trying to open a file.
  */
@@ -136,6 +151,7 @@ public:
        OpenFileError (boost::filesystem::path f, int error, Mode mode);
 };
 
+
 class FileNotFoundError : public std::runtime_error
 {
 public:
@@ -152,6 +168,7 @@ private:
        boost::filesystem::path _file;
 };
 
+
 /** @class ReadFileError.
  *  @brief Indicates that some error occurred when trying to read from a file
  */
@@ -164,6 +181,7 @@ public:
        ReadFileError (boost::filesystem::path f, int e = 0);
 };
 
+
 /** @class WriteFileError.
  *  @brief Indicates that some error occurred when trying to write to a file
  */
@@ -176,6 +194,7 @@ public:
        WriteFileError (boost::filesystem::path f, int e);
 };
 
+
 /** @class SettingError.
  *  @brief Indicates that something is wrong with a setting.
  */
@@ -201,6 +220,7 @@ private:
        std::string _setting;
 };
 
+
 /** @class MissingSettingError.
  *  @brief Indicates that a Film is missing a setting that is required for some operation.
  */
@@ -211,6 +231,7 @@ public:
        explicit MissingSettingError (std::string s);
 };
 
+
 /** @class BadSettingError
  *  @brief Indicates that a setting is bad in some way.
  */
@@ -225,6 +246,7 @@ public:
        {}
 };
 
+
 /** @class NetworkError
  *  @brief Indicates some problem with communication on the network.
  */
@@ -236,6 +258,7 @@ public:
        {}
 };
 
+
 /** @class KDMError
  *  @brief A problem with a KDM.
  */
@@ -258,6 +281,7 @@ private:
        std::string _detail;
 };
 
+
 /** @class PixelFormatError
  *  @brief A problem with an unsupported pixel format.
  */
@@ -267,6 +291,7 @@ public:
        PixelFormatError (std::string o, AVPixelFormat f);
 };
 
+
 /** @class TextSubtitleError
  *  @brief An error that occurs while parsing a TextSubtitleError file.
  */
@@ -276,6 +301,7 @@ public:
        TextSubtitleError (std::string, std::string, boost::filesystem::path);
 };
 
+
 class DCPError : public std::runtime_error
 {
 public:
@@ -307,11 +333,13 @@ public:
 };
 
 class ProgrammingError : public std::runtime_error
+
 {
 public:
        ProgrammingError (std::string file, int line, std::string message = "");
 };
 
+
 class TextEncodingError : public std::runtime_error
 {
 public:
@@ -320,6 +348,7 @@ public:
        {}
 };
 
+
 class MetadataError : public std::runtime_error
 {
 public:
@@ -328,6 +357,7 @@ public:
        {}
 };
 
+
 class OldFormatError : public std::runtime_error
 {
 public:
@@ -336,18 +366,21 @@ public:
        {}
 };
 
+
 class KDMAsContentError : public std::runtime_error
 {
 public:
        KDMAsContentError ();
 };
 
+
 class GLError : public std::runtime_error
 {
 public:
        GLError (char const * last, int e);
 };
 
+
 /** @class CopyError
  *  @brief An error which occurs when copying a DCP to a distribution drive.
  */
@@ -412,4 +445,5 @@ public:
                {}
 };
 
+
 #endif