Skip to content

Commit

Permalink
πŸ‘¨β€πŸ’» Add types declaration file
Browse files Browse the repository at this point in the history
  • Loading branch information
climba03003 committed Oct 14, 2024
1 parent ad2d4d3 commit cb060d9
Show file tree
Hide file tree
Showing 5 changed files with 531 additions and 0 deletions.
87 changes: 87 additions & 0 deletions adapters/blank-example.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
export interface BlankAdapterOption {
requiredOption: unknown;
prefix?: string;
resetOnInit?: boolean;
}

export class BlankAdapter {
/**
* Create a BlankAdapter instance
* @param {object} opts - configuration object
* @param {object} opts.requiredOption - Required option description
* @param {string} [opts.prefix] - prefix for scope isolation; use when creating multiple JoSK instances within the single application
* @param {boolean} [opts.resetOnInit] - Make sure all old tasks is completed before setting a new one, see readme for more details
*/
constructor(opts?: BlankAdapterOption);
name: string;
prefix: string;
resetOnInit: boolean;
uniqueName: string;
lockKey: string;
requiredOption: unknown;
/**
* @async
* @memberOf BlankAdapter
* @name ping
* @description Check connection to Storage
* @returns {Promise<void>}
*/
ping(): Promise<void>;
/**
* @async
* @memberOf BlankAdapter
* Function called to acquire read/write lock on Storage adapter
* @name acquireLock
* @returns {Promise<boolean>}
*/
acquireLock(): Promise<boolean>;
/**
* @async
* @memberOf BlankAdapter
* Function called to release write/read lock from Storage adapter
* @name releaseLock
* @returns {Promise<void 0>}
*/
releaseLock(): Promise<void>;
/**
* @async
* @memberOf BlankAdapter
* Function called to remove task from the storage
* @name remove
* @param {string} uid - Unique ID of the task
* @returns {Promise<boolean>}
*/
remove(uid: string): Promise<boolean>;
/**
* @async
* @memberOf BlankAdapter
* Function called to add task to the storage
* @name add
* @param {string} uid - Unique ID of the task
* @param {boolean} isInterval - true/false defining loop or one-time task
* @param {number} delay - Delay in milliseconds
* @returns {Promise<void 0>}
*/
add(uid: string, isInterval: boolean, delay: number): Promise<void>;
/**
* @async
* @memberOf BlankAdapter
* Function called after executing tasks
* Used by "Interval" tasks to set the next execution
* @name update
* @param {object} task - Full object of the task from storage
* @param {Date} nextExecuteAt - Date defining time of the next execution for "Interval" tasks
* @returns {Promise<boolean>} - `true` if updated, `false` id doesn't exist
*/
update(task: unknown, nextExecuteAt: Date): Promise<boolean>;
/**
* @async
* @memberOf BlankAdapter
* Find and run tasks one by one
* @name iterate
* @param {Date} nextExecuteAt - Date defining time of the next execution for "zombie" tasks
* @param {function} cb - callback that must get called after looping over tasks
* @returns {void 0}
*/
iterate(nextExecuteAt: Date): void;
}
44 changes: 44 additions & 0 deletions adapters/mongo.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import { Db } from 'mongodb';

export interface MongoAdapterOption {
db: Db;
lockCollectionName?: string;
prefix?: string;
resetOnInit?: boolean;
}

/** Class representing MongoDB adapter for JoSk */
export class MongoAdapter {
/**
* Create a MongoAdapter instance
* @param {JoSk} joskInstance - JoSk instance
* @param {object} opts - configuration object
* @param {Db} opts.db - Required, Mongo's `Db` instance, like one returned from `MongoClient#db()` method
* @param {string} [opts.lockCollectionName] - custom "lock" collection name
* @param {string} [opts.prefix] - prefix for scope isolation; use when creating multiple JoSK instances within the single application
* @param {boolean} [opts.resetOnInit] - Make sure all old tasks is completed before setting a new one, see readme for more details
*/
constructor(opts?: MongoAdapterOption);
name: string;
prefix: string;
lockCollectionName: string;
resetOnInit: boolean;
db: Db;
uniqueName: string;
collection: any;
lockCollection: any;
/**
* @async
* @memberOf MongoAdapter
* @name ping
* @description Check connection to MongoDB
* @returns {Promise<object>}
*/
ping(): Promise<unknown>;
acquireLock(): Promise<boolean>;
releaseLock(): Promise<void>;
remove(uid: string): Promise<boolean>;
add(uid: string, isInterval: boolean, delay: number): Promise<boolean>;
update(task: unknown, nextExecuteAt: Date): Promise<boolean>;
iterate(nextExecuteAt: Date): Promise<void>;
}
42 changes: 42 additions & 0 deletions adapters/redis.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import { RedisClientType as RedisClient } from 'redis';

export interface RedisAdapterOption {
client: RedisClient;
lockCollectionName?: string;
prefix?: string;
resetOnInit?: boolean;
}

/** Class representing Redis adapter for JoSk */
export class RedisAdapter {
/**
* Create a RedisAdapter instance
* @param {object} opts - configuration object
* @param {RedisClient} opts.client - Required, Redis'es `RedisClient` instance, like one returned from `await redis.createClient().connect()` method
* @param {string} [opts.lockCollectionName] - custom "lock" collection name
* @param {string} [opts.prefix] - prefix for scope isolation; use when creating multiple JoSK instances within the single application
* @param {boolean} [opts.resetOnInit] - Make sure all old tasks is completed before setting a new one, see readme for more details
*/
constructor(opts?: RedisAdapterOption);
name: string;
prefix: string;
uniqueName: string;
lockKey: string;
resetOnInit: boolean;
client: RedisClient;
/**
* @async
* @memberOf RedisAdapter
* @name ping
* @description Check connection to Redis
* @returns {Promise<object>}
*/
ping(): Promise<unknown>;
acquireLock(): Promise<boolean>;
releaseLock(): Promise<void>;
remove(uid: string): Promise<boolean>;
add(uid: string, isInterval: boolean, delay: number): Promise<boolean>;
update(task: unknown, nextExecuteAt: Date): Promise<boolean>;
iterate(nextExecuteAt: Date): Promise<void>;
__getTaskKey(uid: string): string;
}
220 changes: 220 additions & 0 deletions index.d.cts
Original file line number Diff line number Diff line change
@@ -0,0 +1,220 @@
import { Db } from 'mongodb';
import { RedisClientType as RedisClient } from 'redis';
interface ErrorDetails {
description: string
error: Error
uid: null | string
task?: unknown
}

interface ExecutedDetails {
uid: string
date: Date
delay: number
timestamp: number
}

type OnErrorFunc = (title: string, details: ErrorDetails) => void
type OnExecutedFunc = (uid: string, details: ExecutedDetails) => void
type AsyncTaskFunc = () => Promise<void>
type SyncTaskFunc = () => void
type SyncNextTaskFunc = (ready: (next?: Date) => void) => void

export interface JoSkOption {
debug?: boolean;
onError?: OnErrorFunc;
autoClear?: boolean;
zombieTime?: number;
onExecuted?: OnExecutedFunc;
minRevolvingDelay?: number;
maxRevolvingDelay?: number;
}

/** Class representing a JoSk task runner (cron). */
export class JoSk {
/**
* Create a JoSk instance
* @param {object} opts - configuration object
* @param {boolean} [opts.debug] - Enable debug logging
* @param {function} [opts.onError] - Informational hook, called instead of throwing exceptions, see readme for more details
* @param {boolean} [opts.autoClear] - Remove obsolete tasks (any tasks which are not found in the instance memory during runtime, but exists in the database)
* @param {number} [opts.zombieTime] - Time in milliseconds, after this period of time - task will be interpreted as "zombie". This parameter allows to rescue task from "zombie mode" in case when: `ready()` wasn't called, exception during runtime was thrown, or caused by bad logic
* @param {function} [opts.onExecuted] - Informational hook, called when task is finished, see readme for more details
* @param {number} [opts.minRevolvingDelay] - Minimum revolving delay β€” the minimum delay between tasks executions in milliseconds
* @param {number} [opts.maxRevolvingDelay] - Maximum revolving delay β€” the maximum delay between tasks executions in milliseconds
*/
constructor(opts?: JoSkOption);
debug: boolean;
onError: false | OnErrorFunc;
autoClear: boolean;
zombieTime: number;
onExecuted: false | OnExecutedFunc;
isDestroyed: boolean;
minRevolvingDelay: number;
maxRevolvingDelay: number;
nextRevolutionTimeout: number;
tasks: {};
_debug: (...args: any[]) => void;
adapter: any;
/**
* @async
* @memberOf JoSk
* @name ping
* @description Check package readiness and connection to Storage
* @returns {Promise<object>}
* @throws {mix}
*/
ping(): Promise<unknown>;
/**
* @async
* @memberOf JoSk
* Create recurring task (loop)
* @name setInterval
* @param {function} func - Function (task) to execute
* @param {number} delay - Delay between task execution in milliseconds
* @param {string} uid - Unique function (task) identification as a string
* @returns {Promise<string>} - Timer ID
*/
setInterval(func: AsyncTaskFunc | SyncNextTaskFunc, delay: number, uid: string): Promise<string>;
/**
* @async
* @memberOf JoSk
* Create delayed task
* @name setTimeout
* @param {function} func - Function (task) to execute
* @param {number} delay - Delay before task execution in milliseconds
* @param {string} uid - Unique function (task) identification as a string
* @returns {Promise<string>} - Timer ID
*/
setTimeout(func: AsyncTaskFunc | SyncTaskFunc, delay: number, uid: string): Promise<string>;
/**
* @async
* @memberOf JoSk
* Create task, which would get executed immediately and only once across multi-server setup
* @name setImmediate
* @param {function} func - Function (task) to execute
* @param {string} uid - Unique function (task) identification as a string
* @returns {Promise<string>} - Timer ID
*/
setImmediate(func: AsyncTaskFunc | SyncTaskFunc, uid: string): Promise<string>;
/**
* @async
* @memberOf JoSk
* Cancel (abort) current interval timer.
* Must be called in a separate event loop from `.setInterval()`
* @name clearInterval
* @param {string|Promise<string>} timerId - Unique function (task) identification as a string, returned from `.setInterval()`
* @param {function} [callback] - optional callback
* @returns {Promise<boolean>} - `true` if task cleared, `false` if task doesn't exist
*/
clearInterval(timerId: string | Promise<string>): Promise<boolean>;
/**
* @async
* @memberOf JoSk
* Cancel (abort) current timeout timer.
* Must be called in a separate event loop from `.setTimeout()`
* @name clearTimeout
* @param {string|Promise<string>} timerId - Unique function (task) identification as a string, returned from `.setTimeout()`
* @param {function} [callback] - optional callback
* @returns {Promise<boolean>} - `true` if task cleared, `false` if task doesn't exist
*/
clearTimeout(timerId: string | Promise<string>): Promise<boolean>;
/**
* @memberOf JoSk
* Destroy JoSk instance and stop all tasks
* @name destroy
* @returns {boolean} - `true` if instance successfully destroyed, `false` if instance already destroyed
*/
destroy(): boolean;
__checkState(): boolean;
__remove(timerId: string): Promise<any>;
__add(uid: string, isInterval: boolean, delay: number): Promise<void>;
__execute(task: unknown): Promise<void>;
__iterate(): Promise<void>;
__tick(): void;
__errorHandler(error: unknown, title: string, description: string, uid: string): void;
}

export interface MongoAdapterOption {
db: Db;
lockCollectionName?: string;
prefix?: string;
resetOnInit?: boolean;
}

/** Class representing MongoDB adapter for JoSk */
export class MongoAdapter {
/**
* Create a MongoAdapter instance
* @param {JoSk} joskInstance - JoSk instance
* @param {object} opts - configuration object
* @param {Db} opts.db - Required, Mongo's `Db` instance, like one returned from `MongoClient#db()` method
* @param {string} [opts.lockCollectionName] - custom "lock" collection name
* @param {string} [opts.prefix] - prefix for scope isolation; use when creating multiple JoSK instances within the single application
* @param {boolean} [opts.resetOnInit] - Make sure all old tasks is completed before setting a new one, see readme for more details
*/
constructor(opts?: MongoAdapterOption);
name: string;
prefix: string;
lockCollectionName: string;
resetOnInit: boolean;
db: Db;
uniqueName: string;
collection: any;
lockCollection: any;
/**
* @async
* @memberOf MongoAdapter
* @name ping
* @description Check connection to MongoDB
* @returns {Promise<object>}
*/
ping(): Promise<unknown>;
acquireLock(): Promise<boolean>;
releaseLock(): Promise<void>;
remove(uid: string): Promise<boolean>;
add(uid: string, isInterval: boolean, delay: number): Promise<boolean>;
update(task: unknown, nextExecuteAt: Date): Promise<boolean>;
iterate(nextExecuteAt: Date): Promise<void>;
}

export interface RedisAdapterOption {
client: RedisClient;
lockCollectionName?: string;
prefix?: string;
resetOnInit?: boolean;
}

/** Class representing Redis adapter for JoSk */
export class RedisAdapter {
/**
* Create a RedisAdapter instance
* @param {object} opts - configuration object
* @param {RedisClient} opts.client - Required, Redis'es `RedisClient` instance, like one returned from `await redis.createClient().connect()` method
* @param {string} [opts.lockCollectionName] - custom "lock" collection name
* @param {string} [opts.prefix] - prefix for scope isolation; use when creating multiple JoSK instances within the single application
* @param {boolean} [opts.resetOnInit] - Make sure all old tasks is completed before setting a new one, see readme for more details
*/
constructor(opts?: RedisAdapterOption);
name: string;
prefix: string;
uniqueName: string;
lockKey: string;
resetOnInit: boolean;
client: RedisClient;
/**
* @async
* @memberOf RedisAdapter
* @name ping
* @description Check connection to Redis
* @returns {Promise<object>}
*/
ping(): Promise<unknown>;
acquireLock(): Promise<boolean>;
releaseLock(): Promise<void>;
remove(uid: string): Promise<boolean>;
add(uid: string, isInterval: boolean, delay: number): Promise<boolean>;
update(task: unknown, nextExecuteAt: Date): Promise<boolean>;
iterate(nextExecuteAt: Date): Promise<void>;
__getTaskKey(uid: string): string;
}
Loading

0 comments on commit cb060d9

Please sign in to comment.