a4c6fec8e9
Kill #ifdef HHVM Kill lots of unused code
109 linhas
3.1 KiB
C++
109 linhas
3.1 KiB
C++
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef __EXCEPTION_H__
|
|
#define __EXCEPTION_H__
|
|
|
|
#include "stack_trace.h"
|
|
#include <stdarg.h>
|
|
|
|
namespace HPHP {
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define EXCEPTION_COMMON_IMPL(cls) \
|
|
virtual cls* clone() { \
|
|
return new cls(*this); \
|
|
} \
|
|
virtual void throwException() { \
|
|
Deleter deleter(this); \
|
|
throw *this; \
|
|
}
|
|
|
|
/**
|
|
* Base class for all exceptions.
|
|
*/
|
|
class Exception : public std::exception {
|
|
public:
|
|
Exception(const char *fmt, ...);
|
|
Exception(const Exception &e);
|
|
Exception();
|
|
|
|
/**
|
|
* Subclass can call this function to format variable length of parameters.
|
|
*
|
|
* class MyException : public Exception {
|
|
* public:
|
|
* MyException(const char *fmt, ...) {
|
|
* va_list ap; va_start(ap, fmt); Format(fmt, ap); va_end(ap);
|
|
* }
|
|
* };
|
|
*/
|
|
void format(const char *fmt, va_list ap);
|
|
|
|
void setMessage(const char *msg) { m_msg = msg ? msg : "";}
|
|
|
|
virtual ~Exception() throw();
|
|
virtual const char *what() const throw();
|
|
|
|
struct Deleter {
|
|
Exception* m_e;
|
|
Deleter() : m_e(nullptr) {}
|
|
Deleter(Exception* e) : m_e(e) {}
|
|
~Deleter() { delete m_e; }
|
|
};
|
|
|
|
EXCEPTION_COMMON_IMPL(Exception);
|
|
|
|
/**
|
|
* Error message without stacktrace.
|
|
*/
|
|
const std::string &getMessage() const { return m_msg;}
|
|
|
|
protected:
|
|
mutable bool m_handled;
|
|
mutable std::string m_msg;
|
|
mutable std::string m_what;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class FileOpenException : public Exception {
|
|
public:
|
|
FileOpenException(const char *filename)
|
|
: Exception("Unable to open file %s", filename) {
|
|
}
|
|
|
|
EXCEPTION_COMMON_IMPL(FileOpenException);
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class VMSwitchModeException : public Exception {
|
|
private:
|
|
bool m_unwindBuiltin;
|
|
public:
|
|
VMSwitchModeException(bool m_unwindBuiltin)
|
|
: m_unwindBuiltin(m_unwindBuiltin) {}
|
|
bool unwindBuiltin() const { return m_unwindBuiltin; }
|
|
|
|
EXCEPTION_COMMON_IMPL(VMSwitchModeException);
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
}
|
|
|
|
#endif // __EXCEPTION_H__
|