buildconf.js 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2008 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Wez Furlong <wez@thebrainroom.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id: buildconf.js,v 1.13.2.2.2.1.2.5 2009-01-02 12:18:21 kalle Exp $ */
  19. // This generates a configure script for win32 build
  20. WScript.StdOut.WriteLine("Rebuilding configure.js");
  21. var FSO = WScript.CreateObject("Scripting.FileSystemObject");
  22. var C = FSO.CreateTextFile("configure.js", true);
  23. var B = FSO.CreateTextFile("configure.bat", true);
  24. var DSP = false;
  25. var modules = "";
  26. var MODULES = WScript.CreateObject("Scripting.Dictionary");
  27. var module_dirs = new Array();
  28. function file_get_contents(filename)
  29. {
  30. var F = FSO.OpenTextFile(filename, 1);
  31. var t = F.ReadAll();
  32. F.Close();
  33. return t;
  34. }
  35. function Module_Item(module_name, config_path, dir_line, deps, content)
  36. {
  37. this.module_name = module_name;
  38. this.config_path = config_path;
  39. this.dir_line = dir_line;
  40. this.deps = deps;
  41. this.content = content;
  42. }
  43. function find_config_w32(dirname)
  44. {
  45. if (!FSO.FolderExists(dirname)) {
  46. return;
  47. }
  48. var f = FSO.GetFolder(dirname);
  49. var fc = new Enumerator(f.SubFolders);
  50. var c, i, ok, n;
  51. var item = null;
  52. var re_dep_line = new RegExp("ADD_EXTENSION_DEP\\([^,]*\\s*,\\s*['\"]([^'\"]+)['\"].*\\)", "gm");
  53. for (; !fc.atEnd(); fc.moveNext())
  54. {
  55. ok = true;
  56. /* check if we already picked up a module with the same dirname;
  57. * if we have, don't include it here */
  58. n = FSO.GetFileName(fc.item());
  59. if (n == '.svn' || n == 'tests')
  60. continue;
  61. // WScript.StdOut.WriteLine("checking " + dirname + "/" + n);
  62. if (MODULES.Exists(n)) {
  63. WScript.StdOut.WriteLine("Skipping " + dirname + "/" + n + " -- already have a module with that name");
  64. continue;
  65. }
  66. c = FSO.BuildPath(fc.item(), "config.w32");
  67. if (FSO.FileExists(c)) {
  68. // WScript.StdOut.WriteLine(c);
  69. var dir_line = "configure_module_dirname = condense_path(FSO.GetParentFolderName('"
  70. + c.replace(new RegExp('(["\\\\])', "g"), '\\$1') + "'));\r\n";
  71. var contents = file_get_contents(c);
  72. var deps = new Array();
  73. // parse out any deps from the file
  74. var calls = contents.match(re_dep_line);
  75. if (calls != null) {
  76. for (i = 0; i < calls.length; i++) {
  77. // now we need the extension name out of this thing
  78. if (calls[i].match(re_dep_line)) {
  79. // WScript.StdOut.WriteLine("n depends on " + RegExp.$1);
  80. deps[deps.length] = RegExp.$1;
  81. }
  82. }
  83. }
  84. item = new Module_Item(n, c, dir_line, deps, contents);
  85. MODULES.Add(n, item);
  86. }
  87. }
  88. }
  89. // Emit core modules array. This is used by a snapshot
  90. // build to override a default "yes" value so that external
  91. // modules don't break the build by becoming statically compiled
  92. function emit_core_module_list()
  93. {
  94. var module_names = (new VBArray(MODULES.Keys())).toArray();
  95. var i, mod_name, j;
  96. var item;
  97. var output = "";
  98. C.WriteLine("core_module_list = new Array(");
  99. // first, look for modules with empty deps; emit those first
  100. for (i in module_names) {
  101. mod_name = module_names[i];
  102. C.WriteLine("\"" + mod_name.replace(/_/g, "-") + "\",");
  103. }
  104. C.WriteLine("false // dummy");
  105. C.WriteLine(");");
  106. }
  107. function emit_module(item)
  108. {
  109. return item.dir_line + item.content;
  110. }
  111. function emit_dep_modules(module_names)
  112. {
  113. var i, mod_name, j;
  114. var output = "";
  115. var item = null;
  116. for (i in module_names) {
  117. mod_name = module_names[i];
  118. if (MODULES.Exists(mod_name)) {
  119. item = MODULES.Item(mod_name);
  120. MODULES.Remove(mod_name);
  121. if (item.deps.length) {
  122. output += emit_dep_modules(item.deps);
  123. }
  124. output += emit_module(item);
  125. }
  126. }
  127. return output;
  128. }
  129. function gen_modules()
  130. {
  131. var module_names = (new VBArray(MODULES.Keys())).toArray();
  132. var i, mod_name, j;
  133. var item;
  134. var output = "";
  135. // first, look for modules with empty deps; emit those first
  136. for (i in module_names) {
  137. mod_name = module_names[i];
  138. item = MODULES.Item(mod_name);
  139. if (item.deps.length == 0) {
  140. MODULES.Remove(mod_name);
  141. output += emit_module(item);
  142. }
  143. }
  144. // now we are left with modules that have dependencies on other modules
  145. module_names = (new VBArray(MODULES.Keys())).toArray();
  146. output += emit_dep_modules(module_names);
  147. return output;
  148. }
  149. // Process buildconf arguments
  150. function buildconf_process_args()
  151. {
  152. args = WScript.Arguments;
  153. for (i = 0; i < args.length; i++) {
  154. arg = args(i);
  155. // If it is --foo=bar, split on the equals sign
  156. arg = arg.split("=", 2);
  157. argname = arg[0];
  158. if (arg.length > 1) {
  159. argval = arg[1];
  160. } else {
  161. argval = null;
  162. }
  163. if (argname == '--add-modules-dir' && argval != null) {
  164. WScript.StdOut.WriteLine("Adding " + argval + " to the module search path");
  165. module_dirs[module_dirs.length] = argval;
  166. }
  167. if (argname == '--add-project-files') {
  168. WScript.StdOut.WriteLine("Adding dsp templates into the mix");
  169. DSP = true;
  170. }
  171. }
  172. }
  173. buildconf_process_args();
  174. // Write the head of the configure script
  175. C.WriteLine("/* This file automatically generated from win32/build/confutils.js */");
  176. C.WriteLine("MODE_PHPIZE=false;");
  177. C.Write(file_get_contents("win32/build/confutils.js"));
  178. // If project files were requested, pull in the code to generate them
  179. if (DSP == true) {
  180. C.WriteLine('PHP_DSP="yes"');
  181. C.WriteBlankLines(1);
  182. C.Write(file_get_contents("win32/build/projectgen.js"));
  183. } else {
  184. C.WriteLine('PHP_DSP="no"');
  185. C.WriteBlankLines(1);
  186. }
  187. // Pull in code from sapi and extensions
  188. modules = file_get_contents("win32/build/config.w32");
  189. // Pick up confs from TSRM and Zend if present
  190. find_config_w32(".");
  191. find_config_w32("sapi");
  192. find_config_w32("ext");
  193. emit_core_module_list();
  194. // If we have not specified any module dirs let's add some defaults
  195. if (module_dirs.length == 0) {
  196. find_config_w32("pecl");
  197. find_config_w32("..\\pecl");
  198. find_config_w32("pecl\\rpc");
  199. find_config_w32("..\\pecl\\rpc");
  200. } else {
  201. for (i = 0; i < module_dirs.length; i++) {
  202. find_config_w32(module_dirs[i]);
  203. }
  204. }
  205. // Now generate contents of module based on MODULES, chasing dependencies
  206. // to ensure that dependent modules are emitted first
  207. modules += gen_modules();
  208. // Look for ARG_ENABLE or ARG_WITH calls
  209. re = new RegExp("(ARG_(ENABLE|WITH)\([^;]+\);)", "gm");
  210. calls = modules.match(re);
  211. for (i = 0; i < calls.length; i++) {
  212. item = calls[i];
  213. C.WriteLine("try {");
  214. C.WriteLine(item);
  215. C.WriteLine("} catch (e) {");
  216. C.WriteLine('\tSTDOUT.WriteLine("problem: " + e);');
  217. C.WriteLine("}");
  218. }
  219. C.WriteBlankLines(1);
  220. C.WriteLine("conf_process_args();");
  221. C.WriteBlankLines(1);
  222. // Comment out the calls from their original positions
  223. modules = modules.replace(re, "/* $1 */");
  224. C.Write(modules);
  225. C.WriteBlankLines(1);
  226. C.Write(file_get_contents("win32/build/configure.tail"));
  227. B.WriteLine("@echo off");
  228. B.WriteLine("cscript /nologo configure.js %*");