|
| 1 | +'use strict' |
| 2 | + |
| 3 | +const errCode = require('err-code') |
| 4 | +const { Buffer } = require('buffer') |
| 5 | + |
| 6 | +/* |
| 7 | + * Transform one of: |
| 8 | + * |
| 9 | + * ``` |
| 10 | + * Buffer|ArrayBuffer|TypedArray |
| 11 | + * Blob|File |
| 12 | + * { path, content: Blob } |
| 13 | + * { path, content: String } |
| 14 | + * { path, content: Iterable<Number> } |
| 15 | + * { path, content: Iterable<Buffer> } |
| 16 | + * { path, content: Iterable<Iterable<Number>> } |
| 17 | + * { path, content: AsyncIterable<Iterable<Number>> } |
| 18 | + * String |
| 19 | + * Iterable<Number> |
| 20 | + * Iterable<Buffer> |
| 21 | + * Iterable<Blob> |
| 22 | + * Iterable<{ path, content: Buffer }> |
| 23 | + * Iterable<{ path, content: Blob }> |
| 24 | + * Iterable<{ path, content: Iterable<Number> }> |
| 25 | + * Iterable<{ path, content: AsyncIterable<Buffer> }> |
| 26 | + * AsyncIterable<Buffer> |
| 27 | + * AsyncIterable<{ path, content: Buffer }> |
| 28 | + * AsyncIterable<{ path, content: Blob }> |
| 29 | + * AsyncIterable<{ path, content: Iterable<Buffer> }> |
| 30 | + * AsyncIterable<{ path, content: AsyncIterable<Buffer> }> |
| 31 | + * ``` |
| 32 | + * Into: |
| 33 | + * |
| 34 | + * ``` |
| 35 | + * AsyncIterable<{ path, content: AsyncIterable<Buffer> }> |
| 36 | + * ``` |
| 37 | + * |
| 38 | + * @param input Object |
| 39 | + * @return AsyncInterable<{ path, content: AsyncIterable<Buffer> }> |
| 40 | + */ |
| 41 | +module.exports = function normaliseInput (input) { |
| 42 | + // must give us something |
| 43 | + if (input === null || input === undefined) { |
| 44 | + throw errCode(new Error(`Unexpected input: ${input}`, 'ERR_UNEXPECTED_INPUT')) |
| 45 | + } |
| 46 | + |
| 47 | + // { path, content: ? } |
| 48 | + if (isFileObject(input)) { |
| 49 | + return (async function * () { // eslint-disable-line require-await |
| 50 | + yield toFileObject(input) |
| 51 | + })() |
| 52 | + } |
| 53 | + |
| 54 | + // String |
| 55 | + if (typeof input === 'string' || input instanceof String) { |
| 56 | + return (async function * () { // eslint-disable-line require-await |
| 57 | + yield toFileObject(input) |
| 58 | + })() |
| 59 | + } |
| 60 | + |
| 61 | + // Buffer|ArrayBuffer|TypedArray |
| 62 | + // Blob|File |
| 63 | + if (isBytes(input) || isBloby(input)) { |
| 64 | + return (async function * () { // eslint-disable-line require-await |
| 65 | + yield toFileObject(input) |
| 66 | + })() |
| 67 | + } |
| 68 | + |
| 69 | + // Iterable<?> |
| 70 | + if (input[Symbol.iterator]) { |
| 71 | + // Iterable<Number> |
| 72 | + if (!isNaN(input[0])) { |
| 73 | + return (async function * () { // eslint-disable-line require-await |
| 74 | + yield toFileObject([input]) |
| 75 | + })() |
| 76 | + } |
| 77 | + |
| 78 | + // Iterable<Buffer> |
| 79 | + // Iterable<Blob> |
| 80 | + return (async function * () { // eslint-disable-line require-await |
| 81 | + for (const chunk of input) { |
| 82 | + yield toFileObject(chunk) |
| 83 | + } |
| 84 | + })() |
| 85 | + } |
| 86 | + |
| 87 | + // AsyncIterable<?> |
| 88 | + if (input[Symbol.asyncIterator]) { |
| 89 | + return (async function * () { // eslint-disable-line require-await |
| 90 | + for await (const chunk of input) { |
| 91 | + yield toFileObject(chunk) |
| 92 | + } |
| 93 | + })() |
| 94 | + } |
| 95 | + |
| 96 | + throw errCode(new Error('Unexpected input: ' + typeof input), 'ERR_UNEXPECTED_INPUT') |
| 97 | +} |
| 98 | + |
| 99 | +function toFileObject (input) { |
| 100 | + return { |
| 101 | + path: input.path || '', |
| 102 | + content: toAsyncIterable(input.content || input) |
| 103 | + } |
| 104 | +} |
| 105 | + |
| 106 | +function toAsyncIterable (input) { |
| 107 | + // Buffer|ArrayBuffer|TypedArray|array of bytes |
| 108 | + if (isBytes(input)) { |
| 109 | + return (async function * () { // eslint-disable-line require-await |
| 110 | + yield toBuffer(input) |
| 111 | + })() |
| 112 | + } |
| 113 | + |
| 114 | + if (typeof input === 'string' || input instanceof String) { |
| 115 | + return (async function * () { // eslint-disable-line require-await |
| 116 | + yield toBuffer(input) |
| 117 | + })() |
| 118 | + } |
| 119 | + |
| 120 | + // Blob|File |
| 121 | + if (isBloby(input)) { |
| 122 | + return blobToAsyncGenerator(input) |
| 123 | + } |
| 124 | + |
| 125 | + // Iterator<?> |
| 126 | + if (input[Symbol.iterator]) { |
| 127 | + if (!isNaN(input[0])) { |
| 128 | + return (async function * () { // eslint-disable-line require-await |
| 129 | + yield toBuffer(input) |
| 130 | + })() |
| 131 | + } |
| 132 | + |
| 133 | + return (async function * () { // eslint-disable-line require-await |
| 134 | + for (const chunk of input) { |
| 135 | + yield toBuffer(chunk) |
| 136 | + } |
| 137 | + })() |
| 138 | + } |
| 139 | + |
| 140 | + // AsyncIterable<?> |
| 141 | + if (input[Symbol.asyncIterator]) { |
| 142 | + return (async function * () { |
| 143 | + for await (const chunk of input) { |
| 144 | + yield toBuffer(chunk) |
| 145 | + } |
| 146 | + })() |
| 147 | + } |
| 148 | + |
| 149 | + throw errCode(new Error(`Unexpected input: ${input}`, 'ERR_UNEXPECTED_INPUT')) |
| 150 | +} |
| 151 | + |
| 152 | +function toBuffer (chunk) { |
| 153 | + if (isBytes(chunk)) { |
| 154 | + return chunk |
| 155 | + } |
| 156 | + |
| 157 | + if (typeof chunk === 'string' || chunk instanceof String) { |
| 158 | + return Buffer.from(chunk) |
| 159 | + } |
| 160 | + |
| 161 | + if (Array.isArray(chunk)) { |
| 162 | + return Buffer.from(chunk) |
| 163 | + } |
| 164 | + |
| 165 | + throw new Error('Unexpected input: ' + typeof chunk) |
| 166 | +} |
| 167 | + |
| 168 | +function isBytes (obj) { |
| 169 | + return Buffer.isBuffer(obj) || ArrayBuffer.isView(obj) || obj instanceof ArrayBuffer |
| 170 | +} |
| 171 | + |
| 172 | +function isBloby (obj) { |
| 173 | + return typeof Blob !== 'undefined' && obj instanceof global.Blob |
| 174 | +} |
| 175 | + |
| 176 | +// An object with a path or content property |
| 177 | +function isFileObject (obj) { |
| 178 | + return typeof obj === 'object' && (obj.path || obj.content) |
| 179 | +} |
| 180 | + |
| 181 | +function blobToAsyncGenerator (blob) { |
| 182 | + if (typeof blob.stream === 'function') { |
| 183 | + // firefox < 69 does not support blob.stream() |
| 184 | + return streamBlob(blob) |
| 185 | + } |
| 186 | + |
| 187 | + return readBlob(blob) |
| 188 | +} |
| 189 | + |
| 190 | +async function * streamBlob (blob) { |
| 191 | + const reader = blob.stream().getReader() |
| 192 | + |
| 193 | + while (true) { |
| 194 | + const result = await reader.read() |
| 195 | + |
| 196 | + if (result.done) { |
| 197 | + return |
| 198 | + } |
| 199 | + |
| 200 | + yield result.value |
| 201 | + } |
| 202 | +} |
| 203 | + |
| 204 | +async function * readBlob (blob, options) { |
| 205 | + options = options || {} |
| 206 | + |
| 207 | + const reader = new global.FileReader() |
| 208 | + const chunkSize = options.chunkSize || 1024 * 1024 |
| 209 | + let offset = options.offset || 0 |
| 210 | + |
| 211 | + const getNextChunk = () => new Promise((resolve, reject) => { |
| 212 | + reader.onloadend = e => { |
| 213 | + const data = e.target.result |
| 214 | + resolve(data.byteLength === 0 ? null : data) |
| 215 | + } |
| 216 | + reader.onerror = reject |
| 217 | + |
| 218 | + const end = offset + chunkSize |
| 219 | + const slice = blob.slice(offset, end) |
| 220 | + reader.readAsArrayBuffer(slice) |
| 221 | + offset = end |
| 222 | + }) |
| 223 | + |
| 224 | + while (true) { |
| 225 | + const data = await getNextChunk() |
| 226 | + |
| 227 | + if (data == null) { |
| 228 | + return |
| 229 | + } |
| 230 | + |
| 231 | + yield Buffer.from(data) |
| 232 | + } |
| 233 | +} |
0 commit comments