Last active
August 29, 2015 14:02
-
-
Save jhuska/35758979a97fbb59ade0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.Graphene = window.Graphene || {}; | |
window.Graphene.Page = window.Graphene.Page || {}; | |
window.Graphene.Page.XHRHalter = (function() { | |
var STATE_CONSTRUCT = -3, | |
STATE_OPEN = -2, | |
STATE_SEND = -1, | |
STATE_UNITIALIZED = 0, | |
STATE_LOADING = 1, | |
STATE_LOADED = 2, | |
STATE_INTERACTIVE = 3, | |
STATE_COMPLETE = 4, | |
_instances = new Array(), | |
_associations = {}, | |
_haltCounter = 0, | |
_enabled = true; | |
function HaltedXHR() { | |
if (this.id === undefined) { | |
_instances.push(this); | |
this.id = _instances.length - 1; | |
} | |
this.currentState = Graphene.Page.XHRHalter.STATE_CONSTRUCT; | |
this.lastAvailableState = Graphene.Page.XHRHalter.STATE_CONSTRUCT; | |
this.availableStates = new Array(); | |
this.continueToState = Graphene.Page.XHRHalter.STATE_CONSTRUCT; | |
this.xhr = xhr; | |
this.sendParams = {}; | |
this.xhrParams = new Array(); | |
this.saveXhrParams(); | |
this.tryProcessStates = function() { | |
while (this.currentState < this.continueToState && this.currentState < this.getLastAvailableState()) { | |
this.currentState += 1; | |
this.processState(this.currentState); | |
} | |
}; | |
this.processState = function(state) { | |
if (this.currentState > 0 && this.availableStates[state] === undefined) { | |
return; | |
} | |
this.loadXhrParams(state); | |
switch (state) { | |
case STATE_SEND : | |
// Graphene.Page.XHRHalter.XHRWrapperInjection.send.call(this.xhr, this.sendParams['content']); | |
break; | |
case STATE_UNITIALIZED : | |
break; | |
default : | |
this.callback(this.xhr); | |
} | |
this.loadXhrParams(this.lastAvailableState); | |
}; | |
this.getLastAvailableState = function() { | |
return this.availableStates.length - 1; | |
}; | |
this.loadXhrParams = function(state) { | |
state = Math.max(state, Graphene.Page.XHRHalter.STATE_UNITIALIZED); | |
var holder = this.availableStates[state]; | |
this.xhr.readyState = state; | |
this.xhr.responseText = holder.responseText; | |
this.xhr.responseXML = holder.responseXML; | |
this.xhr.status = holder.status; | |
this.xhr.statusText = holder.statusText; | |
this.xhr.onreadystatechange = holder.onreadystatechange; | |
}; | |
this.saveXhrParams = function() { | |
this.lastAvailableState = Math.max(this.lastAvailableState, this.xhr.readyState); | |
this.availableStates[this.xhr.readyState] = {}; | |
var holder = this.availableStates[this.xhr.readyState]; | |
holder.responseText = this.xhr.responseText; | |
holder.responseXML = this.xhr.responseXML; | |
holder.status = this.xhr.status; | |
holder.statusText = this.xhr.statusText; | |
holder.onreadystatechange = this.xhr.onreadystatechange; | |
}; | |
this.isXhrCompleted = function() { | |
return this.currentState === STATE_COMPLETE; | |
}; | |
this.wait = function() { | |
var that = this; | |
this.tryProcessStates(); | |
if (!this.isXhrCompleted()) { | |
setTimeout(function() { | |
that.wait.call(that); | |
}, 100); | |
} | |
}; | |
} | |
return { | |
setEnabled: function(enabled) { | |
_enabled = enabled; | |
}, | |
isEnabled: function() { | |
return _enabled; | |
}, | |
getHandle: function() { | |
if (isHandleAvailable()) { | |
return _haltCounter++; | |
} | |
return -1; | |
}, | |
isHandleAvailable: function() { | |
return _instances.length - 1 >= _haltCounter; | |
}, | |
continueTo: function(id, state) { | |
var halter = _instances[id]; | |
if (state < halter.continueToState) { | |
throw new Error("cannot continue to state (" + state + ") before the actual state (" + halter.continueToState + ")"); | |
} | |
halter.continueToState = state; | |
}, | |
isWaitingForSend: function(id) { | |
var halter = _instances[id]; | |
return halter.currentState === STATE_OPEN && halter.continueToState === STATE_OPEN; | |
}, | |
install: function() { | |
window.Graphene.xhrInterception.onConstruct( function(context) { | |
debugger; | |
var xhr = context.proceed(); | |
if (_enabled) { | |
_associations[xhr] = new HaltedXHR(xhr); | |
} | |
return xhr; | |
}); | |
window.Graphene.xhrInterception.onOpen( function(context) { | |
debugger; | |
var halter = _associations[context.xhrOriginal]; | |
if (halter !== undefined) { | |
halter.saveXhrParams(); | |
} else { | |
return context.proceed(); | |
} | |
}); | |
window.Graphene.xhrInterception.onSend( function(context) { | |
debugger; | |
var halter = _associations[context.xhrOriginal]; | |
if (halter !== undefined) { | |
halter.sendParams = arguments; | |
halter.saveXhrParams(); | |
} else { | |
return context.proceed(); | |
} | |
}); | |
} | |
}; | |
})(); | |
Graphene.xhrInterception.install(); | |
Graphene.Page.XHRHalter.install(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment