]> git.immae.eu Git - github/fretlink/purs-loader.git/blame - src/index.js
Caching the result of psc-package
[github/fretlink/purs-loader.git] / src / index.js
CommitLineData
7de41f10
AM
1'use strict'
2
7f0547d4 3const debug_ = require('debug');
4
5const debug = debug_('purs-loader');
6
7const debugVerbose = debug_('purs-loader:verbose');
1c12889c 8
7de41f10 9const loaderUtils = require('loader-utils')
1c12889c 10
7de41f10 11const Promise = require('bluebird')
1c12889c 12
7de41f10 13const path = require('path')
1c12889c 14
15const PsModuleMap = require('./purs-module-map');
16
17const compile = require('./compile');
18
19const bundle = require('./bundle');
20
21const ide = require('./ide');
22
8e21ab0a 23const toJavaScript = require('./to-javascript');
1c12889c 24
531c751f 25const dargs = require('./dargs');
1c12889c 26
86e2b3d4 27const spawn = require('cross-spawn').sync
1c12889c 28
86e2b3d4 29const eol = require('os').EOL
7de41f10 30
7de41f10 31module.exports = function purescriptLoader(source, map) {
7f0547d4 32 this.cacheable && this.cacheable();
33
7f0547d4 34 const webpackConfig = this.options;
35
e1719658 36 var cache = webpackConfig.purescriptLoaderCache = webpackConfig.purescriptLoaderCache || {
37 rebuild: false,
38 deferred: [],
39 bundleModules: [],
40 ideServer: null,
41 psModuleMap: null,
42 warnings: [],
43 errors: [],
44 compilationStarted: false,
45 compilationFinished: false,
46 installed: false,
47 srcOption: []
48 };
49
50 const callback = this.async();
51
7f0547d4 52 const loaderOptions = loaderUtils.getOptions(this) || {};
7de41f10 53
7f0547d4 54 const srcOption = (pscPackage => {
e1719658 55 const srcPath = path.join('src', '**', '*.purs');
56
57 const bowerPath = path.join('bower_components', 'purescript-*', 'src', '**', '*.purs');
58
59 if (cache.srcOption.length > 0) {
60 return cache.srcOption;
61 }
62 else if (pscPackage) {
7f0547d4 63 const pscPackageCommand = 'psc-package';
86e2b3d4 64
7f0547d4 65 const pscPackageArgs = ['sources'];
66
e1719658 67 const loaderSrc = loaderOptions.src || [
68 srcPath
69 ];
70
7f0547d4 71 debug('psc-package %s %o', pscPackageCommand, pscPackageArgs);
72
e1719658 73 const cmd = spawn(pscPackageCommand, pscPackageArgs);
74
75 if (cmd.status !== 0) {
76 const error = cmd.stdout.toString();
77
78 throw new Error(error);
79 }
80 else {
81 const result = cmd.stdout.toString().split(eol).filter(v => v != '').concat(loaderSrc);
82
83 debug('psc-package result: %o', result);
84
85 cache.srcOption = result;
86
87 return result;
88 }
86e2b3d4
AD
89 }
90 else {
e1719658 91 const result = loaderOptions.src || [
92 bowerPath,
93 srcPath
7f0547d4 94 ];
e1719658 95
96 cache.srcOption = result;
97
98 return result;
86e2b3d4 99 }
7f0547d4 100 })(loaderOptions.pscPackage);
86e2b3d4 101
7f0547d4 102 const options = Object.assign({
103 context: webpackConfig.context,
1c12889c 104 psc: null,
7de41f10 105 pscArgs: {},
1c12889c 106 pscBundle: null,
7de41f10 107 pscBundleArgs: {},
5163b5a2 108 pscIde: false,
7f0547d4 109 pscIdeColors: loaderOptions.psc === 'psa',
7de41f10 110 pscIdeArgs: {},
86e2b3d4 111 pscPackage: false,
7de41f10
AM
112 bundleOutput: 'output/bundle.js',
113 bundleNamespace: 'PS',
114 bundle: false,
115 warnings: true,
df8798fa 116 watch: false,
7de41f10 117 output: 'output',
7f0547d4 118 src: []
119 }, loaderOptions, {
120 src: srcOption
121 });
7de41f10 122
e1719658 123 if (!cache.installed) {
7f0547d4 124 debugVerbose('installing purs-loader with options: %O', options);
86e2b3d4 125
e1719658 126 cache.installed = true;
7de41f10
AM
127
128 // invalidate loader cache when bundle is marked as invalid (in watch mode)
129 this._compiler.plugin('invalid', () => {
7f0547d4 130 debugVerbose('invalidating loader cache');
531c751f 131
7f0547d4 132 cache = webpackConfig.purescriptLoaderCache = {
5163b5a2 133 rebuild: options.pscIde,
7de41f10 134 deferred: [],
531c751f 135 bundleModules: [],
136 ideServer: cache.ideServer,
b683b0b1 137 psModuleMap: cache.psModuleMap,
138 warnings: [],
e1719658 139 errors: [],
140 compilationStarted: cache.compilationStarted,
141 compilationFinished: cache.compilationFinished,
142 installed: cache.installed,
143 srcOption: cache.srcOption
7f0547d4 144 };
b683b0b1 145 });
146
147 // add psc warnings to webpack compilation warnings
148 this._compiler.plugin('after-compile', (compilation, callback) => {
149 cache.warnings.forEach(warning => {
150 compilation.warnings.push(warning);
151 });
152
153 cache.errors.forEach(error => {
154 compilation.errors.push(error);
155 });
156
157 callback()
158 });
7de41f10
AM
159 }
160
7f0547d4 161 const psModuleName = PsModuleMap.matchModule(source);
162
7de41f10
AM
163 const psModule = {
164 name: psModuleName,
165 load: js => callback(null, js),
166 reject: error => callback(error),
167 srcPath: this.resourcePath,
168 srcDir: path.dirname(this.resourcePath),
169 jsPath: path.resolve(path.join(options.output, psModuleName, 'index.js')),
170 options: options,
171 cache: cache,
b683b0b1 172 emitWarning: warning => {
173 if (options.warnings && warning.length) {
174 cache.warnings.push(warning);
175 }
176 },
177 emitError: error => {
178 if (error.length) {
179 cache.errors.push(error);
180 }
181 }
7de41f10
AM
182 }
183
7f0547d4 184 debug('loading %s', psModule.name);
67888496 185
7de41f10 186 if (options.bundle) {
7f0547d4 187 cache.bundleModules.push(psModule.name);
7de41f10
AM
188 }
189
190 if (cache.rebuild) {
7f0547d4 191 const connect = () => {
192 if (!cache.ideServer) {
193 cache.ideServer = true;
194
195 return ide.connect(psModule)
196 .then(ideServer => {
197 cache.ideServer = ideServer;
198 return psModule;
199 })
200 .then(ide.loadWithRetry)
201 .catch(error => {
202 if (cache.ideServer.kill) {
203 debug('ide failed to initially load modules, stopping the ide server process');
204
205 cache.ideServer.kill();
206 }
207
208 cache.ideServer = null;
209
210 return Promise.reject(error);
211 })
212 ;
213 }
214 else {
215 return Promise.resolve(psModule);
216 }
217 };
218
219 const rebuild = () =>
220 ide.rebuild(psModule).catch(error => {
221 if (error instanceof ide.UnknownModuleError) {
222 if (!cache.compilationStarted) {
223 cache.compilationStarted = true;
224
225 return compile(psModule)
226 .then(() => {
227 cache.compilationFinished = true;
228 })
229 .then(() =>
230 PsModuleMap.makeMap(options.src).then(map => {
231 debug('rebuilt module map after unknown module forced a recompilation');
232
233 cache.psModuleMap = map;
234 })
235 )
236 .then(() => ide.load(psModule))
237 .then(() => psModule)
238 ;
239 }
240 else {
241 return Promise.resolve(psModule);
242 }
243 }
244 else {
245 debug('ide rebuild failed due to an unhandled error: %o', error);
246
247 return Promise.reject(error);
248 }
249 })
250 ;
251
252 connect()
253 .then(rebuild)
7de41f10
AM
254 .then(toJavaScript)
255 .then(psModule.load)
256 .catch(psModule.reject)
7f0547d4 257 ;
7de41f10 258 }
7f0547d4 259 else if (cache.compilationFinished) {
260 debugVerbose('compilation is already finished, loading module %s', psModule.name);
7de41f10 261
7f0547d4 262 toJavaScript(psModule)
263 .then(psModule.load)
264 .catch(psModule.reject);
7de41f10 265 }
7f0547d4 266 else {
267 // The compilation has not finished yet. We need to wait for
268 // compilation to finish before the loaders run so that references
269 // to compiled output are valid. Push the modules into the cache to
270 // be loaded once the complation is complete.
271
272 cache.deferred.push(psModule);
273
274 if (!cache.compilationStarted) {
275 cache.compilationStarted = true;
276
277 compile(psModule)
278 .then(() => {
279 cache.compilationFinished = true;
280 })
281 .then(() => {
282 if (options.bundle) {
283 return bundle(options, cache.bundleModules);
284 }
285 })
286 .then(() =>
1c12889c 287 PsModuleMap.makeMap(options.src).then(map => {
7f0547d4 288 debug('rebuilt module map after compilation');
289
1c12889c 290 cache.psModuleMap = map;
291 })
7f0547d4 292 )
293 .then(() =>
294 Promise.map(cache.deferred, psModule =>
295 toJavaScript(psModule).then(psModule.load)
296 )
297 )
298 .catch(error => {
299 cache.deferred[0].reject(error);
300
301 cache.deferred.slice(1).forEach(psModule => {
302 psModule.reject(new Error('purs-loader failed'));
303 })
304 })
305 ;
306 }
307 else {
308 // The complation has started. Nothing to do but wait until it is
309 // done before loading all of the modules.
310 }
7de41f10
AM
311 }
312}