3.1.0 • Published 7 years ago

range-pool v3.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Range-Pool

Greenkeeper badge Range-Pool is a base library for creating numeric range-based worker pools. It makes offset handling in distributed numeric operations easy.

For example, if you want to write a multi-connection download library that writes output from multiple requests to the same file, range-pool's index will make sure you get the correct position for each byte. Range-pool's API will also allow you to check which ranges are left so you can send http request with correct Range headers.

Installation

npm install --save range-pool

API

class RangePool {
  constructor(length: number | Infinity)
  getMetadata(): Object
  setMetadata(obj: Object): void
  getWorker(): RangeWorker
  hasAliveWorker(): boolean
  hasCompleted(): boolean
  getCompleted(): number
  getLength(): number
  getRemaining(): number
  getCompletionPercentage(): number
  dispose()
  serialize(): string
  static unserialize(serialized: string): RangePool
}
class RangeWorker {
  advance(steps: number)
  getMetadata(): Object
  setMetadata(obj: Object): void
  getStatus(): boolean
  setStatus(status: boolean): this
  getCurrentIndex(): number
  getStartIndex(): number
  getLimitIndex(): number
  getRemaining(): number
  getCompleted(): number
  hasCompleted(): boolean
  getCompletionPercentage(): number
  dispose()
}

export default RangePool
export { RangePool, RangeWorker }

Example Usage

'use babel'

import RangePool from 'range-pool'

const fileInfo: {
  size: number,
  url: string
} = getFileInfo()
const fd = getFileResource()

const range = new RangePool(fileInfo.size)
const firstWorker = range.getWorker()
const firstConnection = Connection.create(fileInfo.url)

firstConnection.on('data', function(chunk) {
  FS.write(fd, chunk, 0, chunk.length, firstWorker.getCurrentIndex(), e => console.log(e))
  firstWorker.advance(chunk.length)
})

const secondWorker = range.getWorker()
const secondConnection = Connection.create(fileInfo.url)

secondConnection.on('data', function(chunk) {
  FS.write(fd, chunk, 0, chunk.length, secondWorker.getCurrentIndex(), e => console.log(e))
  secondWorker.advance(chunk.length)
})

License

This module is licensed under the terms of MIT License. Check the LICENSE file for more info.

3.1.0

7 years ago

3.0.0

7 years ago

2.1.2

8 years ago

2.1.1

8 years ago

2.1.0

8 years ago

2.0.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago