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

Fix the "dune coq top" bug identified by #5552 #5868

Closed
wants to merge 2 commits into from

Conversation

rlepigre
Copy link
Contributor

See #5552.

@rlepigre rlepigre changed the title Fix the Coqtop bug identified by #5552 Fix the "dune coq top" bug identified by #5552 Jun 11, 2022
@rlepigre rlepigre force-pushed the fix_coqtop branch 3 times, most recently from 88b605e to 4a7bb48 Compare June 11, 2022 17:04
| Some s -> s
if Filename.is_relative coq_file_arg then coq_file_arg
else
let cwd = Path.external_ Path.External.initial_cwd in
Copy link
Member

Choose a reason for hiding this comment

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

side note: maybe you should just reject absolute paths? we don't allow dune build /foo/bar as far as I know. Why allow it here?

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 know that's a bit silly. The reason I did that originally is that emacs/proof-general feeds coqtop with an absolute path. But I'm not sure how important that is that we support that.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Should we also remove that @Alizter? I agree this is kind of useless anyway: editors will need to detect the workspace root anyway, so they can cook up a path relative to it.

@rgrinberg
Copy link
Member

Could you also add a test of the form:

$ ls
dune-project theory/
theory/dune theory/foo.v
$ cd theory
$ dune coq top --root=.. -- foo.v

All dune commands work when you run them in sub-directories, so this should be no exception.

@rlepigre
Copy link
Contributor Author

Could you also add a test of the form:

$ ls
dune-project theory/
theory/dune theory/foo.v
$ cd theory
$ dune coq top --root=.. -- foo.v

All dune commands work when you run them in sub-directories, so this should be no exception.

I added a test case, but this currently fails. I'm not sure what is the right way to fix things here. I should certainly reuse stuff from the dune build command, but I've not had much success yet. I tried playing with functions in bin/target.ml but I don't know what is the right thing to do here.

In particular, I'm not sure where the translation of paths should happen. It seem that all operations are expected to work with paths relative to the root, is that right? If yes, how do you typically construct such paths for a relative path to the current working directory?

@rgrinberg
Copy link
Member

I tried playing with functions in bin/target.ml but I don't know what is the right thing to do here.

You're on the right track. In particular, see the epxand_path function. Note the Workspace_root.t needed to make the paths relative to the cwd. You only need this part:

  Path.relative Path.root (root.reach_from_root_prefix ^ s)

Where s is your argument to dune coq top.

ejgallego and others added 2 commits June 16, 2022 10:03
This was reported in ocaml#5552.

Co-authored-by: Emilio Jesus Gallego Arias <e+git@x80.org>

Signed-off-by: Rodolphe Lepigre <lepigre@mpi-sws.org>
The [dune coq top] command fails when called from a subdirectory of
the workspace.

Signed-off-by: Rodolphe Lepigre <lepigre@mpi-sws.org>
@rlepigre
Copy link
Contributor Author

You're on the right track. In particular, see the epxand_path function. Note the Workspace_root.t needed to make the paths relative to the cwd. You only need this part:

  Path.relative Path.root (root.reach_from_root_prefix ^ s)

Where s is your argument to dune coq top.

Thanks @rgrinberg! Unfortunately I don't quite understand how that helps. I think that what I need instead is a way to compute the relative path from the root (which seems to be the current working directory after initialisation, as returned by Path.External,cwd ()) to the initial working directory (given by Path.Externam.initial_cwd).

In the (failing) test, when I run the last command from the theories folder, the value of root is: {dir = ".."; to_cwd = []; reach_from_root_prefix = ""; _}, which I don't think is helpful. Am I missing something?

I could probably hack a fix by extracting the path I want somehow, but that would almost surely not be the correct approach. Could you elaborate a bit on what you think is the right way to fix the problem?

@rgrinberg rgrinberg added this to the 3.4.0 milestone Jun 20, 2022
@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

LGTM @rlepigre I think DCO is complaining because you are not the author of the first commit? Otherwise I don't know why it doesn't like your sign off.

Once that is sorted @rgrinberg this is good to merge.

@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

I see that the extra test wasn't added, let me try to do that.

@rlepigre
Copy link
Contributor Author

I see that the extra test wasn't added, let me try to do that.

I added the test, but it currently fails (the message in the test is wrong): see test/blackbox-tests/test-cases/coq/coqtop-root.t/run.t. However, I could not figure out how to solve the problem in a nice way.

@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

@rlepigre Could you push the broken test so I can take a look at it?

@rlepigre
Copy link
Contributor Author

If you know a way to fix it @Alizter, feel free to implement it. Otherwise I can have a go if you tell me how to.

@rlepigre
Copy link
Contributor Author

It is pushed, it is the second commit.

@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

OK so @rgrinberg thinks that Workspace_root has an incorrect implementation which is why the test doesn't work. I've filed that as an issue: #5899.

@rlepigre could you drop the second test, the fix for that will have to come later.

@rgrinberg
Copy link
Member

Why should the fix come later? Resolving the argument with reach_from_root_prefix is still the right way to do it.

@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

Yes that's right, I will push my change.

@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

@rlepigre I don't have permission to push to you branch.

@rlepigre
Copy link
Contributor Author

@rlepigre I don't have permission to push to you branch.

You should have received an invite.

@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

@rlepigre There is a checkbox in the bottom right hand side of this page which should give permission for pushing to this specific branch. I don't need full access to your repo. :-)

@rlepigre
Copy link
Contributor Author

It was checked already, I guess you do not qualify as a "maintainer" @Alizter? 😛

@Alizter
Copy link
Collaborator

Alizter commented Jun 20, 2022

OK no problem :p @rlepigre I've opened a new PR so we can merge it quickly #5901

@rlepigre
Copy link
Contributor Author

OK no problem :p @rlepigre I've opened a new PR so we can merge it quickly #5901

Great, thanks for taking care of this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

4 participants