| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 | <?php/** * PHPExcel * * Copyright (c) 2006 - 2011 PHPExcel * * 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_Writer_Excel2007 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel) * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL * @version    1.7.6, 2011-02-27 *//** * PHPExcel_Writer_Excel2007 * * @category   PHPExcel * @package    PHPExcel_Writer_Excel2007 * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel) */class PHPExcel_Writer_Excel2007 implements PHPExcel_Writer_IWriter{	/**	 * Pre-calculate formulas	 *	 * @var boolean	 */	private $_preCalculateFormulas = true;	/**	 * Office2003 compatibility	 *	 * @var boolean	 */	private $_office2003compatibility = false;	/**	 * Private writer parts	 *	 * @var PHPExcel_Writer_Excel2007_WriterPart[]	 */	private $_writerParts	= array();	/**	 * Private PHPExcel	 *	 * @var PHPExcel	 */	private $_spreadSheet;	/**	 * Private string table	 *	 * @var string[]	 */	private $_stringTable	= array();	/**	 * Private unique PHPExcel_Style_Conditional HashTable	 *	 * @var PHPExcel_HashTable	 */	private $_stylesConditionalHashTable;	/**	 * Private unique PHPExcel_Style_Fill HashTable	 *	 * @var PHPExcel_HashTable	 */	private $_fillHashTable;	/**	 * Private unique PHPExcel_Style_Font HashTable	 *	 * @var PHPExcel_HashTable	 */	private $_fontHashTable;	/**	 * Private unique PHPExcel_Style_Borders HashTable	 *	 * @var PHPExcel_HashTable	 */	private $_bordersHashTable ;	/**	 * Private unique PHPExcel_Style_NumberFormat HashTable	 *	 * @var PHPExcel_HashTable	 */	private $_numFmtHashTable;	/**	 * Private unique PHPExcel_Worksheet_BaseDrawing HashTable	 *	 * @var PHPExcel_HashTable	 */	private $_drawingHashTable;	/**	 * Use disk caching where possible?	 *	 * @var boolean	 */	private $_useDiskCaching = false;	/**	 * Disk caching directory	 *	 * @var string	 */	private $_diskCachingDirectory	= './';    /**     * Create a new PHPExcel_Writer_Excel2007     *	 * @param 	PHPExcel	$pPHPExcel     */    public function __construct(PHPExcel $pPHPExcel = null)    {    	// Assign PHPExcel		$this->setPHPExcel($pPHPExcel);    	$writerPartsArray = array(	'stringtable'	=> 'PHPExcel_Writer_Excel2007_StringTable',									'contenttypes'	=> 'PHPExcel_Writer_Excel2007_ContentTypes',									'docprops' 		=> 'PHPExcel_Writer_Excel2007_DocProps',									'rels'			=> 'PHPExcel_Writer_Excel2007_Rels',									'theme' 		=> 'PHPExcel_Writer_Excel2007_Theme',									'style' 		=> 'PHPExcel_Writer_Excel2007_Style',									'workbook' 		=> 'PHPExcel_Writer_Excel2007_Workbook',									'worksheet' 	=> 'PHPExcel_Writer_Excel2007_Worksheet',									'drawing' 		=> 'PHPExcel_Writer_Excel2007_Drawing',									'comments' 		=> 'PHPExcel_Writer_Excel2007_Comments'								 );    	//	Initialise writer parts		//		and Assign their parent IWriters		foreach ($writerPartsArray as $writer => $class) {			$this->_writerParts[$writer] = new $class($this);		}    	$hashTablesArray = array( '_stylesConditionalHashTable',	'_fillHashTable',		'_fontHashTable',								  '_bordersHashTable',				'_numFmtHashTable',		'_drawingHashTable'							    );		// Set HashTable variables		foreach ($hashTablesArray as $tableName) {			$this->$tableName 	= new PHPExcel_HashTable();		}    }	/**	 * Get writer part	 *	 * @param 	string 	$pPartName		Writer part name	 * @return 	PHPExcel_Writer_Excel2007_WriterPart	 */	public function getWriterPart($pPartName = '') {		if ($pPartName != '' && isset($this->_writerParts[strtolower($pPartName)])) {			return $this->_writerParts[strtolower($pPartName)];		} else {			return null;		}	}	/**	 * Save PHPExcel to file	 *	 * @param 	string 		$pFileName	 * @throws 	Exception	 */	public function save($pFilename = null)	{		if ($this->_spreadSheet !== NULL) {			// garbage collect			$this->_spreadSheet->garbageCollect();			// If $pFilename is php://output or php://stdout, make it a temporary file...			$originalFilename = $pFilename;			if (strtolower($pFilename) == 'php://output' || strtolower($pFilename) == 'php://stdout') {				$pFilename = @tempnam('./', 'phpxltmp');				if ($pFilename == '') {					$pFilename = $originalFilename;				}			}			$saveDebugLog = PHPExcel_Calculation::getInstance()->writeDebugLog;			PHPExcel_Calculation::getInstance()->writeDebugLog = false;			$saveDateReturnType = PHPExcel_Calculation_Functions::getReturnDateType();			PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL);			// Create string lookup table			$this->_stringTable = array();			for ($i = 0; $i < $this->_spreadSheet->getSheetCount(); ++$i) {				$this->_stringTable = $this->getWriterPart('StringTable')->createStringTable($this->_spreadSheet->getSheet($i), $this->_stringTable);			}			// Create styles dictionaries			$this->_stylesConditionalHashTable->addFromSource( 	$this->getWriterPart('Style')->allConditionalStyles($this->_spreadSheet) 			);			$this->_fillHashTable->addFromSource( 				$this->getWriterPart('Style')->allFills($this->_spreadSheet) 			);			$this->_fontHashTable->addFromSource( 				$this->getWriterPart('Style')->allFonts($this->_spreadSheet) 			);			$this->_bordersHashTable->addFromSource( 			$this->getWriterPart('Style')->allBorders($this->_spreadSheet) 			);			$this->_numFmtHashTable->addFromSource( 			$this->getWriterPart('Style')->allNumberFormats($this->_spreadSheet) 	);			// Create drawing dictionary			$this->_drawingHashTable->addFromSource( 			$this->getWriterPart('Drawing')->allDrawings($this->_spreadSheet) 		);			// Create new ZIP file and open it for writing			$zipClass = PHPExcel_Settings::getZipClass();			$objZip = new $zipClass();			if (file_exists($pFilename)) {				unlink($pFilename);			}			// Try opening the ZIP file			if ($objZip->open($pFilename, ZIPARCHIVE::OVERWRITE) !== true) {				if ($objZip->open($pFilename, ZIPARCHIVE::CREATE) !== true) {					throw new Exception("Could not open " . $pFilename . " for writing.");				}			}			// Add [Content_Types].xml to ZIP file			$objZip->addFromString('[Content_Types].xml', 			$this->getWriterPart('ContentTypes')->writeContentTypes($this->_spreadSheet));			// Add relationships to ZIP file			$objZip->addFromString('_rels/.rels', 					$this->getWriterPart('Rels')->writeRelationships($this->_spreadSheet));			$objZip->addFromString('xl/_rels/workbook.xml.rels', 	$this->getWriterPart('Rels')->writeWorkbookRelationships($this->_spreadSheet));			// Add document properties to ZIP file			$objZip->addFromString('docProps/app.xml', 				$this->getWriterPart('DocProps')->writeDocPropsApp($this->_spreadSheet));			$objZip->addFromString('docProps/core.xml', 			$this->getWriterPart('DocProps')->writeDocPropsCore($this->_spreadSheet));			$customPropertiesPart = $this->getWriterPart('DocProps')->writeDocPropsCustom($this->_spreadSheet);			if ($customPropertiesPart !== NULL) {				$objZip->addFromString('docProps/custom.xml', 		$customPropertiesPart);			}			// Add theme to ZIP file			$objZip->addFromString('xl/theme/theme1.xml', 			$this->getWriterPart('Theme')->writeTheme($this->_spreadSheet));			// Add string table to ZIP file			$objZip->addFromString('xl/sharedStrings.xml', 			$this->getWriterPart('StringTable')->writeStringTable($this->_stringTable));			// Add styles to ZIP file			$objZip->addFromString('xl/styles.xml', 				$this->getWriterPart('Style')->writeStyles($this->_spreadSheet));			// Add workbook to ZIP file			$objZip->addFromString('xl/workbook.xml', 				$this->getWriterPart('Workbook')->writeWorkbook($this->_spreadSheet));			// Add worksheets			for ($i = 0; $i < $this->_spreadSheet->getSheetCount(); ++$i) {				$objZip->addFromString('xl/worksheets/sheet' . ($i + 1) . '.xml', $this->getWriterPart('Worksheet')->writeWorksheet($this->_spreadSheet->getSheet($i), $this->_stringTable));			}			// Add worksheet relationships (drawings, ...)			for ($i = 0; $i < $this->_spreadSheet->getSheetCount(); ++$i) {				// Add relationships				$objZip->addFromString('xl/worksheets/_rels/sheet' . ($i + 1) . '.xml.rels', 	$this->getWriterPart('Rels')->writeWorksheetRelationships($this->_spreadSheet->getSheet($i), ($i + 1)));				// Add drawing relationship parts				if ($this->_spreadSheet->getSheet($i)->getDrawingCollection()->count() > 0) {					// Drawing relationships					$objZip->addFromString('xl/drawings/_rels/drawing' . ($i + 1) . '.xml.rels', $this->getWriterPart('Rels')->writeDrawingRelationships($this->_spreadSheet->getSheet($i)));					// Drawings					$objZip->addFromString('xl/drawings/drawing' . ($i + 1) . '.xml', $this->getWriterPart('Drawing')->writeDrawings($this->_spreadSheet->getSheet($i)));				}				// Add comment relationship parts				if (count($this->_spreadSheet->getSheet($i)->getComments()) > 0) {					// VML Comments					$objZip->addFromString('xl/drawings/vmlDrawing' . ($i + 1) . '.vml', $this->getWriterPart('Comments')->writeVMLComments($this->_spreadSheet->getSheet($i)));					// Comments					$objZip->addFromString('xl/comments' . ($i + 1) . '.xml', $this->getWriterPart('Comments')->writeComments($this->_spreadSheet->getSheet($i)));				}				// Add header/footer relationship parts				if (count($this->_spreadSheet->getSheet($i)->getHeaderFooter()->getImages()) > 0) {					// VML Drawings					$objZip->addFromString('xl/drawings/vmlDrawingHF' . ($i + 1) . '.vml', $this->getWriterPart('Drawing')->writeVMLHeaderFooterImages($this->_spreadSheet->getSheet($i)));					// VML Drawing relationships					$objZip->addFromString('xl/drawings/_rels/vmlDrawingHF' . ($i + 1) . '.vml.rels', $this->getWriterPart('Rels')->writeHeaderFooterDrawingRelationships($this->_spreadSheet->getSheet($i)));					// Media					foreach ($this->_spreadSheet->getSheet($i)->getHeaderFooter()->getImages() as $image) {						$objZip->addFromString('xl/media/' . $image->getIndexedFilename(), file_get_contents($image->getPath()));					}				}			}			// Add media			for ($i = 0; $i < $this->getDrawingHashTable()->count(); ++$i) {				if ($this->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_Drawing) {					$imageContents = null;					$imagePath = $this->getDrawingHashTable()->getByIndex($i)->getPath();					if (strpos($imagePath, 'zip://') !== false) {						$imagePath = substr($imagePath, 6);						$imagePathSplitted = explode('#', $imagePath);						$imageZip = new ZipArchive();						$imageZip->open($imagePathSplitted[0]);						$imageContents = $imageZip->getFromName($imagePathSplitted[1]);						$imageZip->close();						unset($imageZip);					} else {						$imageContents = file_get_contents($imagePath);					}					$objZip->addFromString('xl/media/' . str_replace(' ', '_', $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()), $imageContents);				} else if ($this->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_MemoryDrawing) {					ob_start();					call_user_func(						$this->getDrawingHashTable()->getByIndex($i)->getRenderingFunction(),						$this->getDrawingHashTable()->getByIndex($i)->getImageResource()					);					$imageContents = ob_get_contents();					ob_end_clean();					$objZip->addFromString('xl/media/' . str_replace(' ', '_', $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()), $imageContents);				}			}			PHPExcel_Calculation_Functions::setReturnDateType($saveDateReturnType);			PHPExcel_Calculation::getInstance()->writeDebugLog = $saveDebugLog;			// Close file			if ($objZip->close() === false) {				throw new Exception("Could not close zip file $pFilename.");			}			// If a temporary file was used, copy it to the correct file stream			if ($originalFilename != $pFilename) {				if (copy($pFilename, $originalFilename) === false) {					throw new Exception("Could not copy temporary zip file $pFilename to $originalFilename.");				}				@unlink($pFilename);			}		} else {			throw new Exception("PHPExcel object unassigned.");		}	}	/**	 * Get PHPExcel object	 *	 * @return PHPExcel	 * @throws Exception	 */	public function getPHPExcel() {		if ($this->_spreadSheet !== null) {			return $this->_spreadSheet;		} else {			throw new Exception("No PHPExcel assigned.");		}	}	/**	 * Set PHPExcel object	 *	 * @param 	PHPExcel 	$pPHPExcel	PHPExcel object	 * @throws	Exception	 * @return PHPExcel_Writer_Excel2007	 */	public function setPHPExcel(PHPExcel $pPHPExcel = null) {		$this->_spreadSheet = $pPHPExcel;		return $this;	}    /**     * Get string table     *     * @return string[]     */    public function getStringTable() {    	return $this->_stringTable;    }    /**     * Get PHPExcel_Style_Conditional HashTable     *     * @return PHPExcel_HashTable     */    public function getStylesConditionalHashTable() {    	return $this->_stylesConditionalHashTable;    }    /**     * Get PHPExcel_Style_Fill HashTable     *     * @return PHPExcel_HashTable     */    public function getFillHashTable() {    	return $this->_fillHashTable;    }    /**     * Get PHPExcel_Style_Font HashTable     *     * @return PHPExcel_HashTable     */    public function getFontHashTable() {    	return $this->_fontHashTable;    }    /**     * Get PHPExcel_Style_Borders HashTable     *     * @return PHPExcel_HashTable     */    public function getBordersHashTable() {    	return $this->_bordersHashTable;    }    /**     * Get PHPExcel_Style_NumberFormat HashTable     *     * @return PHPExcel_HashTable     */    public function getNumFmtHashTable() {    	return $this->_numFmtHashTable;    }    /**     * Get PHPExcel_Worksheet_BaseDrawing HashTable     *     * @return PHPExcel_HashTable     */    public function getDrawingHashTable() {    	return $this->_drawingHashTable;    }    /**     * Get Pre-Calculate Formulas     *     * @return boolean     */    public function getPreCalculateFormulas() {    	return $this->_preCalculateFormulas;    }    /**     * Set Pre-Calculate Formulas     *     * @param boolean $pValue	Pre-Calculate Formulas?     */    public function setPreCalculateFormulas($pValue = true) {    	$this->_preCalculateFormulas = $pValue;    }    /**     * Get Office2003 compatibility     *     * @return boolean     */    public function getOffice2003Compatibility() {    	return $this->_office2003compatibility;    }    /**     * Set Pre-Calculate Formulas     *     * @param boolean $pValue	Office2003 compatibility?     * @return PHPExcel_Writer_Excel2007     */    public function setOffice2003Compatibility($pValue = false) {    	$this->_office2003compatibility = $pValue;    	return $this;    }	/**	 * Get use disk caching where possible?	 *	 * @return boolean	 */	public function getUseDiskCaching() {		return $this->_useDiskCaching;	}	/**	 * Set use disk caching where possible?	 *	 * @param 	boolean 	$pValue	 * @param	string		$pDirectory		Disk caching directory	 * @throws	Exception	Exception when directory does not exist	 * @return PHPExcel_Writer_Excel2007	 */	public function setUseDiskCaching($pValue = false, $pDirectory = null) {		$this->_useDiskCaching = $pValue;		if ($pDirectory !== NULL) {    		if (is_dir($pDirectory)) {    			$this->_diskCachingDirectory = $pDirectory;    		} else {    			throw new Exception("Directory does not exist: $pDirectory");    		}		}		return $this;	}	/**	 * Get disk caching directory	 *	 * @return string	 */	public function getDiskCachingDirectory() {		return $this->_diskCachingDirectory;	}}
 |