@hackape/tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
346 lines (299 loc) • 12.2 kB
text/typescript
import { createReadStream } from 'fs-extra'
import path from 'path'
import { Worker } from 'worker_threads'
import zlib from 'zlib'
import { BinarySplitStream } from './binarysplit'
import { EXCHANGES, EXCHANGE_CHANNELS_INFO } from './consts'
import { debug } from './debug'
import { getFilters, normalizeMessages, parseAsUTCDate, parseμs, wait, addDays } from './handy'
import { MapperFactory, normalizeBookChanges } from './mappers'
import { getOptions } from './options'
import { Disconnect, Exchange, FilterForExchange } from './types'
import { WorkerJobPayload, WorkerMessage, WorkerSignal } from './worker'
import { clearCacheSync } from './clearcache'
export async function* replay<T extends Exchange, U extends boolean = false, Z extends boolean = false>({
exchange,
from,
to,
filters,
skipDecoding = undefined,
withDisconnects = undefined,
apiKey = undefined,
withMicroseconds = undefined,
autoCleanup = undefined,
waitWhenDataNotYetAvailable = undefined
}: ReplayOptions<T, U, Z>): AsyncIterableIterator<
Z extends true
? U extends true
? { localTimestamp: Buffer; message: Buffer } | undefined
: { localTimestamp: Date; message: any } | undefined
: U extends true
? { localTimestamp: Buffer; message: Buffer }
: { localTimestamp: Date; message: any }
> {
validateReplayOptions(exchange, from, to, filters)
const fromDate = parseAsUTCDate(from)
const toDate = parseAsUTCDate(to)
const cachedSlicePaths = new Map<string, string>()
let replayError
debug('replay for exchange: %s started - from: %s, to: %s, filters: %o', exchange, fromDate.toISOString(), toDate.toISOString(), filters)
const options = getOptions()
// initialize worker thread that will fetch and cache data feed slices and "report back" by setting proper key/values in cachedSlicePaths
const payload: WorkerJobPayload = {
cacheDir: options.cacheDir,
endpoint: options.endpoint,
apiKey: apiKey || options.apiKey,
userAgent: options._userAgent,
fromDate,
toDate,
exchange,
filters: filters || [],
waitWhenDataNotYetAvailable
}
const worker = new Worker(path.resolve(__dirname, 'worker.js'), {
workerData: payload
})
worker.on('message', (message: WorkerMessage) => {
cachedSlicePaths.set(message.sliceKey, message.slicePath)
})
worker.on('error', (err) => {
debug('worker error %o', err)
replayError = err
})
worker.on('exit', (code) => {
debug('worker finished with code: %d', code)
})
try {
// helper flag that helps us not yielding two subsequent undefined/disconnect messages
let lastMessageWasUndefined = false
let currentSliceDate = new Date(fromDate)
// iterate over every minute in <=from,to> date range
// get cached slice paths, read them as file streams, decompress, split by new lines and yield as messages
while (currentSliceDate < toDate) {
const sliceKey = currentSliceDate.toISOString()
debug('getting slice: %s, exchange: %s', sliceKey, exchange)
let cachedSlicePath
while (cachedSlicePath === undefined) {
cachedSlicePath = cachedSlicePaths.get(sliceKey)
// if something went wrong(network issue, auth issue, gunzip issue etc)
if (replayError !== undefined) {
throw replayError
}
if (cachedSlicePath === undefined) {
// if response for requested date is not ready yet wait 100ms and try again
debug('waiting for slice: %s, exchange: %s', sliceKey, exchange)
await wait(100)
}
}
// response is a path to file on disk let' read it as stream
const linesStream = createReadStream(cachedSlicePath, { highWaterMark: 128 * 1024 })
// unzip it
.pipe(zlib.createGunzip({ chunkSize: 128 * 1024 }))
.on('error', function onGunzipError(err) {
debug('gunzip error %o', err)
linesStream.destroy(err)
})
// and split by new line
.pipe(new BinarySplitStream())
.on('error', function onBinarySplitStreamError(err) {
debug('binary split stream error %o', err)
linesStream.destroy(err)
})
let linesCount = 0
// date is always formatted to have lendth of 28 so we can skip looking for first space in line and use it
// as hardcoded value
const DATE_MESSAGE_SPLIT_INDEX = 28
for await (const line of linesStream) {
const bufferLine = line as Buffer
linesCount++
if (bufferLine.length > 0) {
lastMessageWasUndefined = false
const localTimestampBuffer = bufferLine.slice(0, DATE_MESSAGE_SPLIT_INDEX)
const messageBuffer = bufferLine.slice(DATE_MESSAGE_SPLIT_INDEX + 1)
// as any due to https://github.com/Microsoft/TypeScript/issues/24929
if (skipDecoding === true) {
yield {
localTimestamp: localTimestampBuffer,
message: messageBuffer
} as any
} else {
const message = JSON.parse(messageBuffer as any)
const localTimestampString = localTimestampBuffer.toString()
const localTimestamp = new Date(localTimestampString)
if (withMicroseconds) {
// provide additionally fractions of millisecond at microsecond resolution
// local timestamp always has format like this 2019-06-01T00:03:03.1238784Z
localTimestamp.μs = parseμs(localTimestampString)
}
yield {
// when skipDecoding is not set, decode timestamp to Date and message to object
localTimestamp,
message
} as any
}
// ignore empty lines unless withDisconnects is set to true
// do not yield subsequent undefined messages
} else if (withDisconnects === true && lastMessageWasUndefined === false) {
lastMessageWasUndefined = true
yield undefined as any
}
}
debug('processed slice: %s, exchange: %s, count: %d', sliceKey, exchange, linesCount)
// remove slice key from the map as it's already processed
cachedSlicePaths.delete(sliceKey)
// move one minute forward
currentSliceDate.setUTCMinutes(currentSliceDate.getUTCMinutes() + 1)
}
debug(
'replay for exchange: %s finished - from: %s, to: %s, filters: %o',
exchange,
fromDate.toISOString(),
toDate.toISOString(),
filters
)
} finally {
if (autoCleanup) {
debug(
'replay for exchange %s auto cleanup started - from: %s, to: %s, filters: %o',
exchange,
fromDate.toISOString(),
toDate.toISOString(),
filters
)
let startDate = new Date(fromDate)
while (startDate < toDate) {
clearCacheSync(exchange, filters, startDate.getUTCFullYear(), startDate.getUTCMonth() + 1, startDate.getUTCDate())
startDate = addDays(startDate, 1)
}
debug(
'replay for exchange %s auto cleanup finished - from: %s, to: %s, filters: %o',
exchange,
fromDate.toISOString(),
toDate.toISOString(),
filters
)
}
await terminateWorker(worker, 500)
}
}
// gracefully terminate worker
async function terminateWorker(worker: Worker, waitTimeout: number) {
let cancelWait = () => {}
const maxWaitGuard = new Promise((resolve) => {
const timeoutId = setTimeout(resolve, waitTimeout)
cancelWait = () => clearTimeout(timeoutId)
})
const readyToTerminate = new Promise((resolve) => {
worker.once('message', (signal) => signal === WorkerSignal.READY_TO_TERMINATE && resolve())
}).then(cancelWait)
worker.postMessage(WorkerSignal.BEFORE_TERMINATE)
await Promise.race([readyToTerminate, maxWaitGuard])
await worker.terminate()
}
export function replayNormalized<T extends Exchange, U extends MapperFactory<T, any>[], Z extends boolean = false>(
{
exchange,
symbols,
from,
to,
withDisconnectMessages = undefined,
apiKey = undefined,
autoCleanup = undefined,
waitWhenDataNotYetAvailable = undefined
}: ReplayNormalizedOptions<T, Z>,
...normalizers: U
): AsyncIterableIterator<
Z extends true
? U extends MapperFactory<infer _, infer X>[]
? X | Disconnect
: never
: U extends MapperFactory<infer _, infer X>[]
? X
: never
> {
// mappers assume that symbols are uppercased by default
// if user by mistake provide lowercase one let's automatically fix it
if (symbols !== undefined) {
symbols = symbols.map((s) => s.toUpperCase())
}
const fromDate = parseAsUTCDate(from)
validateReplayNormalizedOptions(fromDate, normalizers)
const createMappers = (localTimestamp: Date) => normalizers.map((m) => m(exchange, localTimestamp))
const mappers = createMappers(fromDate)
const filters = getFilters(mappers, symbols)
const messages = replay({
exchange,
from,
to,
withDisconnects: true,
filters,
apiKey,
withMicroseconds: true,
autoCleanup,
waitWhenDataNotYetAvailable
})
// filter normalized messages by symbol as some exchanges do not provide server side filtering so we could end up with messages
// for symbols we've not requested for
const filter = (symbol: string) => {
return symbols === undefined || symbols.length === 0 || symbols.includes(symbol)
}
return normalizeMessages(exchange, messages, mappers, createMappers, withDisconnectMessages, filter)
}
function validateReplayOptions<T extends Exchange>(exchange: T, from: string, to: string, filters: FilterForExchange[T][]) {
if (!exchange || EXCHANGES.includes(exchange) === false) {
throw new Error(`Invalid "exchange" argument: ${exchange}. Please provide one of the following exchanges: ${EXCHANGES.join(', ')}.`)
}
if (!from || isNaN(Date.parse(from))) {
throw new Error(`Invalid "from" argument: ${from}. Please provide valid date string.`)
}
if (!to || isNaN(Date.parse(to))) {
throw new Error(`Invalid "to" argument: ${to}. Please provide valid date string.`)
}
if (parseAsUTCDate(to) < parseAsUTCDate(from)) {
throw new Error(`Invalid "to" and "from" arguments combination. Please provide "to" date that is later than "from" date.`)
}
if (filters && filters.length > 0) {
for (let i = 0; i < filters.length; i++) {
const filter = filters[i]
if (!filter.channel || (EXCHANGE_CHANNELS_INFO[exchange] as any).includes(filter.channel) === false) {
throw new Error(
`Invalid "filters[].channel" argument: ${filter.channel}. Please provide one of the following channels: ${EXCHANGE_CHANNELS_INFO[
exchange
].join(', ')}.`
)
}
if (filter.symbols && Array.isArray(filter.symbols) === false) {
throw new Error(`Invalid "filters[].symbols" argument: ${filter.symbols}. Please provide array of symbol strings`)
}
}
}
}
function validateReplayNormalizedOptions(fromDate: Date, normalizers: MapperFactory<any, any>[]) {
const hasBookChangeNormalizer = normalizers.some((n) => n === normalizeBookChanges)
const dateDoesNotStartAtTheBeginningOfTheDay = fromDate.getUTCHours() !== 0 || fromDate.getUTCMinutes() !== 0
if (hasBookChangeNormalizer && dateDoesNotStartAtTheBeginningOfTheDay) {
debug('Initial order book snapshots are available only at 00:00 UTC')
}
}
export type ReplayOptions<T extends Exchange, U extends boolean = false, Z extends boolean = false> = {
readonly exchange: T
readonly from: string
readonly to: string
readonly filters: FilterForExchange[T][]
readonly skipDecoding?: U
readonly withDisconnects?: Z
readonly apiKey?: string
readonly withMicroseconds?: boolean
readonly autoCleanup?: boolean
readonly waitWhenDataNotYetAvailable?: boolean | number
}
export type ReplayNormalizedOptions<T extends Exchange, U extends boolean = false> = {
readonly exchange: T
readonly symbols?: string[]
readonly from: string
readonly to: string
readonly withDisconnectMessages?: U
readonly apiKey?: string
readonly autoCleanup?: boolean
readonly waitWhenDataNotYetAvailable?: boolean | number
}