Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/jszip/lib/generate/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
57 lines (49 sloc)
1.95 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var compressions = require('../compressions'); | |
var ZipFileWorker = require('./ZipFileWorker'); | |
/** | |
* Find the compression to use. | |
* @param {String} fileCompression the compression defined at the file level, if any. | |
* @param {String} zipCompression the compression defined at the load() level. | |
* @return {Object} the compression object to use. | |
*/ | |
var getCompression = function (fileCompression, zipCompression) { | |
var compressionName = fileCompression || zipCompression; | |
var compression = compressions[compressionName]; | |
if (!compression) { | |
throw new Error(compressionName + " is not a valid compression method !"); | |
} | |
return compression; | |
}; | |
/** | |
* Create a worker to generate a zip file. | |
* @param {JSZip} zip the JSZip instance at the right root level. | |
* @param {Object} options to generate the zip file. | |
* @param {String} comment the comment to use. | |
*/ | |
exports.generateWorker = function (zip, options, comment) { | |
var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName); | |
var entriesCount = 0; | |
try { | |
zip.forEach(function (relativePath, file) { | |
entriesCount++; | |
var compression = getCompression(file.options.compression, options.compression); | |
var compressionOptions = file.options.compressionOptions || options.compressionOptions || {}; | |
var dir = file.dir, date = file.date; | |
file._compressWorker(compression, compressionOptions) | |
.withStreamInfo("file", { | |
name : relativePath, | |
dir : dir, | |
date : date, | |
comment : file.comment || "", | |
unixPermissions : file.unixPermissions, | |
dosPermissions : file.dosPermissions | |
}) | |
.pipe(zipFileWorker); | |
}); | |
zipFileWorker.entriesCount = entriesCount; | |
} catch (e) { | |
zipFileWorker.error(e); | |
} | |
return zipFileWorker; | |
}; |