/branches/v1.3.0/Build/build.php

# · PHP · 316 lines · 162 code · 40 blank · 114 comment · 47 complexity · 29554dc3bc356ca0b31532576883bf6f MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2007 PHPExcel, Maarten Balliauw
  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. * @copyright Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
  22. * @license http://www.gnu.org/licenses/lgpl.txt LGPL
  23. * @version ##VERSION##, ##DATE##
  24. */
  25. /**
  26. * This file creates a build of PHPExcel
  27. */
  28. // Build parameters
  29. $sVersion = "";
  30. $sDate = "";
  31. // Read build parameters from STDIN
  32. $stdin = fopen("php://stdin", 'r');
  33. echo "PHPExcel build script\n";
  34. echo "---------------------\n";
  35. echo "Enter the version number you want to add to the build:\t";
  36. $sVersion = rtrim(fread($stdin, 1024));
  37. echo "Enter the date number you want to add to the build:\t";
  38. $sDate = rtrim(fread($stdin, 1024));
  39. echo "\n\n\n";
  40. fclose($stdin);
  41. // Starting build
  42. echo date('H:i:s') . " Starting build...\n";
  43. // Specify paths and files to include
  44. $aFilesToInclude = array('../changelog.txt', '../install.txt', '../license.txt');
  45. $aPathsToInclude = array('../Classes', '../Tests', '../Documentation');
  46. $aIgnorePatterns = array('.svn', 'assets');
  47. $sClassPath = '../Classes';
  48. $sPEARPath = 'C:\lamp\php5\pear';
  49. // Resulting file
  50. $strResultingFile = $sVersion . '.zip';
  51. // Create new ZIP file and open it for writing
  52. echo date('H:i:s') . " Creating ZIP archive...\n";
  53. $objZip = new ZipArchive();
  54. // Try opening the ZIP file
  55. if ($objZip->open($strResultingFile, ZIPARCHIVE::OVERWRITE) !== true) {
  56. throw new Exeption("Could not open " . $strResultingFile . " for writing!");
  57. }
  58. // Add files to include
  59. foreach ($aFilesToInclude as $strFile) {
  60. echo date('H:i:s') . " Adding file $strFile\n";
  61. addFileToZIP($strFile, $objZip, $sVersion, $sDate);
  62. }
  63. // Add paths to include
  64. foreach ($aPathsToInclude as $strPath) {
  65. addPathToZIP($strPath, $objZip, $sVersion, $sDate);
  66. }
  67. // Set archive comment...
  68. echo date('H:i:s') . " Set archive comment...\n";
  69. $objZip->setArchiveComment('PHPExcel - http://www.codeplex.com/PHPExcel');
  70. // Close file
  71. echo date('H:i:s') . " Saving ZIP archive...\n";
  72. $objZip->close();
  73. // Copy classes directory
  74. echo date('H:i:s') . " Copying class directory...\n";
  75. mkdir('./tmp');
  76. dircopy($sClassPath, './tmp');
  77. // Create PEAR package.xml
  78. echo date('H:i:s') . " Creating PEAR package.xml...\n";
  79. $packageFile = file_get_contents('package.xml');
  80. $packageFile = replaceMetaData($packageFile, $sVersion, $sDate);
  81. $packageFile = str_replace('##PEAR_DIR##', addPathToPEAR('./tmp', '', $sVersion, $sDate), $packageFile);
  82. $fh = fopen('./tmp/package.xml', 'w');
  83. fwrite($fh, $packageFile);
  84. fclose($fh);
  85. // Create PEAR package
  86. echo date('H:i:s') . " Creating PEAR package...\n";
  87. echo shell_exec("$sPEARPath package ./tmp/package.xml");
  88. // Wait a minute (TortoiseSVN on USB stick is slow!)
  89. echo date('H:i:s') . " Waiting...\n";
  90. sleep(120);
  91. // Clean temporary files
  92. echo date('H:i:s') . " Cleaning temporary files...\n";
  93. unlink('./tmp/package.xml');
  94. rm('./tmp');
  95. // Finished build
  96. echo date('H:i:s') . " Finished build!\n";
  97. /**
  98. * Add a specific path's files and folders to a ZIP object
  99. *
  100. * @param string $strPath Path to add
  101. * @param ZipArchive $objZip ZipArchive object
  102. * @param string $strVersion Version string
  103. * @param string $strDate Date string
  104. */
  105. function addPathToZIP($strPath, $objZip, $strVersion, $strDate) {
  106. global $aIgnorePatterns;
  107. echo date('H:i:s') . " Adding path $strPath...\n";
  108. $currentDir = opendir($strPath);
  109. while ($strFile = readdir($currentDir)) {
  110. if ($strFile != '.' && $strFile != '..') {
  111. if (is_file($strPath . '/' . $strFile)) {
  112. addFileToZIP($strPath . '/' . $strFile, $objZip, $strVersion, $strDate);
  113. } else if (is_dir($strPath . '/' . $strFile)) {
  114. if (!shouldIgnore($strFile)) {
  115. addPathToZIP( ($strPath . '/' . $strFile), $objZip, $strVersion, $strDate );
  116. }
  117. }
  118. }
  119. }
  120. }
  121. /**
  122. * Add a specific file to ZIP
  123. *
  124. * @param string $strFile File to add
  125. * @param ZipArchive $objZip ZipArchive object
  126. * @param string $strVersion Version string
  127. * @param string $strDate Date string
  128. */
  129. function addFileToZIP($strFile, $objZip, $strVersion, $strDate) {
  130. $fileContents = file_get_contents($strFile);
  131. $fileContents = replaceMetaData($fileContents, $strVersion, $strDate);
  132. //$objZip->addFile($strFile, cleanFileName($strFile));
  133. $objZip->addFromString( cleanFileName($strFile), $fileContents );
  134. }
  135. /**
  136. * Cleanup a filename
  137. *
  138. * @param string $strFile Filename
  139. * @return string Filename
  140. */
  141. function cleanFileName($strFile) {
  142. $strFile = str_replace('../', '', $strFile);
  143. $strFile = str_replace('WINDOWS', '', $strFile);
  144. while (eregi('//', $strFile)) {
  145. $strFile = str_replace('//', '/', $strFile);
  146. }
  147. return $strFile;
  148. }
  149. /**
  150. * Replace metadata in string
  151. *
  152. * @param string $strString String contents
  153. * @param string $strVersion Version string
  154. * @param string $strDate Date string
  155. * @return string String contents
  156. */
  157. function replaceMetaData($strString, $strVersion, $strDate) {
  158. $strString = str_replace('##VERSION##', $strVersion, $strString);
  159. $strString = str_replace('##DATE##', $strDate, $strString);
  160. return $strString;
  161. }
  162. /**
  163. * Add a specific path's files and folders to a PEAR dir list
  164. *
  165. * @param string $strPath Path to add
  166. * @param string $strPEAR String containing PEAR dir definitions
  167. * @param string $strVersion Version string
  168. * @param string $strDate Date string
  169. * @return string String containing PEAR dir definitions
  170. */
  171. function addPathToPEAR($strPath, $strPEAR, $strVersion, $strDate) {
  172. global $aIgnorePatterns;
  173. $currentDir = opendir($strPath);
  174. while ($strFile = readdir($currentDir)) {
  175. if ($strFile != '.' && $strFile != '..') {
  176. if (is_file($strPath . '/' . $strFile) && !eregi('package.xml', $strFile)) {
  177. $strPEAR .= addFileToPEAR($strPath . '/' . $strFile, '', $strVersion, $strDate);
  178. } else if (is_dir($strPath . '/' . $strFile)) {
  179. if (!shouldIgnore($strFile)) {
  180. $strPEAR .= '<dir name="' . $strFile . '">';
  181. $strPEAR .= addPathToPEAR( ($strPath . '/' . $strFile), '', $strVersion, $strDate );
  182. $strPEAR .= '</dir>';
  183. }
  184. }
  185. }
  186. }
  187. return $strPEAR;
  188. }
  189. /**
  190. * Add a specific file to a PEAR dir list
  191. *
  192. * @param string $strFile File to add
  193. * @param string $strPEAR String containing PEAR dir definitions
  194. * @param string $strVersion Version string
  195. * @param string $strDate Date string
  196. * @return string String containing PEAR dir definitions
  197. */
  198. function addFileToPEAR($strFile, $strPEAR, $strVersion, $strDate) {
  199. $fileContents = file_get_contents($strFile);
  200. $fileContents = replaceMetaData($fileContents, $strVersion, $strDate);
  201. $fh = fopen($strFile, 'w');
  202. fwrite($fh, $fileContents);
  203. fclose($fh);
  204. $strPEAR .= '<file name="' . basename($strFile) . '" role="php" />';
  205. return $strPEAR;
  206. }
  207. /**
  208. * Copy a complete directory
  209. *
  210. * @param string $srcdir Source directory
  211. * @param string $dstdir Destination directory
  212. * @return int Number of copied files
  213. */
  214. function dircopy($srcdir, $dstdir, $verbose = false) {
  215. $num = 0;
  216. if(!is_dir($dstdir) && !shouldIgnore($dstdir)) mkdir($dstdir);
  217. if($curdir = opendir($srcdir)) {
  218. while($file = readdir($curdir)) {
  219. if($file != '.' && $file != '..') {
  220. $srcfile = $srcdir . '\\' . $file;
  221. $dstfile = $dstdir . '\\' . $file;
  222. if(is_file($srcfile) && !shouldIgnore($srcfile)) {
  223. if(is_file($dstfile)) $ow = filemtime($srcfile) - filemtime($dstfile); else $ow = 1;
  224. if($ow > 0) {
  225. if($verbose) echo "Copying '$srcfile' to '$dstfile'...";
  226. if(copy($srcfile, $dstfile)) {
  227. touch($dstfile, filemtime($srcfile)); $num++;
  228. if($verbose) echo "OK\n";
  229. }
  230. else echo "Error: File '$srcfile' could not be copied!\n";
  231. }
  232. }
  233. else if(is_dir($srcfile) && !shouldIgnore($srcfile)) {
  234. $num += dircopy($srcfile, $dstfile, $verbose);
  235. }
  236. }
  237. }
  238. closedir($curdir);
  239. }
  240. return $num;
  241. }
  242. /**
  243. * rm() -- Very Vigorously erase files and directories. Also hidden files !!!!
  244. *
  245. * @param $dir string
  246. * be carefull to:
  247. * if($obj=='.' || $obj=='..') continue;
  248. * if not it will erase all the server...it happened to me ;)
  249. * the function is permission dependent.
  250. */
  251. function rm($dir) {
  252. if(!$dh = @opendir($dir)) return;
  253. while (($obj = readdir($dh))) {
  254. if($obj=='.' || $obj=='..') continue;
  255. @chmod($dir.'/'.$obj, 0777);
  256. if (!@unlink($dir.'/'.$obj)) rm($dir.'/'.$obj);
  257. }
  258. @rmdir($dir);
  259. @shell_exec('rmdir /S /Q "' . $dir . '"');
  260. }
  261. /**
  262. * Should a file/folder be ignored?
  263. *
  264. * @param string $pName
  265. * @return boolean
  266. */
  267. function shouldIgnore($pName = '') {
  268. global $aIgnorePatterns;
  269. $ignore = false;
  270. foreach ($aIgnorePatterns as $ignorePattern) {
  271. if (eregi($ignorePattern, $pName)) {
  272. $ignore = true;
  273. }
  274. }
  275. return $ignore;
  276. }