-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
282 lines (266 loc) · 8.94 KB
/
index.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
277
278
279
280
281
const { namedTypes } = require("ast-types");
const { parse } = require("@babel/parser");
const { visit } = require("recast");
const stringify = require("fast-safe-stringify");
const path = require("path");
const fs = require('fs');
const { walk } = require('walk');
const R = require('ramda');
const { assert } = require("console");
const babelOptions = {
sourceType: "module",
strictMode: false,
allowImportExportEverywhere: true,
allowReturnOutsideFunction: true,
allowAwaitOutsideFunction: true,
startLine: 1,
tokens: true,
errorRecovery: true,
plugins: [
"asyncGenerators",
"bigInt",
"classPrivateMethods",
"classPrivateProperties",
"classProperties",
"decorators-legacy",
"doExpressions",
"dynamicImport",
"exportDefaultFrom",
"exportExtensions",
"exportNamespaceFrom",
"functionBind",
"functionSent",
"importMeta",
"nullishCoalescingOperator",
"numericSeparator",
"objectRestSpread",
"optionalCatchBinding",
"optionalChaining",
["pipelineOperator", { proposal: "minimal" }],
"throwExpressions",
"jsx",
"typescript",
"topLevelAwait"
]
};
const modules = {};
function countModule(moduleName, includingFile) {
const potentialFiles = [
moduleName + '.js',
moduleName + '/index.js',
moduleName + '/index.ts',
moduleName + '.ts',
moduleName + '.jsx',
moduleName + '.tsx',
path.join(moduleName, R.last(moduleName.split(path.sep)) + '.js'), // Weird search behavior
path.join(moduleName, R.last(moduleName.split(path.sep)) + '.jsx'), // Weird search behavior
moduleName,
];
for (const fileName of potentialFiles) {
if (!fs.existsSync(fileName)) {
continue;
}
if (!(fileName in modules)) {
modules[fileName] = {};
}
modules[fileName][includingFile] = true;
return;
}
// Just include the module name directly.
if (!(moduleName in modules)) {
modules[moduleName] = {};
}
modules[moduleName][includingFile] = true;
}
const specialPaths = {
'@app': './',
'@client': './client',
'@shared': './',
};
function addModule(moduleName, sourcePath, rootPath) {
const splitName = moduleName.split(path.sep);
if (['.', '..'].includes(splitName[0])) {
const basePath = sourcePath.split(path.sep);
basePath.pop();
countModule(path.join(...basePath, moduleName), sourcePath);
} else if (specialPaths[splitName[0]]) {
// Remove special path specifier
const prefixPath = specialPaths[splitName[0]];
splitName.shift();
const modulePath = path.join(prefixPath, ...splitName);
countModule(path.join(rootPath, modulePath), sourcePath);
} else {
countModule(moduleName, sourcePath);
}
}
const usedIdentifiers = {};
const declaredIdentifiers = {};
function addUsedIdentifier(identifier) {
// Just include the module name directly.
if (!(identifier in usedIdentifiers)) {
usedIdentifiers[identifier] = 0;
}
usedIdentifiers[identifier] += 1;
}
function addDeclaration(identifier, sourcePath) {
// Just include the module name directly.
if (!(identifier in declaredIdentifiers)) {
declaredIdentifiers[identifier] = [];
}
declaredIdentifiers[identifier].push(sourcePath);
}
function createCallExpressionVisitor(sourcePath, rootPath) {
return function (astPath) {
const value = astPath.value;
// Handle tracking require'd files
if (value.callee.name === 'require') {
const moduleName = value.arguments[0].value;
if (!moduleName) {
return this.traverse(astPath);
}
addModule(moduleName, sourcePath, rootPath);
return this.traverse(astPath);
}
// Handle tracking imported files
if (value.callee.type === 'Import') {
const moduleName = value.arguments[0].value;
if (!moduleName) {
return this.traverse(astPath);
}
addModule(moduleName, sourcePath, rootPath);
return this.traverse(astPath);
}
// Handle tracking other function calls.
const functionName = value.callee.name;
if (functionName) {
addUsedIdentifier(functionName);
}
this.traverse(astPath, {
visitMemberExpression(astPath) {
const objectName = astPath.value.object.name;
if (objectName) {
addUsedIdentifier(objectName)
}
return false;
},
visitIdentifier(astPath) {
const value = astPath.value;
addUsedIdentifier(value.name)
return false;
},
visitCallExpression: createCallExpressionVisitor(sourcePath, rootPath),
})
};
}
function processSource(source, sourcePath, rootPath) {
const ast = parse(source, babelOptions);
const visitCallExpression = createCallExpressionVisitor(sourcePath, rootPath);
visit(ast, {
visitFunctionDeclaration(astPath) {
const value = astPath.value;
// Some function declarations are anonymous.
if (value.id) {
const name = value.id.name;
addDeclaration(name, sourcePath);
}
// We only want to visit call expressions
this.traverse(astPath, {
visitCallExpression, visitIdentifier(astPath) {
const value = astPath.value;
addUsedIdentifier(value.name)
return false;
},
});
},
visitVariableDeclarator(astPath) {
const value = astPath.value;
const name = value.id.name;
// Filter out require definitions
if (name && value.init && !(value.init.type === 'CallExpression' && value.init.callee.name === 'require')) {
// some declarations are via object unpacking
// we don't really care much about these.
addDeclaration(name, sourcePath);
}
this.traverse(astPath, {
visitCallExpression, visitIdentifier(astPath) {
const value = astPath.value;
addUsedIdentifier(value.name)
return false;
},
});
},
visitImportDeclaration(astPath) {
const moduleName = astPath.value.source.value;
addModule(moduleName, sourcePath, rootPath);
return false;
},
// visitExportSpecifier(astPath) {
// const moduleName = astPath;
// console.log('woop', moduleName);
// // addModule(moduleName, sourcePath, rootPath);
// return false;
// },
visitExportNamedDeclaration(astPath) {
if (!astPath.value.source) {
return false;
}
const moduleName = astPath.value.source.value;
addModule(moduleName, sourcePath, rootPath);
return false;
},
visitCallExpression
});
}
const walkOptions = {
followLinks: false,
filters: [
"_test",
"node_modules",
"test",
"stories",
"build",
".storybook",
"eslint-plugin-divvy-rules",
"cypress",
"coverage",
"jest",
"public",
]
}
const rootFolder = '../divvy-homes/src/';
const indexingWalker = walk(rootFolder, walkOptions);
indexingWalker.on("file", (root, fileStats, next) => {
if (!['.js', '.jsx', '.ts', '.tsx'].includes(path.extname(fileStats.name))) {
return next();
}
modules[path.join(root, fileStats.name)] = {};
next();
}).on('end', () => {
const walker = walk(rootFolder, walkOptions);
walker.on("file", (root, fileStats, next) => {
if (!['.js', '.jsx', '.ts', '.tsx'].includes(path.extname(fileStats.name))) {
return next();
}
const fullPath = path.join(root, fileStats.name);
fs.readFile(fullPath, function (err, data) {
// console.log("Processing", fullPath);
try {
processSource(data.toString(), fullPath, '../divvy-homes/src');
} catch (err) {
console.log("error processing sourcefile:", fullPath)
console.log(err);
}
next();
});
}).on('end', () => {
for (const [key, value] of Object.entries(modules)) {
if (Object.entries(value).length !== 0) {
continue;
}
console.log(`${key}, ${Object.entries(value).length}`)
}
// for (const [key, value] of Object.entries(declaredIdentifiers)) {
// console.log(`${key}, ${usedIdentifiers[key]}, ${value}`)
// }
})
})