mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-07 09:17:55 +08:00
Reviewed By: martinbigio Differential Revision: D2808973 fb-gh-sync-id: 2e06355d1e0dd3c1ea297273c44858ec4ed574ee
423 lines
12 KiB
JavaScript
423 lines
12 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
'use strict';
|
|
|
|
const debug = require('debug')('ReactNativePackager:DependencyGraph');
|
|
const util = require('util');
|
|
const path = require('path');
|
|
const isAbsolutePath = require('absolute-path');
|
|
const getAssetDataFromName = require('../lib/getAssetDataFromName');
|
|
const Promise = require('promise');
|
|
|
|
class ResolutionRequest {
|
|
constructor({
|
|
platform,
|
|
preferNativePlatform,
|
|
entryPath,
|
|
hasteMap,
|
|
deprecatedAssetMap,
|
|
helpers,
|
|
moduleCache,
|
|
fastfs,
|
|
shouldThrowOnUnresolvedErrors,
|
|
}) {
|
|
this._platform = platform;
|
|
this._preferNativePlatform = preferNativePlatform;
|
|
this._entryPath = entryPath;
|
|
this._hasteMap = hasteMap;
|
|
this._deprecatedAssetMap = deprecatedAssetMap;
|
|
this._helpers = helpers;
|
|
this._moduleCache = moduleCache;
|
|
this._fastfs = fastfs;
|
|
this._shouldThrowOnUnresolvedErrors = shouldThrowOnUnresolvedErrors;
|
|
this._resetResolutionCache();
|
|
}
|
|
|
|
_tryResolve(action, secondaryAction) {
|
|
return action().catch((error) => {
|
|
if (error.type !== 'UnableToResolveError') {
|
|
throw error;
|
|
}
|
|
return secondaryAction();
|
|
});
|
|
}
|
|
|
|
resolveDependency(fromModule, toModuleName) {
|
|
const resHash = resolutionHash(fromModule.path, toModuleName);
|
|
|
|
if (this._immediateResolutionCache[resHash]) {
|
|
return Promise.resolve(this._immediateResolutionCache[resHash]);
|
|
}
|
|
|
|
const asset_DEPRECATED = this._deprecatedAssetMap.resolve(
|
|
fromModule,
|
|
toModuleName
|
|
);
|
|
if (asset_DEPRECATED) {
|
|
return Promise.resolve(asset_DEPRECATED);
|
|
}
|
|
|
|
const cacheResult = (result) => {
|
|
this._immediateResolutionCache[resHash] = result;
|
|
return result;
|
|
};
|
|
|
|
const forgive = (error) => {
|
|
if (
|
|
error.type !== 'UnableToResolveError' ||
|
|
this._shouldThrowOnUnresolvedErrors(this._entryPath, this._platform)
|
|
) {
|
|
throw error;
|
|
}
|
|
|
|
debug(
|
|
'Unable to resolve module %s from %s',
|
|
toModuleName,
|
|
fromModule.path
|
|
);
|
|
return null;
|
|
};
|
|
|
|
if (!this._helpers.isNodeModulesDir(fromModule.path)
|
|
&& toModuleName[0] !== '.' &&
|
|
toModuleName[0] !== '/') {
|
|
return this._tryResolve(
|
|
() => this._resolveHasteDependency(fromModule, toModuleName),
|
|
() => this._resolveNodeDependency(fromModule, toModuleName)
|
|
).then(
|
|
cacheResult,
|
|
forgive,
|
|
);
|
|
}
|
|
|
|
return this._resolveNodeDependency(fromModule, toModuleName)
|
|
.then(
|
|
cacheResult,
|
|
forgive,
|
|
);
|
|
}
|
|
|
|
getOrderedDependencies(response, mocksPattern) {
|
|
return this._getAllMocks(mocksPattern).then(mocks => {
|
|
response.setMocks(mocks);
|
|
|
|
const entry = this._moduleCache.getModule(this._entryPath);
|
|
const visited = Object.create(null);
|
|
visited[entry.hash()] = true;
|
|
|
|
const collect = (mod) => {
|
|
response.pushDependency(mod);
|
|
return mod.getDependencies().then(
|
|
depNames => Promise.all(
|
|
depNames.map(name => this.resolveDependency(mod, name))
|
|
).then((dependencies) => [depNames, dependencies])
|
|
).then(([depNames, dependencies]) => {
|
|
if (mocks) {
|
|
return mod.getName().then(name => {
|
|
if (mocks[name]) {
|
|
const mockModule =
|
|
this._moduleCache.getModule(mocks[name]);
|
|
depNames.push(name);
|
|
dependencies.push(mockModule);
|
|
}
|
|
return [depNames, dependencies];
|
|
});
|
|
}
|
|
return Promise.resolve([depNames, dependencies]);
|
|
}).then(([depNames, dependencies]) => {
|
|
let p = Promise.resolve();
|
|
const filteredPairs = [];
|
|
|
|
dependencies.forEach((modDep, i) => {
|
|
if (modDep == null) {
|
|
debug(
|
|
'WARNING: Cannot find required module `%s` from module `%s`',
|
|
depNames[i],
|
|
mod.path
|
|
);
|
|
return false;
|
|
}
|
|
return filteredPairs.push([depNames[i], modDep]);
|
|
});
|
|
|
|
response.setResolvedDependencyPairs(mod, filteredPairs);
|
|
|
|
filteredPairs.forEach(([depName, modDep]) => {
|
|
p = p.then(() => {
|
|
if (!visited[modDep.hash()]) {
|
|
visited[modDep.hash()] = true;
|
|
return collect(modDep);
|
|
}
|
|
return null;
|
|
});
|
|
});
|
|
|
|
return p;
|
|
});
|
|
};
|
|
|
|
return collect(entry);
|
|
});
|
|
}
|
|
|
|
getAsyncDependencies(response) {
|
|
return Promise.resolve().then(() => {
|
|
const mod = this._moduleCache.getModule(this._entryPath);
|
|
return mod.getAsyncDependencies().then(bundles =>
|
|
Promise
|
|
.all(bundles.map(bundle =>
|
|
Promise.all(bundle.map(
|
|
dep => this.resolveDependency(mod, dep)
|
|
))
|
|
))
|
|
.then(bs => bs.map(bundle => bundle.map(dep => dep.path)))
|
|
);
|
|
}).then(asyncDependencies => asyncDependencies.forEach(
|
|
(dependency) => response.pushAsyncDependency(dependency)
|
|
));
|
|
}
|
|
|
|
_getAllMocks(pattern) {
|
|
// Take all mocks in all the roots into account. This is necessary
|
|
// because currently mocks are global: any module can be mocked by
|
|
// any mock in the system.
|
|
let mocks = null;
|
|
if (pattern) {
|
|
mocks = Object.create(null);
|
|
this._fastfs.matchFilesByPattern(pattern).forEach(file =>
|
|
mocks[path.basename(file, path.extname(file))] = file
|
|
);
|
|
}
|
|
return Promise.resolve(mocks);
|
|
}
|
|
|
|
_resolveHasteDependency(fromModule, toModuleName) {
|
|
toModuleName = normalizePath(toModuleName);
|
|
|
|
let p = fromModule.getPackage();
|
|
if (p) {
|
|
p = p.redirectRequire(toModuleName);
|
|
} else {
|
|
p = Promise.resolve(toModuleName);
|
|
}
|
|
|
|
return p.then((realModuleName) => {
|
|
let dep = this._hasteMap.getModule(realModuleName, this._platform);
|
|
if (dep && dep.type === 'Module') {
|
|
return dep;
|
|
}
|
|
|
|
let packageName = realModuleName;
|
|
while (packageName && packageName !== '.') {
|
|
dep = this._hasteMap.getModule(packageName, this._platform);
|
|
if (dep && dep.type === 'Package') {
|
|
break;
|
|
}
|
|
packageName = path.dirname(packageName);
|
|
}
|
|
|
|
if (dep && dep.type === 'Package') {
|
|
const potentialModulePath = path.join(
|
|
dep.root,
|
|
path.relative(packageName, realModuleName)
|
|
);
|
|
return this._tryResolve(
|
|
() => this._loadAsFile(
|
|
potentialModulePath,
|
|
fromModule,
|
|
toModuleName,
|
|
),
|
|
() => this._loadAsDir(potentialModulePath, fromModule, toModuleName),
|
|
);
|
|
}
|
|
|
|
throw new UnableToResolveError(
|
|
fromModule,
|
|
toModuleName,
|
|
'Unable to resolve dependency',
|
|
);
|
|
});
|
|
}
|
|
|
|
_redirectRequire(fromModule, modulePath) {
|
|
return Promise.resolve(fromModule.getPackage()).then(p => {
|
|
if (p) {
|
|
return p.redirectRequire(modulePath);
|
|
}
|
|
return modulePath;
|
|
});
|
|
}
|
|
|
|
_resolveNodeDependency(fromModule, toModuleName) {
|
|
if (toModuleName[0] === '.' || toModuleName[1] === '/') {
|
|
const potentialModulePath = isAbsolutePath(toModuleName) ?
|
|
toModuleName :
|
|
path.join(path.dirname(fromModule.path), toModuleName);
|
|
return this._redirectRequire(fromModule, potentialModulePath).then(
|
|
realModuleName => this._tryResolve(
|
|
() => this._loadAsFile(realModuleName, fromModule, toModuleName),
|
|
() => this._loadAsDir(realModuleName, fromModule, toModuleName)
|
|
)
|
|
);
|
|
} else {
|
|
return this._redirectRequire(fromModule, toModuleName).then(
|
|
realModuleName => {
|
|
const searchQueue = [];
|
|
for (let currDir = path.dirname(fromModule.path);
|
|
currDir !== path.parse(fromModule.path).root;
|
|
currDir = path.dirname(currDir)) {
|
|
searchQueue.push(
|
|
path.join(currDir, 'node_modules', realModuleName)
|
|
);
|
|
}
|
|
|
|
let p = Promise.reject(new UnableToResolveError(
|
|
fromModule,
|
|
toModuleName,
|
|
'Node module not found',
|
|
));
|
|
searchQueue.forEach(potentialModulePath => {
|
|
p = this._tryResolve(
|
|
() => this._tryResolve(
|
|
() => p,
|
|
() => this._loadAsFile(potentialModulePath, fromModule, toModuleName),
|
|
),
|
|
() => this._loadAsDir(potentialModulePath, fromModule, toModuleName)
|
|
);
|
|
});
|
|
|
|
return p;
|
|
});
|
|
}
|
|
}
|
|
|
|
_loadAsFile(potentialModulePath, fromModule, toModule) {
|
|
return Promise.resolve().then(() => {
|
|
if (this._helpers.isAssetFile(potentialModulePath)) {
|
|
const dirname = path.dirname(potentialModulePath);
|
|
if (!this._fastfs.dirExists(dirname)) {
|
|
throw new UnableToResolveError(
|
|
fromModule,
|
|
toModule,
|
|
`Directory ${dirname} doesn't exist`,
|
|
);
|
|
}
|
|
|
|
const {name, type} = getAssetDataFromName(potentialModulePath);
|
|
|
|
let pattern = '^' + name + '(@[\\d\\.]+x)?';
|
|
if (this._platform != null) {
|
|
pattern += '(\\.' + this._platform + ')?';
|
|
}
|
|
pattern += '\\.' + type;
|
|
|
|
// We arbitrarly grab the first one, because scale selection
|
|
// will happen somewhere
|
|
const [assetFile] = this._fastfs.matches(
|
|
dirname,
|
|
new RegExp(pattern)
|
|
);
|
|
|
|
if (assetFile) {
|
|
return this._moduleCache.getAssetModule(assetFile);
|
|
}
|
|
}
|
|
|
|
let file;
|
|
if (this._fastfs.fileExists(potentialModulePath)) {
|
|
file = potentialModulePath;
|
|
} else if (this._platform != null &&
|
|
this._fastfs.fileExists(potentialModulePath + '.' + this._platform + '.js')) {
|
|
file = potentialModulePath + '.' + this._platform + '.js';
|
|
} else if (this._preferNativePlatform &&
|
|
this._fastfs.fileExists(potentialModulePath + '.native.js')) {
|
|
file = potentialModulePath + '.native.js';
|
|
} else if (this._fastfs.fileExists(potentialModulePath + '.js')) {
|
|
file = potentialModulePath + '.js';
|
|
} else if (this._fastfs.fileExists(potentialModulePath + '.json')) {
|
|
file = potentialModulePath + '.json';
|
|
} else {
|
|
throw new UnableToResolveError(
|
|
fromModule,
|
|
toModule,
|
|
`File ${potentialModulePath} doesnt exist`,
|
|
);
|
|
}
|
|
|
|
return this._moduleCache.getModule(file);
|
|
});
|
|
}
|
|
|
|
_loadAsDir(potentialDirPath, fromModule, toModule) {
|
|
return Promise.resolve().then(() => {
|
|
if (!this._fastfs.dirExists(potentialDirPath)) {
|
|
throw new UnableToResolveError(
|
|
fromModule,
|
|
toModule,
|
|
`Invalid directory ${potentialDirPath}`,
|
|
);
|
|
}
|
|
|
|
const packageJsonPath = path.join(potentialDirPath, 'package.json');
|
|
if (this._fastfs.fileExists(packageJsonPath)) {
|
|
return this._moduleCache.getPackage(packageJsonPath)
|
|
.getMain().then(
|
|
(main) => this._tryResolve(
|
|
() => this._loadAsFile(main, fromModule, toModule),
|
|
() => this._loadAsDir(main, fromModule, toModule)
|
|
)
|
|
);
|
|
}
|
|
|
|
return this._loadAsFile(
|
|
path.join(potentialDirPath, 'index'),
|
|
fromModule,
|
|
toModule,
|
|
);
|
|
});
|
|
}
|
|
|
|
_resetResolutionCache() {
|
|
this._immediateResolutionCache = Object.create(null);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
function resolutionHash(modulePath, depName) {
|
|
return `${path.resolve(modulePath)}:${depName}`;
|
|
}
|
|
|
|
|
|
function UnableToResolveError(fromModule, toModule, message) {
|
|
Error.call(this);
|
|
Error.captureStackTrace(this, this.constructor);
|
|
this.message = util.format(
|
|
'Unable to resolve module %s from %s: %s',
|
|
toModule,
|
|
fromModule.path,
|
|
message,
|
|
);
|
|
this.type = this.name = 'UnableToResolveError';
|
|
}
|
|
|
|
util.inherits(UnableToResolveError, Error);
|
|
|
|
function normalizePath(modulePath) {
|
|
if (path.sep === '/') {
|
|
modulePath = path.normalize(modulePath);
|
|
} else if (path.posix) {
|
|
modulePath = path.posix.normalize(modulePath);
|
|
}
|
|
|
|
return modulePath.replace(/\/$/, '');
|
|
}
|
|
|
|
module.exports = ResolutionRequest;
|