loader.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * Jake JavaScript build tool
  3. * Copyright 2112 Matthew Eernisse (mde@fleegix.org)
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. let path = require('path');
  19. let fs = require('fs');
  20. let existsSync = fs.existsSync;
  21. let utils = require('./utils');
  22. // Files like jakelib/foobar.jake.js
  23. const JAKELIB_FILE_PAT = /\.jake$|\.js$/;
  24. const SUPPORTED_EXTENSIONS = {
  25. 'js': null,
  26. 'coffee': function () {
  27. try {
  28. let cs = require('coffeescript');
  29. if (typeof cs.register == 'function') {
  30. cs.register();
  31. }
  32. }
  33. catch(e) {
  34. throw new Error('You have a CoffeeScript Jakefile, but have not installed CoffeeScript');
  35. }
  36. },
  37. 'ls': function () {
  38. try {
  39. require('livescript');
  40. }
  41. catch (e) {
  42. throw new Error('You have a LiveScript Jakefile, but have not installed LiveScript');
  43. }
  44. }
  45. };
  46. const IMPLICIT_JAKEFILE_NAMES = [
  47. 'Jakefile',
  48. 'Gulpfile'
  49. ];
  50. let Loader = function () {
  51. // Load a Jakefile, running the code inside -- this may result in
  52. // tasks getting defined using the original Jake API, e.g.,
  53. // `task('foo' ['bar', 'baz']);`, or can also auto-create tasks
  54. // from any functions exported from the file
  55. function loadFile(filePath) {
  56. let exported = require(filePath);
  57. for (let [key, value] of Object.entries(exported)) {
  58. let t;
  59. if (typeof value == 'function') {
  60. t = jake.task(key, value);
  61. t.description = '(Exported function)';
  62. }
  63. }
  64. }
  65. function fileExists(name) {
  66. let nameWithExt = null;
  67. // Support no file extension as well
  68. let exts = Object.keys(SUPPORTED_EXTENSIONS).concat(['']);
  69. exts.some((ext) => {
  70. let fname = ext ? `${name}.${ext}` : name;
  71. if (existsSync(fname)) {
  72. nameWithExt = fname;
  73. return true;
  74. }
  75. });
  76. return nameWithExt;
  77. }
  78. // Recursive
  79. function findImplicitJakefile() {
  80. let cwd = process.cwd();
  81. let names = IMPLICIT_JAKEFILE_NAMES;
  82. let found = null;
  83. names.some((name) => {
  84. let n;
  85. // Prefer all-lowercase
  86. n = name.toLowerCase();
  87. if ((found = fileExists(n))) {
  88. return found;
  89. }
  90. // Check mixed-case as well
  91. n = name;
  92. if ((found = fileExists(n))) {
  93. return found;
  94. }
  95. });
  96. if (found) {
  97. return found;
  98. }
  99. else {
  100. process.chdir("..");
  101. // If we've walked all the way up the directory tree,
  102. // bail out with no result
  103. if (cwd === process.cwd()) {
  104. return null;
  105. }
  106. return findImplicitJakefile();
  107. }
  108. }
  109. this.loadFile = function (fileSpecified) {
  110. let jakefile;
  111. let origCwd = process.cwd();
  112. if (fileSpecified) {
  113. if (existsSync(fileSpecified)) {
  114. jakefile = fileSpecified;
  115. }
  116. }
  117. else {
  118. jakefile = findImplicitJakefile();
  119. }
  120. if (jakefile) {
  121. let ext = jakefile.split('.')[1];
  122. let loaderFunc = SUPPORTED_EXTENSIONS[ext];
  123. loaderFunc && loaderFunc();
  124. loadFile(utils.file.absolutize(jakefile));
  125. return true;
  126. }
  127. else {
  128. if (!fileSpecified) {
  129. // Restore the working directory on failure
  130. process.chdir(origCwd);
  131. }
  132. return false;
  133. }
  134. };
  135. this.loadDirectory = function (d) {
  136. let dirname = d || 'jakelib';
  137. let dirlist;
  138. dirname = utils.file.absolutize(dirname);
  139. if (existsSync(dirname)) {
  140. dirlist = fs.readdirSync(dirname);
  141. dirlist.forEach(function (filePath) {
  142. if (JAKELIB_FILE_PAT.test(filePath)) {
  143. loadFile(path.join(dirname, filePath));
  144. }
  145. });
  146. return true;
  147. }
  148. return false;
  149. };
  150. };
  151. module.exports = function () {
  152. return new Loader();
  153. };