123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- /*
- * This file is part of the storage node for the Joystream project.
- * Copyright (C) 2019 Joystream Contributors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- 'use strict'
- const uuid = require('uuid')
- const streamBuf = require('stream-buffers')
- /*
- * Range parsing
- */
- // Increase performance by "pre-computing" these regex expressions
- const PARSE_RANGE_REGEX = /^(\d+-\d+|\d+-|-\d+|\*)$/u
- const PARSE_RANGE_HEADERS_REGEX = /^(([^\s]+)=)?((?:(?:\d+-\d+|-\d+|\d+-),?)+)$/u
- /*
- * Parse a range string, e.g. '0-100' or '-100' or '0-'. Return the values
- * in an array of int or undefined (if not provided).
- */
- function parseRange(range) {
- const matches = range.match(PARSE_RANGE_REGEX)
- if (!matches) {
- throw new Error(`Not a valid range: ${range}`)
- }
- const vals = matches[1].split('-').map((v) => {
- return v === '*' || v === '' ? undefined : parseInt(v, 10)
- })
- if (vals[1] <= vals[0]) {
- throw new Error(`Invalid range: start "${vals[0]}" must be before end "${vals[1]}".`)
- }
- return [vals[0], vals[1]]
- }
- /*
- * Parse a range header value, e.g. unit=ranges, where ranges
- * are a comma separated list of individual ranges, and unit is any
- * custom unit string. If the unit (and equal sign) are not given, assume
- * 'bytes'.
- */
- function parse(rangeStr) {
- const res = {}
- const matches = rangeStr.match(PARSE_RANGE_HEADERS_REGEX)
- if (!matches) {
- throw new Error(`Not a valid range header: ${rangeStr}`)
- }
- res.unit = matches[2] || 'bytes'
- res.rangeStr = matches[3]
- res.ranges = []
- // Parse individual ranges
- const ranges = []
- res.rangeStr.split(',').forEach((range) => {
- ranges.push(parseRange(range))
- })
- // Merge ranges into result.
- ranges.forEach((newRange) => {
- let isMerged = false
- for (const i in res.ranges) {
- const oldRange = res.ranges[i]
- // Skip if the new range is fully separate from the old range.
- if (oldRange[1] + 1 < newRange[0] || newRange[1] + 1 < oldRange[0]) {
- continue
- }
- // If we know they're adjacent or overlapping, we construct the
- // merged range from the lower start and the higher end of both
- // ranges.
- const merged = [Math.min(oldRange[0], newRange[0]), Math.max(oldRange[1], newRange[1])]
- res.ranges[i] = merged
- isMerged = true
- }
- if (!isMerged) {
- res.ranges.push(newRange)
- }
- })
- // Finally, sort ranges
- res.ranges.sort((first, second) => {
- if (first[0] === second[0]) {
- // Should not happen due to merging.
- return 0
- }
- return first[0] < second[0] ? -1 : 1
- })
- return res
- }
- /*
- * Async version of parse().
- */
- function parseAsync(rangeStr, cb) {
- try {
- return cb(parse(rangeStr))
- } catch (err) {
- return cb(null, err)
- }
- }
- /*
- * Range streaming
- */
- /*
- * The class writes parts specified in the options to the response. If no ranges
- * are specified, the entire stream is written. At the end, the given callback
- * is invoked - if an error occurred, it is invoked with an error parameter.
- *
- * Note that the range implementation can be optimized for streams that support
- * seeking.
- *
- * There's another optimization here for when sizes are given, which is possible
- * with file system based streams. We'll see how likely that's going to be in
- * future.
- */
- class RangeSender {
- constructor(response, stream, opts, endCallback) {
- // Options
- this.name = opts.name || 'content.bin'
- this.type = opts.type || 'application/octet-stream'
- this.size = opts.size
- this.ranges = opts.ranges
- this.download = opts.download || false
- // Range handling related state.
- this.readOffset = 0 // Nothing read so far
- this.rangeIndex = -1 // No range index yet.
- this.rangeBoundary = undefined // Generate boundary when needed.
- // Event handlers & state
- this.handlers = {}
- this.opened = false
- // Parameters
- this.response = response
- this.stream = stream
- this.opts = opts
- this.endCallback = endCallback
- }
- onError(err) {
- // Assume hiding the actual error is best, and default to 404.
- if (!this.response.headersSent) {
- this.response.status(err.code || 404).send({
- message: err.message || `File not found: ${this.name}`,
- })
- }
- if (this.endCallback) {
- this.endCallback(err)
- }
- }
- onEnd() {
- this.response.end()
- if (this.endCallback) {
- this.endCallback()
- }
- }
- // **** No ranges
- onOpenNoRange() {
- // File got opened, so we can set headers/status
- this.opened = true
- this.response.status(200)
- this.response.contentType(this.type)
- this.response.header('Accept-Ranges', 'bytes')
- this.response.header('Content-Transfer-Encoding', 'binary')
- if (this.download) {
- this.response.header('Content-Disposition', `attachment; filename="${this.name}"`)
- } else {
- this.response.header('Content-Disposition', 'inline')
- }
- if (this.size) {
- this.response.header('Content-Length', this.size)
- }
- }
- onDataNoRange(chunk) {
- if (!this.opened) {
- this.handlers.open()
- }
- // As simple as it can be.
- this.response.write(Buffer.from(chunk, 'binary'))
- }
- // *** With ranges
- nextRangeHeaders() {
- // Next range
- this.rangeIndex += 1
- if (this.rangeIndex >= this.ranges.ranges.length) {
- return undefined
- }
- // Calculate this range's size.
- const range = this.ranges.ranges[this.rangeIndex]
- let totalSize
- if (this.size) {
- totalSize = this.size
- }
- if (typeof range[0] === 'undefined') {
- range[0] = 0
- }
- if (typeof range[1] === 'undefined') {
- if (this.size) {
- range[1] = totalSize - 1
- }
- }
- let sendSize
- if (typeof range[0] !== 'undefined' && typeof range[1] !== 'undefined') {
- sendSize = range[1] - range[0] + 1
- }
- // Write headers, but since we may be in a multipart situation, write them
- // explicitly to the stream.
- const start = typeof range[0] === 'undefined' ? '' : `${range[0]}`
- const end = typeof range[1] === 'undefined' ? '' : `${range[1]}`
- let sizeStr
- if (totalSize) {
- sizeStr = `${totalSize}`
- } else {
- sizeStr = '*'
- }
- const ret = {
- 'Content-Range': `bytes ${start}-${end}/${sizeStr}`,
- 'Content-Type': `${this.type}`,
- }
- if (sendSize) {
- ret['Content-Length'] = `${sendSize}`
- }
- return ret
- }
- nextRange() {
- if (this.ranges.ranges.length === 1) {
- this.stream.off('data', this.handlers.data)
- return false
- }
- const headers = this.nextRangeHeaders()
- if (headers) {
- const onDataRanges = new streamBuf.WritableStreamBuffer()
- // We start a range with a boundary.
- onDataRanges.write(`\r\n--${this.rangeBoundary}\r\n`)
- // The we write the range headers.
- for (const header in headers) {
- onDataRanges.write(`${header}: ${headers[header]}\r\n`)
- }
- onDataRanges.write('\r\n')
- this.response.write(onDataRanges.getContents())
- return true
- }
- // No headers means we're finishing the last range.
- this.response.write(`\r\n--${this.rangeBoundary}--\r\n`)
- this.stream.off('data', this.handlers.data)
- return false
- }
- onOpenRanges() {
- // File got opened, so we can set headers/status
- this.opened = true
- this.response.header('Accept-Ranges', 'bytes')
- this.response.header('Content-Transfer-Encoding', 'binary')
- this.response.header('Content-Disposition', 'inline')
- // For single ranges, the content length should be the size of the
- // range. For multiple ranges, we don't send a content length
- // header.
- //
- // Similarly, the type is different whether or not there is more than
- // one range.
- if (this.ranges.ranges.length === 1) {
- this.response.writeHead(206, 'Partial Content', this.nextRangeHeaders())
- } else {
- this.rangeBoundary = uuid.v4()
- const headers = {
- 'Content-Type': `multipart/byteranges; boundary=${this.rangeBoundary}`,
- }
- this.response.writeHead(206, 'Partial Content', headers)
- this.nextRange()
- }
- }
- onDataRanges(chunk) {
- if (!this.opened) {
- this.handlers.open()
- }
- // Crap, node.js streams are stupid. No guarantee for seek support. Sure,
- // that makes node.js easier to implement, but offloads everything onto the
- // application developer.
- //
- // So, we skip chunks until our read position is within the range we want to
- // send at the moment. We're relying on ranges being in-order, which this
- // file's parser luckily (?) provides.
- //
- // The simplest optimization would be at ever range start to seek() to the
- // start.
- const chunkRange = [this.readOffset, this.readOffset + chunk.length - 1]
- while (true) {
- let reqRange = this.ranges.ranges[this.rangeIndex]
- if (!reqRange) {
- break
- }
- if (!reqRange[1]) {
- reqRange = [reqRange[0], Number.MAX_SAFE_INTEGER]
- }
- // No overlap in the chunk and requested range; don't write.
- if (chunkRange[1] < reqRange[0] || chunkRange[0] > reqRange[1]) {
- break
- }
- // Since there is overlap, find the segment that's entirely within the
- // chunk.
- const segment = [Math.max(chunkRange[0], reqRange[0]), Math.min(chunkRange[1], reqRange[1])]
- // Normalize the segment to a chunk offset
- const start = segment[0] - this.readOffset
- const end = segment[1] - this.readOffset
- const len = end - start + 1
- // Write the slice that we want to write. We first create a buffer from the
- // chunk. Then we slice a new buffer from the same underlying ArrayBuffer,
- // starting at the original buffer's offset, further offset by the segment
- // start. The segment length bounds the end of our slice.
- const buf = Buffer.from(chunk, 'binary')
- this.response.write(Buffer.from(buf.buffer, buf.byteOffset + start, len))
- // If the requested range is finished, we should start the next one.
- if (reqRange[1] > chunkRange[1]) {
- break
- }
- if (reqRange[1] <= chunkRange[1]) {
- if (!this.nextRange(segment)) {
- break
- }
- }
- }
- // Update read offset when chunk is finished.
- this.readOffset += chunk.length
- }
- start() {
- // Before we start streaming, let's ensure our ranges don't contain any
- // without start - if they do, we nuke them all and treat this as a full
- // request.
- let nuke = false
- if (this.ranges) {
- for (const i in this.ranges.ranges) {
- if (typeof this.ranges.ranges[i][0] === 'undefined') {
- nuke = true
- break
- }
- }
- }
- if (nuke) {
- this.ranges = undefined
- }
- // Register callbacks. Store them in a handlers object so we can
- // keep the bound version around for stopping to listen to events.
- this.handlers.error = this.onError.bind(this)
- this.handlers.end = this.onEnd.bind(this)
- if (this.ranges) {
- this.handlers.open = this.onOpenRanges.bind(this)
- this.handlers.data = this.onDataRanges.bind(this)
- } else {
- this.handlers.open = this.onOpenNoRange.bind(this)
- this.handlers.data = this.onDataNoRange.bind(this)
- }
- for (const handler in this.handlers) {
- this.stream.on(handler, this.handlers[handler])
- }
- }
- }
- function send(response, stream, opts, endCallback) {
- const sender = new RangeSender(response, stream, opts, endCallback)
- sender.start()
- }
- /*
- * Exports
- */
- module.exports = {
- parse,
- parseAsync,
- RangeSender,
- send,
- }
|