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