Skip to content

Commit

Permalink
packager: add preprocess for buck worker
Browse files Browse the repository at this point in the history
Summary: For the Buck integration (work-in-progress), we want to add the ability to do some custom preprocessing similar to the packager server. The signature is different so I prefer to have a separate function for that. Also we don't need the transform options right now, I suggest we don't add them for now and add them later if necessary.

Reviewed By: davidaurelio

Differential Revision: D5094632

fbshipit-source-id: 1775ddef90b331deabc5be3e57a67436bce06c82
  • Loading branch information
Jean Lauliac authored and facebook-github-bot committed May 22, 2017
1 parent 8f31444 commit bfc0e8c
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 11 deletions.
8 changes: 8 additions & 0 deletions local-cli/util/Config.js
Expand Up @@ -22,6 +22,7 @@ const RN_CLI_CONFIG = 'rn-cli.config.js';
import type {GetTransformOptions, PostMinifyProcess, PostProcessModules} from '../../packager/src/Bundler';
import type {HasteImpl} from '../../packager/src/node-haste/Module';
import type {TransformVariants} from '../../packager/src/ModuleGraph/types.flow';
import type {PostProcessModules as PostProcessModulesForBuck} from '../../packager/src/ModuleGraph/types.flow.js';

/**
* Configuration file of the CLI.
Expand Down Expand Up @@ -89,6 +90,12 @@ export type ConfigT = {
*/
postProcessModules: PostProcessModules,

/**
* Same as `postProcessModules` but for the Buck worker. Eventually we do want
* to unify both variants.
*/
postProcessModulesForBuck: PostProcessModulesForBuck,

/**
* A module that exports:
* - a `getHasteName(filePath)` method that returns `hasteName` for module at
Expand All @@ -112,6 +119,7 @@ const defaultConfig: ConfigT = {
getTransformOptions: async () => ({}),
postMinifyProcess: x => x,
postProcessModules: modules => modules,
postProcessModulesForBuck: modules => modules,
transformVariants: () => ({default: {}}),
};

Expand Down
16 changes: 12 additions & 4 deletions packager/src/ModuleGraph/ModuleGraph.js
Expand Up @@ -22,6 +22,7 @@ import type {
GraphFn,
GraphResult,
Module,
PostProcessModules,
} from './types.flow';

type BuildFn = (
Expand All @@ -37,6 +38,7 @@ type BuildOptions = {|

exports.createBuildSetup = (
graph: GraphFn,
postProcessModules: PostProcessModules,
translateDefaultsPath: string => string = x => x,
): BuildFn =>
(entryPoints, options, callback) => {
Expand All @@ -51,10 +53,16 @@ exports.createBuildSetup = (
const graphOnlyModules = seq(graphWithOptions, getModules);

parallel({
graph: cb => graphWithOptions(
entryPoints,
cb,
),
graph: cb => graphWithOptions(entryPoints, (error, result) => {
if (error) {
cb(error);
return;
}
/* $FlowFixMe: not undefined if there is no error */
const {modules, entryModules} = result;
const prModules = postProcessModules(modules, [...entryPoints]);
cb(null, {modules: prModules, entryModules});
}),
moduleSystem: cb => graphOnlyModules(
[translateDefaultsPath(defaults.moduleSystem)],
cb,
Expand Down
20 changes: 13 additions & 7 deletions packager/src/ModuleGraph/__tests__/ModuleGraph-test.js
Expand Up @@ -16,7 +16,9 @@ const defaults = require('../../../defaults');
const FILE_TYPE = 'module';

describe('build setup', () => {
const buildSetup = ModuleGraph.createBuildSetup(graph);
const buildSetup = ModuleGraph.createBuildSetup(graph, mds => {
return [...mds].sort((l, r) => l.file.path > r.file.path);
});
const noOptions = {};
const noEntryPoints = [];

Expand Down Expand Up @@ -72,19 +74,19 @@ describe('build setup', () => {
});
});

it('places all entry points at the end', done => {
const entryPoints = ['a', 'b', 'c'];
it('places all entry points and dependencies at the end, post-processed', done => {
const entryPoints = ['b', 'c', 'd'];
buildSetup(entryPoints, noOptions, (error, result) => {
expect(Array.from(result.modules).slice(-3))
.toEqual(entryPoints.map(moduleFromPath));
expect(Array.from(result.modules).slice(-4))
.toEqual(['a', 'b', 'c', 'd'].map(moduleFromPath));
done();
});
});
});

function moduleFromPath(path) {
return {
dependencies: [],
dependencies: path === 'b' ? ['a'] : [],
file: {
code: '',
path,
Expand All @@ -95,8 +97,12 @@ function moduleFromPath(path) {

function graph(entryPoints, platform, options, callback) {
const modules = Array.from(entryPoints, moduleFromPath);
const depModules = Array.prototype.concat.apply(
[],
modules.map(x => x.dependencies.map(moduleFromPath)),
);
callback(null, {
entryModules: modules,
modules,
modules: modules.concat(depModules),
});
}
5 changes: 5 additions & 0 deletions packager/src/ModuleGraph/types.flow.js
Expand Up @@ -70,6 +70,11 @@ export type Module = {|
file: File,
|};

export type PostProcessModules = (
modules: Iterable<Module>,
entryPoints: Array<string>,
) => Iterable<Module>;

export type OutputFn = ({|
filename: string,
idForPath: IdForPathFn,
Expand Down

0 comments on commit bfc0e8c

Please sign in to comment.