@@ -114,6 +114,15 @@ namespace Noesis { namespace Javascript {
114
114
}
115
115
#pragma managed(pop)
116
116
117
+ v8::Local<v8::String> ToV8String (Isolate* isolate, System::String^ value) {
118
+ if (value == nullptr )
119
+ throw gcnew System::ArgumentNullException (" value" );
120
+ pin_ptr<const wchar_t > namePtr = PtrToStringChars (value);
121
+ wchar_t * name = (wchar_t *)namePtr;
122
+
123
+ return String::NewFromTwoByte (isolate, (uint16_t *)name, v8::NewStringType::kNormal ).ToLocalChecked ();
124
+ }
125
+
117
126
static JavascriptContext::JavascriptContext ()
118
127
{
119
128
System::Threading::Mutex mutex (true , " FA12B681-E968-4D3A-833D-43B25865BEF1" );
@@ -163,6 +172,7 @@ JavascriptContext::JavascriptContext()
163
172
isolate->SetFatalErrorHandler (FatalErrorCallback);
164
173
165
174
mExternals = gcnew System::Collections::Generic::Dictionary<System::Object ^, WrappedJavascriptExternal>();
175
+ mTypeToConstructorMapping = gcnew System::Collections::Generic::Dictionary<System::Type ^, System::IntPtr>();
166
176
mFunctions = gcnew System::Collections::Generic::List<System::WeakReference ^>();
167
177
HandleScope scope (isolate);
168
178
mContext = new Persistent<Context>(isolate, Context::New (isolate));
@@ -182,9 +192,13 @@ JavascriptContext::~JavascriptContext()
182
192
JavascriptFunction ^function = safe_cast<JavascriptFunction ^>(f->Target );
183
193
if (function != nullptr )
184
194
delete function;
195
+ }
196
+ for each (System::IntPtr p in mTypeToConstructorMapping ->Values ) {
197
+ delete (void *)p;
185
198
}
186
199
delete mContext ;
187
200
delete mExternals ;
201
+ delete mTypeToConstructorMapping ;
188
202
delete mFunctions ;
189
203
}
190
204
if (isolate != NULL )
@@ -244,10 +258,6 @@ JavascriptContext::SetParameter(System::String^ iName, System::Object^ iObject)
244
258
void
245
259
JavascriptContext::SetParameter (System::String^ iName, System::Object^ iObject, SetParameterOptions options)
246
260
{
247
- if (iName == nullptr )
248
- throw gcnew System::ArgumentNullException (" iName" );
249
- pin_ptr<const wchar_t > namePtr = PtrToStringChars (iName);
250
- wchar_t * name = (wchar_t *) namePtr;
251
261
JavascriptScope scope (this );
252
262
v8::Isolate *isolate = JavascriptContext::GetCurrentIsolate ();
253
263
HandleScope handleScope (isolate);
@@ -265,12 +275,27 @@ JavascriptContext::SetParameter(System::String^ iName, System::Object^ iObject,
265
275
}
266
276
}
267
277
268
- v8::Local<v8::String> key = String::NewFromTwoByte (isolate, ( uint16_t *)name, v8::NewStringType:: kNormal ). ToLocalChecked ( );
278
+ v8::Local<v8::String> key = ToV8String (isolate, iName );
269
279
Local<Context>::New (isolate, *mContext )->Global ()->Set (isolate->GetCurrentContext (), key, value).ToChecked ();
270
280
}
271
281
272
282
// //////////////////////////////////////////////////////////////////////////////////////////////////
273
283
284
+
285
+ void JavascriptContext::SetConstructor (System::String^ name, System::Type^ associatedType, System::Delegate^ constructor)
286
+ {
287
+ JavascriptScope scope (this );
288
+ v8::Isolate *isolate = JavascriptContext::GetCurrentIsolate ();
289
+ HandleScope handleScope (isolate);
290
+
291
+ Handle <FunctionTemplate> functionTemplate = JavascriptInterop::GetFunctionTemplateFromSystemDelegate (constructor);
292
+ JavascriptInterop::InitObjectWrapperTemplate (functionTemplate->InstanceTemplate ());
293
+ mTypeToConstructorMapping [associatedType] = System::IntPtr (new Persistent<FunctionTemplate>(isolate, functionTemplate));
294
+ Local<Context>::New (isolate, *mContext )->Global ()->Set (isolate->GetCurrentContext (), ToV8String (isolate, name), functionTemplate->GetFunction ());
295
+ }
296
+
297
+ // //////////////////////////////////////////////////////////////////////////////////////////////////
298
+
274
299
System::Object^
275
300
JavascriptContext::GetParameter (System::String^ iName)
276
301
{
@@ -489,12 +514,18 @@ JavascriptContext::WrapObject(System::Object^ iObject)
489
514
490
515
// //////////////////////////////////////////////////////////////////////////////////////////////////
491
516
492
- Handle <ObjectTemplate >
493
- JavascriptContext::GetObjectWrapperTemplate ( )
517
+ Handle <FunctionTemplate >
518
+ JavascriptContext::GetObjectWrapperConstructorTemplate (System::Type ^type )
494
519
{
495
- if (objectWrapperTemplate == NULL )
496
- objectWrapperTemplate = new Persistent<ObjectTemplate>(isolate, JavascriptInterop::NewObjectWrapperTemplate ());
497
- return Local<ObjectTemplate>::New (isolate, *objectWrapperTemplate);
520
+ System::IntPtr ptrToConstructor;
521
+ if (!mTypeToConstructorMapping ->TryGetValue (type, ptrToConstructor)) {
522
+ Local<FunctionTemplate> constructor = FunctionTemplate::New (GetCurrentIsolate ());
523
+ JavascriptInterop::InitObjectWrapperTemplate (constructor->InstanceTemplate ());
524
+ mTypeToConstructorMapping [type] = System::IntPtr (new Persistent<FunctionTemplate>(isolate, constructor));
525
+ return constructor;
526
+ }
527
+ Persistent<FunctionTemplate> *constructor = (Persistent<FunctionTemplate> *)(void *)ptrToConstructor;
528
+ return constructor->Get (isolate);
498
529
}
499
530
500
531
// //////////////////////////////////////////////////////////////////////////////////////////////////
0 commit comments