Application.php 30.6 KB
Newer Older
w  
Qiang Xue committed
1 2 3 4 5 6 7 8 9 10
<?php
/**
 * Application class file.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.yiiframework.com/
 * @copyright Copyright &copy; 2008-2012 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

11 12
namespace yii\base;

w  
Qiang Xue committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
/**
 * Application is the base class for all application classes.
 *
 * An application serves as the global context that the user request
 * is being processed. It manages a set of application components that
 * provide specific functionalities to the whole application.
 *
 * The core application components provided by Application are the following:
 * <ul>
 * <li>{@link getErrorHandler errorHandler}: handles PHP errors and
 *   uncaught exceptions. This application component is dynamically loaded when needed.</li>
 * <li>{@link getSecurityManager securityManager}: provides security-related
 *   services, such as hashing, encryption. This application component is dynamically
 *   loaded when needed.</li>
 * <li>{@link getStatePersister statePersister}: provides global state
 *   persistence method. This application component is dynamically loaded when needed.</li>
 * <li>{@link getCache cache}: provides caching feature. This application component is
 *   disabled by default.</li>
 * <li>{@link getMessages messages}: provides the message source for translating
 *   application messages. This application component is dynamically loaded when needed.</li>
 * <li>{@link getCoreMessages coreMessages}: provides the message source for translating
 *   Yii framework messages. This application component is dynamically loaded when needed.</li>
 * </ul>
 *
 * Application will undergo the following lifecycles when processing a user request:
 * <ol>
 * <li>load application configuration;</li>
 * <li>set up class autoloader and error handling;</li>
 * <li>load static application components;</li>
 * <li>{@link onBeginRequest}: preprocess the user request;</li>
 * <li>{@link processRequest}: process the user request;</li>
 * <li>{@link onEndRequest}: postprocess the user request;</li>
 * </ol>
 *
 * Starting from lifecycle 3, if a PHP error or an uncaught exception occurs,
 * the application will switch to its error handling logic and jump to step 6 afterwards.
 *
 * @property string $basePath Returns the root path of the application.
 * @property CCache $cache Returns the cache component.
 * @property CPhpMessageSource $coreMessages Returns the core message translations.
 * @property CDateFormatter $dateFormatter Returns the locale-dependent date formatter.
 * @property CDbConnection $db Returns the database connection component.
 * @property CErrorHandler $errorHandler Returns the error handler component.
 * @property string $extensionPath Returns the root directory that holds all third-party extensions.
 * @property string $id Returns the unique identifier for the application.
 * @property string $language Returns the language that the user is using and the application should be targeted to.
 * @property CLocale $locale Returns the locale instance.
 * @property string $localeDataPath Returns the directory that contains the locale data.
 * @property CMessageSource $messages Returns the application message translations component.
 * @property CNumberFormatter $numberFormatter The locale-dependent number formatter.
 * @property CHttpRequest $request Returns the request component.
 * @property string $runtimePath Returns the directory that stores runtime files.
 * @property CSecurityManager $securityManager Returns the security manager component.
 * @property CStatePersister $statePersister Returns the state persister component.
 * @property string $timeZone Returns the time zone used by this application.
 * @property CUrlManager $urlManager Returns the URL manager component.
 * @property string $baseUrl Returns the relative URL for the application
 * @property string $homeUrl the homepage URL
w  
Qiang Xue committed
71 72 73
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
w  
Qiang Xue committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
 */
abstract class Application extends Module
{
	/**
	 * @var string the application name. Defaults to 'My Application'.
	 */
	public $name = 'My Application';
	/**
	 * @var string the charset currently used for the application. Defaults to 'UTF-8'.
	 */
	public $charset = 'UTF-8';
	/**
	 * @var string the language that the application is written in. This mainly refers to
	 * the language that the messages and view files are in. Defaults to 'en_us' (US English).
	 */
	public $sourceLanguage = 'en_us';

	private $_id;
	private $_basePath;
	private $_runtimePath;
	private $_extensionPath;
	private $_globalState;
	private $_stateChanged;
	private $_ended = false;
	private $_language;
	private $_homeUrl;

	/**
	 * Processes the request.
	 * This is the place where the actual request processing work is done.
	 * Derived classes should override this method.
	 */
	abstract public function processRequest();

	/**
	 * Constructor.
	 * @param mixed $config application configuration.
	 * If a string, it is treated as the path of the file that contains the configuration;
	 * If an array, it is the actual configuration information.
	 * Please make sure you specify the {@link getBasePath basePath} property in the configuration,
	 * which should point to the directory containing all application logic, template and data.
	 * If not, the directory will be defaulted to 'protected'.
	 */
	public function __construct($config = null)
	{
Qiang Xue committed
119
		\Yii::$application = $this;
w  
Qiang Xue committed
120 121

		// set basePath at early as possible to avoid trouble
Qiang Xue committed
122
		if (is_string($config)) {
w  
Qiang Xue committed
123
			$config = require($config);
Qiang Xue committed
124 125
		}
		if (isset($config['basePath'])) {
w  
Qiang Xue committed
126 127
			$this->setBasePath($config['basePath']);
			unset($config['basePath']);
Qiang Xue committed
128
		} else
Qiang Xue committed
129
		{
w  
Qiang Xue committed
130
			$this->setBasePath('protected');
Qiang Xue committed
131
		}
132 133 134
		\Yii::setAlias('application', $this->getBasePath());
		\Yii::setAlias('webroot', dirname($_SERVER['SCRIPT_FILENAME']));
		\Yii::setAlias('ext', $this->getBasePath() . DIRECTORY_SEPARATOR . 'extensions');
w  
Qiang Xue committed
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

		$this->preinit();

		$this->initSystemHandlers();
		$this->registerCoreComponents();

		$this->configure($config);
		$this->attachBehaviors($this->behaviors);
		$this->preloadComponents();

		$this->init();
	}


	/**
	 * Runs the application.
	 * This method loads static application components. Derived classes usually overrides this
	 * method to do more application-specific tasks.
	 * Remember to call the parent implementation so that static application components are loaded.
	 */
	public function run()
	{
Qiang Xue committed
157
		if ($this->hasEventHandlers('onBeginRequest')) {
w  
Qiang Xue committed
158
			$this->onBeginRequest(new CEvent($this));
Qiang Xue committed
159
		}
w  
Qiang Xue committed
160
		$this->processRequest();
Qiang Xue committed
161
		if ($this->hasEventHandlers('onEndRequest')) {
w  
Qiang Xue committed
162
			$this->onEndRequest(new CEvent($this));
Qiang Xue committed
163
		}
w  
Qiang Xue committed
164 165 166 167 168 169 170 171 172 173 174 175
	}

	/**
	 * Terminates the application.
	 * This method replaces PHP's exit() function by calling
	 * {@link onEndRequest} before exiting.
	 * @param integer $status exit status (value 0 means normal exit while other values mean abnormal exit).
	 * @param boolean $exit whether to exit the current request. This parameter has been available since version 1.1.5.
	 * It defaults to true, meaning the PHP's exit() function will be called at the end of this method.
	 */
	public function end($status = 0, $exit = true)
	{
Qiang Xue committed
176
		if ($this->hasEventHandlers('onEndRequest')) {
w  
Qiang Xue committed
177
			$this->onEndRequest(new CEvent($this));
Qiang Xue committed
178 179
		}
		if ($exit) {
w  
Qiang Xue committed
180
			exit($status);
Qiang Xue committed
181
		}
w  
Qiang Xue committed
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
	}

	/**
	 * Raised right BEFORE the application processes the request.
	 * @param CEvent $event the event parameter
	 */
	public function onBeginRequest($event)
	{
		$this->raiseEvent('onBeginRequest', $event);
	}

	/**
	 * Raised right AFTER the application processes the request.
	 * @param CEvent $event the event parameter
	 */
	public function onEndRequest($event)
	{
Qiang Xue committed
199
		if (!$this->_ended) {
w  
Qiang Xue committed
200 201 202 203 204 205 206 207 208 209 210
			$this->_ended = true;
			$this->raiseEvent('onEndRequest', $event);
		}
	}

	/**
	 * Returns the unique identifier for the application.
	 * @return string the unique identifier for the application.
	 */
	public function getId()
	{
Qiang Xue committed
211
		if ($this->_id !== null) {
w  
Qiang Xue committed
212
			return $this->_id;
Qiang Xue committed
213
		} else
Qiang Xue committed
214
		{
w  
Qiang Xue committed
215
			return $this->_id = sprintf('%x', crc32($this->getBasePath() . $this->name));
Qiang Xue committed
216
		}
w  
Qiang Xue committed
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
	}

	/**
	 * Sets the unique identifier for the application.
	 * @param string $id the unique identifier for the application.
	 */
	public function setId($id)
	{
		$this->_id = $id;
	}

	/**
	 * Returns the root path of the application.
	 * @return string the root directory of the application. Defaults to 'protected'.
	 */
	public function getBasePath()
	{
		return $this->_basePath;
	}

	/**
	 * Sets the root directory of the application.
	 * This method can only be invoked at the begin of the constructor.
	 * @param string $path the root directory of the application.
	 * @throws CException if the directory does not exist.
	 */
	public function setBasePath($path)
	{
Qiang Xue committed
245
		if (($this->_basePath = realpath($path)) === false || !is_dir($this->_basePath)) {
246
			throw new \yii\base\Exception(\Yii::t('yii', 'Application base path "{path}" is not a valid directory.',
w  
Qiang Xue committed
247
				array('{path}' => $path)));
Qiang Xue committed
248
		}
w  
Qiang Xue committed
249 250 251 252 253 254 255 256
	}

	/**
	 * Returns the directory that stores runtime files.
	 * @return string the directory that stores runtime files. Defaults to 'protected/runtime'.
	 */
	public function getRuntimePath()
	{
Qiang Xue committed
257
		if ($this->_runtimePath !== null) {
w  
Qiang Xue committed
258
			return $this->_runtimePath;
Qiang Xue committed
259
		} else
w  
Qiang Xue committed
260 261 262 263 264 265 266 267 268 269 270 271 272
		{
			$this->setRuntimePath($this->getBasePath() . DIRECTORY_SEPARATOR . 'runtime');
			return $this->_runtimePath;
		}
	}

	/**
	 * Sets the directory that stores runtime files.
	 * @param string $path the directory that stores runtime files.
	 * @throws CException if the directory does not exist or is not writable
	 */
	public function setRuntimePath($path)
	{
Qiang Xue committed
273
		if (($runtimePath = realpath($path)) === false || !is_dir($runtimePath) || !is_writable($runtimePath)) {
274
			throw new \yii\base\Exception(\Yii::t('yii', 'Application runtime path "{path}" is not valid. Please make sure it is a directory writable by the Web server process.',
w  
Qiang Xue committed
275
				array('{path}' => $path)));
Qiang Xue committed
276
		}
w  
Qiang Xue committed
277 278 279 280 281 282 283 284 285
		$this->_runtimePath = $runtimePath;
	}

	/**
	 * Returns the root directory that holds all third-party extensions.
	 * @return string the directory that contains all extensions. Defaults to the 'extensions' directory under 'protected'.
	 */
	public function getExtensionPath()
	{
286
		return \Yii::getPathOfAlias('ext');
w  
Qiang Xue committed
287 288 289 290 291 292 293 294
	}

	/**
	 * Sets the root directory that holds all third-party extensions.
	 * @param string $path the directory that contains all third-party extensions.
	 */
	public function setExtensionPath($path)
	{
Qiang Xue committed
295
		if (($extensionPath = realpath($path)) === false || !is_dir($extensionPath)) {
296
			throw new \yii\base\Exception(\Yii::t('yii', 'Extension path "{path}" does not exist.',
w  
Qiang Xue committed
297
				array('{path}' => $path)));
Qiang Xue committed
298
		}
299
		\Yii::setAlias('ext', $extensionPath);
w  
Qiang Xue committed
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
	}

	/**
	 * Returns the language that the user is using and the application should be targeted to.
	 * @return string the language that the user is using and the application should be targeted to.
	 * Defaults to the {@link sourceLanguage source language}.
	 */
	public function getLanguage()
	{
		return $this->_language === null ? $this->sourceLanguage : $this->_language;
	}

	/**
	 * Specifies which language the application is targeted to.
	 *
	 * This is the language that the application displays to end users.
	 * If set null, it uses the {@link sourceLanguage source language}.
	 *
	 * Unless your application needs to support multiple languages, you should always
	 * set this language to null to maximize the application's performance.
	 * @param string $language the user language (e.g. 'en_US', 'zh_CN').
	 * If it is null, the {@link sourceLanguage} will be used.
	 */
	public function setLanguage($language)
	{
		$this->_language = $language;
	}

	/**
	 * Returns the time zone used by this application.
	 * This is a simple wrapper of PHP function date_default_timezone_get().
	 * @return string the time zone used by this application.
	 * @see http://php.net/manual/en/function.date-default-timezone-get.php
	 */
	public function getTimeZone()
	{
		return date_default_timezone_get();
	}

	/**
	 * Sets the time zone used by this application.
	 * This is a simple wrapper of PHP function date_default_timezone_set().
	 * @param string $value the time zone used by this application.
	 * @see http://php.net/manual/en/function.date-default-timezone-set.php
	 */
	public function setTimeZone($value)
	{
		date_default_timezone_set($value);
	}

	/**
	 * Returns the localized version of a specified file.
	 *
	 * The searching is based on the specified language code. In particular,
	 * a file with the same name will be looked for under the subdirectory
	 * named as the locale ID. For example, given the file "path/to/view.php"
	 * and locale ID "zh_cn", the localized file will be looked for as
	 * "path/to/zh_cn/view.php". If the file is not found, the original file
	 * will be returned.
	 *
	 * For consistency, it is recommended that the locale ID is given
	 * in lower case and in the format of LanguageID_RegionID (e.g. "en_us").
	 *
	 * @param string $srcFile the original file
	 * @param string $srcLanguage the language that the original file is in. If null, the application {@link sourceLanguage source language} is used.
	 * @param string $language the desired language that the file should be localized to. If null, the {@link getLanguage application language} will be used.
	 * @return string the matching localized file. The original file is returned if no localized version is found
	 * or if source language is the same as the desired language.
	 */
	public function findLocalizedFile($srcFile, $srcLanguage = null, $language = null)
	{
Qiang Xue committed
371
		if ($srcLanguage === null) {
w  
Qiang Xue committed
372
			$srcLanguage = $this->sourceLanguage;
Qiang Xue committed
373 374
		}
		if ($language === null) {
w  
Qiang Xue committed
375
			$language = $this->getLanguage();
Qiang Xue committed
376 377
		}
		if ($language === $srcLanguage) {
w  
Qiang Xue committed
378
			return $srcFile;
Qiang Xue committed
379
		}
w  
Qiang Xue committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
		$desiredFile = dirname($srcFile) . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . basename($srcFile);
		return is_file($desiredFile) ? $desiredFile : $srcFile;
	}

	/**
	 * Returns the locale instance.
	 * @param string $localeID the locale ID (e.g. en_US). If null, the {@link getLanguage application language ID} will be used.
	 * @return CLocale the locale instance
	 */
	public function getLocale($localeID = null)
	{
		return CLocale::getInstance($localeID === null ? $this->getLanguage() : $localeID);
	}

	/**
	 * Returns the directory that contains the locale data.
	 * @return string the directory that contains the locale data. It defaults to 'framework/i18n/data'.
	 */
	public function getLocaleDataPath()
	{
400
		return CLocale::$dataPath === null ? \Yii::getPathOfAlias('system.i18n.data') : CLocale::$dataPath;
w  
Qiang Xue committed
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
	}

	/**
	 * Sets the directory that contains the locale data.
	 * @param string $value the directory that contains the locale data.
	 */
	public function setLocaleDataPath($value)
	{
		CLocale::$dataPath = $value;
	}

	/**
	 * @return CNumberFormatter the locale-dependent number formatter.
	 * The current {@link getLocale application locale} will be used.
	 */
	public function getNumberFormatter()
	{
		return $this->getLocale()->getNumberFormatter();
	}

	/**
	 * Returns the locale-dependent date formatter.
	 * @return CDateFormatter the locale-dependent date formatter.
	 * The current {@link getLocale application locale} will be used.
	 */
	public function getDateFormatter()
	{
		return $this->getLocale()->getDateFormatter();
	}

	/**
	 * Returns the database connection component.
	 * @return CDbConnection the database connection
	 */
	public function getDb()
	{
		return $this->getComponent('db');
	}

	/**
	 * Returns the error handler component.
	 * @return CErrorHandler the error handler application component.
	 */
	public function getErrorHandler()
	{
		return $this->getComponent('errorHandler');
	}

	/**
	 * Returns the security manager component.
	 * @return CSecurityManager the security manager application component.
	 */
	public function getSecurityManager()
	{
		return $this->getComponent('securityManager');
	}

	/**
	 * Returns the state persister component.
	 * @return CStatePersister the state persister application component.
	 */
	public function getStatePersister()
	{
		return $this->getComponent('statePersister');
	}

	/**
	 * Returns the cache component.
	 * @return CCache the cache application component. Null if the component is not enabled.
	 */
	public function getCache()
	{
		return $this->getComponent('cache');
	}

	/**
	 * Returns the core message translations component.
	 * @return CPhpMessageSource the core message translations
	 */
	public function getCoreMessages()
	{
		return $this->getComponent('coreMessages');
	}

	/**
	 * Returns the application message translations component.
	 * @return CMessageSource the application message translations
	 */
	public function getMessages()
	{
		return $this->getComponent('messages');
	}

	/**
	 * Returns the request component.
	 * @return CHttpRequest the request component
	 */
	public function getRequest()
	{
		return $this->getComponent('request');
	}

	/**
	 * Returns the URL manager component.
	 * @return CUrlManager the URL manager component
	 */
	public function getUrlManager()
	{
		return $this->getComponent('urlManager');
	}

	/**
	 * @return CController the currently active controller. Null is returned in this base class.
	 */
	public function getController()
	{
		return null;
	}

	/**
	 * Creates a relative URL based on the given controller and action information.
	 * @param string $route the URL route. This should be in the format of 'ControllerID/ActionID'.
	 * @param array $params additional GET parameters (name=>value). Both the name and value will be URL-encoded.
	 * @param string $ampersand the token separating name-value pairs in the URL.
	 * @return string the constructed URL
	 */
	public function createUrl($route, $params = array(), $ampersand = '&')
	{
		return $this->getUrlManager()->createUrl($route, $params, $ampersand);
	}

	/**
	 * Creates an absolute URL based on the given controller and action information.
	 * @param string $route the URL route. This should be in the format of 'ControllerID/ActionID'.
	 * @param array $params additional GET parameters (name=>value). Both the name and value will be URL-encoded.
	 * @param string $schema schema to use (e.g. http, https). If empty, the schema used for the current request will be used.
	 * @param string $ampersand the token separating name-value pairs in the URL.
	 * @return string the constructed URL
	 */
	public function createAbsoluteUrl($route, $params = array(), $schema = '', $ampersand = '&')
	{
		$url = $this->createUrl($route, $params, $ampersand);
Qiang Xue committed
543
		if (strpos($url, 'http') === 0) {
w  
Qiang Xue committed
544
			return $url;
Qiang Xue committed
545
		} else
Qiang Xue committed
546
		{
w  
Qiang Xue committed
547
			return $this->getRequest()->getHostInfo($schema) . $url;
Qiang Xue committed
548
		}
w  
Qiang Xue committed
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
	}

	/**
	 * Returns the relative URL for the application.
	 * This is a shortcut method to {@link CHttpRequest::getBaseUrl()}.
	 * @param boolean $absolute whether to return an absolute URL. Defaults to false, meaning returning a relative one.
	 * This parameter has been available since 1.0.2.
	 * @return string the relative URL for the application
	 * @see CHttpRequest::getBaseUrl()
	 */
	public function getBaseUrl($absolute = false)
	{
		return $this->getRequest()->getBaseUrl($absolute);
	}

	/**
	 * @return string the homepage URL
	 */
	public function getHomeUrl()
	{
Qiang Xue committed
569 570
		if ($this->_homeUrl === null) {
			if ($this->getUrlManager()->showScriptName) {
w  
Qiang Xue committed
571
				return $this->getRequest()->getScriptUrl();
Qiang Xue committed
572
			} else
Qiang Xue committed
573
			{
w  
Qiang Xue committed
574
				return $this->getRequest()->getBaseUrl() . '/';
Qiang Xue committed
575
			}
Qiang Xue committed
576
		} else
Qiang Xue committed
577
		{
w  
Qiang Xue committed
578
			return $this->_homeUrl;
Qiang Xue committed
579
		}
w  
Qiang Xue committed
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
	}

	/**
	 * @param string $value the homepage URL
	 */
	public function setHomeUrl($value)
	{
		$this->_homeUrl = $value;
	}

	/**
	 * Returns a global value.
	 *
	 * A global value is one that is persistent across users sessions and requests.
	 * @param string $key the name of the value to be returned
	 * @param mixed $defaultValue the default value. If the named global value is not found, this will be returned instead.
	 * @return mixed the named global value
	 * @see setGlobalState
	 */
	public function getGlobalState($key, $defaultValue = null)
	{
Qiang Xue committed
601
		if ($this->_globalState === null) {
w  
Qiang Xue committed
602
			$this->loadGlobalState();
Qiang Xue committed
603 604
		}
		if (isset($this->_globalState[$key])) {
w  
Qiang Xue committed
605
			return $this->_globalState[$key];
Qiang Xue committed
606
		} else
Qiang Xue committed
607
		{
w  
Qiang Xue committed
608
			return $defaultValue;
Qiang Xue committed
609
		}
w  
Qiang Xue committed
610 611 612 613 614 615 616 617 618 619 620 621 622 623
	}

	/**
	 * Sets a global value.
	 *
	 * A global value is one that is persistent across users sessions and requests.
	 * Make sure that the value is serializable and unserializable.
	 * @param string $key the name of the value to be saved
	 * @param mixed $value the global value to be saved. It must be serializable.
	 * @param mixed $defaultValue the default value. If the named global value is the same as this value, it will be cleared from the current storage.
	 * @see getGlobalState
	 */
	public function setGlobalState($key, $value, $defaultValue = null)
	{
Qiang Xue committed
624
		if ($this->_globalState === null) {
w  
Qiang Xue committed
625
			$this->loadGlobalState();
Qiang Xue committed
626
		}
w  
Qiang Xue committed
627 628

		$changed = $this->_stateChanged;
Qiang Xue committed
629 630
		if ($value === $defaultValue) {
			if (isset($this->_globalState[$key])) {
w  
Qiang Xue committed
631 632 633
				unset($this->_globalState[$key]);
				$this->_stateChanged = true;
			}
Qiang Xue committed
634
		} elseif (!isset($this->_globalState[$key]) || $this->_globalState[$key] !== $value)
w  
Qiang Xue committed
635 636 637 638 639
		{
			$this->_globalState[$key] = $value;
			$this->_stateChanged = true;
		}

Qiang Xue committed
640
		if ($this->_stateChanged !== $changed) {
w  
Qiang Xue committed
641
			$this->attachEventHandler('onEndRequest', array($this, 'saveGlobalState'));
Qiang Xue committed
642
		}
w  
Qiang Xue committed
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
	}

	/**
	 * Clears a global value.
	 *
	 * The value cleared will no longer be available in this request and the following requests.
	 * @param string $key the name of the value to be cleared
	 */
	public function clearGlobalState($key)
	{
		$this->setGlobalState($key, true, true);
	}

	/**
	 * Loads the global state data from persistent storage.
	 * @see getStatePersister
659
	 * @throws \yii\base\Exception if the state persister is not available
w  
Qiang Xue committed
660 661 662 663
	 */
	public function loadGlobalState()
	{
		$persister = $this->getStatePersister();
Qiang Xue committed
664
		if (($this->_globalState = $persister->load()) === null) {
w  
Qiang Xue committed
665
			$this->_globalState = array();
Qiang Xue committed
666
		}
w  
Qiang Xue committed
667 668 669 670 671 672 673 674 675 676 677
		$this->_stateChanged = false;
		$this->detachEventHandler('onEndRequest', array($this, 'saveGlobalState'));
	}

	/**
	 * Saves the global state data into persistent storage.
	 * @see getStatePersister
	 * @throws CException if the state persister is not available
	 */
	public function saveGlobalState()
	{
Qiang Xue committed
678
		if ($this->_stateChanged) {
w  
Qiang Xue committed
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
			$this->_stateChanged = false;
			$this->detachEventHandler('onEndRequest', array($this, 'saveGlobalState'));
			$this->getStatePersister()->save($this->_globalState);
		}
	}

	/**
	 * Handles uncaught PHP exceptions.
	 *
	 * This method is implemented as a PHP exception handler. It requires
	 * that constant YII_ENABLE_EXCEPTION_HANDLER be defined true.
	 *
	 * This method will first raise an {@link onException} event.
	 * If the exception is not handled by any event handler, it will call
	 * {@link getErrorHandler errorHandler} to process the exception.
	 *
	 * The application will be terminated by this method.
	 *
	 * @param Exception $exception exception that is not caught
	 */
	public function handleException($exception)
	{
		// disable error capturing to avoid recursive errors
		restore_error_handler();
		restore_exception_handler();

		$category = 'exception.' . get_class($exception);
Qiang Xue committed
706
		if ($exception instanceof \yii\web\HttpException) {
w  
Qiang Xue committed
707
			$category .= '.' . $exception->statusCode;
Qiang Xue committed
708
		}
w  
Qiang Xue committed
709 710
		// php <5.2 doesn't support string conversion auto-magically
		$message = $exception->__toString();
Qiang Xue committed
711
		if (isset($_SERVER['REQUEST_URI'])) {
w  
Qiang Xue committed
712
			$message .= ' REQUEST_URI=' . $_SERVER['REQUEST_URI'];
Qiang Xue committed
713
		}
714
		\Yii::error($message, $category);
w  
Qiang Xue committed
715 716 717

		try
		{
718 719 720
			// TODO: do we need separate exception class as it was in 1.1?
			//$event = new CExceptionEvent($this, $exception);
			$event = new Event($this, array('exception' => $exception));
w  
Qiang Xue committed
721
			$this->onException($event);
Qiang Xue committed
722
			if (!$event->handled) {
w  
Qiang Xue committed
723
				// try an error handler
Qiang Xue committed
724
				if (($handler = $this->getErrorHandler()) !== null) {
w  
Qiang Xue committed
725
					$handler->handle($event);
Qiang Xue committed
726
				} else
727
				{
w  
Qiang Xue committed
728
					$this->displayException($exception);
729
				}
w  
Qiang Xue committed
730 731
			}
		}
Qiang Xue committed
732
		catch (Exception $e)
w  
Qiang Xue committed
733 734 735 736 737 738 739 740
		{
			$this->displayException($e);
		}

		try
		{
			$this->end(1);
		}
Qiang Xue committed
741
		catch (Exception $e)
w  
Qiang Xue committed
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
		{
			// use the most primitive way to log error
			$msg = get_class($e) . ': ' . $e->getMessage() . ' (' . $e->getFile() . ':' . $e->getLine() . ")\n";
			$msg .= $e->getTraceAsString() . "\n";
			$msg .= "Previous exception:\n";
			$msg .= get_class($exception) . ': ' . $exception->getMessage() . ' (' . $exception->getFile() . ':' . $exception->getLine() . ")\n";
			$msg .= $exception->getTraceAsString() . "\n";
			$msg .= '$_SERVER=' . var_export($_SERVER, true);
			error_log($msg);
			exit(1);
		}
	}

	/**
	 * Handles PHP execution errors such as warnings, notices.
	 *
	 * This method is implemented as a PHP error handler. It requires
	 * that constant YII_ENABLE_ERROR_HANDLER be defined true.
	 *
	 * This method will first raise an {@link onError} event.
	 * If the error is not handled by any event handler, it will call
	 * {@link getErrorHandler errorHandler} to process the error.
	 *
	 * The application will be terminated by this method.
	 *
	 * @param integer $code the level of the error raised
	 * @param string $message the error message
	 * @param string $file the filename that the error was raised in
	 * @param integer $line the line number the error was raised at
	 */
	public function handleError($code, $message, $file, $line)
	{
Qiang Xue committed
774
		if ($code & error_reporting()) {
w  
Qiang Xue committed
775 776 777 778 779 780 781
			// disable error capturing to avoid recursive errors
			restore_error_handler();
			restore_exception_handler();

			$log = "$message ($file:$line)\nStack trace:\n";
			$trace = debug_backtrace();
			// skip the first 3 stacks as they do not tell the error position
Qiang Xue committed
782
			if (count($trace) > 3) {
w  
Qiang Xue committed
783
				$trace = array_slice($trace, 3);
Qiang Xue committed
784
			}
w  
Qiang Xue committed
785 786
			foreach ($trace as $i => $t)
			{
Qiang Xue committed
787
				if (!isset($t['file'])) {
w  
Qiang Xue committed
788
					$t['file'] = 'unknown';
Qiang Xue committed
789 790
				}
				if (!isset($t['line'])) {
w  
Qiang Xue committed
791
					$t['line'] = 0;
Qiang Xue committed
792 793
				}
				if (!isset($t['function'])) {
w  
Qiang Xue committed
794
					$t['function'] = 'unknown';
Qiang Xue committed
795
				}
w  
Qiang Xue committed
796
				$log .= "#$i  {$t['file']}( {$t['line']}): ";
Qiang Xue committed
797
				if (isset($t['object']) && is_object($t['object'])) {
w  
Qiang Xue committed
798
					$log .= get_class($t['object']) . '->';
Qiang Xue committed
799
				}
w  
Qiang Xue committed
800 801
				$log .= " {$t['function']}()\n";
			}
Qiang Xue committed
802
			if (isset($_SERVER['REQUEST_URI'])) {
w  
Qiang Xue committed
803
				$log .= 'REQUEST_URI=' . $_SERVER['REQUEST_URI'];
Qiang Xue committed
804
			}
805
			\Yii::error($log, 'php');
w  
Qiang Xue committed
806 807 808

			try
			{
809
				\Yii::import('CErrorEvent', true);
w  
Qiang Xue committed
810 811
				$event = new CErrorEvent($this, $code, $message, $file, $line);
				$this->onError($event);
Qiang Xue committed
812
				if (!$event->handled) {
w  
Qiang Xue committed
813
					// try an error handler
Qiang Xue committed
814
					if (($handler = $this->getErrorHandler()) !== null) {
w  
Qiang Xue committed
815
						$handler->handle($event);
Qiang Xue committed
816
					} else
Qiang Xue committed
817
					{
w  
Qiang Xue committed
818
						$this->displayError($code, $message, $file, $line);
Qiang Xue committed
819
					}
w  
Qiang Xue committed
820 821
				}
			}
Qiang Xue committed
822
			catch (Exception $e)
w  
Qiang Xue committed
823 824 825 826 827 828 829 830
			{
				$this->displayException($e);
			}

			try
			{
				$this->end(1);
			}
Qiang Xue committed
831
			catch (Exception $e)
w  
Qiang Xue committed
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
			{
				// use the most primitive way to log error
				$msg = get_class($e) . ': ' . $e->getMessage() . ' (' . $e->getFile() . ':' . $e->getLine() . ")\n";
				$msg .= $e->getTraceAsString() . "\n";
				$msg .= "Previous error:\n";
				$msg .= $log . "\n";
				$msg .= '$_SERVER=' . var_export($_SERVER, true);
				error_log($msg);
				exit(1);
			}
		}
	}

	/**
	 * Raised when an uncaught PHP exception occurs.
	 *
	 * An event handler can set the {@link CExceptionEvent::handled handled}
	 * property of the event parameter to be true to indicate no further error
	 * handling is needed. Otherwise, the {@link getErrorHandler errorHandler}
	 * application component will continue processing the error.
	 *
	 * @param CExceptionEvent $event event parameter
	 */
	public function onException($event)
	{
		$this->raiseEvent('onException', $event);
	}

	/**
	 * Raised when a PHP execution error occurs.
	 *
	 * An event handler can set the {@link CErrorEvent::handled handled}
	 * property of the event parameter to be true to indicate no further error
	 * handling is needed. Otherwise, the {@link getErrorHandler errorHandler}
	 * application component will continue processing the error.
	 *
	 * @param CErrorEvent $event event parameter
	 */
	public function onError($event)
	{
		$this->raiseEvent('onError', $event);
	}

	/**
	 * Displays the captured PHP error.
	 * This method displays the error in HTML when there is
	 * no active error handler.
	 * @param integer $code error code
	 * @param string $message error message
	 * @param string $file error file
	 * @param string $line error line
	 */
	public function displayError($code, $message, $file, $line)
	{
Qiang Xue committed
886
		if (YII_DEBUG) {
w  
Qiang Xue committed
887 888 889 890 891 892
			echo "<h1>PHP Error [$code]</h1>\n";
			echo "<p>$message ($file:$line)</p>\n";
			echo '<pre>';

			$trace = debug_backtrace();
			// skip the first 3 stacks as they do not tell the error position
Qiang Xue committed
893
			if (count($trace) > 3) {
w  
Qiang Xue committed
894
				$trace = array_slice($trace, 3);
Qiang Xue committed
895
			}
w  
Qiang Xue committed
896 897
			foreach ($trace as $i => $t)
			{
Qiang Xue committed
898
				if (!isset($t['file'])) {
w  
Qiang Xue committed
899
					$t['file'] = 'unknown';
Qiang Xue committed
900 901
				}
				if (!isset($t['line'])) {
w  
Qiang Xue committed
902
					$t['line'] = 0;
Qiang Xue committed
903 904
				}
				if (!isset($t['function'])) {
w  
Qiang Xue committed
905
					$t['function'] = 'unknown';
Qiang Xue committed
906
				}
w  
Qiang Xue committed
907
				echo "#$i  {$t['file']}( {$t['line']}): ";
Qiang Xue committed
908
				if (isset($t['object']) && is_object($t['object'])) {
w  
Qiang Xue committed
909
					echo get_class($t['object']) . '->';
Qiang Xue committed
910
				}
w  
Qiang Xue committed
911 912 913 914
				echo " {$t['function']}()\n";
			}

			echo '</pre>';
Qiang Xue committed
915
		} else
w  
Qiang Xue committed
916 917 918 919 920 921 922 923 924 925 926 927 928 929
		{
			echo "<h1>PHP Error [$code]</h1>\n";
			echo "<p>$message</p>\n";
		}
	}

	/**
	 * Displays the uncaught PHP exception.
	 * This method displays the exception in HTML when there is
	 * no active error handler.
	 * @param Exception $exception the uncaught exception
	 */
	public function displayException($exception)
	{
Qiang Xue committed
930
		if (YII_DEBUG) {
w  
Qiang Xue committed
931 932 933
			echo '<h1>' . get_class($exception) . "</h1>\n";
			echo '<p>' . $exception->getMessage() . ' (' . $exception->getFile() . ':' . $exception->getLine() . ')</p>';
			echo '<pre>' . $exception->getTraceAsString() . '</pre>';
Qiang Xue committed
934
		} else
w  
Qiang Xue committed
935 936 937 938 939 940 941 942 943 944 945
		{
			echo '<h1>' . get_class($exception) . "</h1>\n";
			echo '<p>' . $exception->getMessage() . '</p>';
		}
	}

	/**
	 * Initializes the class autoloader and error handlers.
	 */
	protected function initSystemHandlers()
	{
Qiang Xue committed
946
		if (YII_ENABLE_EXCEPTION_HANDLER) {
w  
Qiang Xue committed
947
			set_exception_handler(array($this, 'handleException'));
Qiang Xue committed
948 949
		}
		if (YII_ENABLE_ERROR_HANDLER) {
w  
Qiang Xue committed
950
			set_error_handler(array($this, 'handleError'), error_reporting());
Qiang Xue committed
951
		}
w  
Qiang Xue committed
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
	}

	/**
	 * Registers the core application components.
	 * @see setComponents
	 */
	protected function registerCoreComponents()
	{
		$components = array(
			'coreMessages' => array(
				'class' => 'CPhpMessageSource',
				'language' => 'en_us',
				'basePath' => YII_PATH . DIRECTORY_SEPARATOR . 'messages',
			),
			'db' => array(
				'class' => 'CDbConnection',
			),
			'messages' => array(
				'class' => 'CPhpMessageSource',
			),
972 973 974 975
			// TODO: uncomment when error handler is properly implemented
//			'errorHandler' => array(
//				'class' => 'CErrorHandler',
//			),
w  
Qiang Xue committed
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
			'securityManager' => array(
				'class' => 'CSecurityManager',
			),
			'statePersister' => array(
				'class' => 'CStatePersister',
			),
			'urlManager' => array(
				'class' => 'CUrlManager',
			),
			'request' => array(
				'class' => 'CHttpRequest',
			),
			'format' => array(
				'class' => 'CFormatter',
			),
		);

		$this->setComponents($components);
	}
}