Export class instead of several functions

This commit is contained in:
Nick Playfair 2021-02-02 19:49:47 +00:00
parent 6cbbef212d
commit 444e8a6b2a

View File

@ -14,15 +14,20 @@ const gerberFiles = [
'CAMOutputs/GerberFiles/profile.gbr', 'CAMOutputs/GerberFiles/profile.gbr',
]; ];
/** class ImageGenerator {
* Configures the folders used constructor(folderConfig, imgConfig) {
* @param {Object} folderConfig Object with properties tmpDir and imgDir containing paths to temporary and image output folders // this.folderConfig = folderConfig;
*/ this.tmpDir = folderConfig.tmpDir;
function config(folderConfig) { this.imgDir = folderConfig.imgDir;
// Create tmpDir if it does not exist this.imgConfig = imgConfig;
fs.ensureDirSync(folderConfig.tmpDir);
// Create imgDir if it does not exist // Ensure that the folders exist
fs.ensureDirSync(folderConfig.imgDir); try {
fs.ensureDirSync(this.tmpDir);
fs.ensureDirSync(this.imgDir);
} catch (error) {
throw new Error(error);
}
} }
/** /**
@ -31,7 +36,7 @@ function config(folderConfig) {
* @param {string} tmpDir Temporary directory to extract to * @param {string} tmpDir Temporary directory to extract to
* @returns {Promise} Promise object represents number of files extracted * @returns {Promise} Promise object represents number of files extracted
*/ */
function extractArchive(fileName, tmpDir) { static extractArchive(fileName, tmpDir) {
// Check archive exists // Check archive exists
try { try {
if (!fs.existsSync(fileName)) { if (!fs.existsSync(fileName)) {
@ -53,7 +58,7 @@ function extractArchive(fileName, tmpDir) {
* @param {string} dir Directory containing layer files * @param {string} dir Directory containing layer files
* @returns {Array} Array of paths to the layers files * @returns {Array} Array of paths to the layers files
*/ */
function getLayers(dir) { static getLayers(dir) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
// Make sure the directory exists // Make sure the directory exists
if (!fs.existsSync(dir)) { if (!fs.existsSync(dir)) {
@ -78,7 +83,7 @@ function getLayers(dir) {
* Clean up the archive folder in the specified directory * Clean up the archive folder in the specified directory
* @param {string} dir Path to a directory to clean up * @param {string} dir Path to a directory to clean up
*/ */
function cleanupFiles(dir) { static cleanupFiles(dir) {
try { try {
const folder = path.join(dir, 'archive'); const folder = path.join(dir, 'archive');
fs.emptyDirSync(folder); fs.emptyDirSync(folder);
@ -91,14 +96,12 @@ function cleanupFiles(dir) {
* Take an archive containing gerber files, config object, temporary dir * Take an archive containing gerber files, config object, temporary dir
* and output dir and create a PNG image from the gerber in the output dir * and output dir and create a PNG image from the gerber in the output dir
* @param {string} gerber Path to an archive file containing gerber * @param {string} gerber Path to an archive file containing gerber
* @param {Object} config Object containing sharp settings for resizeWidth, compLevel and density * @returns {Promise.<string>} Promise to return path to image
* @param {string} tmpDir Temporary directory to extract the archive to
* @param {string} outputDir Directory to save the image to
*/ */
function gerberToImage(gerber, imgConfig, tmpDir, outputDir) { gerberToImage(gerber) {
// Create output dir if it doesn't exist // Create output dir if it doesn't exist
try { try {
fs.ensureDirSync(outputDir, 0o644); fs.ensureDirSync(this.imgDir, 0o644);
} catch (e) { } catch (e) {
throw new Error(e); throw new Error(e);
} }
@ -108,10 +111,10 @@ function gerberToImage(gerber, imgConfig, tmpDir, outputDir) {
if (!fs.existsSync(gerber)) { if (!fs.existsSync(gerber)) {
throw Error('Archive does not exist.'); throw Error('Archive does not exist.');
} }
if (!fs.existsSync(tmpDir)) { if (!fs.existsSync(this.tmpDir)) {
throw Error('Temporary folder does not exist.'); throw Error('Temporary folder does not exist.');
} }
if (!fs.existsSync(outputDir)) { if (!fs.existsSync(this.imgDir)) {
throw Error('Output folder does not exist.'); throw Error('Output folder does not exist.');
} }
} catch (e) { } catch (e) {
@ -120,33 +123,32 @@ function gerberToImage(gerber, imgConfig, tmpDir, outputDir) {
// Set filenames // Set filenames
const imageName = path.basename(gerber, '.zip'); const imageName = path.basename(gerber, '.zip');
const destFile = `${path.join(outputDir, imageName)}.png`; const destFile = `${path.join(this.imgDir, imageName)}.png`;
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
extractArchive(gerber, tmpDir); ImageGenerator.extractArchive(gerber, this.tmpDir);
getLayers(path.join(tmpDir, 'archive')) ImageGenerator.getLayers(path.join(this.tmpDir, 'archive'))
.then(pcbStackup) .then(pcbStackup)
.then((stackup) => { .then((stackup) => {
sharp(Buffer.from(stackup.top.svg), { density: imgConfig.density }) sharp(Buffer.from(stackup.top.svg), {
.resize({ width: imgConfig.resizeWidth }) density: this.imgConfig.density,
.png({ compressionLevel: imgConfig.compLevel }) })
.resize({ width: this.imgConfig.resizeWidth })
.png({ compressionLevel: this.imgConfig.compLevel })
.toFile(destFile); .toFile(destFile);
}) })
.then(() => { .then(() => {
cleanupFiles(tmpDir); ImageGenerator.cleanupFiles(this.tmpDir);
resolve(destFile); resolve(destFile);
}) })
.catch((e) => { .catch((e) => {
cleanupFiles(tmpDir); ImageGenerator.cleanupFiles(this.tmpDir);
reject(new Error(e)); reject(new Error(e));
}); });
}); });
} }
}
module.exports = { module.exports = {
cleanupFiles, ImageGenerator,
getLayers,
extractArchive,
config,
gerberToImage,
}; };