| 
									
										
										
										
											2021-10-01 17:06:13 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright (c) Microsoft Corporation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the 'License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import type { Playwright as PlaywrightAPI } from './client/playwright'; | 
					
						
							| 
									
										
										
										
											2022-08-25 11:58:41 -07:00
										 |  |  | import { createPlaywright, DispatcherConnection, RootDispatcher, PlaywrightDispatcher } from './server'; | 
					
						
							| 
									
										
										
										
											2021-10-01 17:06:13 -07:00
										 |  |  | import { Connection } from './client/connection'; | 
					
						
							|  |  |  | import { BrowserServerLauncherImpl } from './browserServerImpl'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export function createInProcessPlaywright(): PlaywrightAPI { | 
					
						
							|  |  |  |   const playwright = createPlaywright('javascript'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const clientConnection = new Connection(); | 
					
						
							| 
									
										
										
										
											2022-07-05 08:58:34 -07:00
										 |  |  |   const dispatcherConnection = new DispatcherConnection(true /* local */); | 
					
						
							| 
									
										
										
										
											2021-10-01 17:06:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Dispatch synchronously at first.
 | 
					
						
							|  |  |  |   dispatcherConnection.onmessage = message => clientConnection.dispatch(message); | 
					
						
							|  |  |  |   clientConnection.onmessage = message => dispatcherConnection.dispatch(message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-25 11:58:41 -07:00
										 |  |  |   const rootScope = new RootDispatcher(dispatcherConnection); | 
					
						
							| 
									
										
										
										
											2021-10-01 17:06:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Initialize Playwright channel.
 | 
					
						
							|  |  |  |   new PlaywrightDispatcher(rootScope, playwright); | 
					
						
							|  |  |  |   const playwrightAPI = clientConnection.getObjectWithKnownName('Playwright') as PlaywrightAPI; | 
					
						
							|  |  |  |   playwrightAPI.chromium._serverLauncher = new BrowserServerLauncherImpl('chromium'); | 
					
						
							|  |  |  |   playwrightAPI.firefox._serverLauncher = new BrowserServerLauncherImpl('firefox'); | 
					
						
							|  |  |  |   playwrightAPI.webkit._serverLauncher = new BrowserServerLauncherImpl('webkit'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Switch to async dispatch after we got Playwright object.
 | 
					
						
							|  |  |  |   dispatcherConnection.onmessage = message => setImmediate(() => clientConnection.dispatch(message)); | 
					
						
							|  |  |  |   clientConnection.onmessage = message => setImmediate(() => dispatcherConnection.dispatch(message)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-01 09:58:07 -07:00
										 |  |  |   clientConnection.toImpl = (x: any) => x ? dispatcherConnection._dispatchers.get(x._guid)!._object : dispatcherConnection._dispatchers.get(''); | 
					
						
							| 
									
										
										
										
											2022-04-04 10:50:46 -08:00
										 |  |  |   (playwrightAPI as any)._toImpl = clientConnection.toImpl; | 
					
						
							| 
									
										
										
										
											2021-10-01 17:06:13 -07:00
										 |  |  |   return playwrightAPI; | 
					
						
							|  |  |  | } |