Don't throw in destructor.
This commit is contained in:
parent
a32bb6c954
commit
31df6171de
@ -93,9 +93,9 @@ IMAPConnection::~IMAPConnection()
|
|||||||
else if (m_socket)
|
else if (m_socket)
|
||||||
internalDisconnect();
|
internalDisconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,6 +64,8 @@ IMAPFolder::IMAPFolder(const folder::path& path, shared_ptr <IMAPStore> store, s
|
|||||||
|
|
||||||
|
|
||||||
IMAPFolder::~IMAPFolder()
|
IMAPFolder::~IMAPFolder()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
shared_ptr <IMAPStore> store = m_store.lock();
|
shared_ptr <IMAPStore> store = m_store.lock();
|
||||||
|
|
||||||
@ -80,6 +82,11 @@ IMAPFolder::~IMAPFolder()
|
|||||||
onClose();
|
onClose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
// Don't throw in destructor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int IMAPFolder::getMode() const
|
int IMAPFolder::getMode() const
|
||||||
|
@ -114,12 +114,19 @@ IMAPMessage::IMAPMessage(shared_ptr <IMAPFolder> folder, const int num, const ui
|
|||||||
|
|
||||||
|
|
||||||
IMAPMessage::~IMAPMessage()
|
IMAPMessage::~IMAPMessage()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
shared_ptr <IMAPFolder> folder = m_folder.lock();
|
shared_ptr <IMAPFolder> folder = m_folder.lock();
|
||||||
|
|
||||||
if (folder)
|
if (folder)
|
||||||
folder->unregisterMessage(this);
|
folder->unregisterMessage(this);
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
// Don't throw in destructor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void IMAPMessage::onFolderClosed()
|
void IMAPMessage::onFolderClosed()
|
||||||
|
@ -57,9 +57,9 @@ IMAPStore::~IMAPStore()
|
|||||||
if (isConnected())
|
if (isConnected())
|
||||||
disconnect();
|
disconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -120,16 +120,8 @@ void IMAPStore::connect()
|
|||||||
m_connection = make_shared <IMAPConnection>
|
m_connection = make_shared <IMAPConnection>
|
||||||
(dynamicCast <IMAPStore>(shared_from_this()), getAuthenticator());
|
(dynamicCast <IMAPStore>(shared_from_this()), getAuthenticator());
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
m_connection->connect();
|
m_connection->connect();
|
||||||
}
|
}
|
||||||
catch (std::exception&)
|
|
||||||
{
|
|
||||||
m_connection = null;
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool IMAPStore::isConnected() const
|
bool IMAPStore::isConnected() const
|
||||||
|
@ -59,6 +59,8 @@ maildirFolder::maildirFolder(const folder::path& path, shared_ptr <maildirStore>
|
|||||||
|
|
||||||
|
|
||||||
maildirFolder::~maildirFolder()
|
maildirFolder::~maildirFolder()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
shared_ptr <maildirStore> store = m_store.lock();
|
shared_ptr <maildirStore> store = m_store.lock();
|
||||||
|
|
||||||
@ -74,6 +76,11 @@ maildirFolder::~maildirFolder()
|
|||||||
close(false);
|
close(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
// Don't throw in destructor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void maildirFolder::onStoreDisconnected()
|
void maildirFolder::onStoreDisconnected()
|
||||||
|
@ -57,12 +57,19 @@ maildirMessage::maildirMessage(shared_ptr <maildirFolder> folder, const int num)
|
|||||||
|
|
||||||
|
|
||||||
maildirMessage::~maildirMessage()
|
maildirMessage::~maildirMessage()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
shared_ptr <maildirFolder> folder = m_folder.lock();
|
shared_ptr <maildirFolder> folder = m_folder.lock();
|
||||||
|
|
||||||
if (folder)
|
if (folder)
|
||||||
folder->unregisterMessage(this);
|
folder->unregisterMessage(this);
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
// Don't throw in destructor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void maildirMessage::onFolderClosed()
|
void maildirMessage::onFolderClosed()
|
||||||
|
@ -65,9 +65,9 @@ maildirStore::~maildirStore()
|
|||||||
if (isConnected())
|
if (isConnected())
|
||||||
disconnect();
|
disconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,9 +83,9 @@ POP3Connection::~POP3Connection()
|
|||||||
else if (m_socket)
|
else if (m_socket)
|
||||||
internalDisconnect();
|
internalDisconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,6 +55,8 @@ POP3Folder::POP3Folder(const folder::path& path, shared_ptr <POP3Store> store)
|
|||||||
|
|
||||||
|
|
||||||
POP3Folder::~POP3Folder()
|
POP3Folder::~POP3Folder()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
shared_ptr <POP3Store> store = m_store.lock();
|
shared_ptr <POP3Store> store = m_store.lock();
|
||||||
|
|
||||||
@ -70,6 +72,11 @@ POP3Folder::~POP3Folder()
|
|||||||
onClose();
|
onClose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
// Don't throw in destructor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int POP3Folder::getMode() const
|
int POP3Folder::getMode() const
|
||||||
|
@ -52,12 +52,19 @@ POP3Message::POP3Message(shared_ptr <POP3Folder> folder, const int num)
|
|||||||
|
|
||||||
|
|
||||||
POP3Message::~POP3Message()
|
POP3Message::~POP3Message()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
shared_ptr <POP3Folder> folder = m_folder.lock();
|
shared_ptr <POP3Folder> folder = m_folder.lock();
|
||||||
|
|
||||||
if (folder)
|
if (folder)
|
||||||
folder->unregisterMessage(this);
|
folder->unregisterMessage(this);
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
// Don't throw in destructor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void POP3Message::onFolderClosed()
|
void POP3Message::onFolderClosed()
|
||||||
|
@ -55,9 +55,9 @@ POP3Store::~POP3Store()
|
|||||||
if (isConnected())
|
if (isConnected())
|
||||||
disconnect();
|
disconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,16 +113,8 @@ void POP3Store::connect()
|
|||||||
m_connection = make_shared <POP3Connection>
|
m_connection = make_shared <POP3Connection>
|
||||||
(dynamicCast <POP3Store>(shared_from_this()), getAuthenticator());
|
(dynamicCast <POP3Store>(shared_from_this()), getAuthenticator());
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
m_connection->connect();
|
m_connection->connect();
|
||||||
}
|
}
|
||||||
catch (std::exception&)
|
|
||||||
{
|
|
||||||
m_connection = null;
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool POP3Store::isPOP3S() const
|
bool POP3Store::isPOP3S() const
|
||||||
|
@ -71,9 +71,9 @@ sendmailTransport::~sendmailTransport()
|
|||||||
if (isConnected())
|
if (isConnected())
|
||||||
disconnect();
|
disconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,9 +84,9 @@ SMTPConnection::~SMTPConnection()
|
|||||||
else if (m_socket)
|
else if (m_socket)
|
||||||
internalDisconnect();
|
internalDisconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,9 +64,9 @@ SMTPTransport::~SMTPTransport()
|
|||||||
if (isConnected())
|
if (isConnected())
|
||||||
disconnect();
|
disconnect();
|
||||||
}
|
}
|
||||||
catch (vmime::exception&)
|
catch (...)
|
||||||
{
|
{
|
||||||
// Ignore
|
// Don't throw in destructor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,16 +91,8 @@ void SMTPTransport::connect()
|
|||||||
m_connection = make_shared <SMTPConnection>
|
m_connection = make_shared <SMTPConnection>
|
||||||
(dynamicCast <SMTPTransport>(shared_from_this()), getAuthenticator());
|
(dynamicCast <SMTPTransport>(shared_from_this()), getAuthenticator());
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
m_connection->connect();
|
m_connection->connect();
|
||||||
}
|
}
|
||||||
catch (std::exception&)
|
|
||||||
{
|
|
||||||
m_connection = null;
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool SMTPTransport::isConnected() const
|
bool SMTPTransport::isConnected() const
|
||||||
|
@ -256,6 +256,8 @@ TLSSession_GnuTLS::TLSSession_GnuTLS(const TLSSession_GnuTLS&)
|
|||||||
|
|
||||||
|
|
||||||
TLSSession_GnuTLS::~TLSSession_GnuTLS()
|
TLSSession_GnuTLS::~TLSSession_GnuTLS()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (m_gnutlsSession)
|
if (m_gnutlsSession)
|
||||||
{
|
{
|
||||||
@ -265,6 +267,11 @@ TLSSession_GnuTLS::~TLSSession_GnuTLS()
|
|||||||
m_gnutlsSession = NULL;
|
m_gnutlsSession = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
// Don't throw in destructor
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
shared_ptr <TLSSocket> TLSSession_GnuTLS::getSocket(shared_ptr <socket> sok)
|
shared_ptr <TLSSocket> TLSSession_GnuTLS::getSocket(shared_ptr <socket> sok)
|
||||||
|
Loading…
Reference in New Issue
Block a user