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

chore: upgrade to Chevrotain 11 #616

Merged
merged 3 commits into from
Jan 14, 2024

Conversation

jtkiesel
Copy link
Contributor

@jtkiesel jtkiesel commented Nov 6, 2023

What changed with this PR:

  1. Both java-parser and prettier-plugin-java are converted from CJS to ESM, to facilitate the upgrade to Chevrotain 11 (which is now ESM only).
  2. Chevrotain is upgraded to 11.0.3. This caused parsing to be roughly 100% slower due to some changes that were made affecting backtracking performance.
  3. Chevrotain Allstar is used to improve performance by greatly reducing backtracking. This caused parsing to be roughly 75% faster.

This PR's net performance change to parsing seems to be around 47% faster. It should be possible to achieve even further performance gains by removing the few remaining instances of backtracking. However, doing so appeared to be nontrivial, so for now I stopped after removing the ones that gave us easy wins.

Relative issues or prs:

Closes #423
Obsoletes #486

@jtkiesel
Copy link
Contributor Author

Rebased and resolved merge conflicts.

Copy link
Contributor

@clementdessoude clementdessoude left a comment

Choose a reason for hiding this comment

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

Very interesting PR ! I have a few questions I put in comments

@@ -79,11 +80,11 @@ const sampleRepos = [
{
repoUrl: "https://github.com/jhipster/jhipster-sample-app-react",
branch: "v8.0.0-rc.1"
},
} /*,
Copy link
Contributor

Choose a reason for hiding this comment

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

Why did you need to comment this one ?

Copy link
Contributor Author

@jtkiesel jtkiesel Nov 12, 2023

Choose a reason for hiding this comment

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

The latest commit (nipafx/demo-java-x@a84483f) added examples that use the JEP 430 String Templates feature, which is a preview feature in Java 21 (and not yet supported by Prettier Java). This is currently causing CI failures on our main branch: https://github.com/jhipster/prettier-java/actions/runs/6833694201
Unfortunately, the repo doesn't have any branches/tags other than main. The "correct" fix would likely be to make it possible to lock a repo by commit SHA as an alternative to branch/tag.

Copy link
Contributor

Choose a reason for hiding this comment

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

Oh, I didn't spot the string template issue. I started working on supporting string templates, but still had some issues with it.
I think we can specify a specific commit (we did it in the past, I will look at it)

Copy link
Contributor

Choose a reason for hiding this comment

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

You can have a look at

function cloneRepo({ repoUrl, branch, commitHash }) {

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks! Just copied this implementation over and leveraged it. 🎉


const { printDocToString } = doc.printer;
const { readFileSync, existsSync, removeSync, copySync } = fs;
Copy link
Contributor

Choose a reason for hiding this comment

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

Was import { readFileSync, existsSync, removeSync, copySync } from "fs-extra"; not working anymore ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Correct. Because of the conversion to ESM, and because fs-extra is a CJS module, I got the following error:

import { readFileSync, existsSync, removeSync, copySync } from "fs-extra";
                                               ^^^^^^^^
SyntaxError: Named export 'copySync' not found. The requested module 'fs-extra' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:

import pkg from 'fs-extra';
const { readFileSync, existsSync, removeSync, copySync } = pkg;

I tried upgrading fs-extra to its latest version (11.1.1), but received the same error.

In the future we should be able to replace this usage of fs-extra with fs, since it contains equivalent functions to these 4, but for this PR I figured that would be inappropriate.

Copy link
Contributor

Choose a reason for hiding this comment

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

Makes sense, we can create an issue to follow this one

"use strict";

const javaParserChev = require("../src/index");
import javaParserChev from "../src/index";

const input = `
Copy link
Contributor

Choose a reason for hiding this comment

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

If I run this script with the following code snippet, I have the following error, do you have the same ?

import javaParserChev from "../src/index.js";

const input = `
  public class T {
  
          void t() {
              var a = "toto";
          }
  
  }
  `;

javaParserChev.parse(input, "compilationUnit");

Error:

Ambiguous Alternatives Detected: <0, 1> in inside Rule,
<'var', Identifier, '='> may appears as a prefix path in all these alternatives.
See: https://chevrotain.io/docs/guide/resolving_grammar_errors.html#AMBIGUOUS_ALTERNATIVES
For Further details.

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor

Choose a reason for hiding this comment

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

Should we ignore the logging message in the LLStarLookaheadStrategy ?

new LLStarLookaheadStrategy({ logging: () => {}}),

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah I noticed these ambiguity logs in the test output, forgot to ensure they wouldn't be logged during production (I thought this would be covered by skipValidations, but I guess that only covers initialization validations). It would be nice if we could disable these logs for production, but leave them enabled for our tests (since it would be good to resolve them in the future). Perhaps with something like this?

new LLStarLookaheadStrategy({
  logging: getSkipValidations() ? () => {} : undefined
}),

@clementdessoude
Copy link
Contributor

clementdessoude commented Nov 12, 2023

If @bd82 or @msujew could have a look, it would be great, as they are way more experts on chevrotain's parsers' internals than I am !! If they cannot, we can merge it next week, maybe.

I propose to leave this out in the next release (which would include #611 and #614), so that we can release it today

@jtkiesel
Copy link
Contributor Author

jtkiesel commented Nov 12, 2023

@clementdessoude Thanks for the review! I agree with waiting to merge this until after the next release -- wouldn't want to hold up those Java 21 feature additions for this upgrade. I just rebased (to resolve merge conflicts with main following the merge of #615) and applied the 2 changes we discussed. Will wait to see if Shahar and/or Mark have an opportunity to review.

@clementdessoude
Copy link
Contributor

Sorry @jtkiesel, it seems that the merge of the other PR created some conflicts on this one :/

@jtkiesel jtkiesel force-pushed the chore/upgrade-chevrotain-11 branch 2 times, most recently from a43ce80 to 38afbfe Compare November 26, 2023 17:35
@jtkiesel
Copy link
Contributor Author

@clementdessoude No worries! Rebased and resolved conflicts. 👍

@bd82
Copy link
Contributor

bd82 commented Jan 3, 2024

@msujew fyi - usage of https://github.com/TypeFox/chevrotain-allstar

@jtkiesel
Copy link
Contributor Author

@clementdessoude Apologies for the mention, but can you give this another look when you have a minute? Should be good to merge.

@clementdessoude clementdessoude merged commit 6f587d7 into jhipster:main Jan 14, 2024
6 checks passed
@clementdessoude
Copy link
Contributor

@jtkiesel so sorry for the delay, and thanks for the mention (and once again for the great work ;))

@jtkiesel jtkiesel deleted the chore/upgrade-chevrotain-11 branch January 15, 2024 01:37
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.

Upgrade to chevrotain 7
3 participants