123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- using System.Text;
- using Jint.Native;
- using Jint.Native.Error;
- using Jint.Native.Object;
- using Jint.Runtime.Descriptors;
- namespace Jint.Runtime;
- public class JavaScriptException : JintException
- {
- private static string? GetMessage(JsValue? error)
- {
- string? ret = null;
- if (error is ObjectInstance oi)
- {
- ret = oi.Get(CommonProperties.Message).ToString();
- }
- else if (error is not null)
- {
- ret = error.IsSymbol() ? error.ToString() : TypeConverter.ToString(error);
- }
- return ret;
- }
- private readonly JavaScriptErrorWrapperException _jsErrorException;
- public string? JavaScriptStackTrace => _jsErrorException.StackTrace;
- public ref readonly SourceLocation Location => ref _jsErrorException.Location;
- public JsValue Error => _jsErrorException.Error;
- internal JavaScriptException(ErrorConstructor errorConstructor)
- : base("", new JavaScriptErrorWrapperException(errorConstructor.Construct(), ""))
- {
- _jsErrorException = (JavaScriptErrorWrapperException) InnerException!;
- }
- public JavaScriptException(ErrorConstructor errorConstructor, string? message = null)
- : base(message, new JavaScriptErrorWrapperException(errorConstructor.Construct(message), message))
- {
- _jsErrorException = (JavaScriptErrorWrapperException) InnerException!;
- }
- public JavaScriptException(JsValue error)
- : base(GetMessage(error), new JavaScriptErrorWrapperException(error, GetMessage(error)))
- {
- _jsErrorException = (JavaScriptErrorWrapperException) InnerException!;
- }
- public string GetJavaScriptErrorString() => _jsErrorException.ToString();
- public JavaScriptException SetJavaScriptCallstack(Engine engine, in SourceLocation location, bool overwriteExisting = false)
- {
- _jsErrorException.SetCallstack(engine, location, overwriteExisting);
- return this;
- }
- public JavaScriptException SetJavaScriptLocation(in SourceLocation location)
- {
- _jsErrorException.SetLocation(location);
- return this;
- }
- private sealed class JavaScriptErrorWrapperException : JintException
- {
- private string? _callStack;
- private SourceLocation _location;
- internal JavaScriptErrorWrapperException(JsValue error, string? message = null)
- : base(message ?? GetMessage(error))
- {
- Error = error;
- }
- public JsValue Error { get; }
- public ref readonly SourceLocation Location => ref _location;
- internal void SetLocation(in SourceLocation location)
- {
- _location = location;
- }
- internal void SetCallstack(Engine engine, in SourceLocation location, bool overwriteExisting)
- {
- _location = location;
- var errObj = Error.IsObject() ? Error.AsObject() : null;
- if (errObj is null)
- {
- _callStack = engine.CallStack.BuildCallStackString(engine, location);
- return;
- }
- // Does the Error object already have a stack property?
- if (errObj.HasProperty(CommonProperties.Stack) && !overwriteExisting)
- {
- _callStack = errObj.Get(CommonProperties.Stack).AsString();
- }
- else
- {
- _callStack = engine.CallStack.BuildCallStackString(engine, location);
- errObj.FastSetProperty(CommonProperties.Stack._value, new PropertyDescriptor(_callStack, false, false, false));
- }
- }
- /// <summary>
- /// Returns the call stack of the JavaScript exception.
- /// </summary>
- public override string? StackTrace
- {
- get
- {
- if (_callStack is not null)
- {
- return _callStack;
- }
- if (Error is not ObjectInstance oi)
- {
- return null;
- }
- var callstack = oi.Get(CommonProperties.Stack, Error);
- return callstack.IsUndefined()
- ? null
- : callstack.AsString();
- }
- }
- public override string ToString()
- {
- var sb = new ValueStringBuilder();
- sb.Append("Error");
- var message = Message;
- if (!string.IsNullOrEmpty(message))
- {
- sb.Append(": ");
- sb.Append(message);
- }
- var stackTrace = StackTrace;
- if (stackTrace != null)
- {
- sb.Append(Environment.NewLine);
- sb.Append(stackTrace);
- }
- return sb.ToString();
- }
- }
- }
|