Introduction
This library helps to mask the underlying folder structure and simluates that all the files are stored under a single folder.
For example:
For the consumer of the library it will look like all the folders are merged from left to right and now under same folder.
This library simulates the behaviour of the broccoli-merge-trees
Usage
Constructor can take inputs of the type string
, BroccoliNode
or FSMerger expected format of Object explained here
let FSMerge = require('fs-merger');
let fs = new FSMerge(['test-1', 'test-2', 'test-3']);
let contentB = fs.readFileSync('b.txt');
let contentSubDir = fs.readFileSync('sub-dir/x.txt');
let contentA = fs.readFileSync('a.txt');
FSMerger Special Object
This kind of input is supported only to help broccoli-persistent-filter to reduce the number of merges and funnels needed to be performed before it is passed down to
persistent filter's constructor is called.
This library will help in avoding unneccesary merge required before calling broccoli-persistent-filter plugin.
For example:
const Filter = require('broccoli-persistent-filter');
class TestFilter extends Filter {
constructor(nodes) {
super(nodes);
}
processString(content) {
return content.replace(/broccoli/gi, `filter`);
}
};
const Funnel = require('broccoli-funnel');
const MergeTree = require('broccoli-merge-trees');
let mergedTree = new MergeTree([
new Funnel('fixture/docs', {
destDir: 'documents'
}),
new Funnel('fixture/example', {
getDestinationPath: function (relativePath) {
if (relativePath.includes('map.js')) {
return 'metal.js';
}
return relativePath;
}
}),
]);
module.exports = new TestFilter(mergedTree);
broccoli build dist
With this new library we can write the same above as following once PR is merged into broccoli-persistent-filter
.
let FSMergerObjectWithPrefix = {
root: 'fixture/docs',
prefix: 'documents'
}
let FSMergerObjectWithFileDest = {
root: 'fixture/example',
getDestinationPath: function (relativePath) {
if (relativePath.includes('map.js')) {
return 'metal.js';
}
return relativePath;
}
}
module.exports = new TestFilter([FSMergerObjectWithPrefix, FSMergerObjectWithFileDest]);
This new library helped in removing two funnels which where used only for the sake of renaming at the output of persitent filter and mergeTree was performed because persitent filter was restricted to accept only one inputNode.
FSMerger.fs
FSMerge.fs
is a proxy for the file operations and few whitelisted fsmerger operations
Following are the operation which FSMerger.fs
supports
All these are standard fs
operations. Refer node guide for file handling
- readFileSync
- existsSync
- lstatSync
- statSync
- readdirSync
- readdir
Following are specfic to FSMerger
Reads the filemeta passed down while creating the new FSMerger instance for a specific root.
Ex:
let FSMergerObjectWithPrefix = {
root: 'fixture/docs',
prefix: 'documents'
}
let FSMerge = require('fs-merger');
let fsmerge = new FSMerge([FSMergerObjectWithPrefix]);
let filemeta = fsmerge.fs.readFileMeta('c.txt');
This function is used to retrive file from a specfic input path (or root) directory. This function can used when we have same filename in mulitple inputPaths and we want spicific inputPath
ex:
let FSMerge = require('fs-merger');
let fsmerge = new FSMerge(['test-1', 'test-2', 'test-3']);
let contentA = fs.readFileSync('a.txt');
let contentB = fsmerge.fs.at(0).readFileSync('a.txt');
let contentC = fsmerge.fs.at(2).readFileSync('a.txt');
let contentSubDir = fsmerge.fs.at(1).readFileSync('sub-dir/x.txt');
-
entries
- performs same functionality as in walk-sync
. Refer the walk-sync
guide here.
-
relativePathTo
- Converts an absolute path into a relativePath
and an at
index
suitable for use when calling the other FSMerger methods.