2015-06-01 17:49:14 -07:00
|
|
|
/// <reference path="../../globals.d.ts" />
|
2015-05-20 17:19:46 -07:00
|
|
|
var _global: BrowserNodeGlobal = <any>(typeof window === 'undefined' ? global : window);
|
2015-04-01 10:45:56 -07:00
|
|
|
export {_global as global};
|
|
|
|
|
|
|
|
export var Type = Function;
|
2015-06-02 09:51:40 -07:00
|
|
|
export type Type = new (...args: any[]) => any;
|
2015-04-24 13:17:36 -07:00
|
|
|
|
2015-04-24 15:19:11 -07:00
|
|
|
export class BaseException extends Error {
|
|
|
|
stack;
|
2015-06-27 20:00:11 -07:00
|
|
|
constructor(public message?: string, public originalException?, public originalStack?) {
|
2015-04-24 15:19:11 -07:00
|
|
|
super(message);
|
2015-05-23 09:27:12 -07:00
|
|
|
this.stack = (<any>new Error(message)).stack;
|
2015-04-24 15:19:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
toString(): string { return this.message; }
|
|
|
|
}
|
|
|
|
|
2015-04-01 10:45:56 -07:00
|
|
|
export var Math = _global.Math;
|
|
|
|
export var Date = _global.Date;
|
|
|
|
|
2015-05-20 17:19:46 -07:00
|
|
|
var assertionsEnabled_ = typeof _global['assert'] !== 'undefined';
|
|
|
|
export function assertionsEnabled(): boolean {
|
|
|
|
return assertionsEnabled_;
|
2015-04-01 10:45:56 -07:00
|
|
|
}
|
2015-05-18 09:24:52 -07:00
|
|
|
|
2015-05-20 17:19:46 -07:00
|
|
|
// TODO: remove calls to assert in production environment
|
|
|
|
// Note: Can't just export this and import in in other files
|
|
|
|
// as `assert` is a reserved keyword in Dart
|
2015-06-19 10:18:44 -07:00
|
|
|
_global.assert = function assert(condition) {
|
|
|
|
if (assertionsEnabled_) {
|
|
|
|
_global['assert'].call(condition);
|
|
|
|
}
|
|
|
|
};
|
2015-05-10 13:26:33 +02:00
|
|
|
// This function is needed only to properly support Dart's const expressions
|
|
|
|
// see https://github.com/angular/ts2dart/pull/151 for more info
|
|
|
|
export function CONST_EXPR<T>(expr: T): T {
|
|
|
|
return expr;
|
2015-05-11 21:52:41 +02:00
|
|
|
}
|
2015-05-18 09:24:52 -07:00
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
export function CONST():<T>(target: T) => T {
|
2015-04-24 15:19:11 -07:00
|
|
|
return (target) => target;
|
2015-05-11 21:52:41 +02:00
|
|
|
}
|
2015-05-18 09:24:52 -07:00
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
export function ABSTRACT():<T>(target: T) => T {
|
2015-05-27 14:57:54 -07:00
|
|
|
return (t) => t;
|
|
|
|
}
|
2015-05-18 09:24:52 -07:00
|
|
|
|
2015-05-26 09:25:16 -07:00
|
|
|
// Note: This is only a marker annotation needed for ts2dart.
|
|
|
|
// This is written so that is can be used as a Traceur annotation
|
|
|
|
// or a Typescript decorator.
|
2015-06-26 11:10:52 -07:00
|
|
|
export function IMPLEMENTS(_):<T>(target: T) => T {
|
2015-05-26 09:25:16 -07:00
|
|
|
return (t) => t;
|
|
|
|
}
|
2015-04-01 10:45:56 -07:00
|
|
|
|
|
|
|
export function isPresent(obj): boolean {
|
|
|
|
return obj !== undefined && obj !== null;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isBlank(obj): boolean {
|
|
|
|
return obj === undefined || obj === null;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isString(obj): boolean {
|
|
|
|
return typeof obj === "string";
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isFunction(obj): boolean {
|
|
|
|
return typeof obj === "function";
|
|
|
|
}
|
|
|
|
|
2015-04-15 17:56:14 -07:00
|
|
|
export function isType(obj): boolean {
|
|
|
|
return isFunction(obj);
|
|
|
|
}
|
|
|
|
|
2015-06-11 19:32:55 +02:00
|
|
|
export function isStringMap(obj): boolean {
|
2015-05-29 14:19:10 -07:00
|
|
|
return typeof obj === 'object' && obj !== null;
|
|
|
|
}
|
|
|
|
|
2015-06-11 19:32:55 +02:00
|
|
|
export function isPromise(obj): boolean {
|
|
|
|
return obj instanceof (<any>_global).Promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isArray(obj): boolean {
|
|
|
|
return Array.isArray(obj);
|
|
|
|
}
|
|
|
|
|
2015-04-01 10:45:56 -07:00
|
|
|
export function stringify(token): string {
|
|
|
|
if (typeof token === 'string') {
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (token === undefined || token === null) {
|
|
|
|
return '' + token;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (token.name) {
|
|
|
|
return token.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
return token.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
export class StringWrapper {
|
|
|
|
static fromCharCode(code: int): string { return String.fromCharCode(code); }
|
|
|
|
|
2015-06-09 16:51:40 +02:00
|
|
|
static charCodeAt(s: string, index: int): number { return s.charCodeAt(index); }
|
2015-04-01 10:45:56 -07:00
|
|
|
|
2015-06-09 16:51:40 +02:00
|
|
|
static split(s: string, regExp): List<string> { return s.split(regExp); }
|
2015-04-01 10:45:56 -07:00
|
|
|
|
|
|
|
static equals(s: string, s2: string): boolean { return s === s2; }
|
|
|
|
|
|
|
|
static replace(s: string, from: string, replace: string): string {
|
|
|
|
return s.replace(from, replace);
|
|
|
|
}
|
|
|
|
|
|
|
|
static replaceAll(s: string, from: RegExp, replace: string): string {
|
|
|
|
return s.replace(from, replace);
|
|
|
|
}
|
|
|
|
|
2015-05-14 09:17:44 -07:00
|
|
|
static toUpperCase(s: string): string { return s.toUpperCase(); }
|
|
|
|
|
|
|
|
static toLowerCase(s: string): string { return s.toLowerCase(); }
|
|
|
|
|
2015-06-09 16:51:40 +02:00
|
|
|
static startsWith(s: string, start: string): boolean { return s.startsWith(start); }
|
2015-04-01 10:45:56 -07:00
|
|
|
|
2015-06-09 16:51:40 +02:00
|
|
|
static substring(s: string, start: int, end: int = null): string {
|
2015-04-01 10:45:56 -07:00
|
|
|
return s.substring(start, end === null ? undefined : end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static replaceAllMapped(s: string, from: RegExp, cb: Function): string {
|
2015-06-02 09:51:40 -07:00
|
|
|
return s.replace(from, function(...matches) {
|
2015-04-01 10:45:56 -07:00
|
|
|
// Remove offset & string from the result array
|
|
|
|
matches.splice(-2, 2);
|
|
|
|
// The callback receives match, p1, ..., pn
|
|
|
|
return cb(matches);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
static contains(s: string, substr: string): boolean { return s.indexOf(substr) != -1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
export class StringJoiner {
|
|
|
|
constructor(public parts = []) {}
|
|
|
|
|
2015-06-09 16:51:40 +02:00
|
|
|
add(part: string): void { this.parts.push(part); }
|
2015-04-01 10:45:56 -07:00
|
|
|
|
|
|
|
toString(): string { return this.parts.join(""); }
|
|
|
|
}
|
|
|
|
|
2015-04-24 15:19:11 -07:00
|
|
|
export class NumberParseError extends BaseException {
|
2015-04-01 10:45:56 -07:00
|
|
|
name: string;
|
|
|
|
|
2015-04-24 15:19:11 -07:00
|
|
|
constructor(public message: string) { super(); }
|
2015-04-01 10:45:56 -07:00
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
toString(): string { return this.message; }
|
2015-04-01 10:45:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export class NumberWrapper {
|
|
|
|
static toFixed(n: number, fractionDigits: int): string { return n.toFixed(fractionDigits); }
|
|
|
|
|
|
|
|
static equal(a, b): boolean { return a === b; }
|
|
|
|
|
|
|
|
static parseIntAutoRadix(text: string): int {
|
|
|
|
var result: int = parseInt(text);
|
|
|
|
if (isNaN(result)) {
|
|
|
|
throw new NumberParseError("Invalid integer literal when parsing " + text);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static parseInt(text: string, radix: int): int {
|
|
|
|
if (radix == 10) {
|
|
|
|
if (/^(\-|\+)?[0-9]+$/.test(text)) {
|
|
|
|
return parseInt(text, radix);
|
|
|
|
}
|
|
|
|
} else if (radix == 16) {
|
|
|
|
if (/^(\-|\+)?[0-9ABCDEFabcdef]+$/.test(text)) {
|
|
|
|
return parseInt(text, radix);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var result: int = parseInt(text, radix);
|
|
|
|
if (!isNaN(result)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new NumberParseError("Invalid integer literal when parsing " + text + " in base " +
|
|
|
|
radix);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: NaN is a valid literal but is returned by parseFloat to indicate an error.
|
|
|
|
static parseFloat(text: string): number { return parseFloat(text); }
|
|
|
|
|
|
|
|
static get NaN(): number { return NaN; }
|
|
|
|
|
|
|
|
static isNaN(value): boolean { return isNaN(value); }
|
|
|
|
|
|
|
|
static isInteger(value): boolean { return Number.isInteger(value); }
|
|
|
|
}
|
|
|
|
|
|
|
|
export var RegExp = _global.RegExp;
|
|
|
|
|
|
|
|
export class RegExpWrapper {
|
|
|
|
static create(regExpStr, flags: string = ''): RegExp {
|
|
|
|
flags = flags.replace(/g/g, '');
|
|
|
|
return new _global.RegExp(regExpStr, flags + 'g');
|
|
|
|
}
|
2015-05-26 13:34:11 +02:00
|
|
|
static firstMatch(regExp: RegExp, input: string): List<string> {
|
2015-04-01 10:45:56 -07:00
|
|
|
// Reset multimatch regex state
|
|
|
|
regExp.lastIndex = 0;
|
|
|
|
return regExp.exec(input);
|
|
|
|
}
|
2015-05-26 13:34:11 +02:00
|
|
|
static test(regExp: RegExp, input: string): boolean { return regExp.test(input); }
|
2015-06-26 11:10:52 -07:00
|
|
|
static matcher(regExp, input): {
|
|
|
|
re: RegExp;
|
|
|
|
input: string
|
|
|
|
}
|
|
|
|
{
|
2015-04-01 10:45:56 -07:00
|
|
|
// Reset regex state for the case
|
|
|
|
// someone did not loop over all matches
|
|
|
|
// last time.
|
|
|
|
regExp.lastIndex = 0;
|
|
|
|
return {re: regExp, input: input};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class RegExpMatcherWrapper {
|
2015-06-26 11:10:52 -07:00
|
|
|
static next(matcher): string { return matcher.re.exec(matcher.input); }
|
2015-04-01 10:45:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class FunctionWrapper {
|
2015-06-26 11:10:52 -07:00
|
|
|
static apply(fn: Function, posArgs): any { return fn.apply(null, posArgs); }
|
2015-04-01 10:45:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// JS has NaN !== NaN
|
|
|
|
export function looseIdentical(a, b): boolean {
|
|
|
|
return a === b || typeof a === "number" && typeof b === "number" && isNaN(a) && isNaN(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// JS considers NaN is the same as NaN for map Key (while NaN !== NaN otherwise)
|
|
|
|
// see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
|
2015-06-26 11:10:52 -07:00
|
|
|
export function getMapKey(value): any {
|
2015-04-01 10:45:56 -07:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
export function normalizeBlank(obj): any {
|
2015-04-01 10:45:56 -07:00
|
|
|
return isBlank(obj) ? null : obj;
|
|
|
|
}
|
|
|
|
|
2015-06-12 07:50:45 -07:00
|
|
|
export function normalizeBool(obj: boolean): boolean {
|
2015-05-27 10:14:37 -07:00
|
|
|
return isBlank(obj) ? false : obj;
|
|
|
|
}
|
|
|
|
|
2015-04-01 10:45:56 -07:00
|
|
|
export function isJsObject(o): boolean {
|
|
|
|
return o !== null && (typeof o === "function" || typeof o === "object");
|
|
|
|
}
|
|
|
|
|
|
|
|
export function print(obj) {
|
|
|
|
if (obj instanceof Error) {
|
|
|
|
console.log(obj.stack);
|
|
|
|
} else {
|
|
|
|
console.log(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can't be all uppercase as our transpiler would think it is a special directive...
|
2015-05-18 09:24:52 -07:00
|
|
|
export class Json {
|
2015-06-26 11:10:52 -07:00
|
|
|
static parse(s: string): Object { return _global.JSON.parse(s); }
|
2015-05-18 09:24:52 -07:00
|
|
|
static stringify(data): string {
|
|
|
|
// Dart doesn't take 3 arguments
|
|
|
|
return _global.JSON.stringify(data, null, 2);
|
|
|
|
}
|
|
|
|
}
|
2015-04-01 10:45:56 -07:00
|
|
|
|
|
|
|
export class DateWrapper {
|
2015-06-26 11:10:52 -07:00
|
|
|
static fromMillis(ms): Date { return new Date(ms); }
|
|
|
|
static toMillis(date: Date): number { return date.getTime(); }
|
|
|
|
static now(): Date { return new Date(); }
|
|
|
|
static toJson(date): string { return date.toJSON(); }
|
2015-04-01 10:45:56 -07:00
|
|
|
}
|