-
Notifications
You must be signed in to change notification settings - Fork 409
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
Recurse up the path looking for the Cargo.toml #624
Conversation
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.
Looks good to me modulo the one suggestion below. Thanks @gameldar! (Sorry for the delayed review!)
src/manifest/mod.rs
Outdated
let full_path = crate_path.canonicalize()?; | ||
let full_path = full_path.as_path(); | ||
let mut manifest_path = crate_path.join("Cargo.toml"); | ||
if recurse { |
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 think this logic should be in set_crate_path
(which should probably be renamed get instead of set) so that we don't have to deal with a bool
part in a returned tuple nor a bool
parameter. It would be cleaner without that, IMO.
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.
That was the part that I thought was quite clunky but I was worried about the scope of the refactoring. As it turns of it was the opposite of what I thought - it is the smaller refactoring and is a lot cleaner and obvious. Thanks!
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.
Looks good; moving the logic into get_crate_path
was a nice clean up. Will merge with comments below addressed (sorry if these were existing things I just didn't notice in the first round of review!)
Thanks again!
src/command/utils.rs
Outdated
/// to provide the appropriate error | ||
fn find_manifest_from_cwd() -> Result<PathBuf, failure::Error> { | ||
let cwd = PathBuf::from("."); | ||
let parent_path = cwd.canonicalize()?; |
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'm a little hesitant to add canonicalize
calls here, since we have historically had issues with canonicalized paths on windows (and in non-english locales?) that I never fully understood the root causes for.
If this isn't required for correctness (I don't think any APIs we use require canonical paths, and work just fine with relative paths), then I'd like to remove the canonicalize
call. Or maybe @ashleygwilliams or @alexcrichton understood the bug we hit better than I do.
Sorry I missed this in the first round of review!
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 think this shoudl be fixable by basically just using env::current_dir()
rather than canonicalize
which should return an appropriate absolute path
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.
Before refactoring I did need to use canonicalize - the problem was that a relative path coming into the function (e.g. PathBuff::from(".") that was the default) - isn't absolute so parent_path.parent() returns None even if you are not in the root directory. I needed to canonicalize it to ensure I had an absolute path.
However the logic changed after migrating the code into the the get_crate_path as now we take the current working directory and then work back from there. So thanks @alexcrichton using env::current_dir() gives the absolute path needed. Looking back at the output on Windows of the cwd after it was canonicalized it had a whole bunch of escaping included - compared to the absolute path.
src/command/utils.rs
Outdated
fn find_manifest_from_cwd() -> Result<PathBuf, failure::Error> { | ||
let cwd = PathBuf::from("."); | ||
let parent_path = cwd.canonicalize()?; | ||
let mut parent_path = parent_path.as_path(); |
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 call should be unnecessary, and I think we can wholesale remove this line. Since PathBuf
derefs to Path
the .join
call below should Just Work(tm).
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.
Ah yes I see now - after more digging due to conflicting type errors while trying to address this I actually found the pop method on PathBuf... which is exactly what I was doing but better!
src/command/utils.rs
Outdated
None => break Ok(cwd), | ||
}; | ||
} else { | ||
break Ok(parent_path.to_path_buf()); |
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.
These break
s should be return
.
When it is break
, I double check if there is a let foo = loop { ... };
but there isn't, and then I realize it is the last expression in the function, so it is equivalent to return
... and we can avoid readers doing that same little bit of confusion+understanding in the future by using return
.
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 agree - this was my attempt to do things the 'idiomatic' way - it seems from what I've been reading rustwise the preferred thing is to not have explicit return calls. I personally prefer explicit use of return because it makes it clear that is the intention (although some of that is that half the time I automatically add the semi colon and wonder why the compiler is saying I forgot to return a value from the function)
AppVeyor failure:
Maybe related to |
So the
and I think this is fine and cargo understands how to translate unix separators into windows separators so long as the path is not canonical(/absolute/has windows separators?). So I think this test failure will be fixed by removing the call to |
I asked this on discord but it disappeared up into the ether: |
I don't think we have an official policy for wasm-pack, but my rule of thumb is that if the follow up commits stand on their own (make sense outside the context of the PR, pass CI without relying on commits that come after, etc) then I leave them be, otherwise I squash them. |
* Renamed set_crate_path to get_crate_path * If the path isn't specified in the call then use the current_dir and walk up the path try to find the manifest file. * Specify the cwd for the build test so it doesn't walk up the path. The test needs to specify the path to build, otherwise because fixtures are run in a subdirectory of the source tree it will find the Cargo.toml from the wasm-pack source repository.
this is great! sorry for the delay and thanks for your patience. this will go out in 0.9.0! |
PR for #620 Walk up parent directories to find the current crate
When setting the crate path, if the default path of the current working directory is defined pass back a flag indicating the default was used
If the default is used, and a path is not specified, then walk up the path to find the Cargo.toml file
I'm relatively new to Rust and figured this was a good first step to getting to know the project and wet my feet, but I'm not sure I'm doing things the idiomatic way - so I'm happy to have all and any feedback!