@lumino/algorithm
Version:
Lumino Algorithms and Iterators
653 lines (613 loc) • 15.5 kB
text/typescript
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
/**
* An object which can produce an iterator over its values.
*/
export interface IIterable<T> {
/**
* Get an iterator over the object's values.
*
* @returns An iterator which yields the object's values.
*
* #### Notes
* Depending on the iterable, the returned iterator may or may not be
* a new object. A collection or other container-like object should
* typically return a new iterator, while an iterator itself should
* normally return `this`.
*/
iter(): IIterator<T>;
}
/**
* An object which traverses a collection of values.
*
* #### Notes
* An `IIterator` is itself an `IIterable`. Most implementations of
* `IIterator` should simply return `this` from the `iter()` method.
*/
export interface IIterator<T> extends IIterable<T> {
/**
* Create an independent clone of the iterator.
*
* @returns A new independent clone of the iterator.
*
* #### Notes
* The cloned iterator can be consumed independently of the current
* iterator. In essence, it is a copy of the iterator value stream
* which starts at the current location.
*
* This can be useful for lookahead and stream duplication.
*/
clone(): IIterator<T>;
/**
* Get the next value from the iterator.
*
* @returns The next value from the iterator, or `undefined`.
*
* #### Notes
* The `undefined` value is used to signal the end of iteration and
* should therefore not be used as a value in a collection.
*
* The use of the `undefined` sentinel is an explicit design choice
* which favors performance over purity. The ES6 iterator design of
* returning a `{ value, done }` pair is suboptimal, as it requires
* an object allocation on each iteration; and an `isDone()` method
* would increase implementation and runtime complexity.
*/
next(): T | undefined;
}
/**
* A type alias for an iterable or builtin array-like object.
*/
export type IterableOrArrayLike<T> = IIterable<T> | ArrayLike<T>;
/**
* Create an iterator for an iterable object.
*
* @param object - The iterable or array-like object of interest.
*
* @returns A new iterator for the given object.
*
* #### Notes
* This function allows iteration algorithms to operate on user-defined
* iterable types and builtin array-like objects in a uniform fashion.
*/
export function iter<T>(object: IterableOrArrayLike<T>): IIterator<T> {
let it: IIterator<T>;
if (typeof (object as any).iter === 'function') {
it = (object as IIterable<T>).iter();
} else {
it = new ArrayIterator<T>(object as ArrayLike<T>);
}
return it;
}
/**
* Create an iterator for the keys in an object.
*
* @param object - The object of interest.
*
* @returns A new iterator for the keys in the given object.
*
* #### Complexity
* Linear.
*
* #### Example
* ```typescript
* import { each, keys } from '@lumino/algorithm';
*
* let data = { one: 1, two: 2, three: 3 };
*
* each(keys(data), key => { console.log(key); }); // 'one', 'two', 'three'
* ```
*/
export function iterKeys<T>(object: {
readonly [key: string]: T;
}): IIterator<string> {
return new KeyIterator(object);
}
/**
* Create an iterator for the values in an object.
*
* @param object - The object of interest.
*
* @returns A new iterator for the values in the given object.
*
* #### Complexity
* Linear.
*
* #### Example
* ```typescript
* import { each, values } from '@lumino/algorithm';
*
* let data = { one: 1, two: 2, three: 3 };
*
* each(values(data), value => { console.log(value); }); // 1, 2, 3
* ```
*/
export function iterValues<T>(object: {
readonly [key: string]: T;
}): IIterator<T> {
return new ValueIterator<T>(object);
}
/**
* Create an iterator for the items in an object.
*
* @param object - The object of interest.
*
* @returns A new iterator for the items in the given object.
*
* #### Complexity
* Linear.
*
* #### Example
* ```typescript
* import { each, items } from '@lumino/algorithm';
*
* let data = { one: 1, two: 2, three: 3 };
*
* each(items(data), value => { console.log(value); }); // ['one', 1], ['two', 2], ['three', 3]
* ```
*/
export function iterItems<T>(object: {
readonly [key: string]: T;
}): IIterator<[string, T]> {
return new ItemIterator<T>(object);
}
/**
* Create an iterator for an iterator-like function.
*
* @param fn - A function which behaves like an iterator `next` method.
*
* @returns A new iterator for the given function.
*
* #### Notes
* The returned iterator **cannot** be cloned.
*
* #### Example
* ```typescript
* import { each, iterFn } from '@lumino/algorithm';
*
* let it = iterFn((() => {
* let i = 0;
* return () => i > 3 ? undefined : i++;
* })());
*
* each(it, v => { console.log(v); }); // 0, 1, 2, 3
* ```
*/
export function iterFn<T>(fn: () => T | undefined): IIterator<T> {
return new FnIterator<T>(fn);
}
/**
* Invoke a function for each value in an iterable.
*
* @param object - The iterable or array-like object of interest.
*
* @param fn - The callback function to invoke for each value.
*
* #### Notes
* Iteration can be terminated early by returning `false` from the
* callback function.
*
* #### Complexity
* Linear.
*
* #### Example
* ```typescript
* import { each } from '@lumino/algorithm';
*
* let data = [5, 7, 0, -2, 9];
*
* each(data, value => { console.log(value); });
* ```
*/
export function each<T>(
object: IterableOrArrayLike<T>,
fn: (value: T, index: number) => boolean | void
): void {
let index = 0;
let it = iter(object);
let value: T | undefined;
while ((value = it.next()) !== undefined) {
if (fn(value, index++) === false) {
return;
}
}
}
/**
* Test whether all values in an iterable satisfy a predicate.
*
* @param object - The iterable or array-like object of interest.
*
* @param fn - The predicate function to invoke for each value.
*
* @returns `true` if all values pass the test, `false` otherwise.
*
* #### Notes
* Iteration terminates on the first `false` predicate result.
*
* #### Complexity
* Linear.
*
* #### Example
* ```typescript
* import { every } from '@lumino/algorithm';
*
* let data = [5, 7, 1];
*
* every(data, value => value % 2 === 0); // false
* every(data, value => value % 2 === 1); // true
* ```
*/
export function every<T>(
object: IterableOrArrayLike<T>,
fn: (value: T, index: number) => boolean
): boolean {
let index = 0;
let it = iter(object);
let value: T | undefined;
while ((value = it.next()) !== undefined) {
if (!fn(value, index++)) {
return false;
}
}
return true;
}
/**
* Test whether any value in an iterable satisfies a predicate.
*
* @param object - The iterable or array-like object of interest.
*
* @param fn - The predicate function to invoke for each value.
*
* @returns `true` if any value passes the test, `false` otherwise.
*
* #### Notes
* Iteration terminates on the first `true` predicate result.
*
* #### Complexity
* Linear.
*
* #### Example
* ```typescript
* import { some } from '@lumino/algorithm';
*
* let data = [5, 7, 1];
*
* some(data, value => value === 7); // true
* some(data, value => value === 3); // false
* ```
*/
export function some<T>(
object: IterableOrArrayLike<T>,
fn: (value: T, index: number) => boolean
): boolean {
let index = 0;
let it = iter(object);
let value: T | undefined;
while ((value = it.next()) !== undefined) {
if (fn(value, index++)) {
return true;
}
}
return false;
}
/**
* Create an array from an iterable of values.
*
* @param object - The iterable or array-like object of interest.
*
* @returns A new array of values from the given object.
*
* #### Example
* ```typescript
* import { iter, toArray } from '@lumino/algorithm';
*
* let data = [1, 2, 3, 4, 5, 6];
*
* let stream = iter(data);
*
* toArray(stream); // [1, 2, 3, 4, 5, 6];
* ```
*/
export function toArray<T>(object: IterableOrArrayLike<T>): T[] {
let index = 0;
let result: T[] = [];
let it = iter(object);
let value: T | undefined;
while ((value = it.next()) !== undefined) {
result[index++] = value;
}
return result;
}
/**
* Create an object from an iterable of key/value pairs.
*
* @param object - The iterable or array-like object of interest.
*
* @returns A new object mapping keys to values.
*
* #### Example
* ```typescript
* import { toObject } from '@lumino/algorithm';
*
* let data = [['one', 1], ['two', 2], ['three', 3]];
*
* toObject(data); // { one: 1, two: 2, three: 3 }
* ```
*/
export function toObject<T>(
object: IterableOrArrayLike<[string, T]>
): { [key: string]: T } {
let it = iter(object);
let pair: [string, T] | undefined;
let result: { [key: string]: T } = {};
while ((pair = it.next()) !== undefined) {
result[pair[0]] = pair[1];
}
return result;
}
/**
* An iterator for an array-like object.
*
* #### Notes
* This iterator can be used for any builtin JS array-like object.
*/
export class ArrayIterator<T> implements IIterator<T> {
/**
* Construct a new array iterator.
*
* @param source - The array-like object of interest.
*/
constructor(source: ArrayLike<T>) {
this._source = source;
}
/**
* Get an iterator over the object's values.
*
* @returns An iterator which yields the object's values.
*/
iter(): IIterator<T> {
return this;
}
/**
* Create an independent clone of the iterator.
*
* @returns A new independent clone of the iterator.
*/
clone(): IIterator<T> {
let result = new ArrayIterator<T>(this._source);
result._index = this._index;
return result;
}
/**
* Get the next value from the iterator.
*
* @returns The next value from the iterator, or `undefined`.
*/
next(): T | undefined {
if (this._index >= this._source.length) {
return undefined;
}
return this._source[this._index++];
}
private _index = 0;
private _source: ArrayLike<T>;
}
/**
* An iterator for the keys in an object.
*
* #### Notes
* This iterator can be used for any JS object.
*/
export class KeyIterator implements IIterator<string> {
/**
* Construct a new key iterator.
*
* @param source - The object of interest.
*
* @param keys - The keys to iterate, if known.
*/
constructor(
source: { readonly [key: string]: any },
keys = Object.keys(source)
) {
this._source = source;
this._keys = keys;
}
/**
* Get an iterator over the object's values.
*
* @returns An iterator which yields the object's values.
*/
iter(): IIterator<string> {
return this;
}
/**
* Create an independent clone of the iterator.
*
* @returns A new independent clone of the iterator.
*/
clone(): IIterator<string> {
let result = new KeyIterator(this._source, this._keys);
result._index = this._index;
return result;
}
/**
* Get the next value from the iterator.
*
* @returns The next value from the iterator, or `undefined`.
*/
next(): string | undefined {
if (this._index >= this._keys.length) {
return undefined;
}
let key = this._keys[this._index++];
if (key in this._source) {
return key;
}
return this.next();
}
private _index = 0;
private _keys: string[];
private _source: { readonly [key: string]: any };
}
/**
* An iterator for the values in an object.
*
* #### Notes
* This iterator can be used for any JS object.
*/
export class ValueIterator<T> implements IIterator<T> {
/**
* Construct a new value iterator.
*
* @param source - The object of interest.
*
* @param keys - The keys to iterate, if known.
*/
constructor(
source: { readonly [key: string]: T },
keys = Object.keys(source)
) {
this._source = source;
this._keys = keys;
}
/**
* Get an iterator over the object's values.
*
* @returns An iterator which yields the object's values.
*/
iter(): IIterator<T> {
return this;
}
/**
* Create an independent clone of the iterator.
*
* @returns A new independent clone of the iterator.
*/
clone(): IIterator<T> {
let result = new ValueIterator<T>(this._source, this._keys);
result._index = this._index;
return result;
}
/**
* Get the next value from the iterator.
*
* @returns The next value from the iterator, or `undefined`.
*/
next(): T | undefined {
if (this._index >= this._keys.length) {
return undefined;
}
let key = this._keys[this._index++];
if (key in this._source) {
return this._source[key];
}
return this.next();
}
private _index = 0;
private _keys: string[];
private _source: { readonly [key: string]: T };
}
/**
* An iterator for the items in an object.
*
* #### Notes
* This iterator can be used for any JS object.
*/
export class ItemIterator<T> implements IIterator<[string, T]> {
/**
* Construct a new item iterator.
*
* @param source - The object of interest.
*
* @param keys - The keys to iterate, if known.
*/
constructor(
source: { readonly [key: string]: T },
keys = Object.keys(source)
) {
this._source = source;
this._keys = keys;
}
/**
* Get an iterator over the object's values.
*
* @returns An iterator which yields the object's values.
*/
iter(): IIterator<[string, T]> {
return this;
}
/**
* Create an independent clone of the iterator.
*
* @returns A new independent clone of the iterator.
*/
clone(): IIterator<[string, T]> {
let result = new ItemIterator<T>(this._source, this._keys);
result._index = this._index;
return result;
}
/**
* Get the next value from the iterator.
*
* @returns The next value from the iterator, or `undefined`.
*/
next(): [string, T] | undefined {
if (this._index >= this._keys.length) {
return undefined;
}
let key = this._keys[this._index++];
if (key in this._source) {
return [key, this._source[key]];
}
return this.next();
}
private _index = 0;
private _keys: string[];
private _source: { readonly [key: string]: T };
}
/**
* An iterator for an iterator-like function.
*/
export class FnIterator<T> implements IIterator<T> {
/**
* Construct a new function iterator.
*
* @param fn - The iterator-like function of interest.
*/
constructor(fn: () => T | undefined) {
this._fn = fn;
}
/**
* Get an iterator over the object's values.
*
* @returns An iterator which yields the object's values.
*/
iter(): IIterator<T> {
return this;
}
/**
* Create an independent clone of the iterator.
*
* @returns A new independent clone of the iterator.
*/
clone(): IIterator<T> {
throw new Error('An `FnIterator` cannot be cloned.');
}
/**
* Get the next value from the iterator.
*
* @returns The next value from the iterator, or `undefined`.
*/
next(): T | undefined {
return this._fn.call(undefined);
}
private _fn: () => T | undefined;
}