Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement sass --embedded in pure JS mode #2413

Open
wants to merge 14 commits into
base: main
Choose a base branch
from

Conversation

ntkme
Copy link
Contributor

@ntkme ntkme commented Oct 26, 2024

Closes #2325.

sass/embedded-host-node#344

Implementation

The actual isolate dispatcher and compilation dispatcher are nearly unchanged. However, I had to replace isolate with worker communication, and mock tons of small things that do not work on node.

Testing

  • All Dart embedded tests are passing. - GitHub CI has been updated to run these in this PR.
  • All JS API tests are passing. - GitHub CI has been updated to run these in this PR.
  • All Ruby API tests are passing.

@ntkme ntkme force-pushed the embedded-compiler branch from 8d7d4de to 7084da7 Compare October 26, 2024 02:31
@ntkme ntkme marked this pull request as ready for review October 26, 2024 02:50
@ntkme ntkme marked this pull request as draft October 26, 2024 03:40
@ntkme ntkme force-pushed the embedded-compiler branch 2 times, most recently from e66df5b to d53fcc5 Compare October 26, 2024 17:27
@ntkme ntkme force-pushed the embedded-compiler branch 9 times, most recently from d7e6206 to b3794eb Compare October 28, 2024 06:35
@ntkme ntkme marked this pull request as ready for review October 28, 2024 06:49
@ntkme ntkme force-pushed the embedded-compiler branch 3 times, most recently from 9112b44 to 54fabf3 Compare October 28, 2024 07:42
@ntkme ntkme force-pushed the embedded-compiler branch 8 times, most recently from 257b4fd to ac718ee Compare October 28, 2024 21:03
@ntkme ntkme force-pushed the embedded-compiler branch from f6e6c4b to 1e8e188 Compare January 24, 2025 20:38
@ntkme ntkme force-pushed the embedded-compiler branch 3 times, most recently from 7d10b08 to 6ef6075 Compare February 6, 2025 00:07
@ntkme ntkme force-pushed the embedded-compiler branch 2 times, most recently from 77045ba to 37060c0 Compare February 14, 2025 18:08
@ntkme
Copy link
Contributor Author

ntkme commented Feb 15, 2025

@nex3 I can see that the team is focusing most of the time on the postcss sass parser and this pull request has low priority.

However, I would like to get this done in next few month before dart 3.8 become stable so that we can offer this as a replacement for dart ia32. Please take a look when you get a chance and let me know if you have any questions.

@verm
Copy link

verm commented Feb 24, 2025

Would really be great to see this merged to have embedded support on FreeBSD even if in pure JS mode. Thank you!

@ntkme ntkme force-pushed the embedded-compiler branch from 37060c0 to 46ef47c Compare February 27, 2025 23:33
@ntkme ntkme force-pushed the embedded-compiler branch from 46ef47c to a7a6b0e Compare March 18, 2025 17:05
@ntkme ntkme force-pushed the embedded-compiler branch 2 times, most recently from 5e40319 to b819b68 Compare April 1, 2025 00:57
Copy link
Contributor

@nex3 nex3 left a comment

Choose a reason for hiding this comment

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

Finally managed to carve out some time for this. I haven't done a complete review yet, but this should be enough to get you started.

var packet = Uint8List(
1 + _compilationIdVarint.length + protobufWriter.lengthInBytes,
);
packet[0] = switch (message.whichMessage()) {
OutboundMessage_Message.compileResponse => 1,
OutboundMessage_Message.error => 2,
_ => 0,
OutboundMessage_Message.error => exitCode,
Copy link
Contributor

Choose a reason for hiding this comment

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

There's a risk here that exitCode is set to 0 or 1 and causes this to silently do the wrong thing. We should probably check for that, even if we're confident it can't occur with the code as-is.

Copy link
Contributor Author

@ntkme ntkme Apr 2, 2025

Choose a reason for hiding this comment

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

I decided to just use a second byte for this to avoid the conflict. Also added a comment explaining why that is needed.

/// The entrypoint for a [ReusableIsolate].
///
/// This must return a Record of filename and argv for creating the Worker.
typedef ReusableIsolateEntryPoint = (String, JSArray<JSAny?>) Function();
Copy link
Contributor

Choose a reason for hiding this comment

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

Two implementations of the same library should have exactly the same public interface—they shouldn't differ in which types they export.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I understand this is ugly, but I cannot think of a better way to abstract this - the fundamental problem is that the way dart launches isolates and js launches workers are way too different. In dart VM you just launch the isolate with a reference to a function, but in JS you need to give it an entrypoint script filename, and arguments.

My end goal was that for ReusableIsolate class itself to share same interface, even if the type of entrypoint argument is different.

Let me know if you have a better idea.

.listen();
} else {
var port = workerData! as MessagePort;
isolateMain(JSSyncReceivePort(port), JSSendPort(port));
Copy link
Contributor

Choose a reason for hiding this comment

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

The distinction between this isolateMain and the one that's passed to ReusableIsolate.spawn() is very confusing. Given that neither is consistently spawned as the main method of a new worker, it would be clearer to rename both to something that more explicitly describes what they do.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I added a section and some diagrams in lib/src/embedded/README.md to explain how this convoluted process works.

@ntkme ntkme force-pushed the embedded-compiler branch from acfc9cf to 7063dd2 Compare April 2, 2025 23:39
@ntkme ntkme force-pushed the embedded-compiler branch from cf348da to 7857415 Compare April 3, 2025 00:17
@ntkme ntkme force-pushed the embedded-compiler branch from 1978cd2 to 197eb0f Compare April 3, 2025 00:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement sass --embedded in pure JS mode
3 participants