-
Notifications
You must be signed in to change notification settings - Fork 736
Script parser #4613
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
Script parser #4613
Conversation
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
…cess inputs/outputs Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
✅ Deploy Preview for nextflow-docs-staging ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Some sweets-infused holiday thoughts... right now I am just producing the same AST expected by the runtime to keep this PR as simple as possible. But, like I said, we can produce whatever Groovy AST we want, so we could produce Groovy code that more effectively enables new features like static types, default arguments, etc. The main example I'm thinking of is the annotation API (see nextflow-io/rnaseq-nf#24). I originally designed it as user-facing code, but it could also be an intermediate representation that is produced by the parser. If we "compile" the process and workflow definitions to actual function definitions, then we can more easily leverage the Groovy type checking. This is just an example. We may not need the annotation API exactly, but it would be good to explore alternative AST representations, perhaps in a second iteration. |
Signed-off-by: Ben Sherman <[email protected]>
Another aside... GraalVM implements an AST model for every language that it supports. Here is the Graal Python AST source code. So we could also have the parser produce a Graal/Python AST and thereby allow the pipeline code to use Python semantics instead of Groovy semantics. We would need to design a DSL syntax for processes and workflows that would make sense with Python. Likely it would look more like Snakemake. Using native Python syntax (i.e. functions with decorators) is also an option but would likely be more verbose. We would still need to implement our own IDE tooling, but centered around Python syntax instead of Groovy syntax. The point is, if we rely on the semantics (and compiler backend) of an existing language, it doesn't have to be Groovy. It could easily be any language supported by GraalVM. |
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
I renamed the tests in both folders, so they should be the same? What does the directory comparison look like? |
Regarding the IntelliJ errors, I have IntelliJ open but I am not seeing them. Are they preventing you from building? IntelliJ's Groovy analyzer does not seem to like these lambdas, though I don't know why, because they are correct If the IntelliJ errors aren't blocking, what I'd rather do is merge this one and in a separate PR, port ScriptCompiler back to Java, because I know the Java compiler won't have those errors. I just might need to adjust some underlying Groovy classes like BaseScript to make it work |
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.
It's not even compiling for me
Apart this I don't really feel comfortable merging having IDE syntax errors, especially in such central component (compiler)
modules/nextflow/src/main/groovy/nextflow/script/parser/v2/ScriptCompiler.groovy
Outdated
Show resolved
Hide resolved
modules/nextflow/src/main/groovy/nextflow/script/parser/v2/ScriptCompiler.groovy
Outdated
Show resolved
Hide resolved
modules/nextflow/src/main/groovy/nextflow/script/parser/v2/ScriptCompiler.groovy
Outdated
Show resolved
Hide resolved
modules/nextflow/src/main/groovy/nextflow/script/parser/v2/ScriptCompiler.groovy
Outdated
Show resolved
Hide resolved
// skip main script on second conversion pass | ||
if( phase == Phases.CONVERSION && source == entry ) | ||
return | ||
op.call(source) | ||
}, phase) |
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.
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.
This is just how lambdas work in Java. Here's an example from Groovy's CompilationUnit.
The parameter type is ISourceUnitOperation, which is a functional interface. It defines a single abstract method which the lambda is matched against.
This would compile in Java. If IntelliJ is reporting it then it's either being paranoid or just incorrect
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.
I figured out how to keep the script compiler in Java, so these IntelliJ errors should go away.
I had to re-do some commits to fix the DCO, so you might have to reset and re-pull
git reset --hard 6cd60d1
git pull
After refreshing my copy, I can compile. |
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
Signed-off-by: Ben Sherman <[email protected]>
4c47420
to
0358f38
Compare
Tests are passing! Approve when you're ready and I'll merge it |
I'll check by today |
i've very confused, I don't see the updates on this branch
|
It should be |
|
b499ca8
to
0358f38
Compare
Implements the strict syntax for Nextflow scripts, using the shared "compiler" module from the language server.
To use the strict syntax, simply set NXF_ENABLE_STRICT_SYNTAX=true in your environment when running
nextflow
.This approach allows us to control the parsing process -- including the syntax and detecting syntax errors -- while still leveraging the Groovy compiler for execution. In other words, we can define whatever grammar we want, as long as we can "compile" it into a Groovy AST. If you look at
ScriptToGroovyVisitor
, you'll see that it converts processes / workflows / includes into the same Groovy AST produced byNextflowDSLImpl
.NOTE: While this PR uses Jitpack to load the shared module, this dependency should be inverted before the release of 25.04. That is, eventually the compiler module should reside in Nextflow and the language server should consume it.