192 lines
6.2 KiB
JavaScript
192 lines
6.2 KiB
JavaScript
"use strict";
|
|
var __extends = (this && this.__extends) || function (d, b) {
|
|
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
var isFunction_1 = require('./util/isFunction');
|
|
var Subscription_1 = require('./Subscription');
|
|
var rxSubscriber_1 = require('./symbol/rxSubscriber');
|
|
var Observer_1 = require('./Observer');
|
|
var Subscriber = (function (_super) {
|
|
__extends(Subscriber, _super);
|
|
function Subscriber(destinationOrNext, error, complete) {
|
|
_super.call(this);
|
|
this.syncErrorValue = null;
|
|
this.syncErrorThrown = false;
|
|
this.syncErrorThrowable = false;
|
|
this.isStopped = false;
|
|
switch (arguments.length) {
|
|
case 0:
|
|
this.destination = Observer_1.empty;
|
|
break;
|
|
case 1:
|
|
if (!destinationOrNext) {
|
|
this.destination = Observer_1.empty;
|
|
break;
|
|
}
|
|
if (typeof destinationOrNext === 'object') {
|
|
if (destinationOrNext instanceof Subscriber) {
|
|
this.destination = destinationOrNext;
|
|
}
|
|
else {
|
|
this.syncErrorThrowable = true;
|
|
this.destination = new SafeSubscriber(this, destinationOrNext);
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
this.syncErrorThrowable = true;
|
|
this.destination = new SafeSubscriber(this, destinationOrNext, error, complete);
|
|
break;
|
|
}
|
|
}
|
|
Subscriber.create = function (next, error, complete) {
|
|
var subscriber = new Subscriber(next, error, complete);
|
|
subscriber.syncErrorThrowable = false;
|
|
return subscriber;
|
|
};
|
|
Subscriber.prototype.next = function (value) {
|
|
if (!this.isStopped) {
|
|
this._next(value);
|
|
}
|
|
};
|
|
Subscriber.prototype.error = function (err) {
|
|
if (!this.isStopped) {
|
|
this.isStopped = true;
|
|
this._error(err);
|
|
}
|
|
};
|
|
Subscriber.prototype.complete = function () {
|
|
if (!this.isStopped) {
|
|
this.isStopped = true;
|
|
this._complete();
|
|
}
|
|
};
|
|
Subscriber.prototype.unsubscribe = function () {
|
|
if (this.isUnsubscribed) {
|
|
return;
|
|
}
|
|
this.isStopped = true;
|
|
_super.prototype.unsubscribe.call(this);
|
|
};
|
|
Subscriber.prototype._next = function (value) {
|
|
this.destination.next(value);
|
|
};
|
|
Subscriber.prototype._error = function (err) {
|
|
this.destination.error(err);
|
|
this.unsubscribe();
|
|
};
|
|
Subscriber.prototype._complete = function () {
|
|
this.destination.complete();
|
|
this.unsubscribe();
|
|
};
|
|
Subscriber.prototype[rxSubscriber_1.rxSubscriber] = function () {
|
|
return this;
|
|
};
|
|
return Subscriber;
|
|
}(Subscription_1.Subscription));
|
|
exports.Subscriber = Subscriber;
|
|
var SafeSubscriber = (function (_super) {
|
|
__extends(SafeSubscriber, _super);
|
|
function SafeSubscriber(_parent, observerOrNext, error, complete) {
|
|
_super.call(this);
|
|
this._parent = _parent;
|
|
var next;
|
|
var context = this;
|
|
if (isFunction_1.isFunction(observerOrNext)) {
|
|
next = observerOrNext;
|
|
}
|
|
else if (observerOrNext) {
|
|
context = observerOrNext;
|
|
next = observerOrNext.next;
|
|
error = observerOrNext.error;
|
|
complete = observerOrNext.complete;
|
|
}
|
|
this._context = context;
|
|
this._next = next;
|
|
this._error = error;
|
|
this._complete = complete;
|
|
}
|
|
SafeSubscriber.prototype.next = function (value) {
|
|
if (!this.isStopped && this._next) {
|
|
var _parent = this._parent;
|
|
if (!_parent.syncErrorThrowable) {
|
|
this.__tryOrUnsub(this._next, value);
|
|
}
|
|
else if (this.__tryOrSetError(_parent, this._next, value)) {
|
|
this.unsubscribe();
|
|
}
|
|
}
|
|
};
|
|
SafeSubscriber.prototype.error = function (err) {
|
|
if (!this.isStopped) {
|
|
var _parent = this._parent;
|
|
if (this._error) {
|
|
if (!_parent.syncErrorThrowable) {
|
|
this.__tryOrUnsub(this._error, err);
|
|
this.unsubscribe();
|
|
}
|
|
else {
|
|
this.__tryOrSetError(_parent, this._error, err);
|
|
this.unsubscribe();
|
|
}
|
|
}
|
|
else if (!_parent.syncErrorThrowable) {
|
|
this.unsubscribe();
|
|
throw err;
|
|
}
|
|
else {
|
|
_parent.syncErrorValue = err;
|
|
_parent.syncErrorThrown = true;
|
|
this.unsubscribe();
|
|
}
|
|
}
|
|
};
|
|
SafeSubscriber.prototype.complete = function () {
|
|
if (!this.isStopped) {
|
|
var _parent = this._parent;
|
|
if (this._complete) {
|
|
if (!_parent.syncErrorThrowable) {
|
|
this.__tryOrUnsub(this._complete);
|
|
this.unsubscribe();
|
|
}
|
|
else {
|
|
this.__tryOrSetError(_parent, this._complete);
|
|
this.unsubscribe();
|
|
}
|
|
}
|
|
else {
|
|
this.unsubscribe();
|
|
}
|
|
}
|
|
};
|
|
SafeSubscriber.prototype.__tryOrUnsub = function (fn, value) {
|
|
try {
|
|
fn.call(this._context, value);
|
|
}
|
|
catch (err) {
|
|
this.unsubscribe();
|
|
throw err;
|
|
}
|
|
};
|
|
SafeSubscriber.prototype.__tryOrSetError = function (parent, fn, value) {
|
|
try {
|
|
fn.call(this._context, value);
|
|
}
|
|
catch (err) {
|
|
parent.syncErrorValue = err;
|
|
parent.syncErrorThrown = true;
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
SafeSubscriber.prototype._unsubscribe = function () {
|
|
var _parent = this._parent;
|
|
this._context = null;
|
|
this._parent = null;
|
|
_parent.unsubscribe();
|
|
};
|
|
return SafeSubscriber;
|
|
}(Subscriber));
|
|
//# sourceMappingURL=Subscriber.js.map
|