| 
									
										
										
										
											2023-02-13 13:39:18 -08:00
										 |  |  | // Copyright (c) 2023 Salesforce, Inc.
 | 
					
						
							| 
									
										
										
										
											2020-03-18 12:57:08 -07:00
										 |  |  | // Use of this source code is governed by the MIT license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 13:39:18 -08:00
										 |  |  | #include "shell/common/gin_helper/event_emitter_template.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-18 12:57:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-13 13:39:18 -08:00
										 |  |  | #include "gin/converter.h"
 | 
					
						
							|  |  |  | #include "gin/per_isolate_data.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-18 12:57:08 -07:00
										 |  |  | #include "shell/browser/api/electron_api_event_emitter.h"
 | 
					
						
							| 
									
										
										
										
											2023-02-13 13:39:18 -08:00
										 |  |  | #include "v8/include/v8-function.h"
 | 
					
						
							|  |  |  | #include "v8/include/v8-template.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-18 12:57:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-29 12:55:47 -07:00
										 |  |  | namespace gin_helper::internal { | 
					
						
							| 
									
										
										
										
											2020-03-18 12:57:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | gin::WrapperInfo kWrapperInfo = {gin::kEmbedderNativeGin}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | v8::Local<v8::FunctionTemplate> GetEventEmitterTemplate(v8::Isolate* isolate) { | 
					
						
							|  |  |  |   gin::PerIsolateData* data = gin::PerIsolateData::From(isolate); | 
					
						
							|  |  |  |   v8::Local<v8::FunctionTemplate> tmpl = | 
					
						
							|  |  |  |       data->GetFunctionTemplate(&kWrapperInfo); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (tmpl.IsEmpty()) { | 
					
						
							|  |  |  |     tmpl = v8::FunctionTemplate::New(isolate); | 
					
						
							|  |  |  |     v8::Local<v8::Context> context = isolate->GetCurrentContext(); | 
					
						
							|  |  |  |     v8::Local<v8::Function> func = tmpl->GetFunction(context).ToLocalChecked(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     v8::Local<v8::Object> eventemitter_prototype = | 
					
						
							|  |  |  |         electron::GetEventEmitterPrototype(isolate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     v8::Local<v8::Value> func_prototype; | 
					
						
							|  |  |  |     CHECK(func->Get(context, gin::StringToSymbol(isolate, "prototype")) | 
					
						
							|  |  |  |               .ToLocal(&func_prototype)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CHECK(func_prototype.As<v8::Object>() | 
					
						
							| 
									
										
										
										
											2024-09-04 20:30:54 -05:00
										 |  |  |               ->SetPrototypeV2(context, eventemitter_prototype) | 
					
						
							| 
									
										
										
										
											2020-03-18 12:57:08 -07:00
										 |  |  |               .ToChecked()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     data->SetFunctionTemplate(&kWrapperInfo, tmpl); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return tmpl; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-29 12:55:47 -07:00
										 |  |  | }  // namespace gin_helper::internal
 |