a8e3321fbd
We'd like to start using ##mixed## instead of ##var## for attribute types to be consistent with Hack. As a followup to this (once released), we would codemod all ##var## to ##mixed##.
89 linhas
3.4 KiB
C++
89 linhas
3.4 KiB
C++
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
|
|
| Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 2.00 of the Zend 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.zend.com/license/2_00.txt. |
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef incl_HPHP_RUNTIME_ERROR_H_
|
|
#define incl_HPHP_RUNTIME_ERROR_H_
|
|
|
|
#include <cstdarg>
|
|
#include <string>
|
|
|
|
#include "hphp/util/base.h"
|
|
#include "hphp/runtime/base/datatype.h"
|
|
|
|
namespace HPHP {
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class ErrorConstants {
|
|
public:
|
|
enum class ErrorModes {
|
|
ERROR = 1,
|
|
WARNING = 2,
|
|
PARSE = 4, // not supported
|
|
NOTICE = 8,
|
|
CORE_ERROR = 16, // not supported
|
|
CORE_WARNING = 32, // not supported
|
|
COMPILE_ERROR = 64, // not supported
|
|
COMPILE_WARNING = 128, // not supported
|
|
USER_ERROR = 256,
|
|
USER_WARNING = 512,
|
|
USER_NOTICE = 1024,
|
|
STRICT = 2048,
|
|
RECOVERABLE_ERROR = 4096,
|
|
PHP_DEPRECATED = 8192, // DEPRECATED conflicts with macro definitions
|
|
USER_DEPRECATED = 16384,
|
|
|
|
/**
|
|
* PHP's fatal errors cannot be fed into error handler. HipHop can. We
|
|
* still need "ERROR" bit, so old PHP error handler can see this error.
|
|
* The extra 24th bit will help people who want to find out if it's
|
|
* a fatal error only HipHop throws or not.
|
|
*/
|
|
FATAL_ERROR = ERROR | (1 << 24), // 16777217
|
|
|
|
PHP_ALL = ERROR | WARNING | PARSE | NOTICE | CORE_ERROR | CORE_WARNING |
|
|
COMPILE_ERROR | COMPILE_WARNING | USER_ERROR | USER_WARNING |
|
|
USER_NOTICE | RECOVERABLE_ERROR | PHP_DEPRECATED | USER_DEPRECATED,
|
|
|
|
HPHP_ALL = PHP_ALL | FATAL_ERROR
|
|
};
|
|
};
|
|
|
|
void raise_error(const std::string &msg);
|
|
void raise_error(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);
|
|
void raise_error_without_first_frame(const std::string &msg);
|
|
void raise_recoverable_error(const std::string &msg);
|
|
void raise_recoverable_error(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);
|
|
void raise_strict_warning(const std::string &msg);
|
|
void raise_strict_warning(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);
|
|
void raise_warning(const std::string &msg);
|
|
void raise_warning(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);
|
|
void raise_notice(const std::string &msg);
|
|
void raise_notice(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);
|
|
void raise_debugging(const std::string &msg);
|
|
void raise_debugging(const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2);
|
|
void raise_param_type_warning(
|
|
const char* func_name,
|
|
int param_num,
|
|
DataType expected_type,
|
|
DataType actual_type);
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
}
|
|
|
|
#endif // incl_HPHP_RUNTIME_ERROR_H_
|
|
|