Get filepath to a variable immedietely after fs.writefile

810 Views Asked by At

I am trying to get the path of the file that I am writing as below. help me with code how to get the path from the below function.

I need the file path as the return variable. I am passing a number as barcodeSourceNumber.

pathToFile = build_barcode('123456789');

function build_barcode(barcodeSourceNumber) {
 var pngFileName;
  const bwipjs = require('bwip-js');

  bwipjs.toBuffer({
    bcid: 'code128',       // Barcode type
    text: barcodeSourceNumber,    // Text to encode
    scale: 3,               // 3x scaling factor
    height: 10,              // Bar height, in millimeters
    includetext: false,     // Show human-readable text
    textxalign: 'center',   // Always good to set this
  }, function (err, png) {
    var pngFileName = = barcodeSourceNumber + '.png';
    fs.writeFileSync(pngFileName, png);
  });

  return pngFileName;
}

But I am getting '.' or undefined as the return value when I try to call the function.

3

There are 3 best solutions below

0
On

This is what I would suggest you do:

const bwipjs = require('bwip-js');
const fs = require('fs');

async function build_barcode(barcodeSourceNumber) {
    // use promise version of .toBuffer()
    const pngData = await bwipjs.toBuffer({
        bcid: 'code128', // Barcode type
        text: barcodeSourceNumber, // Text to encode
        scale: 3, // 3x scaling factor
        height: 10, // Bar height, in millimeters
        includetext: false, // Show human-readable text
        textxalign: 'center', // Always good to set this
    });
    // combine filename with file extension and turn it into an absolute path
    const pngFileName = path.resolve(barcodeSourceNumber + '.png');
    await fs.promises.writeFile(pngFileName, pngData);
    // make final resolved value be the full filename
    return pngFileName;
}

build_barcode('123456789').then(result => {
    console.log(result);
}).catch(err => {
    console.log(err);
});

Changes:

  1. Use promise version of bwipjs.toBuffer() to make it simpler to communicate back asynchronous result
  2. Switch to fs.promises.writeFile() since we're already using promises and are already asynchronous
  3. Move require() out of the asynchronous flow, since it's blocking
  4. Using async for the function so we can use await and more simply sequence multiple asynchronous operations.
  5. Use path.resolve() to get the full, absolute path from our filename.
  6. Make build_barcode() return a promise so we can more easily communicate back the filename at the end of several asynchronous operations.
  7. If the caller wants just the directory name associated with the returned filename, then it can use path.dirname() on the whole pathname to get just the directory.
1
On

That's what promise does

function build_barcode(barcodeSourceNumber) {
  var pngFileName;
  const bwipjs = require("bwip-js");

  return new Promise((res, rej) => {
    bwipjs.toBuffer(
      {
        bcid: "code128", // Barcode type
        text: barcodeSourceNumber, // Text to encode
        scale: 3, // 3x scaling factor
        height: 10, // Bar height, in millimeters
        includetext: false, // Show human-readable text
        textxalign: "center", // Always good to set this
      },
      function (err, png) {
        /* error handling  */
        /* if (err) {
          rej(err)
        } */

        var pngFileName = barcodeSourceNumber + ".png";
        fs.writeFileSync(pngFileName, png);
        res(pngFileName);
      }
    );
  });
}

pathToFile = build_barcode("123456789").then((res) => {
  console.log(`pngFileName: ${res}`);
});

0
On

Of course I'm not sure whether bwipJs.toBuffer is asynchronous or not. You can also try the following methods


pathToFile = build_barcode("123456789");

function build_barcode(barcodeSourceNumber) {
  var pngFileName;
  const bwipjs = require("bwip-js");

  bwipjs.toBuffer(
    {
      bcid: "code128", // Barcode type
      text: barcodeSourceNumber, // Text to encode
      scale: 3, // 3x scaling factor
      height: 10, // Bar height, in millimeters
      includetext: false, // Show human-readable text
      textxalign: "center", // Always good to set this
    },
    function (err, png) {
      pngFileName = barcodeSourceNumber + ".png";
      fs.writeFileSync(pngFileName, png);
    }
  );

  return pngFileName;
}