-
-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat(inspector): implement console in the runtime. fix console logs in devtools inspector (#884) #894
Conversation
💚 |
return; | ||
} | ||
|
||
auto stack = v8::StackTrace::CurrentStackTrace(isolate, 1, v8::StackTrace::StackTraceOptions::kDetailed); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's the "1" for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"1"'s for how many stackframes of the stacktrace I'd like to retrieve, it's in the v8 StackTrace API. This is the approach to acquiring the current frame, in order to read the executing script's name, and the line where the call occurred.
std::stringstream ss; | ||
|
||
auto argLen = info.Length(); | ||
if (argLen) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: if no arguments are passed maybe we can print a new line, since that's the common behavior
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch! That will align the behavior with how node's console.log()
with empty args does.
b2b307e
to
5d3f41f
Compare
💔 |
auto expressionPasses = argLen && info[0]->BooleanValue(); | ||
|
||
if (!expressionPasses) { | ||
std::stringstream ss; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename to assertionError
or something
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the expressionPasses
is the first argument which is the test, and determines whether to print an error or not.
auto propertiesLen = propNames->Length(); | ||
for (int i = 0; i < propertiesLen; i++) { | ||
auto propName = propNames->Get(context, i).ToLocalChecked(); | ||
auto property = argObject->Get(context, propName).ToLocalChecked(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename to propertyValue
ss << "==== object dump end ====" << std::endl; | ||
} else { | ||
v8::Local<v8::String> argString; | ||
info[0]->ToString(isolate->GetCurrentContext()).ToLocal(&argString); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider buildstring logic
return ss.str(); | ||
} | ||
|
||
void Console::traceCallback(const v8::FunctionCallbackInfo<v8::Value>& info) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run:
debugger;
console.trace(",smth");
on root level in app
static void EntryAdded(const std::string& text, std::string verbosityLevel, std::string url, int lineNumber); | ||
|
||
static V8LogAgentImpl* Instance; | ||
protocol::Log::Frontend m_frontend; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
consider moving the fields to the private fields
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- put messages in emptry methods that contain
ErrorStrings*
parameter - fix console.trace() problem
💔 |
dd675c8
to
9eb9b7d
Compare
💔 |
@Plamen5kov please review the changes |
💔 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great work, LGTM
run ci |
💔 |
run ci |
💔 |
557e0f7
to
8666e66
Compare
💔 |
run ci |
💔 |
1 similar comment
💔 |
run ci |
💔 |
I found an error where the JSON.stringify inside the object transformation would crash the application if it tries to stringify an object with a circular reference. Will fix it before merging |
Remove the console.ts/js implementation from the tns-core-modules and instead bootstrap the console prototype with log, warn, dir, trace, time, timeEnd, info, assert callbacks.
d32097e
to
ee00593
Compare
… references JSON.stringify fails to resolve
ee00593
to
b3bc525
Compare
💚 |
1 similar comment
💚 |
💚 |
Prerequisite - PR #893
console
methods were invoked (right hand-side). A timestamp of when they've been logged is also displayed.Another major change that occurred as part of the fix was refactoring of the
console.js
script, which previously resided in thetns-core-modules
- which is now implemented in its own Console module as part of the NativeScript Android Runtime implementation - this eliminates the need for special checks, if-clauses and weird workarounds needed in the tns-core-modules code base to make script work in all cases.The implementation of
log
,warn
,info
,error
is such that they can now print a list of consecutive values, while the current implementation could only print 1 value at a time per call.Currently a normally valid call to
console.log()
such asconsole.log(5, 12, "redundantString", { a: "Pesho", age: 22 });
would fail.The new implementation would print
5 12 "redundantString" { a: "Pesho", age: 22 }
, similar to what a nodeJS, or browser application would print out.As a result of the refactoring the strings passed as arguments to
console.log()
and the likes will no longer support c-string-like format strings (%d
,%s
, etc.) interpolated with values from the argument list following the primary arguments to thelog(..)
call. - Users whose logs depended on that feature should migrate to using JavaScript template literals (backtick strings) - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literalsAs part of the implementation, if an object is
console.log()
ed , the new implementation will JSONStringify the object now, instead of transforming it into[object Object]
console.time()
andconsole.timeEnd()
will work without passing them any arguments,default
will be the identifier used in that case.Introduce non-standard behavior - logging an object which contains circular references will print out as
Couldn't convert object to a JSON string: Uncaught TypeError: Converting circular structure to JSON
E.g.
Outputs:
Tested with Chrome DevTools, and the VSCode extension in the most basic scenarios.