Files
libopenshot/src/Exceptions.h

431 lines
12 KiB
C
Raw Permalink Normal View History

2011-10-11 08:44:27 -05:00
/**
* @file
* @brief Header file for all Exception classes
* @author Jonathan Thomas <jonathan@openshot.org>
*
* @ref License
*/
// Copyright (c) 2008-2019 OpenShot Studios, LLC
//
// SPDX-License-Identifier: LGPL-3.0-or-later
2011-10-11 08:44:27 -05:00
#ifndef OPENSHOT_EXCEPTIONS_H
#define OPENSHOT_EXCEPTIONS_H
#include <string>
#include <cstring>
2011-10-11 08:44:27 -05:00
namespace openshot {
/**
* @brief Base exception class with a custom message variable.
2011-10-11 08:44:27 -05:00
*
* A std::exception-derived exception class with custom message.
* All OpenShot exception classes inherit from this class.
2011-10-11 08:44:27 -05:00
*/
class ExceptionBase : public std::exception
2011-10-11 08:44:27 -05:00
{
protected:
std::string m_message;
2011-10-11 08:44:27 -05:00
public:
ExceptionBase(std::string message) : m_message(message) { }
virtual ~ExceptionBase() noexcept {}
virtual const char* what() const noexcept {
2011-10-11 08:44:27 -05:00
// return custom message
return m_message.c_str();
}
virtual std::string py_message() const {
// return complete message for Python exception handling
return m_message;
}
2011-10-11 08:44:27 -05:00
};
class FrameExceptionBase : public ExceptionBase
{
public:
int64_t frame_number;
FrameExceptionBase(std::string message, int64_t frame_number=-1)
: ExceptionBase(message), frame_number(frame_number) { }
virtual std::string py_message() const override {
// return complete message for Python exception handling
std::string out_msg(m_message +
(frame_number > 0
? " at frame " + std::to_string(frame_number)
: ""));
return out_msg;
}
};
class FileExceptionBase : public ExceptionBase
{
public:
std::string file_path;
FileExceptionBase(std::string message, std::string file_path="")
: ExceptionBase(message), file_path(file_path) { }
virtual std::string py_message() const override {
// return complete message for Python exception handling
std::string out_msg(m_message +
(file_path != ""
? " for file " + file_path
: ""));
return out_msg;
}
};
/// Exception when a required chunk is missing
class ChunkNotFound : public FrameExceptionBase
{
public:
int64_t chunk_number;
int64_t chunk_frame;
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param frame_number The frame number being processed
* @param chunk_number The chunk requested
* @param chunk_frame The chunk frame
*/
ChunkNotFound(std::string message, int64_t frame_number, int64_t chunk_number, int64_t chunk_frame)
: FrameExceptionBase(message, frame_number), chunk_number(chunk_number), chunk_frame(chunk_frame) { }
virtual ~ChunkNotFound() noexcept {}
};
/// Exception when accessing a blackmagic decklink card
class DecklinkError : public ExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
*/
DecklinkError(std::string message)
: ExceptionBase(message) { }
virtual ~DecklinkError() noexcept {}
};
/// Exception when decoding audio packet
class ErrorDecodingAudio : public FrameExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param frame_number The frame number being processed
*/
ErrorDecodingAudio(std::string message, int64_t frame_number=-1)
: FrameExceptionBase(message, frame_number) { }
virtual ~ErrorDecodingAudio() noexcept {}
};
2012-07-24 12:50:17 -05:00
/// Exception when encoding audio packet
class ErrorEncodingAudio : public FrameExceptionBase
2012-07-24 12:50:17 -05:00
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param frame_number The frame number being processed
*/
ErrorEncodingAudio(std::string message, int64_t frame_number=-1)
: FrameExceptionBase(message, frame_number) { }
virtual ~ErrorEncodingAudio() noexcept {}
2012-07-24 12:50:17 -05:00
};
/// Exception when encoding audio packet
class ErrorEncodingVideo : public FrameExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param frame_number The frame number being processed
*/
ErrorEncodingVideo(std::string message, int64_t frame_number=-1)
: FrameExceptionBase(message, frame_number) { }
virtual ~ErrorEncodingVideo() noexcept {}
};
/// Exception when an invalid # of audio channels are detected
class InvalidChannels : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
InvalidChannels(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~InvalidChannels() noexcept {}
};
/// Exception when no valid codec is found for a file
class InvalidCodec : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
InvalidCodec(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~InvalidCodec() noexcept {}
};
/// Exception for files that can not be found or opened
class InvalidFile : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path The input file being processed
*/
InvalidFile(std::string message, std::string file_path)
: FileExceptionBase(message, file_path) { }
virtual ~InvalidFile() noexcept {}
};
/// Exception when no valid format is found for a file
class InvalidFormat : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
InvalidFormat(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~InvalidFormat() noexcept {}
};
/// Exception for invalid JSON
class InvalidJSON : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
InvalidJSON(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~InvalidJSON() noexcept {}
};
/// Exception when invalid encoding options are used
class InvalidOptions : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
InvalidOptions(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~InvalidOptions() noexcept {}
};
/// Exception when invalid sample rate is detected during encoding
class InvalidSampleRate : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
InvalidSampleRate(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~InvalidSampleRate() noexcept {}
};
/// Exception for missing JSON Change key
class InvalidJSONKey : public ExceptionBase
{
public:
std::string json;
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param json The json data being processed
*/
InvalidJSONKey(std::string message, std::string json)
: ExceptionBase(message), json(json) { }
virtual ~InvalidJSONKey() noexcept {}
std::string py_message() const override {
std::string out_msg = m_message +
" for JSON data " +
(json.size() > 100 ? " (abbreviated): " : ": ")
+ json.substr(0, 99);
return out_msg;
}
};
/// Exception when no streams are found in the file
class NoStreamsFound : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
NoStreamsFound(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~NoStreamsFound() noexcept {}
};
2011-10-11 08:44:27 -05:00
/// Exception for frames that are out of bounds.
class OutOfBoundsFrame : public ExceptionBase
2011-10-11 08:44:27 -05:00
{
public:
int64_t FrameRequested;
int64_t MaxFrames;
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param frame_requested The out-of-bounds frame number requested
* @param max_frames The maximum available frame number
*/
OutOfBoundsFrame(std::string message, int64_t frame_requested, int64_t max_frames)
: ExceptionBase(message), FrameRequested(frame_requested), MaxFrames(max_frames) { }
virtual ~OutOfBoundsFrame() noexcept {}
std::string py_message() const override {
std::string out_msg(m_message
+ " Frame requested: " + std::to_string(FrameRequested)
+ " Max frames: " + std::to_string(MaxFrames));
return out_msg;
}
2011-10-11 08:44:27 -05:00
};
/// Exception for an out of bounds key-frame point.
class OutOfBoundsPoint : public ExceptionBase
2011-10-11 08:44:27 -05:00
{
public:
int PointRequested;
int MaxPoints;
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param point_requested The out-of-bounds point requested
* @param max_points The maximum available point value
*/
OutOfBoundsPoint(std::string message, int point_requested, int max_points)
: ExceptionBase(message), PointRequested(point_requested), MaxPoints(max_points) { }
virtual ~OutOfBoundsPoint() noexcept {}
std::string py_message() const override {
std::string out_msg(m_message
+ " Point requested: " + std::to_string(PointRequested)
+ " Max point: " + std::to_string(MaxPoints));
return out_msg;
}
2011-10-11 08:44:27 -05:00
};
/// Exception when memory could not be allocated
class OutOfMemory : public FileExceptionBase
2011-10-11 08:44:27 -05:00
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
OutOfMemory(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~OutOfMemory() noexcept {}
2011-10-11 08:44:27 -05:00
};
/// Exception when a reader is closed, and a frame is requested
class ReaderClosed : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
ReaderClosed(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~ReaderClosed() noexcept {}
};
/// Exception when resample fails
class ResampleError : public FileExceptionBase
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
ResampleError(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~ResampleError() noexcept {}
};
#define TMS_DEP_MSG "The library no longer throws this exception. It will be removed in a future release."
#ifndef SWIG
/// Exception when too many seek attempts happen
class
[[deprecated(TMS_DEP_MSG)]]
TooManySeeks : public FileExceptionBase
{
public:
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The input file being processed
*/
[[deprecated(TMS_DEP_MSG)]]
TooManySeeks(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~TooManySeeks() noexcept {}
};
#endif
2015-02-05 00:11:55 -06:00
/// Exception when a writer is closed, and a frame is requested
class WriterClosed : public FileExceptionBase
2015-02-05 00:11:55 -06:00
{
public:
2019-08-27 20:48:56 -04:00
/**
* @brief Constructor
*
* @param message A message to accompany the exception
* @param file_path (optional) The output file being written
*/
WriterClosed(std::string message, std::string file_path="")
: FileExceptionBase(message, file_path) { }
virtual ~WriterClosed() noexcept {}
2015-02-05 00:11:55 -06:00
};
2011-10-11 08:44:27 -05:00
}
#endif