How to convert all djvu files to pdf

460 Views Asked by At

it's answer. Just use nodejs and ddjvu from DJView lib. There

imports

const fs = require('fs');
const os = require('os');
const {spawn} = require('child_process');
const path = require('path');
const maxProcess = os.cpus().length - 1;// count of procces - 1 for system needs
let nowPlayed = 0;

method for convert file, and delete when converted.

function chpoc(args) {
    console.log(args[1] + " start converting");
    spawn(`ddjvu`, ["-format=pdf", args[0], args[1] + ".pdf"]).on('close', (data) => {
        console.log(args[1] + ".pdf converted");
        fs.unlink(args[0], (err) => {
            if (err) throw err;
            console.log(args[0] + ' successfully deleted!');
            nowPlayed--;
        })
    });
}

queue for optimize max convertions at one time let queue = [];

function startQueue() {
    if (nowPlayed < maxProcess && queue.length) {
        nowPlayed++;
        queue.pop()();
    }
}

setInterval(startQueue, 500)

fillthe queue and start it

function workWithFile(filepath) {
    const args = filepath.match(/(.*)\.djvu/)
    if (args && args.length) {
        queue.push(() => {
            chpoc(args);
        });
    }
}

show errors

const eachCallback = function (err) {
    err && console.error(err);
}

catalog three and finde the djvus

let filePaths = [];

function getFiles(dirPath, callback) {
    fs.readdir(dirPath, function (err, files) {
        if (err) return callback(err);
        files.forEach((fileName) => {
            setTimeout(() => {
                let filePath = path.join(dirPath, fileName);
                if (filePath) {
                    fs.stat(filePath, function (err, stat) {
                        if (err) return eachCallback(err);

                        if (stat.isDirectory()) {
                            getFiles(filePath, callback);
                        } else if (stat.isFile() && /\.djvu$/.test(filePath)) {
                            filePaths.push(filePath);
                            callback(filePath)
                        }
                    })
                }
            });
        });
    });

}

init from started dir

getFiles(__dirname, function (file) {
    workWithFile(file);
});
1

There are 1 best solutions below

0
On

imports

const fs = require('fs');
const os = require('os');
const {spawn} = require('child_process');
const path = require('path');
const maxProcess = os.cpus().length - 1;// count of procces - 1 for system needs
let nowPlayed = 0;

method for convert file, and delete when converted.

function chpoc(args) {
    console.log(args[1] + " start converting");
    spawn(`ddjvu`, ["-format=pdf", args[0], args[1] + ".pdf"]).on('close', (data) => {
        console.log(args[1] + ".pdf converted");
        fs.unlink(args[0], (err) => {
            if (err) throw err;
            console.log(args[0] + ' successfully deleted!');
            nowPlayed--;
        })
    });
}

queue for optimize max convertions at one time let queue = [];

function startQueue() {
    if (nowPlayed < maxProcess && queue.length) {
        nowPlayed++;
        queue.pop()();
    }
}

setInterval(startQueue, 500)

fill the queue and start it

function workWithFile(filepath) {
    const args = filepath.match(/(.*)\.djvu/)
    if (args && args.length) {
        queue.push(() => {
            chpoc(args);
        });
    }
}

show errors

const eachCallback = function (err) {
    err && console.error(err);
}

catalog three and finde the djvus

let filePaths = [];

function getFiles(dirPath, callback) {
    fs.readdir(dirPath, function (err, files) {
        if (err) return callback(err);
        files.forEach((fileName) => {
            setTimeout(() => {
                let filePath = path.join(dirPath, fileName);
                if (filePath) {
                    fs.stat(filePath, function (err, stat) {
                        if (err) return eachCallback(err);

                        if (stat.isDirectory()) {
                            getFiles(filePath, callback);
                        } else if (stat.isFile() && /\.djvu$/.test(filePath)) {
                            filePaths.push(filePath);
                            callback(filePath)
                        }
                    })
                }
            });
        });
    });

}

init from started dir

getFiles(__dirname, function (file) {
    workWithFile(file);
});