123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
"use strict";
modulum('VMApplication', ['EventListener'],
function(context, cls) {
cls.VMApplication = context.oo.Class(cls.EventListener, function($super) {
return {
$static: {
styleListLoaded: "gStyleListLoaded"
},
__name: "VMApplication",
applicationInfo: null,
running: false,
ending: false,
ended: false,
hasError: false,
protocolInterface: null,
dvm: null,
model: null,
layout: null,
action: null,
filetransfer: null,
typeahead: null,
keyboard: null,
focus: null,
_ui: null,
_session: null,
styleAttributesChanged: null,
styleListsChanged: false,
usedStyleAttributes: {},
_currentlyProcessing: false,
_processingDelayer: 0,
constructor: function(info, session) {
$super.constructor.call(this);
this._session = session;
this.applicationInfo = info;
this.applicationHash = session.getApplicationIdentifier();
if (!info.inNewWindow) {
this._ui = cls.ApplicationServiceFactory.create('UI', this);
this.dvm = cls.ApplicationServiceFactory.create('Dvm', this);
this.model = cls.ApplicationServiceFactory.create('Model', this);
this.layout = cls.ApplicationServiceFactory.create('Layout', this);
this.action = cls.ApplicationServiceFactory.create('Action', this);
this.filetransfer = cls.ApplicationServiceFactory.create('FileTransfer', this);
this.typeahead = cls.ApplicationServiceFactory.create('TypeAhead', this);
this.keyboard = cls.ApplicationServiceFactory.create('Keyboard', this);
this.focus = cls.ApplicationServiceFactory.create('Focus', this);
this.message = cls.ApplicationServiceFactory.create('Message', this);
}
this.protocolInterface = cls.ApplicationServiceFactory.create(this._getProtocolInterface(info), this);
this.styleAttributesChanged = [];
context.WidgetService.registerVMApplication(this);
},
getSession: function() {
return this._session;
},
waitForNewApp: function(onSuccess, onFailure) {
this.protocolInterface.waitForNewApp(onSuccess, onFailure);
},
prepareEmergencyClose: function() {
this._emergencyClose = cls.UANetwork._prepared.close(this);
window.requestAnimationFrame(function() {
try {
if (window.opener && window.opener._emergencyClose) {
window.opener._emergencyClose[context.uid].push(this._emergencyClose);
}
} catch (e) {
if (e.name === "SecurityError") {
context.LogService.networkProtocol.debug("GBC opened from a cross domain origin", e);
}
}
}.bind(this));
},
_getProtocolInterface: function(info) {
var result = "NoProtocolInterface";
switch (info.mode) {
case "direct":
result = "DirectProtocolInterface";
break;
case "ua":
result = "UAProtocolInterface";
break;
default:
break;
}
return result;
},
destroy: function() {
if (!this._destroyed) {
this._ui.destroy();
this.filetransfer.destroy();
this._session.remove(this);
this.model.destroy();
this.applicationInfo = null;
this._session = null;
this._ui = null;
this.dvm = null;
this.model = null;
this.layout = null;
this.action = null;
this.filetransfer = null;
this.typeahead = null;
this.keyboard = null;
this.focus = null;
this.message = null;
this.protocolInterface = null;
$super.destroy.call(this);
context.WidgetService.unregisterVMApplication(this);
}
},
start: function() {
this.protocolInterface.start(this.applicationInfo);
},
stop: function(message) {
if (!this.stopping) {
this.stopping = true;
if (!this.ended && this.applicationInfo) {
if (message) {
this.applicationInfo.ending = cls.ApplicationEnding.notok(message);
}
if (!this.applicationInfo.ending) {
this.applicationInfo.ending = cls.ApplicationEnding.ok;
}
if (this.applicationInfo.urlParameters && this.applicationInfo.urlParameters.logPlayer) {
this.applicationInfo.ending = cls.ApplicationEnding.logPlayer;
}
context.styler.bufferize();
this.typeahead.destroy();
this.model.remove();
this.setEnding();
this.action.destroy();
this.layout.destroy();
this.model.stop();
this.dvm.destroy();
this.protocolInterface.destroy();
this.keyboard.destroy();
this.focus.destroy();
this.filetransfer.destroy();
this.message.destroy();
this.destroy();
context.styler.flush();
this.ended = true;
}
}
},
setRunning: function(running) {
this.running = running;
this._ui.setRunning(running);
},
setError: function() {
this.hasError = true;
},
setEnding: function() {
if (!this.ending && !this.ended && !this._destroyed) {
this.ending = true;
this.setIdle();
}
},
info: function() {
return this.applicationInfo;
},
getNode: function(id) {
return this.model && this.model.getNode(id);
},
uiNode: function() {
return this.getNode(0);
},
getFocusedVMNode: function() {
var uiNode = this.uiNode();
if (uiNode) {
var id = uiNode.attribute("focus");
return this.getNode(id);
}
return null;
},
getFocusedVMNodeAndValue: function(inputModeOnly) {
var focusedNode = this.getFocusedVMNode();
if (focusedNode && focusedNode.getCurrentValueNode) {
var currentValueNode = focusedNode.getCurrentValueNode(inputModeOnly);
if (currentValueNode) {
focusedNode = currentValueNode;
}
}
return focusedNode;
},
newTask: function() {
var opener = this._session && this._session._browserMultiPageModeAsChild && window.opener,
openerSession = opener && opener.gbc && window.opener.gbc.SessionService.getCurrent();
if (openerSession) {
openerSession.newTask();
} else {
this.protocolInterface.newTask();
}
},
setIdle: function() {
this._setProcessingStyle(false);
this.dvm.setIdle(true);
this.action.setInterruptablesActive(false);
},
bypassIdleTimer: function(bypass) {
if (gbc.isGMA()) {
this._bypassTimer = bypass;
}
},
isBypassedIdleTimer: function() {
return this._bypassTimer;
},
setProcessing: function() {
this._setProcessingStyle(true);
this.dvm.setIdle(false);
this.action.setInterruptablesActive(true);
if (gbc.ThemeService.getValue("theme-legacy-topbar")) {
this.getMenu("runtimeStatus").setProcessing();
}
},
_setProcessingStyleImpl: function(processing) {
this._processingDelayer = 0;
if (this._ui && this._ui.getWidget()) {
this._ui.getWidget().getSidebarWidget().setProcessing(processing);
var windows = this.model.getNodesByTag("Window"),
len = windows.length,
i = 0;
for (; i < len; i++) {
if (windows[i] && windows[i]._setProcessingStyle) {
windows[i]._setProcessingStyle(processing);
}
}
}
},
_setProcessingStyle: function(processing) {
if (!processing) {
if (this._processingDelayer !== 0) {
this._clearAnimationFrame(this._processingDelayer);
this._processingDelayer = 0;
}
this._setProcessingStyleImpl(false);
} else {
if (this._processingDelayer === 0) {
this._processingDelayer = this._registerAnimationFrame(this._setProcessingStyleImpl.bind(this, true));
}
}
},
isIdle: function() {
return this.dvm.idle;
},
isProcessing: function() {
return !this.dvm.idle;
},
interrupt: function() {
this.protocolInterface.interrupt();
},
close: function() {
if (!this.ended && !this._destroyed) {
if (this.ending) {
this.destroy();
} else {
this.protocolInterface.close();
}
}
},
error: function() {
this.setEnding();
},
fail: function(ending) {
if (ending && this.applicationInfo) {
this.applicationInfo.ending = cls.ApplicationEnding.notok(ending);
}
this._registerTimeout(function() {
this.protocolInterface.stop(ending);
}.bind(this));
},
getVMWindow: function() {
if (this.ending) {
return null;
}
var uiNode = this.uiNode();
var uiCurrentWindow = uiNode &&
uiNode.isAttributeSetByVM("currentWindow") &&
uiNode.attribute("currentWindow");
if (uiCurrentWindow) {
return this.model.getNode(uiCurrentWindow);
} else {
return null;
}
},
getActionApplicationService: function() {
return this.action;
},
getTitle: function() {
if (this.uiNode()) {
return this.uiNode().attributes.text || this.uiNode().attributes.name;
} else {
return "New application";
}
},
attachRootWidget: function(widget) {
this._ui.getWidget().addChildWidget(widget);
},
getUI: function() {
return this._ui;
},
getMenu: function(name) {
var sessionWidget = this.getSession().getWidget();
var menu = null;
if (!gbc.ThemeService.getValue("theme-legacy-topbar")) {
menu = this.getUI().getWidget().getUserInterfaceWidget().getChromeBarWidget();
return menu.getGbcMenuItem(name);
} else {
var applicationHostWidget = sessionWidget.getParentWidget();
menu = applicationHostWidget._menu;
return name ? menu["_" + name] : menu;
}
},
getChromeBar: function() {
return this.getUI().getWidget().getUserInterfaceWidget().getChromeBarWidget();
},
hasActiveKeyEventNode: function() {
var uiNode = this.uiNode();
if (uiNode) {
var focusId = uiNode.attribute('focus');
var focusedNode = this.getNode(focusId);
if (['Table', 'Matrix', 'Menu', 'MenuAction', 'Dialog', 'Action'].indexOf(focusedNode.getTag()) !== -1) {
var isActive = focusedNode.attribute('active') === 1;
return isActive && (!focusedNode.isAttributePresent("dialogType") || focusedNode.attribute("dialogType").startsWith(
"Display"));
}
}
return false;
},
setBrowserMultiPageMode: function(activation) {
var applicationCount = this._session && this._session.getApplications().length;
if (applicationCount === 1) {
if (activation) {
this._session.activateBrowserMultiPageMode();
}
}
},
setTabbedContainerMode: function(activation, windowNode) {
if (this._session && activation) {
this._session.activateTabbedContainerMode(windowNode);
}
},
getActiveDialogAction: function(vmKey) {
var actionNode = null;
var window = this.getVMWindow();
var acceleratorName = null;
var acceleratorName2 = null;
var acceleratorName3 = null;
var acceleratorName4 = null;
if (window) {
var dialog = window.getActiveDialog();
if (dialog) {
var actions = dialog.getChildren();
for (var i = 0; i < actions.length; ++i) {
var action = actions[i];
var isActive = (action.attribute("active") !== 0);
if (isActive) {
acceleratorName = action.attribute("acceleratorName");
acceleratorName2 = action.attribute("acceleratorName2");
acceleratorName3 = action.attribute("acceleratorName3");
acceleratorName4 = action.attribute("acceleratorName4");
if (acceleratorName && acceleratorName.toString().toLowerCase() === vmKey ||
acceleratorName2 && acceleratorName2.toString().toLowerCase() === vmKey ||
acceleratorName3 && acceleratorName3.toString().toLowerCase() === vmKey ||
acceleratorName4 && acceleratorName4.toString().toLowerCase() === vmKey) {
actionNode = action;
}
}
}
}
}
return actionNode;
},
getDefaultAction: function(vmKey, formNode) {
var acceleratorName = null;
var acceleratorName2 = null;
var acceleratorName3 = null;
var acceleratorName4 = null;
var containerNode = formNode || this.uiNode();
if (containerNode) {
var actionDefaultList = containerNode.getFirstChild("ActionDefaultList");
if (actionDefaultList) {
var actionDefaults = actionDefaultList.getChildren();
for (var i = 0; i < actionDefaults.length; ++i) {
var actionDefault = actionDefaults[i];
acceleratorName = actionDefault.attribute("acceleratorName");
acceleratorName2 = actionDefault.attribute("acceleratorName2");
acceleratorName3 = actionDefault.attribute("acceleratorName3");
acceleratorName4 = actionDefault.attribute("acceleratorName4");
if (acceleratorName && acceleratorName.toString().toLowerCase() === vmKey ||
acceleratorName2 && acceleratorName2.toString().toLowerCase() === vmKey ||
acceleratorName3 && acceleratorName3.toString().toLowerCase() === vmKey ||
acceleratorName4 && acceleratorName4.toString().toLowerCase() === vmKey) {
return actionDefault;
}
}
}
}
return null;
},
getDefaultActionForName: function(name, formNode) {
var containerNode = formNode || this.uiNode();
var actionDefaultList = containerNode.getFirstChild("ActionDefaultList");
if (actionDefaultList) {
var actionDefaults = actionDefaultList.getChildren();
for (var i = 0; i < actionDefaults.length; ++i) {
var actionDefault = actionDefaults[i];
if (name === actionDefault.attribute("name")) {
return actionDefault;
}
}
}
return null;
},
updateConnectionInformation: function(info) {
this.applicationInfo.connectionInfo = info;
this._session.registerApplication(this);
},
getProcId: function() {
if (this.applicationInfo.connectionInfo) {
return this.applicationInfo.connectionInfo.procId;
}
return null;
},
getParentProcId: function() {
if (this.applicationInfo.connectionInfo) {
return this.applicationInfo.connectionInfo.procIdParent;
}
return null;
}
};
});
});