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

Expose a public 'check' method #289

Merged
merged 1 commit into from
Sep 30, 2022
Merged

Expose a public 'check' method #289

merged 1 commit into from
Sep 30, 2022

Conversation

charliermarsh
Copy link
Member

@charliermarsh charliermarsh commented Sep 29, 2022

See: #271.

@charliermarsh
Copy link
Member Author

@Seamooo - Is this roughly what's needed for the LSP? (Is there any way to get the LSP to pass us a path, even as a string, to include in the error messages?)

src/lib.rs Outdated
@@ -15,3 +24,52 @@ pub mod printer;
pub mod pyproject;
mod python;
pub mod settings;

/// Run ruff over Python source code directly.
pub fn check(contents: &str) -> Result<Vec<Message>> {
Copy link
Member Author

Choose a reason for hiding this comment

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

With this, you can do:

use anyhow::Result;
use ruff;

fn main() -> Result<()> {
    println!("{:?}", ruff::check("def f(): x = 1")?);
    Ok(())
}

@charliermarsh
Copy link
Member Author

@Seamooo - What are you planning to use to implement the LSP? https://github.com/ebkalderon/tower-lsp?

@Seamooo
Copy link
Contributor

Seamooo commented Sep 29, 2022

the lsp can definitely pass a path, the source requirement is due to the dynamic nature of the buffer updating. I've implemented a rough version of the lsp from scratch https://github.com/Seamooo/ruffd, getting this in would enable a proof of concept.

@charliermarsh
Copy link
Member Author

That's awesome. And it's here that we can plug into ruff as a library?

@charliermarsh
Copy link
Member Author

(Did you write that implementation from scratch? Is it based off anything else?)

@charliermarsh
Copy link
Member Author

Two questions:

  1. Should I change the method signature to include something like path: &str or even path: Path? Some of the internals like to have a Path, e.g., for formatting the Message body, but it could be worked around if it needs to be omitted.
  2. How should we determine the pyproject.toml path here? Is there any way to base it on the user's current working directory? Or can the LSP path an absolute path to a file?

@charliermarsh charliermarsh force-pushed the charlie/lib branch 3 times, most recently from df34549 to e02ec1c Compare September 30, 2022 00:35
@charliermarsh charliermarsh marked this pull request as ready for review September 30, 2022 00:35
@charliermarsh
Copy link
Member Author

(I went ahead and did (1); if we pass the absolute Path, it will in turn solve (2).)

@Seamooo
Copy link
Contributor

Seamooo commented Sep 30, 2022

That's awesome. And it's here that we can plug into ruff as a library?

Exactly

@Seamooo
Copy link
Contributor

Seamooo commented Sep 30, 2022

(Did you write that implementation from scratch? Is it based off anything else?)

it's implemented from scratch from the specification, with coc-nvim as the client to verify

@Seamooo
Copy link
Contributor

Seamooo commented Sep 30, 2022

There's potentially some ambiguity for solving the pyproject.toml path. The easiest would just be using the workspace root provided by the lsp client, but potentially there's cases where the workspace has nested configurations underneath it. For that case the implementation would be to recurse from the file path upwards until finding a pyproject.toml terminating at the workspace root. If the public method takes in &Settings, potentially the public api shouldn't have to account for it. This may also enable global configs outside of pyproject.toml that can create the settings type.

@charliermarsh
Copy link
Member Author

For that case the implementation would be to recurse from the file path upwards until finding a pyproject.toml terminating at the workspace root.

If we pass check a path to a file, then find_project_root will automatically do this.

@charliermarsh charliermarsh merged commit 417764d into main Sep 30, 2022
@charliermarsh charliermarsh deleted the charlie/lib branch September 30, 2022 15:30
@charliermarsh
Copy link
Member Author

@Seamooo - I've merged this for now. Let me know if it works for you or if we need to amend the API!

@Seamooo
Copy link
Contributor

Seamooo commented Sep 30, 2022

image
looking good!

@charliermarsh
Copy link
Member Author

Nice! That's awesome!

What does it take to enable others to use the LSP from VS Code and elsewhere?

@charliermarsh
Copy link
Member Author

(E.g., do we need to publish this on some sort of extension marketplace?)

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.

2 participants