/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "exception.h" #ifdef Q_OS_LINUX #include #include #endif #include /*! \defgroup CoreExceptions */ /*! \class QmlDesigner::Exception \ingroup CoreExceptions \brief This is the abstract base class for all excetions. Exceptions should be used in cases there is no other way to say something goes wrong. For example the result would be a inconsistent model or a crash. */ namespace QmlDesigner { #ifdef Q_OS_LINUX const char* demangle(const char* name) { char buf[1024]; size_t size = 1024; int status; char* res; res = abi::__cxa_demangle(name, buf, &size, &status); return res; } #else const char* demangle(const char* name) { return name; } #endif bool Exception::s_shouldAssert = false; void Exception::setShouldAssert(bool assert) { s_shouldAssert = assert; } bool Exception::shouldAssert() { return s_shouldAssert; } /*! \brief Constructor \param line use the __LINE__ macro \param function use the __FUNCTION__ or the Q_FUNC_INFO macro \param file use the __FILE__ macro */ Exception::Exception(int line, const QString &function, const QString &file) : m_line(line), m_function(function), m_file(file) { #ifdef Q_OS_LINUX void * array[50]; int nSize = backtrace(array, 50); char ** symbols = backtrace_symbols(array, nSize); for (int i = 0; i < nSize; i++) { m_backTrace.append(QString("%1\n").arg(symbols[i])); } free(symbols); #endif if (s_shouldAssert) Q_ASSERT_X(false, function.toLatin1(), QString("%1:%2 - %3").arg(file).arg(line).arg(function).toLatin1()); } Exception::~Exception() { } /*! \brief Returns the unmangled backtrace of this exception \returns the backtrace as a string */ QString Exception::backTrace() const { return m_backTrace; } /*! \brief Returns the optional description of this exception \returns the description as string */ QString Exception::description() const { return QString("file: %1, function: %2, line: %3").arg(m_file, m_function, QString::number(m_line)); } /*! \brief Returns the line number where this exception was thrown \returns the line number as integer */ int Exception::line() const { return m_line; } /*! \brief Returns the function name where this exception was thrown \returns the function name as string */ QString Exception::function() const { return m_function; } /*! \brief Returns the file name where this exception was thrown \returns the file name as string */ QString Exception::file() const { return m_file; } QDebug operator<<(QDebug debug, const Exception &exception) { debug.nospace() << "Exception: " << exception.type() << "\n" "Function: " << exception.function() << "\n" "File: " << exception.file() << "\n" "Line: " << exception.line() << "\n"; if (!exception.description().isEmpty()) debug.nospace() << exception.description(); if (!exception.backTrace().isEmpty()) debug.nospace() << exception.backTrace(); return debug.space(); } /*! \fn QString Exception::type() const \brief Returns the type of this exception \returns the type as a string */ }