/branches/v1.7.3/Classes/PHPExcel/Writer/Excel2007.php

# · PHP · 517 lines · 211 code · 70 blank · 236 comment · 36 complexity · 1b196270a0e8ccb659dd365939c00b74 MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2010 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_Writer_Excel2007
  23. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /**
  28. * PHPExcel_Writer_Excel2007
  29. *
  30. * @category PHPExcel
  31. * @package PHPExcel_Writer_Excel2007
  32. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  33. */
  34. class PHPExcel_Writer_Excel2007 implements PHPExcel_Writer_IWriter
  35. {
  36. /**
  37. * Pre-calculate formulas
  38. *
  39. * @var boolean
  40. */
  41. private $_preCalculateFormulas = true;
  42. /**
  43. * Office2003 compatibility
  44. *
  45. * @var boolean
  46. */
  47. private $_office2003compatibility = false;
  48. /**
  49. * Private writer parts
  50. *
  51. * @var PHPExcel_Writer_Excel2007_WriterPart[]
  52. */
  53. private $_writerParts;
  54. /**
  55. * Private PHPExcel
  56. *
  57. * @var PHPExcel
  58. */
  59. private $_spreadSheet;
  60. /**
  61. * Private string table
  62. *
  63. * @var string[]
  64. */
  65. private $_stringTable;
  66. /**
  67. * Private unique PHPExcel_Style_Conditional HashTable
  68. *
  69. * @var PHPExcel_HashTable
  70. */
  71. private $_stylesConditionalHashTable;
  72. /**
  73. * Private unique PHPExcel_Style_Fill HashTable
  74. *
  75. * @var PHPExcel_HashTable
  76. */
  77. private $_fillHashTable;
  78. /**
  79. * Private unique PHPExcel_Style_Font HashTable
  80. *
  81. * @var PHPExcel_HashTable
  82. */
  83. private $_fontHashTable;
  84. /**
  85. * Private unique PHPExcel_Style_Borders HashTable
  86. *
  87. * @var PHPExcel_HashTable
  88. */
  89. private $_bordersHashTable ;
  90. /**
  91. * Private unique PHPExcel_Style_NumberFormat HashTable
  92. *
  93. * @var PHPExcel_HashTable
  94. */
  95. private $_numFmtHashTable;
  96. /**
  97. * Private unique PHPExcel_Worksheet_BaseDrawing HashTable
  98. *
  99. * @var PHPExcel_HashTable
  100. */
  101. private $_drawingHashTable;
  102. /**
  103. * Use disk caching where possible?
  104. *
  105. * @var boolean
  106. */
  107. private $_useDiskCaching = false;
  108. /**
  109. * Disk caching directory
  110. *
  111. * @var string
  112. */
  113. private $_diskCachingDirectory;
  114. /**
  115. * Create a new PHPExcel_Writer_Excel2007
  116. *
  117. * @param PHPExcel $pPHPExcel
  118. */
  119. public function __construct(PHPExcel $pPHPExcel = null)
  120. {
  121. // Assign PHPExcel
  122. $this->setPHPExcel($pPHPExcel);
  123. // Set up disk caching location
  124. $this->_diskCachingDirectory = './';
  125. // Initialise writer parts
  126. $this->_writerParts['stringtable'] = new PHPExcel_Writer_Excel2007_StringTable();
  127. $this->_writerParts['contenttypes'] = new PHPExcel_Writer_Excel2007_ContentTypes();
  128. $this->_writerParts['docprops'] = new PHPExcel_Writer_Excel2007_DocProps();
  129. $this->_writerParts['rels'] = new PHPExcel_Writer_Excel2007_Rels();
  130. $this->_writerParts['theme'] = new PHPExcel_Writer_Excel2007_Theme();
  131. $this->_writerParts['style'] = new PHPExcel_Writer_Excel2007_Style();
  132. $this->_writerParts['workbook'] = new PHPExcel_Writer_Excel2007_Workbook();
  133. $this->_writerParts['worksheet'] = new PHPExcel_Writer_Excel2007_Worksheet();
  134. $this->_writerParts['drawing'] = new PHPExcel_Writer_Excel2007_Drawing();
  135. $this->_writerParts['comments'] = new PHPExcel_Writer_Excel2007_Comments();
  136. // Assign parent IWriter
  137. foreach ($this->_writerParts as $writer) {
  138. $writer->setParentWriter($this);
  139. }
  140. // Set HashTable variables
  141. $this->_stringTable = array();
  142. $this->_stylesConditionalHashTable = new PHPExcel_HashTable();
  143. $this->_fillHashTable = new PHPExcel_HashTable();
  144. $this->_fontHashTable = new PHPExcel_HashTable();
  145. $this->_bordersHashTable = new PHPExcel_HashTable();
  146. $this->_numFmtHashTable = new PHPExcel_HashTable();
  147. $this->_drawingHashTable = new PHPExcel_HashTable();
  148. }
  149. /**
  150. * Get writer part
  151. *
  152. * @param string $pPartName Writer part name
  153. * @return PHPExcel_Writer_Excel2007_WriterPart
  154. */
  155. function getWriterPart($pPartName = '') {
  156. if ($pPartName != '' && isset($this->_writerParts[strtolower($pPartName)])) {
  157. return $this->_writerParts[strtolower($pPartName)];
  158. } else {
  159. return null;
  160. }
  161. }
  162. /**
  163. * Save PHPExcel to file
  164. *
  165. * @param string $pFileName
  166. * @throws Exception
  167. */
  168. public function save($pFilename = null)
  169. {
  170. if (!is_null($this->_spreadSheet)) {
  171. // garbage collect
  172. $this->_spreadSheet->garbageCollect();
  173. // If $pFilename is php://output or php://stdout, make it a temporary file...
  174. $originalFilename = $pFilename;
  175. if (strtolower($pFilename) == 'php://output' || strtolower($pFilename) == 'php://stdout') {
  176. $pFilename = @tempnam('./', 'phpxltmp');
  177. if ($pFilename == '') {
  178. $pFilename = $originalFilename;
  179. }
  180. }
  181. $saveDateReturnType = PHPExcel_Calculation_Functions::getReturnDateType();
  182. PHPExcel_Calculation_Functions::setReturnDateType(PHPExcel_Calculation_Functions::RETURNDATE_EXCEL);
  183. // Create string lookup table
  184. $this->_stringTable = array();
  185. for ($i = 0; $i < $this->_spreadSheet->getSheetCount(); ++$i) {
  186. $this->_stringTable = $this->getWriterPart('StringTable')->createStringTable($this->_spreadSheet->getSheet($i), $this->_stringTable);
  187. }
  188. // Create styles dictionaries
  189. $this->_stylesConditionalHashTable->addFromSource( $this->getWriterPart('Style')->allConditionalStyles($this->_spreadSheet) );
  190. $this->_fillHashTable->addFromSource( $this->getWriterPart('Style')->allFills($this->_spreadSheet) );
  191. $this->_fontHashTable->addFromSource( $this->getWriterPart('Style')->allFonts($this->_spreadSheet) );
  192. $this->_bordersHashTable->addFromSource( $this->getWriterPart('Style')->allBorders($this->_spreadSheet) );
  193. $this->_numFmtHashTable->addFromSource( $this->getWriterPart('Style')->allNumberFormats($this->_spreadSheet) );
  194. // Create drawing dictionary
  195. $this->_drawingHashTable->addFromSource( $this->getWriterPart('Drawing')->allDrawings($this->_spreadSheet) );
  196. // Create new ZIP file and open it for writing
  197. $objZip = new ZipArchive();
  198. // Try opening the ZIP file
  199. if ($objZip->open($pFilename, ZIPARCHIVE::OVERWRITE) !== true) {
  200. if ($objZip->open($pFilename, ZIPARCHIVE::CREATE) !== true) {
  201. throw new Exception("Could not open " . $pFilename . " for writing.");
  202. }
  203. }
  204. // Add [Content_Types].xml to ZIP file
  205. $objZip->addFromString('[Content_Types].xml', $this->getWriterPart('ContentTypes')->writeContentTypes($this->_spreadSheet));
  206. // Add relationships to ZIP file
  207. $objZip->addFromString('_rels/.rels', $this->getWriterPart('Rels')->writeRelationships($this->_spreadSheet));
  208. $objZip->addFromString('xl/_rels/workbook.xml.rels', $this->getWriterPart('Rels')->writeWorkbookRelationships($this->_spreadSheet));
  209. // Add document properties to ZIP file
  210. $objZip->addFromString('docProps/app.xml', $this->getWriterPart('DocProps')->writeDocPropsApp($this->_spreadSheet));
  211. $objZip->addFromString('docProps/core.xml', $this->getWriterPart('DocProps')->writeDocPropsCore($this->_spreadSheet));
  212. // Add theme to ZIP file
  213. $objZip->addFromString('xl/theme/theme1.xml', $this->getWriterPart('Theme')->writeTheme($this->_spreadSheet));
  214. // Add string table to ZIP file
  215. $objZip->addFromString('xl/sharedStrings.xml', $this->getWriterPart('StringTable')->writeStringTable($this->_stringTable));
  216. // Add styles to ZIP file
  217. $objZip->addFromString('xl/styles.xml', $this->getWriterPart('Style')->writeStyles($this->_spreadSheet));
  218. // Add workbook to ZIP file
  219. $objZip->addFromString('xl/workbook.xml', $this->getWriterPart('Workbook')->writeWorkbook($this->_spreadSheet));
  220. // Add worksheets
  221. for ($i = 0; $i < $this->_spreadSheet->getSheetCount(); ++$i) {
  222. $objZip->addFromString('xl/worksheets/sheet' . ($i + 1) . '.xml', $this->getWriterPart('Worksheet')->writeWorksheet($this->_spreadSheet->getSheet($i), $this->_stringTable));
  223. }
  224. // Add worksheet relationships (drawings, ...)
  225. for ($i = 0; $i < $this->_spreadSheet->getSheetCount(); ++$i) {
  226. // Add relationships
  227. $objZip->addFromString('xl/worksheets/_rels/sheet' . ($i + 1) . '.xml.rels', $this->getWriterPart('Rels')->writeWorksheetRelationships($this->_spreadSheet->getSheet($i), ($i + 1)));
  228. // Add drawing relationship parts
  229. if ($this->_spreadSheet->getSheet($i)->getDrawingCollection()->count() > 0) {
  230. // Drawing relationships
  231. $objZip->addFromString('xl/drawings/_rels/drawing' . ($i + 1) . '.xml.rels', $this->getWriterPart('Rels')->writeDrawingRelationships($this->_spreadSheet->getSheet($i)));
  232. // Drawings
  233. $objZip->addFromString('xl/drawings/drawing' . ($i + 1) . '.xml', $this->getWriterPart('Drawing')->writeDrawings($this->_spreadSheet->getSheet($i)));
  234. }
  235. // Add comment relationship parts
  236. if (count($this->_spreadSheet->getSheet($i)->getComments()) > 0) {
  237. // VML Comments
  238. $objZip->addFromString('xl/drawings/vmlDrawing' . ($i + 1) . '.vml', $this->getWriterPart('Comments')->writeVMLComments($this->_spreadSheet->getSheet($i)));
  239. // Comments
  240. $objZip->addFromString('xl/comments' . ($i + 1) . '.xml', $this->getWriterPart('Comments')->writeComments($this->_spreadSheet->getSheet($i)));
  241. }
  242. // Add header/footer relationship parts
  243. if (count($this->_spreadSheet->getSheet($i)->getHeaderFooter()->getImages()) > 0) {
  244. // VML Drawings
  245. $objZip->addFromString('xl/drawings/vmlDrawingHF' . ($i + 1) . '.vml', $this->getWriterPart('Drawing')->writeVMLHeaderFooterImages($this->_spreadSheet->getSheet($i)));
  246. // VML Drawing relationships
  247. $objZip->addFromString('xl/drawings/_rels/vmlDrawingHF' . ($i + 1) . '.vml.rels', $this->getWriterPart('Rels')->writeHeaderFooterDrawingRelationships($this->_spreadSheet->getSheet($i)));
  248. // Media
  249. foreach ($this->_spreadSheet->getSheet($i)->getHeaderFooter()->getImages() as $image) {
  250. $objZip->addFromString('xl/media/' . $image->getIndexedFilename(), file_get_contents($image->getPath()));
  251. }
  252. }
  253. }
  254. // Add media
  255. for ($i = 0; $i < $this->getDrawingHashTable()->count(); ++$i) {
  256. if ($this->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_Drawing) {
  257. $imageContents = null;
  258. $imagePath = $this->getDrawingHashTable()->getByIndex($i)->getPath();
  259. if (strpos($imagePath, 'zip://') !== false) {
  260. $imagePath = substr($imagePath, 6);
  261. $imagePathSplitted = explode('#', $imagePath);
  262. $imageZip = new ZipArchive();
  263. $imageZip->open($imagePathSplitted[0]);
  264. $imageContents = $imageZip->getFromName($imagePathSplitted[1]);
  265. $imageZip->close();
  266. unset($imageZip);
  267. } else {
  268. $imageContents = file_get_contents($imagePath);
  269. }
  270. $objZip->addFromString('xl/media/' . str_replace(' ', '_', $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()), $imageContents);
  271. } else if ($this->getDrawingHashTable()->getByIndex($i) instanceof PHPExcel_Worksheet_MemoryDrawing) {
  272. ob_start();
  273. call_user_func(
  274. $this->getDrawingHashTable()->getByIndex($i)->getRenderingFunction(),
  275. $this->getDrawingHashTable()->getByIndex($i)->getImageResource()
  276. );
  277. $imageContents = ob_get_contents();
  278. ob_end_clean();
  279. $objZip->addFromString('xl/media/' . str_replace(' ', '_', $this->getDrawingHashTable()->getByIndex($i)->getIndexedFilename()), $imageContents);
  280. }
  281. }
  282. PHPExcel_Calculation_Functions::setReturnDateType($saveDateReturnType);
  283. // Close file
  284. if ($objZip->close() === false) {
  285. throw new Exception("Could not close zip file $pFilename.");
  286. }
  287. // If a temporary file was used, copy it to the correct file stream
  288. if ($originalFilename != $pFilename) {
  289. if (copy($pFilename, $originalFilename) === false) {
  290. throw new Exception("Could not copy temporary zip file $pFilename to $originalFilename.");
  291. }
  292. @unlink($pFilename);
  293. }
  294. } else {
  295. throw new Exception("PHPExcel object unassigned.");
  296. }
  297. }
  298. /**
  299. * Get PHPExcel object
  300. *
  301. * @return PHPExcel
  302. * @throws Exception
  303. */
  304. public function getPHPExcel() {
  305. if (!is_null($this->_spreadSheet)) {
  306. return $this->_spreadSheet;
  307. } else {
  308. throw new Exception("No PHPExcel assigned.");
  309. }
  310. }
  311. /**
  312. * Set PHPExcel object
  313. *
  314. * @param PHPExcel $pPHPExcel PHPExcel object
  315. * @throws Exception
  316. * @return PHPExcel_Writer_Excel2007
  317. */
  318. public function setPHPExcel(PHPExcel $pPHPExcel = null) {
  319. $this->_spreadSheet = $pPHPExcel;
  320. return $this;
  321. }
  322. /**
  323. * Get string table
  324. *
  325. * @return string[]
  326. */
  327. public function getStringTable() {
  328. return $this->_stringTable;
  329. }
  330. /**
  331. * Get PHPExcel_Style_Conditional HashTable
  332. *
  333. * @return PHPExcel_HashTable
  334. */
  335. public function getStylesConditionalHashTable() {
  336. return $this->_stylesConditionalHashTable;
  337. }
  338. /**
  339. * Get PHPExcel_Style_Fill HashTable
  340. *
  341. * @return PHPExcel_HashTable
  342. */
  343. public function getFillHashTable() {
  344. return $this->_fillHashTable;
  345. }
  346. /**
  347. * Get PHPExcel_Style_Font HashTable
  348. *
  349. * @return PHPExcel_HashTable
  350. */
  351. public function getFontHashTable() {
  352. return $this->_fontHashTable;
  353. }
  354. /**
  355. * Get PHPExcel_Style_Borders HashTable
  356. *
  357. * @return PHPExcel_HashTable
  358. */
  359. public function getBordersHashTable() {
  360. return $this->_bordersHashTable;
  361. }
  362. /**
  363. * Get PHPExcel_Style_NumberFormat HashTable
  364. *
  365. * @return PHPExcel_HashTable
  366. */
  367. public function getNumFmtHashTable() {
  368. return $this->_numFmtHashTable;
  369. }
  370. /**
  371. * Get PHPExcel_Worksheet_BaseDrawing HashTable
  372. *
  373. * @return PHPExcel_HashTable
  374. */
  375. public function getDrawingHashTable() {
  376. return $this->_drawingHashTable;
  377. }
  378. /**
  379. * Get Pre-Calculate Formulas
  380. *
  381. * @return boolean
  382. */
  383. public function getPreCalculateFormulas() {
  384. return $this->_preCalculateFormulas;
  385. }
  386. /**
  387. * Set Pre-Calculate Formulas
  388. *
  389. * @param boolean $pValue Pre-Calculate Formulas?
  390. */
  391. public function setPreCalculateFormulas($pValue = true) {
  392. $this->_preCalculateFormulas = $pValue;
  393. }
  394. /**
  395. * Get Office2003 compatibility
  396. *
  397. * @return boolean
  398. */
  399. public function getOffice2003Compatibility() {
  400. return $this->_office2003compatibility;
  401. }
  402. /**
  403. * Set Pre-Calculate Formulas
  404. *
  405. * @param boolean $pValue Office2003 compatibility?
  406. * @return PHPExcel_Writer_Excel2007
  407. */
  408. public function setOffice2003Compatibility($pValue = false) {
  409. $this->_office2003compatibility = $pValue;
  410. return $this;
  411. }
  412. /**
  413. * Get use disk caching where possible?
  414. *
  415. * @return boolean
  416. */
  417. public function getUseDiskCaching() {
  418. return $this->_useDiskCaching;
  419. }
  420. /**
  421. * Set use disk caching where possible?
  422. *
  423. * @param boolean $pValue
  424. * @param string $pDirectory Disk caching directory
  425. * @throws Exception Exception when directory does not exist
  426. * @return PHPExcel_Writer_Excel2007
  427. */
  428. public function setUseDiskCaching($pValue = false, $pDirectory = null) {
  429. $this->_useDiskCaching = $pValue;
  430. if (!is_null($pDirectory)) {
  431. if (is_dir($pDirectory)) {
  432. $this->_diskCachingDirectory = $pDirectory;
  433. } else {
  434. throw new Exception("Directory does not exist: $pDirectory");
  435. }
  436. }
  437. return $this;
  438. }
  439. /**
  440. * Get disk caching directory
  441. *
  442. * @return string
  443. */
  444. public function getDiskCachingDirectory() {
  445. return $this->_diskCachingDirectory;
  446. }
  447. }