]> git.immae.eu Git - github/fretlink/purs-loader.git/blame - src/index.js
Reduce building of PureScript module map
[github/fretlink/purs-loader.git] / src / index.js
CommitLineData
7de41f10
AM
1'use strict'
2
7de41f10
AM
3const debug = require('debug')('purs-loader')
4const loaderUtils = require('loader-utils')
7de41f10
AM
5const Promise = require('bluebird')
6const fs = Promise.promisifyAll(require('fs'))
7de41f10 7const path = require('path')
f8d292fb 8const jsStringEscape = require('js-string-escape')
531c751f 9const PsModuleMap = require('./PsModuleMap');
10const Psc = require('./Psc');
11const PscIde = require('./PscIde');
12const dargs = require('./dargs');
7de41f10 13
7de41f10
AM
14const requireRegex = /require\(['"]\.\.\/([\w\.]+)['"]\)/g
15
16module.exports = function purescriptLoader(source, map) {
17 const callback = this.async()
18 const config = this.options
19 const query = loaderUtils.parseQuery(this.query)
20 const webpackOptions = this.options.purescriptLoader || {}
21
22 const options = Object.assign({
23 context: config.context,
24 psc: 'psc',
25 pscArgs: {},
26 pscBundle: 'psc-bundle',
27 pscBundleArgs: {},
5163b5a2 28 pscIde: false,
7de41f10
AM
29 pscIdeColors: webpackOptions.psc === 'psa' || query.psc === 'psa',
30 pscIdeArgs: {},
31 bundleOutput: 'output/bundle.js',
32 bundleNamespace: 'PS',
33 bundle: false,
34 warnings: true,
35 output: 'output',
36 src: [
37 path.join('src', '**', '*.purs'),
38 path.join('bower_components', 'purescript-*', 'src', '**', '*.purs')
2b2207bd 39 ]
7de41f10
AM
40 }, webpackOptions, query)
41
42 this.cacheable && this.cacheable()
43
44 let cache = config.purescriptLoaderCache = config.purescriptLoaderCache || {
45 rebuild: false,
46 deferred: [],
531c751f 47 bundleModules: []
7de41f10
AM
48 }
49
50 if (!config.purescriptLoaderInstalled) {
51 config.purescriptLoaderInstalled = true
52
53 // invalidate loader cache when bundle is marked as invalid (in watch mode)
54 this._compiler.plugin('invalid', () => {
531c751f 55 debug('invalidating loader cache');
56
7de41f10 57 cache = config.purescriptLoaderCache = {
5163b5a2 58 rebuild: options.pscIde,
7de41f10 59 deferred: [],
531c751f 60 bundleModules: [],
61 ideServer: cache.ideServer,
62 psModuleMap: cache.psModuleMap
7de41f10
AM
63 }
64 })
65
66 // add psc warnings to webpack compilation warnings
67 this._compiler.plugin('after-compile', (compilation, callback) => {
9dc10210
AM
68 if (options.warnings && cache.warnings) {
69 compilation.warnings.unshift(`PureScript compilation:\n${cache.warnings}`)
7de41f10
AM
70 }
71
9dc10210
AM
72 if (cache.errors) {
73 compilation.errors.unshift(`PureScript compilation:\n${cache.errors}`)
7de41f10
AM
74 }
75
76 callback()
77 })
78 }
79
531c751f 80 const psModuleName = PsModuleMap.match(source)
7de41f10
AM
81 const psModule = {
82 name: psModuleName,
83 load: js => callback(null, js),
84 reject: error => callback(error),
85 srcPath: this.resourcePath,
86 srcDir: path.dirname(this.resourcePath),
87 jsPath: path.resolve(path.join(options.output, psModuleName, 'index.js')),
88 options: options,
89 cache: cache,
90 }
91
67888496
AM
92 debug('loader called', psModule.name)
93
7de41f10
AM
94 if (options.bundle) {
95 cache.bundleModules.push(psModule.name)
96 }
97
98 if (cache.rebuild) {
531c751f 99 return PscIde.connect(psModule)
100 .then(PscIde.rebuild)
7de41f10
AM
101 .then(toJavaScript)
102 .then(psModule.load)
103 .catch(psModule.reject)
104 }
105
67888496 106 if (cache.compilationFinished) {
7de41f10
AM
107 return toJavaScript(psModule).then(psModule.load).catch(psModule.reject)
108 }
109
110 // We need to wait for compilation to finish before the loaders run so that
111 // references to compiled output are valid.
112 cache.deferred.push(psModule)
113
67888496 114 if (!cache.compilationStarted) {
531c751f 115 return Psc.compile(psModule)
116 .then(() => PsModuleMap.makeMap(options.src).then(map => {
117 debug('rebuilt module map');
118 cache.psModuleMap = map;
119 }))
7de41f10
AM
120 .then(() => Promise.map(cache.deferred, psModule => {
121 if (typeof cache.ideServer === 'object') cache.ideServer.kill()
122 return toJavaScript(psModule).then(psModule.load)
123 }))
124 .catch(error => {
125 cache.deferred[0].reject(error)
126 cache.deferred.slice(1).forEach(psModule => psModule.reject(true))
127 })
128 }
129}
130
531c751f 131function updatePsModuleMap(psModule) {
132 const options = psModule.options
133 const cache = psModule.cache
134 const filePurs = psModule.srcPath
135 if (!cache.psModuleMap) {
136 debug('module mapping does not exist');
137 return PsModuleMap.makeMap(options.src).then(map => {
138 cache.psModuleMap = map;
139 return cache.psModuleMap;
140 });
141 }
142 else {
143 return PsModuleMap.makeMapEntry(filePurs).then(result => {
144 const map = Object.assign(cache.psModuleMap, result)
145 cache.psModuleMap = map;
146 return cache.psModuleMap;
147 });
148 }
149}
150
7de41f10
AM
151// The actual loader is executed *after* purescript compilation.
152function toJavaScript(psModule) {
153 const options = psModule.options
154 const cache = psModule.cache
155 const bundlePath = path.resolve(options.bundleOutput)
156 const jsPath = cache.bundle ? bundlePath : psModule.jsPath
157
67888496 158 debug('loading JavaScript for', psModule.name)
7de41f10
AM
159
160 return Promise.props({
161 js: fs.readFileAsync(jsPath, 'utf8'),
531c751f 162 psModuleMap: updatePsModuleMap(psModule)
7de41f10
AM
163 }).then(result => {
164 let js = ''
165
166 if (options.bundle) {
167 // if bundling, return a reference to the bundle
168 js = 'module.exports = require("'
f8d292fb 169 + jsStringEscape(path.relative(psModule.srcDir, options.bundleOutput))
7de41f10
AM
170 + '")["' + psModule.name + '"]'
171 } else {
172 // replace require paths to output files generated by psc with paths
173 // to purescript sources, which are then also run through this loader.
7de41f10
AM
174 js = result.js
175 .replace(requireRegex, (m, p1) => {
f8d292fb 176 return 'require("' + jsStringEscape(result.psModuleMap[p1].src) + '")'
17acb575
AM
177 })
178 .replace(/require\(['"]\.\/foreign['"]\)/g, (m, p1) => {
f8d292fb 179 return 'require("' + jsStringEscape(result.psModuleMap[psModule.name].ffi) + '")'
7de41f10 180 })
7de41f10
AM
181 }
182
183 return js
184 })
185}