121 lines
5.2 KiB
TypeScript
121 lines
5.2 KiB
TypeScript
|
import {CONST_EXPR} from 'angular2/src/facade/lang';
|
||
|
import {MessageBus} from 'angular2/src/web_workers/shared/message_bus';
|
||
|
import {NgZone} from 'angular2/src/core/zone/ng_zone';
|
||
|
import {AnchorBasedAppRootUrl} from 'angular2/src/compiler/anchor_based_app_root_url';
|
||
|
import {AppRootUrl} from 'angular2/src/compiler/app_root_url';
|
||
|
import {
|
||
|
PLATFORM_DIRECTIVES,
|
||
|
PLATFORM_PIPES,
|
||
|
ComponentRef,
|
||
|
platform,
|
||
|
ExceptionHandler,
|
||
|
Reflector,
|
||
|
reflector,
|
||
|
APPLICATION_COMMON_PROVIDERS,
|
||
|
PLATFORM_COMMON_PROVIDERS,
|
||
|
Renderer,
|
||
|
PLATFORM_INITIALIZER,
|
||
|
APP_INITIALIZER
|
||
|
} from 'angular2/core';
|
||
|
import {EVENT_MANAGER_PLUGINS, EventManager} from 'angular2/platform/common_dom';
|
||
|
import {provide, Provider, Injector, OpaqueToken} from 'angular2/src/core/di';
|
||
|
// TODO change these imports once dom_adapter is moved out of core
|
||
|
import {DOM} from 'angular2/src/platform/dom/dom_adapter';
|
||
|
import {DomEventsPlugin} from 'angular2/src/platform/dom/events/dom_events';
|
||
|
import {KeyEventsPlugin} from 'angular2/src/platform/dom/events/key_events';
|
||
|
import {HammerGesturesPlugin} from 'angular2/src/platform/dom/events/hammer_gestures';
|
||
|
import {DOCUMENT} from 'angular2/src/platform/dom/dom_tokens';
|
||
|
import {DomRenderer, DomRenderer_} from 'angular2/src/platform/dom/dom_renderer';
|
||
|
import {DomSharedStylesHost} from 'angular2/src/platform/dom/shared_styles_host';
|
||
|
import {SharedStylesHost} from "angular2/src/platform/dom/shared_styles_host";
|
||
|
import {BrowserDetails} from 'angular2/src/animate/browser_details';
|
||
|
import {AnimationBuilder} from 'angular2/src/animate/animation_builder';
|
||
|
import {XHR} from 'angular2/compiler';
|
||
|
import {XHRImpl} from 'angular2/src/platform/browser/xhr_impl';
|
||
|
import {Testability} from 'angular2/src/core/testability/testability';
|
||
|
import {BrowserGetTestability} from 'angular2/src/platform/browser/testability';
|
||
|
import {BrowserDomAdapter} from './browser/browser_adapter';
|
||
|
import {wtfInit} from 'angular2/src/core/profile/wtf_init';
|
||
|
import {WebWorkerSetup} from 'angular2/src/web_workers/ui/setup';
|
||
|
import {MessageBasedRenderer} from 'angular2/src/web_workers/ui/renderer';
|
||
|
import {MessageBasedXHRImpl} from 'angular2/src/web_workers/ui/xhr_impl';
|
||
|
import {
|
||
|
ServiceMessageBrokerFactory,
|
||
|
ServiceMessageBrokerFactory_
|
||
|
} from 'angular2/src/web_workers/shared/service_message_broker';
|
||
|
import {
|
||
|
ClientMessageBrokerFactory,
|
||
|
ClientMessageBrokerFactory_
|
||
|
} from 'angular2/src/web_workers/shared/client_message_broker';
|
||
|
import {Serializer} from 'angular2/src/web_workers/shared/serializer';
|
||
|
import {ON_WEB_WORKER} from 'angular2/src/web_workers/shared/api';
|
||
|
import {RenderProtoViewRefStore} from 'angular2/src/web_workers/shared/render_proto_view_ref_store';
|
||
|
import {
|
||
|
RenderViewWithFragmentsStore
|
||
|
} from 'angular2/src/web_workers/shared/render_view_with_fragments_store';
|
||
|
|
||
|
export const WORKER_SCRIPT: OpaqueToken = CONST_EXPR(new OpaqueToken("WebWorkerScript"));
|
||
|
|
||
|
// Message based Worker classes that listen on the MessageBus
|
||
|
export const WORKER_RENDER_MESSAGING_PROVIDERS: Array<any /*Type | Provider | any[]*/> =
|
||
|
CONST_EXPR([MessageBasedRenderer, MessageBasedXHRImpl, WebWorkerSetup]);
|
||
|
|
||
|
export const WORKER_RENDER_PLATFORM: Array<any /*Type | Provider | any[]*/> = CONST_EXPR([
|
||
|
PLATFORM_COMMON_PROVIDERS,
|
||
|
new Provider(PLATFORM_INITIALIZER, {useValue: initWebWorkerRenderPlatform, multi: true})
|
||
|
]);
|
||
|
|
||
|
export const WORKER_RENDER_APP_COMMON: Array<any /*Type | Provider | any[]*/> = CONST_EXPR([
|
||
|
APPLICATION_COMMON_PROVIDERS,
|
||
|
WORKER_RENDER_MESSAGING_PROVIDERS,
|
||
|
new Provider(ExceptionHandler, {useFactory: _exceptionHandler, deps: []}),
|
||
|
new Provider(DOCUMENT, {useFactory: _document, deps: []}),
|
||
|
// TODO(jteplitz602): Investigate if we definitely need EVENT_MANAGER on the render thread
|
||
|
// #5298
|
||
|
new Provider(EVENT_MANAGER_PLUGINS, {useClass: DomEventsPlugin, multi: true}),
|
||
|
new Provider(EVENT_MANAGER_PLUGINS, {useClass: KeyEventsPlugin, multi: true}),
|
||
|
new Provider(EVENT_MANAGER_PLUGINS, {useClass: HammerGesturesPlugin, multi: true}),
|
||
|
new Provider(DomRenderer, {useClass: DomRenderer_}),
|
||
|
new Provider(Renderer, {useExisting: DomRenderer}),
|
||
|
new Provider(SharedStylesHost, {useExisting: DomSharedStylesHost}),
|
||
|
new Provider(XHR, {useClass: XHRImpl}),
|
||
|
MessageBasedXHRImpl,
|
||
|
new Provider(ServiceMessageBrokerFactory, {useClass: ServiceMessageBrokerFactory_}),
|
||
|
new Provider(ClientMessageBrokerFactory, {useClass: ClientMessageBrokerFactory_}),
|
||
|
AnchorBasedAppRootUrl,
|
||
|
new Provider(AppRootUrl, {useExisting: AnchorBasedAppRootUrl}),
|
||
|
Serializer,
|
||
|
new Provider(ON_WEB_WORKER, {useValue: false}),
|
||
|
RenderViewWithFragmentsStore,
|
||
|
RenderProtoViewRefStore,
|
||
|
DomSharedStylesHost,
|
||
|
Testability,
|
||
|
BrowserDetails,
|
||
|
AnimationBuilder,
|
||
|
EventManager
|
||
|
]);
|
||
|
|
||
|
export function initializeGenericWorkerRenderer(injector: Injector) {
|
||
|
var bus = injector.get(MessageBus);
|
||
|
let zone = injector.get(NgZone);
|
||
|
bus.attachToZone(zone);
|
||
|
|
||
|
zone.run(() => {
|
||
|
WORKER_RENDER_MESSAGING_PROVIDERS.forEach((token) => { injector.get(token).start(); });
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function initWebWorkerRenderPlatform(): void {
|
||
|
BrowserDomAdapter.makeCurrent();
|
||
|
wtfInit();
|
||
|
BrowserGetTestability.init();
|
||
|
}
|
||
|
|
||
|
function _exceptionHandler(): ExceptionHandler {
|
||
|
return new ExceptionHandler(DOM, false);
|
||
|
}
|
||
|
|
||
|
function _document(): any {
|
||
|
return DOM.defaultDoc();
|
||
|
}
|