Skip to content
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

Merged
merged 8 commits into from
Jan 2, 2018

Conversation

petekanev
Copy link
Contributor

@petekanev petekanev commented Dec 14, 2017

Prerequisite - PR #893

Another major change that occurred as part of the fix was refactoring of the console.js script, which previously resided in the tns-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 as console.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 the log(..) 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_literals

  • As 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() and console.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.

function Foo() {
    this.abc = "Hello";
     this.circular = this;
}
var foo = new Foo();
console.log(foo);
console.dir(foo);

Outputs:

Couldn't convert object to a JSON string: Uncaught TypeError: Converting circular structure to JSON // console.log(foo)

==== object dump start ==== // console.dir(foo)
abc: "Hello"
circular: #CR
==== object dump end ====

Tested with Chrome DevTools, and the VSCode extension in the most basic scenarios.

@petekanev petekanev self-assigned this Dec 14, 2017
@petekanev petekanev added this to the 4.0.0 (TBD) milestone Dec 14, 2017
@ns-bot
Copy link

ns-bot commented Dec 14, 2017

💚

@petekanev petekanev changed the title Fix console logs in devtools inspector (#884). Implement console in the runtime (feat):Implement console in the runtime. fix console logs in devtools inspector (#884) Dec 14, 2017
@petekanev petekanev changed the title (feat):Implement console in the runtime. fix console logs in devtools inspector (#884) feat(inspector): implement console in the runtime. fix console logs in devtools inspector (#884) Dec 15, 2017
return;
}

auto stack = v8::StackTrace::CurrentStackTrace(isolate, 1, v8::StackTrace::StackTraceOptions::kDetailed);
Copy link
Contributor

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?

Copy link
Contributor Author

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) {
Copy link
Contributor

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

Copy link
Contributor Author

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.

@petekanev petekanev force-pushed the pete/fix-console-logs branch from b2b307e to 5d3f41f Compare December 18, 2017 14:25
@ns-bot
Copy link

ns-bot commented Dec 18, 2017

💔

auto expressionPasses = argLen && info[0]->BooleanValue();

if (!expressionPasses) {
std::stringstream ss;
Copy link
Contributor

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

Copy link
Contributor Author

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.

@NativeScript NativeScript deleted a comment from petekanev Dec 18, 2017
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();
Copy link
Contributor

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);
Copy link
Contributor

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) {
Copy link
Contributor

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;
Copy link
Contributor

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

Copy link
Contributor

@Plamen5kov Plamen5kov left a 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

@ns-bot
Copy link

ns-bot commented Dec 18, 2017

💔

@petekanev petekanev force-pushed the pete/fix-console-logs branch from dd675c8 to 9eb9b7d Compare December 19, 2017 11:50
@ns-bot
Copy link

ns-bot commented Dec 19, 2017

💔

@petekanev
Copy link
Contributor Author

@Plamen5kov please review the changes

@ns-bot
Copy link

ns-bot commented Dec 19, 2017

💔

Copy link
Contributor

@Plamen5kov Plamen5kov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great work, LGTM

@petekanev
Copy link
Contributor Author

run ci

@ns-bot
Copy link

ns-bot commented Dec 19, 2017

💔

@Natalia-Hristova
Copy link

run ci

@ns-bot
Copy link

ns-bot commented Dec 19, 2017

💔

@petekanev petekanev force-pushed the pete/fix-console-logs branch from 557e0f7 to 8666e66 Compare December 19, 2017 15:31
@ns-bot
Copy link

ns-bot commented Dec 19, 2017

💔

@petekanev
Copy link
Contributor Author

run ci

@ns-bot
Copy link

ns-bot commented Dec 19, 2017

💔

1 similar comment
@ns-bot
Copy link

ns-bot commented Dec 19, 2017

💔

@petekanev
Copy link
Contributor Author

run ci

@ns-bot
Copy link

ns-bot commented Dec 20, 2017

💔

@petekanev
Copy link
Contributor Author

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

@petekanev petekanev force-pushed the pete/fix-console-logs branch from d32097e to ee00593 Compare December 20, 2017 12:34
@petekanev petekanev force-pushed the pete/fix-console-logs branch from ee00593 to b3bc525 Compare December 20, 2017 12:45
@ns-bot
Copy link

ns-bot commented Dec 20, 2017

💚

1 similar comment
@ns-bot
Copy link

ns-bot commented Dec 20, 2017

💚

@ns-bot
Copy link

ns-bot commented Dec 20, 2017

💚

@petekanev petekanev merged commit 6480aae into master Jan 2, 2018
@petekanev petekanev deleted the pete/fix-console-logs branch January 2, 2018 14:13
petekanev added a commit that referenced this pull request Jan 8, 2018
…e logs in devtools inspector (#884) (#894)"

This reverts commit 6480aae.
petekanev added a commit that referenced this pull request Jan 9, 2018
…e logs in devtools inspector (#884) (#894)" (#920)

This reverts commit 6480aae.
petekanev added a commit that referenced this pull request Jan 9, 2018
…x console logs in devtools inspector (#884) (#894)""

This reverts commit 5bcfbde.
@petekanev petekanev restored the pete/fix-console-logs branch February 6, 2018 11:25
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
5 participants