This repository has been archived by the owner on Mar 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp-bem-src.js
276 lines (238 loc) · 10.6 KB
/
gulp-bem-src.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
'use strict';
const assert = require('assert');
const path = require('path');
const inspect = require('util').inspect;
const Readable = require('stream').Readable;
const BemCell = require('@bem/sdk.cell');
const bemConfig = require('@bem/sdk.config');
const walk = require('@bem/sdk.walk');
const File = require('vinyl');
const toArray = require('stream-to-array');
const read = require('gulp-read');
const bubbleStreamError = require('bubble-stream-error');
const deps = require('@bem/sdk.deps');
module.exports = src;
src.filesToStream = filesToStream;
src.harvest = harvest;
/**
* Функция для получения файлов по декларации.
*
* Алгоритм используется следующий:
* - Получаем слепок файловой структуры с уровней
* - Получаем и исполняем содержимое файлов ?.deps.js (получаем набор объектов deps)
* - Получаем граф с помощью bem-deps
* - Сортируем по уровням и раскрываем декларацию с помощью графа
* - Преобразуем технологии зависимостей в декларации в технологии файловой системы
* - Формируем упорядоченный список файлов по раскрытой декларации и интроспекции
* - Читаем файлы из списка в поток
*
* techAliases: {[depsTech]: fileTechs}
*
* @param {String[]} sources - levels to use to search files
* @param {BemEntityName[]} decl - entities to harvest
* @param {String} tech - desired tech
* @param {Object} options - options
* @param {?BemConfig} options.config - config to use instead of default .bemrc
* @param {?Object<String, String[]>} options.techAliases - tech to aliases map to fit needs for everyone
* @returns {Stream<Vinyl>} - Just a typical stream of gulp-like file objects
*/
function src(sources, decl, tech, options) {
assert(Array.isArray(sources) && sources.length, 'Sources required to get some files');
assert(Array.isArray(decl) && decl.length, 'Declaration required to harvest some entities');
assert(tech && typeof tech === 'string', 'Tech required and should be a string to build exactly some');
options || (options = {});
options.techMap || (options.techMap = {});
const config = options.config || bemConfig();
const techMap = Object.assign({}, options.techMap);
Object.keys(techMap)
.filter(t => !Array.isArray(techMap[t]))
.forEach(t => { techMap[t] = [techMap[t]]; });
// Получаем слепок файловой структуры с уровней
const introspectionP = Promise.resolve(config.levelMap ? config.levelMap() : {})
.then(levelMap => {
const intro = walk(sources, {levels: levelMap});
let hasSomeData = false;
intro.on('data', () => { hasSomeData = true; });
return new Promise((resolve, reject) => {
setTimeout(() => hasSomeData ||
reject('Looks like there are no files. ' +
'See also https://github.com/bem-sdk/bem-walk/issues/76'), 1000);
toArray(intro).then(resolve).catch(reject);
});
});
// Получаем и исполняем содержимое файлов ?.deps.js (получаем набор объектов deps)
const depsData = options.skipResolvingDependencies ? null : introspectionP
.then(files => files
// Получаем deps.js
.filter(f => f.tech === 'deps.js')
// Сортируем по уровням
.sort((f1, f2) => (sources.indexOf(f1.level) - sources.indexOf(f2.level))))
// Читаем и исполняем
.then(deps.read())
.then(deps.parse());
// Получаем граф с помощью bem-deps
const graphP = options.skipResolvingDependencies ? null : depsData.then(deps.buildGraph);
// Раскрываем декларацию с помощью графа
const filedeclP = (options.skipResolvingDependencies
? Promise.resolve(decl.map(entity => {
var e = entity.valueOf();
entity = typeof e === 'object' ? e : entity;
return Object.assign({}, entity, { tech });
}))
: graphP.then(graph => graph.dependenciesOf(decl, tech)))
.then(entities => entities.map(BemCell.create));
if (options.deps) {
const stream = new Readable({objectMode: true, read() {}});
filedeclP.then(fulldecl => {
const f = v => {
const res = {};
v.tech && (res.tech = v.tech);
v.entity.block && (res.block = v.entity.block);
v.entity.elem && (res.elem = v.entity.elem);
v.entity.mod && (res.mod = v.entity.mod.name, res.val = v.entity.mod.val); // eslint-disable-line
return res;
};
stream.push(new File({
name: '',
path: options.deps !== true ? options.deps : 'anonymous.deps.js',
contents: new Buffer(inspect(fulldecl.map(f),
{depth: null, breakLength: 100, maxArrayLength: null}))
}));
stream.push(null);
})
.catch(console.error);
return stream;
}
// Формируем упорядоченный список файлов по раскрытой декларации и интроспекции
const orderedFilesPromise = Promise.all([introspectionP, filedeclP])
.then(data => {
const introspection = data[0];
const filedecl = data[1];
// Преобразуем технологии зависимостей в декларации в технологии файловой системы
return harvest({introspection, levels: sources, decl: filedecl, techMap});
});
// Читаем файлы из списка в поток
return filesToStream(orderedFilesPromise, options);
}
/**
* @param {BemFile[]|Promise<BemFile[]>} filesPromise - result of previous step © cap obv
* @param {Object} options - see src options
* @returns {Stream<Vinyl>}
*/
function filesToStream(filesPromise, options) {
let files = null, i;
const stream = new Readable({
objectMode: true,
read() {
if (files) {
return tryread(this);
}
Promise.resolve(filesPromise).then(files_ => {
i = 0;
files = files_;
tryread(this);
});
function tryread(self) {
try {
_read.call(self);
} catch (e) {
self.emit('error', e);
self.push(null);
}
}
}
});
function _read() {
if (!files.length) {
return this.push(null);
}
for (; i < files.length; ) { // eslint-disable-line
const file = files[i++];
const vf = new File({
name: '',
base: file.level,
path: file.path,
contents: null
});
vf.name = path.basename(file.path).split('.')[0];
vf.level = file.level;
vf.cell = file.cell;
vf.entity = file.entity;
vf.layer = file.layer;
vf.tech = file.tech;
if (this.push(vf) === false) { return; }
}
this.push(null);
}
options = Object.assign({
read: true
}, options);
let result = stream;
if (options.read) {
const reader = read();
bubbleStreamError(stream, reader);
result = stream.pipe(reader);
}
return result;
}
/**
* @param {Object} opts - Options for harvester
* @param {Array<{entity: BemEntityName, level: String, tech: String, path: String}>} opts.introspection - unordered file-entities list
* @param {String[]} opts.levels - ordered levels' paths list
* @param {Object<String, String[]>} [opts.techMap] - deps techs to file techs mapper
* @param {BemCell[]} opts.decl - resolved and ordered declaration
* @returns {Array<{entity: BemEntityName, level: String, tech: String, path: String}>} - resulting ordered file-entities list
*/
function harvest(opts) {
const declIndex = opts.decl.reduce((res, cell, idx) => {
res[cell.entity.id] || (res[cell.entity.id] = {});
res[cell.entity.id][cell.tech] = idx;
return res;
}, {});
const levelsPos = opts.levels.reduce((res, level, idx) => { res[level] = idx; return res; }, {});
const techMap = opts.techMap || {};
const fileTechToDep = Object.keys(techMap || {}).reduce((res, depTech) => {
Array.isArray(techMap[depTech]) || (techMap[depTech] = [techMap[depTech]]);
techMap[depTech].forEach(fileTech => {
res[fileTech] || (res[fileTech] = []);
res[fileTech].push(depTech);
});
return res;
}, {});
const res = [], depTechForFile = {};
for (const file of opts.introspection) {
if (file.tech && !fileTechToDep[file.tech] && !techMap[file.tech]) {
techMap[file.tech] = [file.tech];
fileTechToDep[file.tech] = [file.tech];
}
// Skip files with unwanted technologies
const fileTech = fileTechToDep[file.tech];
if (!fileTech) {
continue;
}
// … and files that does not exist in declaration
const techIndex = declIndex[file.entity.id];
const foundTech = techIndex && fileTech.find(ft => techIndex[ft] !== undefined);
if (!techIndex || !foundTech) {
continue;
}
// … and files from other levels
if (levelsPos[file.level] === undefined) {
continue;
}
depTechForFile[file.path] = foundTech;
res.push(file);
}
const techPos = Object.keys(techMap).reduce((_res, depTech) => {
techMap[depTech].forEach((fileTech, idx) => { _res[fileTech] = idx });
return _res;
}, {});
// Sort in the right order: cell.entity position in declaration,
return res.sort((f1, f2) => {
const f1DepTech = depTechForFile[f1.path];
const f2DepTech = depTechForFile[f2.path];
return f1.entity.id === f2.entity.id && f1DepTech === f2DepTech
? (levelsPos[f1.level] - levelsPos[f2.level]) || (techPos[f1.tech] - techPos[f2.tech])
: declIndex[f1.entity.id][f1DepTech] - declIndex[f2.entity.id][f2DepTech];
});
}