mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-22 14:27:18 +00:00

This implements a new way of image write streaming under use of pipage and blockmap, which paves the way for a few things like using network locations as sources, and imaging of storage devices (aka backups). As it allows for mutation of the streaming pipeline while it's writing, it also facilitates the development of dynamic block-mapping. Change-Type: minor
249 lines
7.0 KiB
JavaScript
249 lines
7.0 KiB
JavaScript
/*
|
|
* Copyright 2016 resin.io
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
/* eslint-disable jsdoc/require-example */
|
|
|
|
const Bluebird = require('bluebird')
|
|
const fs = Bluebird.promisifyAll(require('fs'))
|
|
const PassThroughStream = require('stream').PassThrough
|
|
const lzma = Bluebird.promisifyAll(require('lzma-native'))
|
|
const zlib = require('zlib')
|
|
const unbzip2Stream = require('unbzip2-stream')
|
|
const gzip = require('./gzip')
|
|
const udif = Bluebird.promisifyAll(require('udif'))
|
|
const archive = require('./archive')
|
|
const utils = require('./utils')
|
|
const zipArchiveHooks = require('./archive-hooks/zip')
|
|
const fileExtensions = require('../shared/file-extensions')
|
|
const path = require('path')
|
|
const errors = require('../shared/errors')
|
|
|
|
/**
|
|
* @summary Default image extension to be assumed
|
|
* @type {String}
|
|
* @constant
|
|
*/
|
|
const DEFAULT_EXT = 'img'
|
|
|
|
/**
|
|
* @summary Image handlers
|
|
* @namespace handlers
|
|
* @public
|
|
*/
|
|
module.exports = {
|
|
|
|
/**
|
|
* @summary Handle BZ2 compressed images
|
|
* @function
|
|
* @public
|
|
* @memberof handlers
|
|
*
|
|
* @param {String} imagePath - image path
|
|
* @param {Object} options - options
|
|
* @param {Number} [options.size] - image size
|
|
*
|
|
* @fulfil {Object} - image metadata
|
|
* @returns {Promise}
|
|
*/
|
|
'application/x-bzip2': (imagePath, options) => {
|
|
return {
|
|
path: imagePath,
|
|
archiveExtension: fileExtensions.getLastFileExtension(imagePath),
|
|
extension: fileExtensions.getPenultimateFileExtension(imagePath) || DEFAULT_EXT,
|
|
stream: fs.createReadStream(imagePath),
|
|
size: {
|
|
original: options.size,
|
|
final: {
|
|
estimation: true,
|
|
value: options.size
|
|
}
|
|
},
|
|
transform: unbzip2Stream()
|
|
}
|
|
},
|
|
|
|
/**
|
|
* @summary Handle GZ compressed images
|
|
* @function
|
|
* @public
|
|
* @memberof handlers
|
|
*
|
|
* @param {String} imagePath - image path
|
|
* @param {Object} options - options
|
|
* @param {Number} [options.size] - image size
|
|
*
|
|
* @fulfil {Object} - image metadata
|
|
* @returns {Promise}
|
|
*/
|
|
'application/gzip': (imagePath, options) => {
|
|
return Bluebird.using(fs.openAsync(imagePath, 'r').disposer((fileDescriptor) => {
|
|
return fs.closeAsync(fileDescriptor)
|
|
}), (fileDescriptor) => {
|
|
return gzip.getUncompressedSize({
|
|
size: options.size,
|
|
read: (position, count) => {
|
|
return utils.readBufferFromImageFileDescriptor(fileDescriptor, position, count)
|
|
}
|
|
})
|
|
}).then((uncompressedSize) => {
|
|
return {
|
|
path: imagePath,
|
|
archiveExtension: fileExtensions.getLastFileExtension(imagePath),
|
|
extension: fileExtensions.getPenultimateFileExtension(imagePath) || DEFAULT_EXT,
|
|
stream: fs.createReadStream(imagePath),
|
|
size: {
|
|
original: options.size,
|
|
final: {
|
|
estimation: true,
|
|
value: uncompressedSize
|
|
}
|
|
},
|
|
transform: zlib.createGunzip()
|
|
}
|
|
})
|
|
},
|
|
|
|
/**
|
|
* @summary Handle XZ compressed images
|
|
* @function
|
|
* @public
|
|
* @memberof handlers
|
|
*
|
|
* @param {String} imagePath - image path
|
|
* @param {Object} options - options
|
|
* @param {Number} [options.size] - image size
|
|
*
|
|
* @fulfil {Object} - image metadata
|
|
* @returns {Promise}
|
|
*/
|
|
'application/x-xz': (imagePath, options) => {
|
|
return Bluebird.using(fs.openAsync(imagePath, 'r').disposer((fileDescriptor) => {
|
|
return fs.closeAsync(fileDescriptor)
|
|
}), (fileDescriptor) => {
|
|
return lzma.parseFileIndexAsync({
|
|
fileSize: options.size,
|
|
read: (count, position, callback) => {
|
|
utils.readBufferFromImageFileDescriptor(fileDescriptor, position, count).asCallback(callback)
|
|
}
|
|
})
|
|
}).then((metadata) => {
|
|
return {
|
|
path: imagePath,
|
|
archiveExtension: fileExtensions.getLastFileExtension(imagePath),
|
|
extension: fileExtensions.getPenultimateFileExtension(imagePath) || DEFAULT_EXT,
|
|
stream: fs.createReadStream(imagePath),
|
|
size: {
|
|
original: options.size,
|
|
final: {
|
|
estimation: false,
|
|
value: metadata.uncompressedSize
|
|
}
|
|
},
|
|
transform: lzma.createDecompressor()
|
|
}
|
|
})
|
|
},
|
|
|
|
/**
|
|
* @summary Handle Apple disk images (.dmg)
|
|
* @function
|
|
* @public
|
|
* @memberof handlers
|
|
*
|
|
* @param {String} imagePath - image path
|
|
* @param {Object} options - options
|
|
* @param {Number} [options.size] - image size
|
|
*
|
|
* @fulfil {Object} - image metadata
|
|
* @returns {Promise}
|
|
*/
|
|
'application/x-apple-diskimage': (imagePath, options) => {
|
|
return udif.getUncompressedSizeAsync(imagePath).then((size) => {
|
|
return {
|
|
path: imagePath,
|
|
extension: fileExtensions.getLastFileExtension(imagePath),
|
|
stream: udif.createReadStream(imagePath),
|
|
size: {
|
|
// FIXME(jhermsmeier): Originally `options.size`,
|
|
// See discussion in https://github.com/resin-io/etcher/pull/1587
|
|
original: options.size,
|
|
final: {
|
|
estimation: false,
|
|
value: size
|
|
}
|
|
},
|
|
transform: new PassThroughStream()
|
|
}
|
|
}).catch((error) => {
|
|
if (/invalid footer/i.test(error.message)) {
|
|
throw errors.createUserError({
|
|
title: 'Invalid image',
|
|
description: `There was an error reading "${path.basename(imagePath)}". ` +
|
|
'The image does not appear to be a valid Apple Disk Image (dmg), or may have the wrong filename extension.\n\n' +
|
|
`Error: ${error.description || error.message}`
|
|
})
|
|
}
|
|
throw error
|
|
})
|
|
},
|
|
|
|
/**
|
|
* @summary Handle ZIP compressed images
|
|
* @function
|
|
* @public
|
|
* @memberof handlers
|
|
*
|
|
* @param {String} imagePath - image path
|
|
* @fulfil {Object} - image metadata
|
|
* @returns {Promise}
|
|
*/
|
|
'application/zip': (imagePath) => {
|
|
return archive.extractImage(imagePath, zipArchiveHooks)
|
|
},
|
|
|
|
/**
|
|
* @summary Handle plain uncompressed images
|
|
* @function
|
|
* @public
|
|
* @memberof handlers
|
|
*
|
|
* @param {String} imagePath - image path
|
|
* @param {Object} options - options
|
|
* @param {Number} [options.size] - image size
|
|
*
|
|
* @fulfil {Object} - image metadata
|
|
* @returns {Promise}
|
|
*/
|
|
'application/octet-stream': (imagePath, options) => {
|
|
return {
|
|
path: imagePath,
|
|
extension: fileExtensions.getLastFileExtension(imagePath),
|
|
stream: fs.createReadStream(imagePath),
|
|
size: {
|
|
original: options.size,
|
|
final: {
|
|
estimation: false,
|
|
value: options.size
|
|
}
|
|
},
|
|
transform: new PassThroughStream()
|
|
}
|
|
}
|
|
|
|
}
|