mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
fa6191f6ac
Summary: In response to [this comment](https://github.com/facebook/react-native/pull/9009#issuecomment-245322397). I could be wrong here, but I think Watchman can't handle symlinks, so we need to make sure symlinks-to-symlinks are handled up front. Closes https://github.com/facebook/react-native/pull/9792 Differential Revision: D3858349 Pulled By: bestander fbshipit-source-id: f3a34dae90ed9a7004a03158288db5e1932bfc69
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
/**
|
|
* Find and resolve symlinks in `lookupFolder`.
|
|
* Ignore any descendants of the paths in `ignoredRoots`.
|
|
*/
|
|
module.exports = function findSymlinksPaths(lookupFolder, ignoredRoots) {
|
|
const timeStart = Date.now();
|
|
const folders = fs.readdirSync(lookupFolder);
|
|
|
|
const resolvedSymlinks = [];
|
|
folders.forEach(folder => {
|
|
const visited = [];
|
|
|
|
let symlink = path.resolve(lookupFolder, folder);
|
|
while (fs.lstatSync(symlink).isSymbolicLink()) {
|
|
const index = visited.indexOf(symlink);
|
|
if (index !== -1) {
|
|
throw Error(
|
|
`Infinite symlink recursion detected:\n ` +
|
|
visited.slice(index).join(`\n `)
|
|
);
|
|
}
|
|
|
|
visited.push(symlink);
|
|
symlink = path.resolve(
|
|
path.dirname(symlink),
|
|
fs.readlinkSync(symlink)
|
|
);
|
|
}
|
|
|
|
if (visited.length && !rootExists(ignoredRoots, symlink)) {
|
|
resolvedSymlinks.push(symlink);
|
|
}
|
|
});
|
|
|
|
const timeEnd = Date.now();
|
|
console.log(`Scanning ${folders.length} folders for symlinks in ${lookupFolder} (${timeEnd - timeStart}ms)`);
|
|
|
|
return resolvedSymlinks;
|
|
};
|
|
|
|
function rootExists(roots, child) {
|
|
return roots.some(root => isDescendant(root, child));
|
|
}
|
|
|
|
function isDescendant(root, child) {
|
|
return root === child || child.startsWith(root + path.sep);
|
|
}
|