Skip to content

Commit

Permalink
use high-level library loading
Browse files Browse the repository at this point in the history
  • Loading branch information
samardzicneo authored and N. Samardzic committed Mar 7, 2024
1 parent def23a5 commit 0708d44
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/NodeApi/Runtime/NodejsPlatform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the MIT License.

using System;
using System.Reflection;
using System.Runtime.InteropServices;

namespace Microsoft.JavaScript.NodeApi.Runtime;
Expand All @@ -25,25 +26,29 @@ public sealed class NodejsPlatform : IDisposable
/// <summary>
/// Initializes the Node.js platform.
/// </summary>
/// <param name="libnodePath">Path to the `libnode` shared library, including extension.</param>
/// <param name="libnode">Name of the `libnode` shared library.</param>
/// <param name="args">Optional application arguments.</param>
/// <param name="execArgs">Optional platform options.</param>
/// <exception cref="InvalidOperationException">A Node.js platform instance has already been
/// loaded in the current process.</exception>
public NodejsPlatform(
string libnodePath,
string libnode,
string[]? args = null,
string[]? execArgs = null)
{
if (string.IsNullOrEmpty(libnodePath)) throw new ArgumentNullException(nameof(libnodePath));

if (Current != null)
{
throw new InvalidOperationException(
"Only one Node.js platform instance per process is allowed.");
}

nint libnodeHandle = NativeLibrary.Load(libnodePath);
var entryAssembly = Assembly.GetEntryAssembly();

nint libnodeHandle =
entryAssembly == null
? NativeLibrary.Load(libnode, entryAssembly, null)
: NativeLibrary.Load(libnode);

Runtime = new NodejsRuntime(libnodeHandle);

Runtime.CreatePlatform(args, execArgs, (error) => Console.WriteLine(error), out _platform)
Expand Down

0 comments on commit 0708d44

Please sign in to comment.