3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
29 * To ensure that PHP errors or unhandled exceptions are reported in JSON format,
30 * wrap this around your code. For example:
33 * $errorContainer = new CRM_Queue_ErrorPolicy();
34 * $errorContainer->call(function(){
35 * ...include some files, do some work, etc...
39 * Note: Most of the code in this class is pretty generic vis-a-vis error
40 * handling -- except for 'reportError', whose message format is only
41 * appropriate for use with the CRM_Queue_Page_AJAX. Some kind of cleanup
42 * will be necessary to get reuse from the other parts of this class.
44 class CRM_Queue_ErrorPolicy
{
50 function __construct($level = NULL) {
51 register_shutdown_function(array($this, 'onShutdown'));
52 if ($level === NULL) {
53 $level = E_ERROR | E_PARSE | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR
;
55 $this->level
= $level;
60 $this->backup
= array();
62 'display_errors', 'html_errors', 'xmlrpc_errors') as $key) {
63 $this->backup
[$key] = ini_get($key);
66 set_error_handler(array($this, 'onError'), $this->level
);
67 // FIXME make this temporary/reversible
68 $this->errorScope
= CRM_Core_TemporaryErrorScope
::useException();
71 function deactivate() {
72 $this->errorScope
= NULL;
73 restore_error_handler();
75 'display_errors', 'html_errors', 'xmlrpc_errors') as $key) {
76 ini_set($key, $this->backup
[$key]);
78 $this->active
= FALSE;
86 function call($callable) {
89 $result = $callable();
92 $this->reportException($e);
99 * Receive (semi) recoverable error notices
101 * @see set_error_handler
103 function onError($errno, $errstr, $errfile, $errline) {
104 if (!(error_reporting() & $errno)) {
107 throw new Exception(sprintf('PHP Error %s at %s:%s: %s', $errno, $errfile, $errline, $errstr));
111 * Receive non-recoverable error notices
113 * @see register_shutdown_function
114 * @see error_get_last
116 function onShutdown() {
117 if (!$this->active
) {
120 $error = error_get_last();
121 if (is_array($error) && ($error['type'] & $this->level
)) {
122 $this->reportError($error);
127 * Print a fatal error
131 function reportError($error) {
135 'exception' => htmlentities(sprintf('Error %s: %s in %s, line %s', $error['type'], $error['message'], $error['file'], $error['line'])),
137 global $activeQueueRunner;
138 if (is_object($activeQueueRunner)) {
139 $response['last_task_title'] = $activeQueueRunner->lastTaskTitle
;
141 CRM_Core_Error
::debug_var('CRM_Queue_ErrorPolicy_reportError', $response);
142 echo json_encode($response);
143 // civiExit() is unnecessary -- we're only called as part of abend
147 * Print an unhandled exception
151 function reportException(Exception
$e) {
152 CRM_Core_Error
::debug_var('CRM_Queue_ErrorPolicy_reportException', CRM_Core_Error
::formatTextException($e));
159 $config = CRM_Core_Config
::singleton();
160 if ($config->backtrace || CRM_Core_Config
::isUpgradeMode()) {
161 $response['exception'] = CRM_Core_Error
::formatHtmlException($e);
164 $response['exception'] = htmlentities($e->getMessage());
167 global $activeQueueRunner;
168 if (is_object($activeQueueRunner)) {
169 $response['last_task_title'] = $activeQueueRunner->lastTaskTitle
;
171 echo json_encode($response);
172 CRM_Utils_System
::civiExit();