X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fexceptions.h;h=38452ffc02b7c0867596cb55787a77c29eeafc01;hb=1555c48eda3def5f7ece413a47f0c7ff94dd70dd;hp=6bad7c9245bbb8ae833e4202841a08a3ccfc2896;hpb=f861018389acd9d277fe34d7621182b9b54f977f;p=dcpomatic.git diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 6bad7c924..38452ffc0 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,16 +17,17 @@ */ -#ifndef DCPOMATIC_EXCEPTIONS_H -#define DCPOMATIC_EXCEPTIONS_H - -/** @file src/exceptions.h +/** @file src/lib/exceptions.h * @brief Our exceptions. */ +#ifndef DCPOMATIC_EXCEPTIONS_H +#define DCPOMATIC_EXCEPTIONS_H + #include #include #include +#include #include extern "C" { #include @@ -87,7 +88,7 @@ public: /** @param m Error message. * @param f Name of the file that this exception concerns. */ - FileError (std::string m, std::string f) + FileError (std::string m, boost::filesystem::path f) : StringError (m) , _file (f) {} @@ -95,15 +96,22 @@ public: virtual ~FileError () throw () {} /** @return name of the file that this exception concerns */ - std::string file () const { + boost::filesystem::path file () const { return _file; } private: /** name of the file that this exception concerns */ - std::string _file; + boost::filesystem::path _file; +}; + +class JoinError : public StringError +{ +public: + JoinError (std::string s) + : StringError (s) + {} }; - /** @class OpenFileError. * @brief Indicates that some error occurred when trying to open a file. @@ -112,8 +120,7 @@ class OpenFileError : public FileError { public: /** @param f File that we were trying to open */ - /* XXX: should be boost::filesystem::path */ - OpenFileError (std::string f); + OpenFileError (boost::filesystem::path f); }; /** @class CreateFileError. @@ -123,7 +130,7 @@ class CreateFileError : public FileError { public: /** @param f File that we were trying to create */ - CreateFileError (std::string f); + CreateFileError (boost::filesystem::path f); }; @@ -136,7 +143,7 @@ public: /** @param f File that we were trying to read from. * @param e errno value, or 0. */ - ReadFileError (std::string f, int e = 0); + ReadFileError (boost::filesystem::path f, int e = 0); }; /** @class WriteFileError. @@ -148,7 +155,7 @@ public: /** @param f File that we were trying to write to. * @param e errno value, or 0. */ - WriteFileError (std::string f, int e); + WriteFileError (boost::filesystem::path f, int e); }; /** @class SettingError. @@ -198,7 +205,7 @@ public: {} }; -/** @class NetworkError. +/** @class NetworkError * @brief Indicates some problem with communication on the network. */ class NetworkError : public StringError @@ -209,23 +216,63 @@ public: {} }; +/** @class KDMError + * @brief A problem with a KDM. + */ +class KDMError : public StringError +{ +public: + KDMError (std::string s) + : StringError (s) + {} +}; + +/** @class PixelFormatError + * @brief A problem with an unsupported pixel format. + */ class PixelFormatError : public StringError { public: PixelFormatError (std::string o, AVPixelFormat f); }; +/** @class SubRipError + * @brief An error that occurs while parsing a SubRip file. + */ +class SubRipError : public FileError +{ +public: + SubRipError (std::string, std::string, boost::filesystem::path); +}; + +/** @class ExceptionStore + * @brief A parent class for classes which have a need to catch and + * re-throw exceptions. + + * This is intended for classes which run their own thread; they should do + * something like + * + * void my_thread () + * try { + * // do things which might throw exceptions + * } catch (...) { + * store_current (); + * } + * + * and then in another thread call rethrow(). If any + * exception was thrown by my_thread it will be stored by + * store_current() and then rethrow() will re-throw it where + * it can be handled. + */ class ExceptionStore { public: - bool thrown () const { - boost::mutex::scoped_lock lm (_mutex); - return _exception; - } - void rethrow () { boost::mutex::scoped_lock lm (_mutex); - boost::rethrow_exception (_exception); + if (_exception) { + boost::rethrow_exception (_exception); + _exception = boost::exception_ptr (); + } } protected: