| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * PHPExcel | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-12-31 18:36:33 +00:00
										 |  |  |  * Copyright (c) 2006 - 2014 PHPExcel | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with this library; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category   PHPExcel | 
					
						
							|  |  |  |  * @package    PHPExcel_Calculation | 
					
						
							| 
									
										
										
										
											2013-12-31 18:36:33 +00:00
										 |  |  |  * @copyright  Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel) | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  |  * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL | 
					
						
							|  |  |  |  * @version	##VERSION##, ##DATE##
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2013-04-27 22:36:39 +00:00
										 |  |  |  * PHPExcel_CalcEngine_Logger | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category	PHPExcel | 
					
						
							|  |  |  |  * @package		PHPExcel_Calculation | 
					
						
							| 
									
										
										
										
											2013-12-31 18:36:33 +00:00
										 |  |  |  * @copyright	Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel) | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | class PHPExcel_CalcEngine_Logger { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Flag to determine whether a debug log should be generated by the calculation engine | 
					
						
							|  |  |  | 	 *		If true, then a debug log will be generated | 
					
						
							|  |  |  | 	 *		If false, then a debug log will not be generated | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var boolean | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	private $_writeDebugLog = FALSE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Flag to determine whether a debug log should be echoed by the calculation engine | 
					
						
							|  |  |  | 	 *		If true, then a debug log will be echoed | 
					
						
							|  |  |  | 	 *		If false, then a debug log will not be echoed | 
					
						
							|  |  |  | 	 * A debug log can only be echoed if it is generated | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var boolean | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	private $_echoDebugLog = FALSE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * The debug log generated by the calculation engine | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var string[] | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	private $_debugLog = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-16 10:59:19 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * The calculation engine cell reference stack | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var PHPExcel_CalcEngine_CyclicReferenceStack | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	private $_cellStack; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Instantiate a Calculation engine logger | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param  PHPExcel_CalcEngine_CyclicReferenceStack $stack | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-16 10:59:19 +00:00
										 |  |  | 	public function __construct(PHPExcel_CalcEngine_CyclicReferenceStack $stack) { | 
					
						
							|  |  |  | 		$this->_cellStack = $stack; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Enable/Disable Calculation engine logging | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param  boolean $pValue | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 	public function setWriteDebugLog($pValue = FALSE) { | 
					
						
							|  |  |  | 		$this->_writeDebugLog = $pValue; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Return whether calculation engine logging is enabled or disabled | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return  boolean | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 	public function getWriteDebugLog() { | 
					
						
							|  |  |  | 		return $this->_writeDebugLog; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Enable/Disable echoing of debug log information | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param  boolean $pValue | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 	public function setEchoDebugLog($pValue = FALSE) { | 
					
						
							|  |  |  | 		$this->_echoDebugLog = $pValue; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Return whether echoing of debug log information is enabled or disabled | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return  boolean | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 	public function getEchoDebugLog() { | 
					
						
							|  |  |  | 		return $this->_echoDebugLog; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Write an entry to the calculation engine debug log | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-16 10:59:19 +00:00
										 |  |  | 	public function writeDebugLog() { | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 		//	Only write the debug log if logging is enabled
 | 
					
						
							|  |  |  | 		if ($this->_writeDebugLog) { | 
					
						
							| 
									
										
										
										
											2013-02-16 10:59:19 +00:00
										 |  |  | 			$message = implode(func_get_args()); | 
					
						
							|  |  |  | 			$cellReference = implode(' -> ', $this->_cellStack->showStack()); | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 			if ($this->_echoDebugLog) { | 
					
						
							| 
									
										
										
										
											2013-02-16 10:59:19 +00:00
										 |  |  | 				echo $cellReference,  | 
					
						
							|  |  |  | 					($this->_cellStack->count() > 0 ? ' => ' : ''),  | 
					
						
							|  |  |  | 					$message,  | 
					
						
							|  |  |  | 					PHP_EOL; | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-02-16 10:59:19 +00:00
										 |  |  | 			$this->_debugLog[] = $cellReference .  | 
					
						
							|  |  |  | 				($this->_cellStack->count() > 0 ? ' => ' : '') .  | 
					
						
							|  |  |  | 				$message; | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}	//	function _writeDebug()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Clear the calculation engine debug log | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 	public function clearLog() { | 
					
						
							|  |  |  | 		$this->_debugLog = array(); | 
					
						
							|  |  |  | 	}	//	function flushLogger()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-27 15:02:07 +00:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Return the calculation engine debug log | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return  string[] | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 	public function getLog() { | 
					
						
							|  |  |  | 		return $this->_debugLog; | 
					
						
							|  |  |  | 	}	//	function flushLogger()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-16 10:59:19 +00:00
										 |  |  | }	//	class PHPExcel_CalcEngine_Logger
 | 
					
						
							| 
									
										
										
										
											2013-02-15 15:42:06 +00:00
										 |  |  | 
 |