-
Notifications
You must be signed in to change notification settings - Fork 7
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
Use split_windows_volume_prefix()
in split_windows()
and new is_absolute_windows()
.
#5
base: main
Are you sure you want to change the base?
Conversation
c97586b
to
642f2fe
Compare
Hello! What's the motivation for these changes? Thank you. |
Hello, and thanks for taking the time! MotivationI would argue that there are a bunch of issues with how
Concession on Erl compatibility
I admit that I hadn't noticed the references at the start of the file and wasn't aware this was trying to emulate the behavior of existing If the goal was always to maintain behavioral compatibility with the Erl functions, I can gladly revert However, I firmly believe we should not let that stop this package from being "as correct as possible". ConclusionEven if the priority is compatibility with the Erl function, we should at the very very least fix points |
FWIW, I will add some examples of import gleam/io
import gleam/list
import gleam/string
import filepath
pub fn main() {
let unc_root = "//./"
let plain = "//./pipe"
let slashed = "//./pipe/testpipe"
let slashed_drive = "C:/"
let backlashed_drive = "C:\\"
let backslashed = "\\\\.\\pipe\\testpipe\\test"
let driveletter = "C:\\Users\\Administrator/test"
let unc_ip = "\\\\127.0.0.1\\MyShare\\shared-dir\\file.txt"
let unc_path = "\\\\.\\UNC\\LOCALHOST\\c$\\temp\\test-file.txt"
let all_test_paths = [
unc_root, plain, slashed, slashed_drive, backlashed_drive, backslashed,
driveletter, unc_ip, unc_path
]
let testf = fn(path) {
io.println("Splitting: '" <> path <> "'")
io.debug(filepath.split_windows(path))
io.println("")
}
list.map(all_test_paths, testf)
} This produces this output:
|
Additionally FWIW, although I don't believe 1:1 comparisons to the stdlib of other languages is infallible, I'd like point out that Go's NOTE: Go's version only splits the path once at its end, returning 2 strings, and it's meant to implement the tautology that: dir, rest := filepath.Split(path)
path == (dir + rest) // should always be true Sample:package main
import "fmt"
import "path/filepath"
import "runtime"
func main() {
if runtime.GOOS != "windows" {
panic("These examples are only relevant when running on Windows.")
}
fmt.Printf("Go version this was built with is: %s\n\n", runtime.Version())
examples := []string{
"C:\\123",
"c:\\123",
"C:/123",
"c:/123",
"C:\\",
"C:/",
"HKLM:\\SOFTWARE",
"HKLM:/SOFTWARE",
"\\\\.\\pipe\\test",
"//./pipe/test",
"//127.0.0.1/abc/123",
"\\\\127.0.0.1\\abc\\123",
// Notable examples where Split() correctly identifies the volume and does NOT split it:
"//127.0.0.1",
"//127.0.0.1/",
"//127.0.0.1/abc",
"\\\\127.0.0.1\\abc",
"\\\\.\\pipe",
"//./pipe",
}
for _, example := range examples {
dir, file := filepath.Split(example)
fmt.Printf("%q => %#v\n", example, []string{dir, file})
}
} Output:
|
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.
Great, thank you.
Could you split this pull request into one per change or fix or new feature please? There's quite a lot of different things in this one which makes it challenging to review and the controversial changes will block the uncontroversial.
Could you also run the formatter and update the changelog in each. Thank you
This patch adds a new public function for splitting Windows paths into its volume prefix and rest of the path.
Note this introduces the breaking change of `split_windows()` and `split()` no longer lowercasing the drive letter, nor keeping a trailing slash in the first element representing the drive.
642f2fe
to
ceb6a12
Compare
split_windows_volume_prefix()
in split_windows()
and new is_absolute_windows()
.
ceb6a12
to
c00fb17
Compare
I have went ahead and split the initial PR into:
|
PS: Although I made #7 bump the minor version to IMO the current way |
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.
edit: oops, sorry I see this is the original PR.
Indeed, after #7 merges this PR will be revealed to have minimal changes:
I could split the switching of |
WARN: this code may NOT run correctly on OTP because of this compiler bug: gleam-lang/gleam#2733
Depends on (and includes) the changes in: #7
This patch adds a new
is_absolute_windows()
function and also switchessplit_windows()
to use the newsplit_windows_volume_prefix()
function.BREAKING: Note that
split_windows()
(and by extensionsplit()
on Windows) will no longer auto-lowercase the drive letter, nor include the slash in the first drive element of the split as it used to.Most notable is the addition of thesplit_windows_volume_prefix()
function for (hopefully) complete coverage of all possible Windows volume prefix formats.This is mainly a side-effect of it being also converted to use the newsplit_windows_volume_prefix()
, but IMO it should never had taken said steps to begin with, as these behaviors broke the expected tautology that:path == string.join("/", split(path))
should always be true. (presuming the slash orientation is correct)PS: this is my first real Gleam language patch, so please be as harsh as necessary. 😄