Charles Iliya Krempeaux 3fd2741cba | ||
---|---|---|
LICENSE | ||
README.md | ||
bad_request.go | ||
compile.go | ||
compile_test.go | ||
doc.go | ||
errors.go | ||
example_compile_test.go | ||
example_pattern_string_test.go | ||
go.mod | ||
go.sum | ||
internal_error.go | ||
not_enough_arguments.go | ||
pattern.go | ||
pattern_find.go | ||
pattern_find_test.go | ||
pattern_glob.go | ||
pattern_glob_test.go | ||
pattern_init.go | ||
pattern_load.go | ||
pattern_load_test.go | ||
pattern_match.go | ||
pattern_match_test.go | ||
pattern_string.go | ||
pattern_syntax_error.go | ||
scan_error.go | ||
set.go | ||
set_test.go | ||
struct_field_wrong_type.go | ||
unsupported_argument_type.go |
README.md
go-pathmatch
A library that provides pattern-matching for paths, for the Go programming language.
For example, a path could be a file system path, or a path could be a path from a URL (such as an HTTP or HTTPS based URL).
Documention
Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-pathmatch
Example Usage
import (
"sourcecode.social/reiver/go-pathmatch"
)
// ...
var pattern pathmatch.Pattern
err := pathmatch.CompileTo(&pattern, "/users/{user_id}/vehicles/{vehicle_id}")
if nil != err {
fmt.Fprintf(os.Stdout, "ERROR: %s\n", err)
return
}
var userId string
var vehicleId string
matched, err := pattern.Find("/users/bMM_kJFMEV/vehicles/o_bcU.RZGK", &userId, &vehicleId)
if nil != err {
fmt.Fprintf(os.Stdout, "ERROR: %s\n", err)
return
}
if !matched {
fmt.Println("The patch did not match.")
return
}
fmt.Println("The path matched!")
fmt.Printf("user_id = %q \n", userId) // user_id = "bMM_kJFMEV"
fmt.Printf("vehicle_id = %q \n", vehicleId) // vehicle_id = "o_bcU.RZGK"
Alternatively:
import (
"sourcecode.social/reiver/go-pathmatch"
)
// ...
var pattern patchmatch.Pattern
err := pathmatch.CompileTo(&pattern, "/users/{user_id}/vehicles/{vehicle_id}")
if nil != err {
fmt.Fprintf(os.Stdout, "ERROR: %s\n", err)
return
}
data := struct{
UserId string `match:"user_id"`
VehicleId string `match:"vehicle_id"`
}{}
matched, err := pattern.FindAndLoad("/users/bMM_kJFMEV/vehicles/o_bcU.RZGK", &data)
if nil != err {
fmt.Fprintf(os.Stdout, "ERROR: %s\n", err)
return
}
if !matched {
fmt.Println("The patch did not match.")
return
}
fmt.Println("The path matched!")
fmt.Printf("user_id = %q \n", data.UserId) // user_id = "bMM_kJFMEV"
fmt.Printf("vehicle_id = %q \n", data.VehicleId) // vehicle_id = "o_bcU.RZGK"