4cko
/usr/local/rvm/gems/ruby-3.4.7/bin:/usr/local/rvm/gems/ruby-3.4.7@global/bin:/usr/local/rvm/rubies/ruby-3.4.7/bin:/home/codespace/.vscode-remote/data/User/globalStorage/github.copilot-chat/debugCommand:/home/codespace/.vscode-remote/data/User/globalStorage/github.copilot-chat/copilotCli:/vscode/bin/linux-x64/7e7950df89d055b5a378379db9ee14290772148a/bin/remote-cli:/home/codespace/.local/bin:/home/codespace/.dotnet:/home/codespace/nvm/current/bin:/home/codespace/.php/current/bin:/home/codespace/.python/current/bin:/home/codespace/java/current/bin:/home/codespace/.ruby/current/bin:/home/codespace/.local/bin:/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/jupyter:/usr/local/oryx:/usr/local/go/bin:/go/bin:/usr/local/sdkman/bin:/usr/local/sdkman/candidates/java/current/bin:/usr/local/sdkman/candidates/gradle/current/bin:/usr/local/sdkman/candidates/maven/current/bin:/usr/local/sdkman/candidates/ant/current/bin:/usr/local/rvm/gems/default/bin:/usr/local/rvm/gems/default@global/bin:/usr/local/rvm/rubies/default/bin:/usr/local/share/rbenv/bin:/usr/local/php/current/bin:/opt/conda/bin:/usr/local/nvs:/usr/local/share/nvm/versions/node/v24.14.0/bin:/usr/local/hugo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/share/dotnet:/home/codespace/.dotnet/tools:/usr/local/rvm/bin
a2c64e7 | ; | |
| import stream from 'stream'; | |
| import utils from '../utils.js'; | |
| const kInternals = Symbol('internals'); | |
| class AxiosTransformStream extends stream.Transform { | |
| constructor(options) { | |
| options = utils.toFlatObject( | |
| options, | |
| { | |
| maxRate: 0, | |
| chunkSize: 64 * 1024, | |
| minChunkSize: 100, | |
| timeWindow: 500, | |
| ticksRate: 2, | |
| samplesCount: 15, | |
| }, | |
| null, | |
| (prop, source) => { | |
| return !utils.isUndefined(source[prop]); | |
| } | |
| ); | |
| super({ | |
| readableHighWaterMark: options.chunkSize, | |
| }); | |
| const internals = (this[kInternals] = { | |
| timeWindow: options.timeWindow, | |
| chunkSize: options.chunkSize, | |
| maxRate: options.maxRate, | |
| minChunkSize: options.minChunkSize, | |
| bytesSeen: 0, | |
| isCaptured: false, | |
| notifiedBytesLoaded: 0, | |
| ts: Date.now(), | |
| bytes: 0, | |
| onReadCallback: null, | |
| }); | |
| this.on('newListener', (event) => { | |
| if (event === 'progress') { | |
| if (!internals.isCaptured) { | |
| internals.isCaptured = true; | |
| } | |
| } | |
| }); | |
| } | |
| _read(size) { | |
| const internals = this[kInternals]; | |
| if (internals.onReadCallback) { | |
| internals.onReadCallback(); | |
| } | |
| return super._read(size); | |
| } | |
| _transform(chunk, encoding, callback) { | |
| const internals = this[kInternals]; | |
| const maxRate = internals.maxRate; | |
| const readableHighWaterMark = this.readableHighWaterMark; | |
| const timeWindow = internals.timeWindow; | |
| const divider = 1000 / timeWindow; | |
| const bytesThreshold = maxRate / divider; | |
| const minChunkSize = | |
| internals.minChunkSize !== false | |
| ? Math.max(internals.minChunkSize, bytesThreshold * 0.01) | |
| : 0; | |
| const pushChunk = (_chunk, _callback) => { | |
| const bytes = Buffer.byteLength(_chunk); | |
| internals.bytesSeen += bytes; | |
| internals.bytes += bytes; | |
| internals.isCaptured && this.emit('progress', internals.bytesSeen); | |
| if (this.push(_chunk)) { | |
| process.nextTick(_callback); | |
| } else { | |
| internals.onReadCallback = () => { | |
| internals.onReadCallback = null; | |
| process.nextTick(_callback); | |
| }; | |
| } | |
| }; | |
| const transformChunk = (_chunk, _callback) => { | |
| const chunkSize = Buffer.byteLength(_chunk); | |
| let chunkRemainder = null; | |
| let maxChunkSize = readableHighWaterMark; | |
| let bytesLeft; | |
| let passed = 0; | |
| if (maxRate) { | |
| const now = Date.now(); | |
| if (!internals.ts || (passed = now - internals.ts) >= timeWindow) { | |
| internals.ts = now; | |
| bytesLeft = bytesThreshold - internals.bytes; | |
| internals.bytes = bytesLeft < 0 ? -bytesLeft : 0; | |
| passed = 0; | |
| } | |
| bytesLeft = bytesThreshold - internals.bytes; | |
| } | |
| if (maxRate) { | |
| if (bytesLeft <= 0) { | |
| // next time window | |
| return setTimeout(() => { | |
| _callback(null, _chunk); | |
| }, timeWindow - passed); | |
| } | |
| if (bytesLeft < maxChunkSize) { | |
| maxChunkSize = bytesLeft; | |
| } | |
| } | |
| if (maxChunkSize && chunkSize > maxChunkSize && chunkSize - maxChunkSize > minChunkSize) { | |
| chunkRemainder = _chunk.subarray(maxChunkSize); | |
| _chunk = _chunk.subarray(0, maxChunkSize); | |
| } | |
| pushChunk( | |
| _chunk, | |
| chunkRemainder | |
| ? () => { | |
| process.nextTick(_callback, null, chunkRemainder); | |
| } | |
| : _callback | |
| ); | |
| }; | |
| transformChunk(chunk, function transformNextChunk(err, _chunk) { | |
| if (err) { | |
| return callback(err); | |
| } | |
| if (_chunk) { | |
| transformChunk(_chunk, transformNextChunk); | |
| } else { | |
| callback(null); | |
| } | |
| }); | |
| } | |
| } | |
| export default AxiosTransformStream; | |